gdb
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2010-11-29 Tom Tromey <tromey@redhat.com>
2
3 * opencl-lang.c (lval_func_check_synthetic_pointer): New
4 function.
5 * value.h (struct lval_funcs) <indirect, check_synthetic_pointer>:
6 New fields.
7 (value_bits_synthetic_pointer): Declare.
8 * value.c (value_bits_synthetic_pointer): New function.
9 * valprint.c (valprint_check_validity): Handle synthetic
10 pointers.
11 * valops.c (value_ind): Use new 'indirect' lval_funcs method.
12 * valarith.c (value_ptradd): Use set_value_component_location.
13 * p-valprint.c (pascal_object_print_value_fields): Handle
14 synthetic pointers.
15 * jv-valprint.c (java_print_value_fields): Handle synthetic
16 pointers.
17 * dwarf2read.c (dwarf_stack_op_name): Add
18 DW_OP_GNU_implicit_pointer.
19 (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
20 arguments. Handle location lists.
21 (fill_in_loclist_baton): New function.
22 (dwarf2_symbol_mark_computed): Use it.
23 * dwarf2loc.h (dwarf2_find_location_expression): Declare.
24 (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
25 arguments.
26 * dwarf2loc.c (dwarf2_find_location_expression): Rename from
27 find_location_expression. No longer static. Update all callers.
28 (dwarf_expr_frame_pc): New function.
29 (per_cu_dwarf_call): Add get_frame_pc, baton arguments. Update
30 all callers.
31 (struct piece_closure) <per_cu>: New field.
32 (allocate_piece_closure): Add per_cu argument.
33 (read_pieced_value): Handle DWARF_VALUE_IMPLICIT_POINTER.
34 (check_pieced_value_bits): Remove validity argument, add check_for
35 argument. Handle DWARF_VALUE_IMPLICIT_POINTER.
36 (check_pieced_value_validity, check_pieced_value_invalid):
37 Update.
38 (check_pieced_synthetic_pointer): New function.
39 (get_frame_address_in_block_wrapper): New function.
40 (indirect_pieced_value): New function.
41 (pieced_value_funcs): Update.
42 (invalid_synthetic_pointer): New function.
43 (dwarf2_evaluate_loc_desc_full): Rename from
44 dwarf2_evaluate_loc_desc. Add byte_offset argument.
45 (dwarf2_evaluate_loc_desc): Rewrite.
46 (dwarf2_loc_desc_needs_frame): Set new field on context.
47 (get_ax_pc): New function.
48 (disassemble_dwarf_expression): Handle
49 DW_OP_GNU_implicit_pointer.
50 * dwarf2expr.h (enum dwarf_value_location)
51 <DWARF_VALUE_IMPLICIT_POINTER>: New constant.
52 (struct dwarf_expr_context) <get_frame_pc>: New field.
53 (struct dwarf_expr_piece) <v.ptr>: New field.
54 * dwarf2expr.c (add_piece): Handle DWARF_VALUE_IMPLICIT_POINTER.
55 (execute_stack_op): Handle DW_OP_GNU_implicit_pointer.
56 * dwarf2-frame.c (no_get_frame_pc): New function.
57 (execute_stack_op): Set new field on context.
58 * cp-valprint.c (cp_print_value_fields): Handle synthetic
59 pointers.
60
61 2010-11-29 Phil Muldoon <pmuldoon@redhat.com>
62
63 PR python/12199
64
65 * python/py-breakpoint.c (bppy_delete_breakpoint): New function.
66
67 2010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com>
68
69 Fix step_resume_breakpoint unsaved during an infcall.
70 * gdbthread.h (struct thread_control_state): Move here field
71 step_resume_breakpoint ...
72 (struct thread_info): ... from here.
73 * infrun.c (save_infcall_control_state): Reset
74 control.step_resume_breakpoint to NULL.
75 (restore_infcall_control_state, discard_infcall_control_state): Delete
76 control.step_resume_breakpoint.
77 * arm-linux-tdep.c, infrun.c, thread.c: Update all the references to
78 the moved field.
79
80 2010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com>
81
82 Rename and move inferior_thread_state and inferior_status.
83 * gdbthread.h (struct thread_control_state): New struct, move fields
84 step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
85 trap_expected, proceed_to_finish, in_infcall, step_over_calls,
86 stop_step and stop_bpstat here from struct thread_info.
87 (struct thread_suspend_state): New struct, move field stop_signal here
88 from struct thread_info.
89 (struct thread_info): Move the fields above from this struct.
90 * inferior.h: Move the inferior_thread_state and inferior_status
91 declarations comment to their definitions at infrun.c.
92 (struct inferior_control_state): New struct, move field stop_soon from
93 struct inferior here.
94 (struct inferior_suspend_state): New empty struct.
95 (struct inferior): New fields control and suspend. Move out field
96 stop_soon.
97 * infrun.c (struct inferior_thread_state): Rename to ...
98 (infcall_suspend_state): ... here. Replace field stop_signal by
99 fields thread_suspend and inferior_suspend.
100 (save_inferior_thread_state): Rename to ...
101 (save_infcall_suspend_state): ... here. New variable inf. Update the
102 code for new fields.
103 (restore_inferior_thread_state): Rename to ...
104 (restore_infcall_suspend_state): ... here. New variable inf. Update
105 the code for new fields.
106 (do_restore_inferior_thread_state_cleanup): Rename to ...
107 (do_restore_infcall_suspend_state_cleanup): ... here.
108 (make_cleanup_restore_inferior_thread_state): Rename to ...
109 (make_cleanup_restore_infcall_suspend_state): ... here.
110 (discard_inferior_thread_state): Rename to ...
111 (discard_infcall_suspend_state): ... here.
112 (get_inferior_thread_state_regcache): Rename to ...
113 (get_infcall_suspend_state_regcache): ... here.
114 (struct inferior_status): Rename to ...
115 (struct infcall_control_state): ... here. Replace fields
116 step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
117 trap_expected, proceed_to_finish, in_infcall, step_over_calls,
118 stop_step, stop_bpstat and stop_soon by fields thread_control and
119 inferior_control.
120 (save_inferior_status): Rename to ...
121 (save_infcall_control_state): ... here. Update the code for new
122 fields.
123 (restore_inferior_status): Rename to ...
124 (restore_infcall_control_state): ... here. Update the code for new
125 fields.
126 (do_restore_inferior_status_cleanup): Rename to ...
127 (do_restore_infcall_control_state_cleanup): ... here.
128 (make_cleanup_restore_inferior_status): Rename to ...
129 (make_cleanup_restore_infcall_control_state): ... here.
130 (discard_inferior_status): Rename to ...
131 (discard_infcall_control_state): ... here.
132 * alpha-tdep.c, breakpoint.c, dummy-frame.c, dummy-frame.h,
133 exceptions.c, fbsd-nat.c, gdbthread.h, infcall.c, infcmd.c,
134 inferior.c, inferior.h, infrun.c, linux-nat.c, mi/mi-interp.c,
135 mips-tdep.c, procfs.c, solib-irix.c, solib-osf.c, solib-spu.c,
136 solib-sunos.c, solib-svr4.c, thread.c, windows-nat.c: Update all the
137 references to the moved fields and renamed functions.
138
139 2010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
140
141 * infcall.c (struct inferior_thread_state) <siginfo_gdbarch>: Fix up
142 the comment.
143 (save_inferior_thread_state): Reset tp->stop_signal.
144
145 2010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
146
147 * infcall.c (call_function_by_hand): Remove variable
148 caller_state_cleanup.
149
150 2010-11-25 Marc Khouzam <marc.khouzam@ericsson.com>
151
152 PR breakpoints/12217
153
154 * breakpoint.c (is_marker_spec): Check for NULL.
155
156 2010-11-25 Pedro Alves <pedro@codesourcery.com>
157
158 * breakpoint.h: No longer include python.h or python-internal.h.
159 (struct breakpoint_object): Forward declare.
160 * defs.h (PyObject) [!HAVE_PYTHON]: Don't define.
161 * varobj.c (PyObject) [!HAVE_PYTHON]: Define.
162 * python/py-breakpoint.c (build_bp_list): Cast py_bp_object to
163 PyObject pointer.
164 (gdbpy_breakpoint_created): Remove casts around py_bp_object
165 accesses.
166
167 2010-11-24 Joel Brobecker <brobecker@adacore.com>
168
169 * rs6000-tdep.c (bfd_uses_spe_extensions): Use bfd_elf_get_obj_attr_int
170 only if HAVE_ELF is defined.
171
172 2010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
173
174 Code cleanup.
175 * infrun.c (struct inferior_status) <stepping_over_breakpoint>
176 (save_inferior_status) <stepping_over_breakpoint>
177 (restore_inferior_status) <stepping_over_breakpoint>: Rename to
178 trap_expected.
179 (struct inferior_status) <step_resume_break_address>: Remove.
180
181 2010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
182
183 Code cleanup.
184 * infrun.c (struct inferior_status, save_inferior_status)
185 (restore_inferior_status): Group and reorder the fields, comment their
186 groups.
187
188 2010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
189
190 Code cleanup.
191 * dictionary.c
192 (struct dict_vector) <iter_match_first, iter_match_next>
193 (iter_match_first_hashed, iter_match_next_hashed)
194 (iter_match_first_linear, iter_match_next_linear)
195 (dict_iter_match_first, dict_iter_match_next, iter_match_first_hashed)
196 (iter_match_next_hashed, iter_match_first_linear)
197 (iter_match_next_linear): Use symbol_compare_ftype.
198 * dictionary.h: Include symfile.h.
199 (dict_iter_match_first, dict_iter_match_next): Use
200 symbol_compare_ftype.
201 * dwarf2read.c (dw2_map_matching_symbols): Likewise.
202 * psymtab.c (match_partial_symbol, match_partial_symbol, map_block)
203 (map_matching_symbols_psymtab): Likewise.
204 * symfile.h (symbol_compare_ftype): New typedef.
205 (struct quick_symbol_functions) <map_matching_symbols): Use
206 symbol_compare_ftype.
207
208 2010-11-23 Tom Tromey <tromey@redhat.com>
209
210 * configure: Rebuild.
211 * configure.ac (READLINE_TEXI_INCFLAG): New subst.
212
213 2010-11-19 Tom Tromey <tromey@redhat.com>
214
215 * Makefile.in (SUBDIRS): Add doc.
216 * configure: Rebuild.
217 * configure.ac: Don't configure in doc. Create doc/Makefile.
218
219 2010-11-23 Phil Muldoon <pmuldoon@redhat.com>
220
221 PR python/12212
222
223 * python/py-inferior.c (find_thread_object): Check if PIDGET
224 returns 0.
225
226 010-11-22 Joel Brobecker <brobecker@adacore.com>
227
228 * ada-lang.c (ada_template_to_fixed_record_type_1): Delete bit_incr.
229
230 2010-11-22 Joel Brobecker <brobecker@adacore.com>
231
232 * ada-lang.c (ada_to_fixed_type): Expand function documentation.
233 Return the original type if the main type portions match rather
234 than when the type themselves match.
235
236 2010-11-22 Joel Brobecker <brobecker@adacore.com>
237
238 * ada-lang.c (ada_template_to_fixed_record_type_1):
239 For dynamic fields, check the field size against the maximum
240 object size.
241
242 2010-11-22 Joel Brobecker <brobecker@adacore.com>
243
244 * mips-irix-tdep.c (mips_irix_n32_stack_tramp_frame_init): New
245 function.
246 (mips_irix_n32_stack_tramp_frame): New static global.
247 (mips_irix_init_abi): Add mips_irix_n32_stack_tramp_frame to
248 list of unwinder.
249
250 2010-11-22 Jerome Guitton <guitton@adacore.com>
251
252 * ada-tasks.c (get_tcb_types_info): Use C lookups to get
253 ATCB symbols.
254
255 2010-11-22 Joel Brobecker <brobecker@adacore.com>
256
257 * ada-lang.c (ada_check_typedef): Call ada_check_typedef only
258 if type1 is a typedef.
259
260 2010-11-22 Joel Brobecker <brobecker@adacore.com>
261
262 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Add
263 "_finalizer" to the list.
264
265 2010-11-22 Joel Brobecker <brobecker@adacore.com>
266
267 * symfile.c: Remove all "#if 0"/"#endif" blocks.
268
269 2010-11-22 Joel Brobecker <brobecker@adacore.com>
270
271 * symfile.c: Add missing second space after period in various comments.
272
273 2010-11-22 Joel Brobecker <brobecker@adacore.com>
274
275 * ada-typeprint.c (print_array_type): Fix formatting in comment.
276 (print_selected_record_field_types): Fix formatting in function
277 documentation.
278
279 2010-11-22 Joel Brobecker <brobecker@adacore.com>
280
281 * ravenscar-thread.c (_initialize_ravenscar): Fix copy/paste typo
282 in name of "show ravenscar" prefix command name.
283
284 2010-11-22 Joel Brobecker <brobecker@adacore.com>
285
286 * ravenscar-thread.c (show_ravenscar_task_switching_command):
287 Add missing '\n' in output.
288
289 2010-11-22 Joel Brobecker <brobecker@adacore.com>
290
291 * ravenscar-thread.c (running_thread_name): Change value.
292 (read_thread_id): Remove advance declaration.
293 (get_running_thread_msymbol): New function.
294 (has_ravenscar_runtime): Use get_running_thread_msymbol to
295 compute msym_running_thread.
296 (get_running_thread_id): Renames read_thread_id. Slight modifications
297 to not take any argument anymore, using get_running_thread_msymbol
298 to determine which symbol to use instead.
299 (ravenscar_running_thread): Use get_running_thread_id instead of
300 read_thread_id.
301
302 2010-11-22 Joel Brobecker <brobecker@adacore.com>
303
304 * ravenscar-sparc-thread.c (supply_register_at_address):
305 Fix passing of buf in call to regcache_raw_supply.
306
307 2010-11-22 Jan Kratochvil <jan.kratochvil@redhat.com>
308
309 * dwarf2read.c (dwarf2_read_index): Ignore higher .gdb_index versions.
310
311 2010-11-22 Tom Tromey <tromey@redhat.com>
312
313 * Makefile.in (.PRECIOUS): Reference ada-lex.c.
314
315 2010-11-19 Keith Seitz <keiths@redhat.com>
316
317 * data-directory/Makefile.in (SYSCALLS_INSTALL_DIR):
318 Remove extraneous '/' after $(DESTDIR).
319 (PYTHON_INSTALL_DIR): Likewise.
320
321 2010-11-19 Jan Kratochvil <jan.kratochvil@redhat.com>
322
323 Fix stale memory references.
324 * elfread.c (elf_symfile_read): Replace xmalloc by bfd_alloc, drop
325 xfree, new comment.
326
327 2010-11-19 Jan Kratochvil <jan.kratochvil@redhat.com>
328 Tom Tromey <tromey@redhat.com>
329
330 * Makefile.in (.y.c): Directly create $@ from YLWRAP.
331 (.PHONY): Remove for .y outputs.
332
333 2010-11-19 Will Drewry <wad@google.com>
334 Tavis Ormandy <taviso@google.com>
335 Jan Kratochvil <jan.kratochvil@redhat.com>
336
337 * dwarf2read.c (decode_locdesc): Enforce location description stack
338 boundaries.
339
340 2010-11-18 Pierre Muller <muller@ics.u-strasbg.fr>
341
342 * arm-tdep.c (arm_in_function_epilogue_p): Fix code when "MOV SP"
343 instruction is found.
344
345 2010-11-17 Tom Tromey <tromey@redhat.com>
346
347 * value.c (value_entirely_optimized_out): Check the
348 'check_any_valid' field.
349
350 2010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
351
352 * ada-lang.c (modify_general_field): Remove.
353 (make_array_descriptor): Replace all modify_general_field calls by
354 modify_field.
355 * value.c (modify_field): Update comment. New variable bytesize.
356 Normalize BITPOS. Initialize BYTESIZE, use it.
357
358 2010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
359
360 * dwarf2read.c (dw2_forget_cached_source_info): Clear the FULL_NAMES
361 elements after xfree.
362
363 2010-11-16 Tom Tromey <tromey@redhat.com>
364
365 * gdb-add-index.sh: Really remove.
366
367 2010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
368
369 Code cleanup.
370 * dwarf2read.c (alloc_one_comp_unit): Rename prototype to ...
371 (init_one_comp_unit): ... this one.
372 (prepare_one_comp_unit): New prototype.
373 (dw2_require_line_header, process_psymtab_comp_unit): Use
374 init_one_comp_unit.
375 (process_psymtab_comp_unit): Use prepare_one_comp_unit.
376 (load_partial_comp_unit): Remove variable attr. Use
377 init_one_comp_unit with xmalloc. Use prepare_one_comp_unit.
378 (load_full_comp_unit): Use init_one_comp_unit with xmalloc. Use
379 prepare_one_comp_unit.
380 (read_signatured_type): Remove variable attr. Use init_one_comp_unit.
381 Use prepare_one_comp_unit.
382 (alloc_one_comp_unit): Rename to ...
383 (init_one_comp_unit): ... here and remove there calloc, new parameter
384 cu.
385 (prepare_one_comp_unit): New function.
386
387 2010-11-14 Pierre Muller <muller@ics.u-strasbg.fr>
388
389 * arm-tdep.c (arm_in_function_epilogue_p): Fix code to avoid
390 possible used of uninitialized variable.
391
392 2010-11-12 Nathan Froyd <froydnj@codesourcery.com>
393
394 * rs6000-tdep.c (bfd_uses_spe_extensions): New function.
395 (rs6000_gdbarch_init): Call it.
396
397 2010-11-12 Nathan Froyd <froydnj@codesourcery.com>
398
399 * rs6000-tdep.c (gdb_print_insn_powerpc): Disassemble e500
400 instructions if debugging an E500 binary.
401
402 2010-11-12 Tom Tromey <tromey@redhat.com>
403
404 * varobj.c (value_get_print_value): Rearrange. Pass stream to
405 apply_varobj_pretty_printer.
406 * c-lang.c: Include exceptions.h.
407 (c_get_string): Throw MEMORY_ERROR when appropriate.
408 * python/py-prettyprint.c (enum string_repr_result): New.
409 (print_stack_unless_memory_error): New function.
410 (print_string_repr): Change return type. Use
411 print_stack_unless_memory_error.
412 (print_children): Use print_stack_unless_memory_error.
413 (apply_val_pretty_printer): Update. Don't print children if
414 string representation threw an exception.
415 (apply_varobj_pretty_printer): Add 'stream' argument. Use
416 print_stack_unless_memory_error.
417 * python/python.c (gdbpy_gdb_error, gdbpy_gdb_memory_error): New
418 globals.
419 (_initialize_python): Initialize them.
420 * python/python-internal.h (GDB_PY_HANDLE_EXCEPTION): Use
421 gdbpy_convert_exception.
422 (GDB_PY_SET_HANDLE_EXCEPTION): Likewise.
423 (gdbpy_gdb_error, gdbpy_gdb_memory_error): Declare.
424 (gdbpy_convert_exception): Declare.
425 (apply_varobj_pretty_printer): Update.
426 * python/py-utils.c (gdbpy_convert_exception): New function.
427
428 2010-11-12 Marc Khouzam <marc.khouzam@ericsson.com>
429
430 * mi/mi-main.c (mi_cmd_target_detach): Accept new
431 thread-group id format.
432
433 2010-11-12 Jan Kratochvil <jan.kratochvil@redhat.com>
434
435 * spu-tdep.c (spu_catch_start): Fix compilation error typo.
436
437 2010-11-11 Phil Muldoon <pmuldoon@redhat.com>
438
439 * python/py-breakpoint.c (BPPY_REQUIRE_VALID): Check if bp is
440 NULL.
441 (BPPY_SET_REQUIRE_VALID): Ditto.
442 (bpnum_is_valid): Delete function.
443 (bppy_get_visibility): New function.
444 (bppy_new): Parse for, and validate internal keyword. Pass
445 internal keyword to breakpoint or watchpoint functions.
446 (build_bp_list): New function.
447 (gdbpy_breakpoints): Rewrite. Use build_bp_list and
448 iterate_over_breakpoints.
449 (gdbpy_breakpoint_created): Rewrite. Do not store breakpoints in a
450 look-aside vector.
451 (gdbpy_breakpoint_deleted): Rewrite, defer breakpoint management
452 to internal breakpoint chain.
453
454 * breakpoint.c (set_breakpoint_number): New function.
455 (breakpoint_1): Check if breakpoint number is more than zero.
456 (set_raw_breakpoint_without_location): Set py_bp_object to NULL.
457 (create_breakpoint_sal): Take a new parameter called internal.
458 Call set_breakpoint_number with internal parameter. Do not
459 mention internal breakpoints. All callers updated.
460 (create_breakpoint): Ditto.
461 (create_breakpoints_sal): Ditto.
462 (watch_command_1): Ditto.
463 (watch_command_wrapper): Take a new parameter called internal.
464 All callers updated.
465 (rwatch_command_wrapper): Ditto.
466 (awatch_command_wrapper): Ditto.
467 (save_breakpoints): Update breakpoint save condition check.
468 (iterate_over_breakpoints): New function.
469 * breakpoint.h: Add conditional python includes. Add py_bp_object
470 and comment to struct breakpoint. Update all callers.
471 * defs.h: Add PyObject definition for GDB builds without Python.
472
473 2010-11-10 Doug Evans <dje@google.com>
474
475 * python/lib/gdb/command/pretty_printers.py
476 (do_enable_pretty_printer_1): Handle printer.subprinters is None.
477
478 * value.c (set_value_enclosing_type): Renamed from
479 value_change_enclosing_type. All callers updated.
480 * value.h (set_value_enclosing_type): Update.
481 * valops.c (value_full_object): Always return a copy if we need to
482 make changes to the input value.
483
484 2010-11-09 Pedro Alves <pedro@codesourcery.com>
485
486 * breakpoint.c (watch_command_1): Get a pointer of the lazy
487 version of the expression's value, even if reading the value from
488 memory fails. When creating a -location watchpoint, get the
489 value's address from the lazy value pointer.
490
491 2010-11-07 Jan Kratochvil <jan.kratochvil@redhat.com>
492
493 * infrun.c (restore_inferior_thread_state): Use
494 discard_inferior_thread_state to free the data.
495 (discard_inferior_thread_state): xfree also siginfo_data.
496
497 2010-11-05 Doug Evans <dje@google.com>
498
499 Make gdb.parameter("directories") work.
500 New command "set directories".
501 * NEWS: Document them.
502 * source.c (set_directories_command): New function.
503 (show_directories_1): Renamed from show_directories.
504 All callers updated.
505 (show_directories_command): New function.
506 (_initialize_source): Install "directories" as a set/show
507 variable instead of just a show command.
508
509 2010-11-05 Ken Werner <ken.werner@de.ibm.com>
510
511 * NEWS: Mention OpenCL C language support.
512 * Makefile.in (SFILES): Add opencl-lang.c.
513 (COMMON_OBS): Add opencl-lang.o.
514 * opencl-lang.c: New File
515 * defs.h (enum language): Add language_opencl.
516 * dwarf2read.c (read_file_scope): Handle DW_AT_producer for the
517 IBM XL C OpenCL compiler.
518 * c-lang.h: Include "parser-defs.h".
519 (evaluate_subexp_c): Declare.
520 * c-lang.c (evaluate_subexp_c): Remove the static qualifier.
521 (c_op_print_tab): Add declaration.
522 * eval.c (binop_promote): Handle language_opencl.
523 * c-exp.y: Lookup the primitive types instead of referring to the
524 builtins.
525
526 2010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com>
527
528 Fix configure --enable-plugins --without-python.
529 * configure.ac (for ELF support in BFD) <"$plugins" = "yes">: New.
530 * configure: Regenerate.
531
532 2010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com>
533
534 * solib.c (solib_read_symbols): Call exception_fprintf even without
535 FROM_TTY. Print also so->so_name.
536
537 2010-11-04 Sami Wagiaalla <swagiaal@redhat.com>
538
539 * gdbtypes.h (struct rank): Created subrank.
540 * gdbtypes.c: Initialized subrank for all
541 'BADNESS' constants.
542 (distance_to_ancestor): New function.
543 (is_ancestor): Use distance_to_ancestor.
544 (is_public_ancestor): Ditto.
545 (sum_ranks): Handle subrank.
546 (compare_ranks): Ditto.
547 (rank_one_type): Subrank base conversions.
548
549 2010-11-04 Sami Wagiaalla <swagiaal@redhat.com>
550
551 * gdbtypes.h: Create struct rank.
552 Convert all 'BADNESS' macros to const struct rank declarations.
553 (sum_ranks): New function.
554 (compare_ranks): New function.
555 * valops.c (find_oload_champ): Updated.
556 (classify_oload_match): Use compare_ranks.
557 Improved comments.
558 (compare_parameters): Use compare_ranks.
559 * gdbtypes.c: Initialize 'BADNESS' constants.
560 (sum_ranks): New function.
561 (compare_ranks): New function.
562 (compare_badness): Use compare_ranks.
563 (rank_function): Use global constants instead of literals.
564 (rank_one_type): Ditto.
565 Return struct rank.
566 Use sum_ranks.
567
568 2010-11-04 Doug Evans <dje@google.com>
569
570 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Fix comment.
571 (find_pretty_printer): Fix comments.
572
573 2010-11-04 Hui Zhu <teawater@gmail.com>
574
575 * tracepoint.c (remote_trace_set_readonly_regions): Change lma to vma.
576
577 2010-11-03 Joel Brobecker <brobecker@adacore.com>
578
579 * ada-valprint.c (ada_val_print_array): Move variables `eltlen'
580 and `len' declaration and computation inside block where they
581 are being used.
582
583 2010-11-03 Joel Brobecker <brobecker@adacore.com>
584
585 * valprint.c (val_print_array_elements): Put back handling of
586 empty arrays.
587
588 2010-11-03 Ken Werner <ken.werner@de.ibm.com>
589
590 * dwarf2read.c (read_array_type): Read the DW_AT_byte_size from the
591 DIE and set the length of the type.
592 * gdbtypes.h (get_array_bounds): Move here from valprint.h.
593 * gdbtypes.c (get_array_bounds): Move here from valprint.c and
594 return 0 if the corresponding bounds of the type are undefined.
595 * valprint.h (get_array_bounds): Move declaration to gdbtypes.h.
596 * valprint.c (get_array_bounds): Move implementation to gdbtypes.c.
597 (val_print_array_elements): Use get_array_bounds to compute the number
598 of array elements instead of dividing the length of the array by the
599 length of the element types.
600 * valarith.c (vector_binop): Likewise.
601 * valops.c (value_cast): Likewise.
602 * c-valprint.c (c_val_print): Likewise.
603 * c-typeprint.c (c_type_print_varspec_suffix): Likewise.
604
605 2010-11-03 Ken Werner <ken.werner@de.ibm.com>
606
607 * valarith.c (value_pos, value_neg, value_complement): Handle
608 vector types.
609 * valops.c (value_one): Likewise.
610
611 2010-11-03 Ken Werner <ken.werner@de.ibm.com>
612
613 * value.h (value_non_lval): Declare.
614 * value.c (value_non_lval): New function.
615 * eval.c (evaluate_subexp_standard) <UNOP_POSTINCREMENT,
616 UNOP_POSTDECREMENT>: Call value_non_lval to ensure to return a
617 non-lvalue.
618
619 2010-11-02 Doug Evans <dje@google.com>
620
621 New python module gdb.printing, and new commands info pretty-printer,
622 enable pretty-printer, disable pretty-printer.
623 * NEWS: Mention them.
624 * data-directory/Makefile.in (PYTHON_FILES): Add gdb/printing.py,
625 gdb/command/__init__.py, gdb/command/pretty_printers.py.
626 * python/lib/gdb/__init__.py: Install pretty-printer commands.
627 * python/lib/gdb/printing.py: New file.
628 * python/lib/gdb/command/__init__.py: New file.
629 * python/lib/gdb/command/pretty_printers.py: New file.
630
631 2010-11-02 Tom Tromey <tromey@redhat.com>
632
633 * NEWS: Mention Guile removal.
634 * defs.h (enum language) <language_scm>: Remove.
635 * Makefile.in (SFILES): Remove scm-exp.c, scm-lang.c,
636 scm-valprint.c.
637 (HFILES_NO_SRCDIR): Remove scm-lang.h, scm-tags.h.
638 (COMMON_OBS): Remove scm-exp.o, scm-lang.o, scm-valprint.o.
639 * scm-exp.c, scm-lang.c, scm-valprint.c, scm-lang.h, scm-tags.h:
640 Remove.
641
642 2010-11-02 Doug Evans <dje@google.com>
643
644 * top.c: #include "python/python.h".
645 (gdb_init): Add a comment regarding initialize_all_files.
646 Call finish_python_initialization at the end.
647 * python/python.h (finish_python_initialization): Declare.
648 * python/python.c (finish_python_initialization): New function.
649 (_initialize_python): Move python-implemented initialization there
650 and call it.
651 (GdbMethods): Use #ifdef HAVE_PYTHON for consistency.
652
653 2010-11-02 Jan Kratochvil <jan.kratochvil@redhat.com>
654
655 Revert:
656 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
657 Pedro Alves <pedro@codesourcery.com>
658 * gdbthread.h (currently_stepping): New declaration.
659 * infrun.c (currently_stepping): Remove the forward declaration.
660 (currently_stepping): Make it global.
661 * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
662 variables tp and step, initialized them. Pass STEP to to_resume.
663 Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
664 * remote.c (currently_stepping_callback): New.
665 (remote_vcont_resume)
666 <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
667 New variable tp. Call currently_stepping_callback and step such
668 thread.
669
670 2010-11-01 Hui Zhu <teawater@gmail.com>
671
672 * tracepoint.c (tfile_xfer_partial): Change lma to vma.
673
674 2010-10-28 Hui Zhu <teawater@gmail.com>
675
676 * tracepoint.c (trace_save): Change utp->actions to
677 utp->step_actions.
678
679 2010-10-26 Joel Brobecker <brobecker@adacore.com>
680
681 * (_FILE_OFFSET_BITS): Fix typo in comment.
682
683 2010-10-26 Joel Brobecker <brobecker@adacore.com>
684
685 * python/python-internal.h (_FILE_OFFSET_BITS): Undefine.
686 (PyEval_InitThreads): Remove duplicate. Define as nothing.
687 (PyEval_ReleaseLock): Define as nothing.
688
689 2010-10-26 Joel Brobecker <brobecker@adacore.com>
690
691 * dwarf2read.c (psymtab_include_file_name): Replace call to strcmp
692 by call to FILENAME_CMP.
693
694 2010-10-26 Joel Brobecker <brobecker@adacore.com>
695
696 * dictionary.c (dict_hash): Move assignment out of if condition.
697
698 2010-10-22 Jie Zhang <jie@codesourcery.com>
699
700 * Makefile.in (install): Remove dependency of install-only and
701 recursively invoke make for install-only.
702 * data-directory/Makefile.in: Add FLAGS_TO_PASS variable.
703 (install): Pass FLAGS_TO_PASS when recursively make install-only.
704
705 2010-10-20 Hui Zhu <teawater@gmail.com>
706
707 * tracepoint.c (tfile_get_traceframe_address): Call
708 extract_signed_integer.
709 (tfile_trace_find): Call extract_signed_integer and
710 extract_unsigned_integer. Change data_size to unsigned int.
711 (tfile_fetch_registers): Call extract_unsigned_integer.
712 (tfile_xfer_partial): Ditto.
713 (tfile_get_trace_state_variable_value): Call
714 extract_signed_integer and extract_unsigned_integer.
715
716 2010-10-20 Vladimir Prus <vladimir@codesourcery.com>
717
718 * remote.c (remote_get_threadlist): If we got empty
719 response, bail out immediately, and don't emit any
720 warnings.
721
722 2010-10-19 Ulrich Weigand <uweigand@de.ibm.com>
723
724 * arm-tdep.c (thumb_get_next_pc_raw): Handle Thumb-16 encoding
725 for "mov pc, REG" as well.
726 (thumb_instruction_changes_pc): Likewise.
727
728 2010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
729
730 PR C++/11500:
731 * valarith.c (value_x_unop): Handle STRUCTOP_PTR.
732 * eval.c (evaluate_subexp_standard): Check for overload of
733 'operator->'.
734 * valarith.c (value_x_binop): Throw NOT_FOUND_ERROR.
735 (value_x_unop): Ditto.
736 * valops.c: Include "exceptions.h".
737 (find_overload_match): Throw NOT_FOUND_ERROR.
738 (value_struct_elt): Ditto.
739
740 2010-10-19 Tom Tromey <tromey@redhat.com>
741
742 * python/py-cmd.c (cmdpy_function): Unreference exception state.
743
744 2010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
745
746 * gdbtypes.h: Introduce BOOL_PTR_CONVERSION_BADNESS.
747 * gdbtypes.c (rank_one_type): Use BOOL_PTR_CONVERSION_BADNESS
748 for conversion.
749 Make all other conversions illegal.
750
751 2010-10-18 Doug Evans <dje@google.com>
752
753 * c-typeprint.c (c_type_print_base, case TYPE_CODE_TYPEDEF): Verify
754 assumptions of when this case happens. Print "<unnamed typedef>".
755
756 2010-10-18 Tom Tromey <tromey@redhat.com>
757
758 * valprint.c (val_print_string): Pass 'encoding' to
759 LA_PRINT_STRING.
760
761 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
762
763 Fix the `stopped language detection' testcase for gcc-4.5.
764 * dwarf2read.c (read_partial_die): Set also LANGUAGE_OF_MAIN.
765 * symfile.c (set_initial_language): Move variable filename to a more
766 inner block. Prefer LANGUAGE_OF_MAIN.
767 * symtab.c (language_of_main): New variable.
768 (set_main_name): Always reset LANGUAGE_OF_MAIN.
769 * symtab.h (language_of_main): New declaration.
770
771 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
772 Pedro Alves <pedro@codesourcery.com>
773
774 * gdbthread.h (currently_stepping): New declaration.
775 * infrun.c (currently_stepping): Remove the forward declaration.
776 (currently_stepping): Make it global.
777 * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
778 variables tp and step, initialized them. Pass STEP to to_resume.
779 Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
780 * remote.c (currently_stepping_callback): New.
781 (remote_vcont_resume)
782 <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
783 New variable tp. Call currently_stepping_callback and step such
784 thread.
785
786 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
787
788 * infrun.c (follow_exec): Replace symbol_file_add_main by
789 symbol_file_add with SYMFILE_DEFER_BP_RESET, set_initial_language and
790 breakpoint_re_set.
791 * m32r-rom.c (m32r_load, m32r_upload_command): Use parameter 0 for
792 clear_symtab_users.
793 * objfiles.c (free_all_objfiles): Likewise.
794 * remote-m32r-sdi.c (m32r_load): Likewise.
795 * solib-som.c (som_solib_create_inferior_hook): Likewise.
796 * symfile.c (new_symfile_objfile): New comment for add_flags. Call
797 clear_symtab_users with ADD_FLAGS.
798 (reread_symbols): Use parameter 0 for clear_symtab_users.
799 (clear_symtab_users): New parameter add_flags. Do not call
800 breakpoint_re_set if SYMFILE_DEFER_BP_RESET.
801 (clear_symtab_users_cleanup): Use parameter 0 for clear_symtab_users.
802 * symtab.h (clear_symtab_users): New parameter add_flags.
803
804 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
805
806 Fix GCC false warning.
807 * varobj.c (value_get_print_value) <str_addr>: Initialize it.
808
809 2010-10-16 Pierre Muller <muller@ics.u-strasbg.fr>
810
811 * p-typeprint.c (pascal_type_print_method_args): Fix problem in
812 display of type of method arguments.
813
814 2010-10-15 Tom Tromey <tromey@redhat.com>
815
816 PR python/11948:
817 * varobj.c (value_get_print_value): Use val_print_string to print
818 lazy strings.
819 * python/py-prettyprint.c (print_string_repr): Use
820 val_print_string to print lazy strings. Fix cleanup logic.
821 (print_children): Likewise.
822 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
823 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Rewrite.
824 Change return type to 'void', add 'addr' argument.
825 * value.h (val_print_string): Update.
826 * valprint.c (val_print_string): Add 'encoding' argument.
827 * printcmd.c (print_formatted): Update.
828 * p-valprint.c (pascal_val_print): Update.
829 * m2-valprint.c (print_unpacked_pointer): Update.
830 (m2_print_array_contents): Likewise.
831 * jv-valprint.c (java_value_print): Update.
832 * f-valprint.c (f_val_print): Update.
833 * c-valprint.c (c_val_print): Update.
834 * auxv.c (fprint_target_auxv): Update.
835
836 2010-10-15 Doug Evans <dje@google.com>
837 Jan Kratochvil <jan.kratochvil@redhat.com>
838
839 PR exp/12117
840 * gdbtypes.c (check_typedef): Clean up function comment.
841 Keep track of instance flags as we strip typedefs and create a new
842 type to preserve them if necessary.
843 * gdbtypes.h (type) <instance_flags>: Extend the comment.
844
845 2010-10-15 Pierre Muller <muller@ics.u-strasbg.fr>
846
847 * p-lang.c (is_pascal_string_type): Use TYPE_FIELD_NAME accessor.
848
849 2010-10-14 Sami Wagiaalla <swagiaal@redhat.com>
850
851 * gdbtypes.h: Create BASE_PTR_CONVERSION_BADNESS.
852 * gdbtypes.c (rank_one_type): Move type comparison code out of here
853 to...
854 (types_equal): ...here. And changed it as follows:
855 Outside of typedefs type must be of the same TYPE_CODE.
856 When compairing two pointers or references they are equal if their
857 targets are equal.
858 Correct pointer conversions.
859
860 2010-10-14 Pierre Muller <muller@ics.u-strasbg.fr>
861
862 * p-lang.c (is_pascal_string_type): Avoid crashes on structures
863 having fields without names.
864
865 2010-10-13 Tom Tromey <tromey@redhat.com>
866
867 * language.h (LA_PRINT_ARRAY_INDEX): Fix argument name.
868
869 2010-10-13 Doug Evans <dje@google.com>
870
871 New python module gdb.types.
872 * NEWS: Document it.
873 * data-directory/Makefile.in (PYTHON_FILES): Add gdb/types.py.
874 * python/lib/gdb/types.py: New file.
875
876 * c-typeprint.c: Whitespace cleanup.
877 (cp_type_print_method_args): Remove unnecessary forward decl.
878 (cp_type_print_derivation_info): Ditto.
879 (c_type_print_varspec_prefix): Mark as static at definition.
880 (c_type_print_modifier): Fix arg descriptions.
881
882 2010-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
883
884 * python/py-breakpoint.c (bppy_set_condition): New comment.
885 * python/py-cmd.c (cmdpy_function): Call also gdbpy_print_stack for
886 failed PyUnicode_Decode.
887 (cmdpy_completer): Skip element for failed
888 python_string_to_host_string.
889 (cmdpy_init): Return -1 on failed python_string_to_host_string.
890 * python/py-frame.c (frapy_read_var): Extend the function comment.
891 * python/py-function.c (fnpy_init): Return -1 on failed
892 python_string_to_host_string.
893 * python/py-inferior.c (infpy_read_memory, infpy_write_memory): Extend
894 the function comment.
895 (infpy_search_memory): Extend the function comment. Remove the
896 PyErr_SetString call on already set error state.
897 * python/py-param.c (set_parameter_value): Extend the function
898 comment. Return -1 on failed python_string_to_host_string, twice.
899 (set_attr): Extend the function comment.
900 (compute_enum_values): Extend the function comment. New variable
901 back_to. Protect self->enumeration by BACK_TO cleanups. Return 0 on
902 failed python_string_to_host_string.
903 (get_doc_string): Call gdbpy_print_stack on failed
904 python_string_to_host_string.
905 (parmpy_init): Extend the function comment.
906 * python/py-prettyprint.c (pretty_print_one_value): Likewise.
907 (gdbpy_get_display_hint, print_children): Call gdbpy_print_stack on
908 failed python_string_to_host_string.
909 * python/py-value.c (valpy_new, valpy_getitem, valpy_call)
910 (valpy_binop, valpy_richcompare): Extend the function comment.
911 * python/python.c
912 (struct python_env) <error_type, error_value, error_traceback>: New
913 fields.
914 (restore_python_env): Handle PyErr_Occurred. Call PyErr_Restore.
915 (ensure_python_env): Call PyErr_Fetch.
916 * varobj.c (update_dynamic_varobj_children): Call gdbpy_print_stack on
917 failed convert_value_from_python.
918 (value_get_print_value): Call gdbpy_print_stack on failed
919 python_string_to_target_python_string.
920
921 2010-10-12 Tom Tromey <tromey@redhat.com>
922
923 * python/py-prettyprint.c (search_pp_list): Fix error checking.
924
925 2010-10-12 Sami Wagiaalla <swagiaal@redhat.com>
926
927 * gdbtypes.c (do_is_ancestor): New function.
928 (is_ancestor): Use do_is_ancestor.
929 (is_public_ancestor): Use do_is_ancestor.
930
931 2010-10-12 Pierre Muller <muller@ics.u-strasbg.fr>
932
933 * ser-go32.c (struct dos_ops): Add missing fdopen field.
934
935 2010-10-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
936
937 * arm-tdep.c (arm_mode_strings): Add NULL entry at end of array.
938
939 2010-10-11 Doug Evans <dje@google.com>
940
941 * c-typeprint.c (c_type_print_modifier): Add note that this prints
942 the address space id too.
943
944 2010-10-11 Jan Kratochvil <jan.kratochvil@redhat.com>
945
946 Fix attaching to re-prelinked executables on ppc64.
947 * solib-svr4.c (svr4_exec_displacement): New variable plt2_asect,
948 initialize it, try to adjust FILESZ field by it.
949
950 2010-10-08 Daniel Jacobowitz <dan@codesourcery.com>
951
952 * tracepoint.c (merge_uploaded_trace_state_variables): Only print
953 messages if info_verbose.
954
955 2010-10-08 Ken Werner <ken.werner@de.ibm.com>
956
957 * valops.c (value_cast): Handle vector types.
958 * valarith.c (value_binop): Widen scalar to vector if appropriate.
959
960 2010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
961
962 * arm-tdep.c (thumb_expand_immediate): New function.
963 (thumb_instruction_changes_pc): Likewise.
964 (thumb2_instruction_changes_pc): Likewise.
965 (thumb_analyze_prologue): Handle 32-bit Thumb instructions during
966 prologue parsing. Improved support for optimized code.
967 (thumb_scan_prologue): Do not reply on line-number information,
968 use same heuristics as arm_scan_prologue insead.
969 (skip_prologue_function): Accept functions
970 "__tls_get_addr" and "__aeabi_read_tp".
971
972 2010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
973 Daniel Jacobowitz <dan@codesourcery.com>
974
975 * arm-tdep.c (thumb_in_function_epilogue_p)
976 (arm_in_function_epilogue_p): New.
977 (arm_gdbarch_init): Install arm_in_function_epilogue_p as
978 gdbarch_in_function_epilogue_p callback.
979
980 2010-10-07 Doug Evans <dje@google.com>
981
982 * cc-with-index.sh (output_file): Default to a.out.
983
984 * dwarf2read.c (mapped_index): Rename member index_table to
985 symbol_table and index_table_slots to symbol_table_slots.
986 All uses updated.
987 (create_symbol_hash_table): Renamed from create_index_table.
988 All callers updated.
989 (add_indices_to_cpool): Rename arg index_table to symbol_hash_table.
990 (write_hash_table): Rename local index_table to symbol_hash_table.
991
992 * addrmap.h (addrmap_foreach_fn): New typedef.
993 (addrmap_foreach): Declare.
994 * addrmap.c (struct addrmap_funcs): New member foreach.
995 (addrmap_foreach): New function.
996 (addrmap_fixed_foreach): New function.
997 (addrmap_fixed_funcs): Update.
998 (struct mutable_foreach_data): New struct.
999 (addrmap_mutable_foreach_worker): New function.
1000 (addrmap_mutable_foreach): New function.
1001 (addrmap_mutable_funcs): Update.
1002
1003 2010-10-07 Paul Hilfinger <hilfinger@adacore.com>
1004
1005 * dictionary.c (dict_hash): Revert to msymbol_hash_iw in
1006 more cases.
1007
1008 2010-10-07 Paul Hilfinger <hilfinger@adacore.com>
1009
1010 * ada-lang.c (full_match): Declare.
1011 (ada_match_name): Rename to match_name (we should avoid prefixing static
1012 symbols with "ada_").
1013 (match_name): New name for ada_match_name.
1014 (struct ada_psym_data): Remove and replace with...
1015 (struct match_data): User data for map_matching_symbols.
1016 (ada_add_psyms): Remove.
1017 (aux_add_nonlocal_symbols): New function, used as callback for
1018 map_matching_symbols.
1019 (compare_names): Ordering function adopted from strcmp_iw for Ada-encoded
1020 symbols.
1021 (ada_add_non_local_symbols): Rename to add_nonlocal_symbols.
1022 (add_nonlocal_symbols): Renamed from ada_add_non_local_symbols.
1023 Rework to use map_matching_symbols instead of map_ada_symtabs.
1024 (ada_lookup_symbol_list): Use add_nonlocal_symbols.
1025 * psymtab.c: Include dependency on dictionary.h.
1026 (match_partial_symbol): New function.
1027 (ada_lookup_partial_symbol): Remove.
1028 (map_block): New function, auxiliary to map_matching_symbols_psymtab.
1029 (map_matching_symbols_psymtab): New function.
1030 (psym_functions): Replace map_ada_symtabs with map_matching_symbols_psymtab.
1031 * symfile.h: Replace map_ada_symtabs definition with map_matching_symbols.
1032
1033 2010-10-06 Paul Hilfinger <hilfinger@adacore.com>
1034
1035 * ada-lang.c (ada_match_name): Use new API for wild_match.
1036 (wild_match): Change API to be consistent with that of strcmp_iw;
1037 return 0 for a match, and switch operand order.
1038 (full_match): New function.
1039 (ada_add_block_symbols): Use dict_iter_match_{first,next} for
1040 matching to allow use of hashing.
1041 * dictionary.c (struct dict_vector): Generalize iter_name_first,
1042 iter_name_next ot iter_match_first, iter_match_next.
1043 (iter_name_first_hashed): Replace with iter_match_first_hashed.
1044 (iter_name_next_hashed): Replace with iter_match_next_hashed.
1045 (iter_name_first_linear): Replace with iter_match_first_linear.
1046 (iter_name_next_linear): Replace with iter_match_next_linear.
1047 (dict_iter_name_first): Re-implement to use dict_iter_match_first.
1048 (dict_iter_name_next): Re-implement to use dict_iter_match_next.
1049 (dict_iter_match_first): New function.
1050 (dict_iter_match_next): New function.
1051 (dict_hash): New function.
1052 * dictionary.h (dict_iter_match_first, dict_iter_match_next): Declare.
1053 * psymtab.c (ada_lookup_partial_symbol): Use new wild_match API.
1054
1055 2010-10-06 Doug Evans <dje@google.com>
1056
1057 * data-directory/Makefile.in: Remove @host_makefile_frag@, @frags@.
1058
1059 2010-10-06 Ken Werner <ken.werner@de.ibm.com>
1060
1061 * dwarf2read.c (read_tag_const_type): Handle const arrays.
1062
1063 2010-10-06 Doug Evans <dje@google.com>
1064
1065 * Makefile.in (REQUIRED_SUBDIRS): New var.
1066 (subdir_do): Verify required subdir Makefiles exist.
1067
1068 Create subdir data-directory.
1069 * Makefile.in (XML_SYSCALL_DIR, XML_SYSCALL_FILES): Moved to
1070 data-directory/Makefile.in.
1071 (SUBDIRS): Add data-directory.
1072 (all): Remove xml-syscall-copy dependency.
1073 (xml-syscall-copy): Moved to data-directory/Makefile.in as
1074 stamp-syscalls.
1075 (xml-syscall-install): Moved to data-directory/Makefile.in as
1076 install-syscalls.
1077 (install-only): Remove xml-syscall-install dependency.
1078 (all-data-directory): New rule.
1079 (data-directory/Makefile): New rule.
1080 * configure.ac (AC_OUTPUT): Add data-directory/Makefile.
1081 * configure: Regenerate.
1082 * data-directory/Makefile.in: New file.
1083 * python/lib/gdb/__init__.py: New file.
1084
1085 2010-10-06 Joel Brobecker <brobecker@adacore.com>
1086
1087 Fix ARI warnings in advance_wild_match.
1088 * ada-lang.c (advance_wild_match): Delete local variable t2.
1089 Adjust code accordingly. Minor reformatting.
1090
1091 2010-10-06 Ken Werner <ken.werner@de.ibm.com>
1092
1093 * gdbtypes.h (struct main_type): Remove flag_nottext.
1094 (enum type_flag_value): Remove TYPE_FLAG_NOTTEXT.
1095 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_NOTTEXT.
1096 (TYPE_NOTTEXT): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of flag_nottext.
1097 * gdbtypes.c (make_vector_type): Use TYPE_INSTANCE_FLAG_NOTTEXT instead
1098 of TYPE_FLAG_NOTTEXT.
1099 (init_type): Remove the initialization of the flag_nottext field.
1100 (gdbtypes_post_init): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of
1101 TYPE_FLAG_NOTTEXT.
1102 * c-valprint.c (c_val_print): Remove TYPE_VECTOR check.
1103
1104 2010-10-04 Doug Evans <dje@google.com>
1105
1106 * cc-with-index.sh: New file.
1107
1108 * dwarf2read.c (dw2_do_instantiate_symtab): Insert blank line after
1109 function comment.
1110 (dw2_instantiate_symtab, dw2_get_cu, extract_cu_value): Ditto.
1111 (create_cus_from_index, create_addrmap_from_index): Ditto.
1112 (mapped_index_string_hash, find_slot_in_mapped_hash): Ditto.
1113 (dw2_setup, dw2_require_line_header, dw2_require_full_path): Ditto.
1114 (dw2_do_expand_symtabs_matching): Ditto.
1115 (eq_strtab_entry, create_strtab, add_string): Ditto.
1116 (hash_strtab_entry): Ditto.
1117 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry): Ditto.
1118 (create_index_table, create_mapped_symtab, find_slot): Ditto.
1119 (hash_expand, add_index_entry, add_indices_to_cpool): Ditto.
1120 (write_hash_table, add_address_entry, write_psymbols): Ditto.
1121 (write_obstack, unlink_if_set, write_one_signatured_type): Ditto.
1122 (write_psymtabs_to_index): Ditto.
1123
1124 2010-10-04 Joel Brobecker <brobecker@adacore.com>
1125
1126 * ada-lang.c: #include "value.h".
1127 (ensure_lval): Delete advance declaration. Remove gdbarch and sp
1128 arguments. Implement using value_allocate_space_in_inferior
1129 instead of allocating memory from the stack.
1130 (make_array_descriptor): Remove gdbarch and sp parameters. Update
1131 calls to ensure_lval.
1132 (ada_convert_actual): Remove gdbarch and sp parameters. Update
1133 calls to make_array_descriptor and ensure_lval.
1134 * ada-lang.h (ada_convert_actual): Update declaration.
1135 * infcall.c (value_arg_coerce): Update call to ada_convert_actual.
1136
1137 2010-10-04 Doug Evans <dje@google.com>
1138
1139 * python/python.c (_initialize_python): Define new function
1140 GdbSetPythonDirectory in python. Use it to update sys.path and
1141 gdb.__path__.
1142
1143 2010-10-03 Paul Hilfinger <hilfinger@adacore.com>
1144
1145 * gdb/ada-typeprint.c (print_selected_record_field_types): New function,
1146 incorporating and generalizing print_record_field_types.
1147 (print_record_field_types): Change return value and update comment.
1148 Re-implement using print_selected_record_field_types.
1149 (print_choices): Print "=>" here.
1150 Handle case of unencoded variant branch.
1151 (print_variant_clauses): Reformat comment.
1152 Special-case unencoded variant branch.
1153
1154 2010-10-03 Paul Hilfinger <hilfinger@adacore.com>
1155
1156 * ada-lang.c (wild_match): Reimplement.
1157 Change API to eliminate unused length argument, reverse arguments and
1158 make 0 the 'true' return value.
1159 (advance_wild_match): New auxiliary function for wild_match to improve
1160 readability.
1161 (ada_match_name, ada_add_block_symbols): Use new API for wild_match.
1162 * psymtab.c (ada_lookup_partial_symbol, map_ada_symtabs): Use new
1163 API for wild_match.
1164 * symfile.h (map_ada_symtabs): Modify declaration to use new API for
1165 wild_match.
1166 * dwarf2read.c (dw2_map_ada_symtabs): Ditto.
1167
1168 2010-10-01 Doug Evans <dje@google.com>
1169
1170 * dwarf2read.c (_initialize_dwarf2_read): Add usage info to help text
1171 for `save gdb-index' command.
1172
1173 2010-10-01 Tom Tromey <tromey@redhat.com>
1174
1175 * symfile.h (allocate_symtab): Update.
1176 * symfile.c (allocate_symtab): Make 'filename' const.
1177 * psymtab.c (add_psymbol_to_bcache): Make 'name' const.
1178 (add_psymbol_to_list): Likewise.
1179 * psympriv.h (struct partial_symtab) <filename, dirname>: Now
1180 const.
1181 (add_psymbol_to_list): Update.
1182 * mdebugread.c (new_symtab): Make 'name' const.
1183 (psymtab_to_symtab_1): Make 'filename' const.
1184 * elfread.c (elfstab_offset_sections): Update.
1185 * dwarf2read.c (dwarf_decode_lines): Make 'comp_dir' const.
1186 (dwarf2_start_subfile): Make 'dirname' and 'comp_dir' const.
1187 (psymtab_include_file_name): Update.
1188 * dbxread.c (find_stab_function_addr): Make 'filename' const.
1189 * buildsym.h (start_subfile): Update.
1190 * buildsym.c (start_subfile): Make arguments const.
1191
1192 2010-09-30 Ali Lakhia <lakhia@alumni.utexas.net>
1193
1194 * fork-child.c (breakup_args): Fix crash if shell forking is
1195 disabled at compile time.
1196
1197 2010-10-01 Joel Brobecker <brobecker@adacore.com>
1198
1199 * ada-lang.c (desc_bounds): Add handling of the case where
1200 the P_BOUNDS field is a pointer to a stub.
1201 (desc_data_target_type): Same for P_ARRAY field.
1202 (ada_check_typedef): Strip the typedef layers from the type
1203 found by ada_find_any_type.
1204
1205 2010-10-01 Joel Brobecker <brobecker@adacore.com>
1206
1207 * sparc-tdep.c (sparc32_frame_align): New function.
1208 (sparc32_gdbarch_init): Set the frame_align gdbarch method.
1209 * sparc64-tdep.c (sparc64_frame_align): New function.
1210 (sparc64_gdbarch_init): Set the frame_align gdbarch method.
1211
1212 2010-09-30 H.J. Lu <hongjiu.lu@intel.com>
1213
1214 * defs.h (MAX_REGISTER_SIZE): Set to 64.
1215
1216 2010-09-30 Tom Tromey <tromey@redhat.com>
1217
1218 * symfile.h (struct sym_fns) <next>: Remove.
1219 (add_symtab_fns): Update.
1220 * symfile.c (sym_fns_ptr): New typedef.
1221 (symtab_fns): Now a VEC.
1222 (add_symtab_fns): Update. Change argument type.
1223 (find_sym_fns): Update. Change return type.
1224 (get_symfile_segment_data): Update.
1225 * objfiles.h (struct objfile) <sf>: Now const.
1226 * somread.c (som_sym_fns): Now const. Update.
1227 * xcoffread.c (xcoff_sym_fns): Now const. Update.
1228 * mipsread.c (ecoff_sym_fns): Now const. Update.
1229 * machoread.c (macho_sym_fns): Now const. Update.
1230 * elfread.c (elf_sym_fns): Now const. Update.
1231 (elf_sym_fns_gdb_index): Likewise.
1232 * dbxread.c (aout_sym_fns): Now const. Update.
1233 * coffread.c (coff_sym_fns): Now const. Update.
1234
1235 2010-09-30 Tom Tromey <tromey@redhat.com>
1236
1237 * value.c (value_primitive_field): Take 'offset' into account for
1238 packed field.
1239
1240 2010-09-30 Tom Tromey <tromey@redhat.com>
1241
1242 * completer.c (count_struct_fields): Handle anonymous structs and
1243 unions.
1244 (add_struct_fields): Likewise.
1245
1246 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1247
1248 Fix printing parameters of inlined functions.
1249 * ada-lang.c (is_known_support_routine)
1250 (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter
1251 for find_frame_funname.
1252 * python/py-frame.c (frapy_name): Likewise.
1253 * stack.c (find_frame_funname): New parameter funcp. Update the
1254 function comment. Fill it in.
1255 (print_frame): New variable func. Initialize it by
1256 find_frame_funname. Print arguments only if FUNC is not NULL. Use
1257 FUNC as the parameter of print_args_stub.
1258 * stack.h (find_frame_funname): New parameter funcp. Remove the
1259 function declaration comment.
1260
1261 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1262
1263 PR corefiles/12071.
1264 * inferior.c (have_live_inferiors): New variables old_chain, inf and
1265 tp. Iterate INFERIOR_LIST and call target_has_execution.
1266
1267 2010-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1268
1269 Fix GDB crash on inferior calls with self-referencing classes.
1270 * gnu-v3-abi.c (gnuv3_pass_by_reference): Do not call itself on static
1271 member fields.
1272
1273 2010-09-29 Doug Evans <dje@google.com>
1274
1275 Workaround for gcc/45682.
1276 * dwarf2read.c (partial_die_info): New fields fixup_called,
1277 linkage_name.
1278 (guess_partial_die_structure_name): Renamed from guess_structure_name.
1279 Move definition next to use. Use linkage_name to determine if class
1280 is in a namespace. All callers updated.
1281 (fixup_partial_die): Return early if already called.
1282 Set fixup_called when done.
1283 (guess_full_die_structure_name): New function.
1284 (determine_prefix): Call it for class/struct/union dies if c++ and
1285 .debug_types section is present and parent is DW_TAG_compile_unit.
1286
1287 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1288
1289 * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a.
1290 (sparc-*-rtems*): Delete. Now redundant with sparc-*-*.
1291
1292 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1293
1294 * NEWS: Announce Ravenscar Profile support.
1295
1296 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1297 Jerome Guitton <guitton@adacore.com>
1298
1299 * ravenscar-thread.c, ravenscar-thread.h, ravenscar-sparc-thread.c:
1300 New files.
1301 * configure.tgt (sparc-*-*): Add ravenscar-thread.o and
1302 ravenscar-sparc-thread.o to gdb_target_obs.
1303
1304 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1305
1306 * ada-tasks.c (iterate_over_live_ada_tasks): New function.
1307 * ada-lang.h (iterate_over_live_ada_tasks): Declare.
1308
1309 2010-09-27 Pierre Muller <muller@ics.u-strasbg.fr>
1310
1311 * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
1312 (amd64_windows_init_abi): Register amd64_skip_main_prologue as gdbarch
1313 skip_main_prologue method.
1314
1315 2010-09-27 Tom Tromey <tromey@redhat.com>
1316
1317 * dwarf2read.c (dwarf2_read_index): Only allow version 3.
1318 (write_psymbols): Add 'psyms_seen' and 'is_static' arguments.
1319 Only emit a given psymbol once.
1320 (struct signatured_type_index_data) <psyms_seen>: New field.
1321 (write_one_signatured_type): Update.
1322 (cleanup_htab): New function.
1323 (write_psymtabs_to_index): Update. Create psyms_seen hash. Bump
1324 version to 3.
1325 (save_gdb_index_command): Update index documentation.
1326
1327 2010-09-27 Tom Tromey <tromey@redhat.com>
1328
1329 * bcache.c (expand_hash_table): Use hash_function, not hash.
1330
1331 2010-09-27 Tom Tromey <tromey@redhat.com>
1332
1333 * gdb_wchar.h: Change minimum libiconv to 0x108.
1334
1335 2010-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1336
1337 Fix lost siginfo_t for inferior calls.
1338 * infrun.c
1339 (struct inferior_thread_state) <siginfo_gdbarch, siginfo_data>: New.
1340 (save_inferior_thread_state): New variables regcache, gdbarch and
1341 siginfo_data. Initialize SIGINFO_DATA if gdbarch_get_siginfo_type_p.
1342 Move INF_STATE allocation later, pre-clear it. Initialize REGISTERS
1343 using REGCACHE.
1344 (restore_inferior_thread_state): New variables regcache and gdbarch.
1345 Restore SIGINFO_DATA for matching GDBARCH. Restore REGISTERS using
1346 REGCACHE. Free also SIGINFO_DATA.
1347
1348 2010-09-24 Tom Tromey <tromey@redhat.com>
1349
1350 * dwarf2read.c (dw2_expand_symtabs_matching): Add missing
1351 MAYBE_SWAPs.
1352 (dw2_map_symbol_names): Likewise.
1353
1354 2010-09-24 Sami Wagiaalla <swagiaal@redhat.com>
1355
1356 * valops.c (find_oload_champ_namespace_loop): replace incorrect
1357 discard_cleanups do_cleanups.
1358
1359 2010-09-24 Pedro Alves <pedro@codesourcery.com>
1360
1361 PR gdb/11842
1362
1363 * amd64-linux-nat.c (compat_siginfo_from_siginfo)
1364 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
1365 si_code is < 0. Check for si_code == SI_TIMER before checking for
1366 si_code < 0.
1367
1368 2010-09-24 Pedro Alves <pedro@codesourcery.com>
1369
1370 * objfiles.h (ALL_OBJSECTIONS): Handle breaks in the inner loop.
1371
1372 2010-09-22 Joel Brobecker <brobecker@adacore.com>
1373
1374 * ada-tasks.c (read_atcb): Do not compute the task ptid when
1375 debugging a core file.
1376
1377 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1378
1379 Code cleanup.
1380 * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove.
1381 (free_objfile) <objfile->name != NULL>: Remove the conditional around
1382 xfree.
1383 * objfiles.h (struct objfile) <name>: New comment it is never NULL.
1384 * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>:
1385 Remove.
1386 * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name>
1387 Remove the conditional.
1388 * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
1389
1390 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1391
1392 * main.c: Include objfiles.h.
1393 (captured_main): New variable objfile. Call
1394 load_auto_scripts_for_objfile for ALL_OBJFILES.
1395
1396 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1397
1398 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
1399 DW_TAG_constant.
1400
1401 2010-09-22 Joel Brobecker <brobecker@adacore.com>
1402
1403 * dwarf2read.c (scan_partial_symbols): Add handling of
1404 DW_TAG_constant DIEs.
1405 (add_partial_symbol, load_partial_dies, new_symbol): Likewise.
1406
1407 2010-09-22 Joel Brobecker <brobecker@adacore.com>
1408
1409 * configure.ac: Add support for --enable-gdbserver.
1410 * configure: Regenerate.
1411
1412 2010-09-22 Sami Wagiaalla <swagiaal@redhat.com>
1413
1414 PR C++/12028
1415 * valops.c (find_oload_champ_namespace_loop): removed incorrect
1416 'old_cleanups' reassignment.
1417
1418 2010-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1419
1420 * charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
1421 characters.
1422
1423 2010-09-16 Phil Muldoon <pmuldoon@redhat.com>
1424
1425 PR mi/11407
1426 * mi/mi-cmd-stack.c (list_args_or_locals): Catch exceptions from
1427 read_var_value and common_val_print and print a warning.
1428
1429 2010-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1430
1431 * MAINTAINERS (GLOBAL MAINTAINERS) <Jan Kratochvil>: Move the entry to
1432 keep the list in alphabetical order. Use longer e-mail address.
1433
1434 2010-09-15 Tom Tromey <tromey@redhat.com>
1435
1436 * MAINTAINERS (GLOBAL MAINTAINERS): Add Jan Kratochvil.
1437
1438 2010-09-15 Tom Tromey <tromey@redhat.com>
1439
1440 * charset.c (iconv_open): New define.
1441 (iconv): Likewise.
1442 (iconv_close): Likewise.
1443 (phony_iconv_open): Add "phony_" prefix.
1444 (phony_iconv_close): Likewise.
1445 (phony_iconv): Likewise.
1446 * gdb_wchar.h: Check _LIBICONV_VERSION, __STDC_ISO_10646__.
1447 Change how INTERMEDIATE_ENCODING is defined.
1448
1449 2010-09-15 Doug Evans <dje@google.com>
1450
1451 * dwarf2read.c (struct die_info): Fix comment.
1452
1453 2010-09-15 Alan Modra <amodra@gmail.com>
1454
1455 PR 4606
1456 * gcore.c (gcore_create_callback): Clear SEC_HAS_CONTENTS rather
1457 than setting SEC_NEVER_LOAD on sections that need not be copied.
1458
1459 2010-09-14 Tom Tromey <tromey@redhat.com>
1460
1461 * psympriv.h (add_psymbol_to_list, init_psymbol_list)
1462 (start_psymtab_common, allocate_psymtab, discard_psymtab):
1463 Declare.
1464 * symfile.h (extend_psymbol_list): Remove.
1465 (add_psymbol_to_list, init_psymbol_list, start_psymtab_common)
1466 (allocate_psymtab, discard_psymtab): Move to psympriv.h.
1467 * psymtab.c (extend_psymbol_list): Move earlier. Now static.
1468
1469 2010-09-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1470
1471 * dwarf2read.c (dw2_map_ada_symtabs): Remove the internal_error.
1472 Update the comment.
1473
1474 2010-09-14 Tom Tromey <tromey@redhat.com>
1475
1476 PR symtab/8399:
1477 * dwarf2loc.c (locexpr_describe_location_piece): Don't call error
1478 for unrecognized frame base expression.
1479
1480 2010-09-14 Tom Tromey <tromey@redhat.com>
1481
1482 PR exp/11803:
1483 * value.c (value_static_field): Use value_of_variable.
1484
1485 2010-09-14 Pierre Muller <muller@ics.u-strasbg.fr>
1486
1487 * m32r-rom.c: Replace winsock.h with winsock2.h header.
1488 * remote-m32r-sdi.c: Replace winsock.h by winsock2.h.
1489
1490 2010-09-13 Sami Wagiaalla <swagiaal@redhat.com>
1491
1492 PR symtab/11992:
1493 * c-exp.y (classify_name): Check is_a_member_of_this before returning
1494 UNKNOWN_CPP_NAME.
1495
1496 2010-09-13 Joel Brobecker <brobecker@adacore.com>
1497
1498 * NEWS: Add x86-lynxos to the list of platforms supported by
1499 gdbserver.
1500
1501 2010-09-13 Joel Brobecker <brobecker@adacore.com>
1502
1503 * NEWS: Announce GDBserver support for version 5.x of ppc-lynxos.
1504
1505 2010-09-13 Tom Tromey <tromey@redhat.com>
1506
1507 * Makefile.in (HFILES_NO_SRCDIR): Add progspace.h.
1508
1509 2010-09-13 H.J. Lu <hongjiu.lu@intel.com>
1510
1511 * i386-tdep.c (i386_ymm_type): Set type name to
1512 builtin_type_vec256i.
1513
1514 2010-09-12 Michael Snyder <msnyder@vmware.com>
1515
1516 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1517
1518 2010-09-12 H.J. Lu <hongjiu.lu@intel.com>
1519
1520 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1521
1522 2010-09-11 H.J. Lu <hongjiu.lu@intel.com>
1523
1524 * amd64-tdep.c (amd64_register_name): Removed.
1525 (amd64_init_abi): Don't call set_gdbarch_register_name.
1526
1527 * i386-tdep.c (i386_ymmh_regnum_p): Make it static.
1528
1529 * i386-tdep.h (i386_ymmh_regnum_p): Removed.
1530
1531 2010-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1532 Paul Bolle <pebolle@tiscali.nl>
1533
1534 Redirect also uiout and stdtarg{,err} in execute_command_to_string.
1535 * cli-logging.c (struct saved_output_files) <targerr>: New.
1536 (set_logging_redirect, pop_output_files, handle_redirections):
1537 Redirect also gdb_stdtargerr.
1538 * defs.h (struct ui_out, make_cleanup_ui_out_redirect_pop): New
1539 declarations.
1540 * event-top.c (gdb_setup_readline, gdb_disable_readline): Redirect
1541 also gdb_stdtargerr.
1542 * top.c (execute_command_to_string): Move make_cleanup_ui_file_delete
1543 to the top. Redirect also gdb_stdlog, gdb_stdtarg and gdb_stdtargerr.
1544 Use ui_out_redirect, register make_cleanup_ui_out_redirect_pop.
1545 * tui/tui-io.c (tui_setup_io): Redirect also gdb_stdtargerr.
1546 * utils.c (do_ui_out_redirect_pop, make_cleanup_ui_out_redirect_pop):
1547 New functions.
1548
1549 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1550
1551 * hppa-tdep.c (unwind_command): Use host_address_to_string function
1552 to display a host address.
1553 * monitor.c (monitor_read_memory): Likewise.
1554 * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
1555
1556 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1557
1558 * coffread.c (struct coff_symbol): Change c_value type from `long' to
1559 `CORE_ADDRESS' as it might contain target addresses.
1560
1561 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1562
1563 * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
1564 before cast to pointer to avoid warning.
1565
1566 2010-09-09 Kevin Buettner <kevinb@redhat.com>
1567
1568 * v850-tdep.c (v850_gdbarch_init): Change the v850's `char'
1569 type to be signed.
1570
1571 2010-09-09 Ulrich Weigand <uweigand@de.ibm.com>
1572
1573 * dwarf2read.c (fixup_partial_die): Do not set dummy name for
1574 anonymous class partial DIEs.
1575
1576 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1577
1578 * dwarf2read.c (dwarf2_compute_name): Check that the first
1579 argument is a pointer.
1580
1581 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1582
1583 * dwarf2read.c (read_func_scope, read_structure_type)
1584 (read_common_block): Check for a NULL return from new_symbol.
1585
1586 2010-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1587
1588 * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
1589
1590 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1591
1592 * dwarf2read.c (read_structure_type): Move processing of
1593 fields and member functions from here...
1594 (process_structure_scope): ... to here.
1595
1596 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1597
1598 * gnu-v3-abi.c (gnuv3_print_method_ptr): Do not use
1599 the domain type.
1600 (gnuv3_make_method_ptr): Likewise.
1601
1602 2010-09-08 Tom Tromey <tromey@redhat.com>
1603
1604 * breakpoint.c (create_breakpoint): Add missing _().
1605
1606 2010-09-08 Doug Evans <dje@google.com>
1607
1608 * dwarf2-frame.h (dwarf2_frame_build_info): Delete, unused.
1609
1610 2010-09-08 Tom Tromey <tromey@redhat.com>
1611
1612 Revert:
1613 2010-09-01 Tom Tromey <tromey@redhat.com>
1614 * dwarf2read.c, gdbtypes.c, psymtab.c, symfile.h, symtab.c,
1615 symtab.h: Revert earlier change.
1616
1617 2010-09-09 Sami Wagiaalla <swagiaal@redhat.com>
1618
1619 * psymtab.c (add_psymbol_to_bcache): Initialize
1620 obj_section.
1621 memset psymbol.ginfo.value to 0.
1622
1623 2010-09-06 Pedro Alves <pedro@codesourcery.com>
1624
1625 * infrun.c (resume): Extend comment on ignoring single-step
1626 requests on vfork parents waiting for a vfork-done.
1627
1628 2010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1629 Pedro Alves <pedro@codesourcery.com>
1630
1631 * corelow.c (core_open): Use target_signal_from_host if CORE_GDBARCH
1632 is NULL.
1633 * fork-child.c (startup_inferior) <resume_signal>: Use enum
1634 target_signal type.
1635 * linux-nat.c (linux_nat_resume): Use target_signal_to_host before
1636 calling strsignal. Use enum target_signal type for saved_signo.
1637 (linux_handle_extended_wait) <signo>: Use enum target_signal type.
1638 (linux_nat_wait_1): Use enum target_signal type for signo. Use
1639 target_signal_to_host before calling strsignal.
1640 * remote-m32r-sdi.c (m32r_wait, m32r_detach): Replace 0 by
1641 TARGET_SIGNAL_0.
1642
1643 2010-09-06 Pedro Alves <pedro@codesourcery.com>
1644 Jan Kratochvil <jan.kratochvil@redhat.com>
1645
1646 * common/signals.c (ANY): Remove.
1647 (SET): No longer use ANY.
1648
1649 2010-09-06 Yao Qi <yao@codesourcery.com>
1650
1651 * infrunc(resume): When inferior is waiting_for_vfork_done,
1652 clear step and don't use displaced stepping.
1653
1654 2010-09-04 Daniel Jacobowitz <dan@codesourcery.com>
1655
1656 * breakpoint.c (can_use_hardware_watchpoint): Handle the first
1657 value specially.
1658
1659 2010-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1660
1661 Code cleanup - split print_stop_reason.
1662 * infrun.c (enum inferior_stop_reason): Remove.
1663 (print_stop_reason): Remove by splitting into ...
1664 (print_exited_reason, print_signal_exited_reason)
1665 (print_no_history_reason, print_signal_received_reason)
1666 (print_end_stepping_range_reason): ... these new functions. Update
1667 the preceding comment.
1668 (handle_inferior_event): Change the calls to print_exited_reason,
1669 print_signal_exited_reason, print_no_history_reason,
1670 print_signal_received_reason, print_end_stepping_range_reason.
1671 (handle_step_into_function, handle_step_into_function_backward):
1672 Change the calls to print_end_stepping_range_reason.
1673
1674 2010-09-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1675
1676 * breakpoint.c (save_breakpoints): Use RETURN_MASK_ALL.
1677 * cli-out.c: Include vec.h.
1678 (cli_field_fmt, cli_spaces, cli_text, cli_message, cli_flush): New
1679 variable stream, initialize it, use it.
1680 (cli_redirect): New function comment. Replace the stream and
1681 original_stream fields by the new streams field. Remove the
1682 original_stream != NULL conditional, assert error on NULL instead.
1683 (out_field_fmt, field_separator): New variable stream, initialize it, use it.
1684 (cli_out_data_ctor): Assert non-NULL stream. Replace the stream and
1685 original_stream fields by the new streams field.
1686 (cli_out_set_stream): Replace the stream field by the new streams
1687 field.
1688 * cli-out.h: Include vec.h.
1689 (ui_filep): New typedef, call DEF_VEC_P for it.
1690 (struct cli_ui_out_data): Replace the stream and original_stream
1691 fields by the new streams field.
1692 * cli/cli-logging.c (set_logging_redirect): Call ui_out_redirect with
1693 NULL first. Extend the comment.
1694 (handle_redirections): Call ui_out_redirect with output.
1695 * python/py-breakpoint.c (bppy_get_commands): Move ui_out_redirect
1696 calls outside of the TRY_CATCH block.
1697
1698 2010-09-03 Joel Brobecker <brobecker@adacore.com>
1699
1700 GDB 7.2 released.
1701
1702 2010-09-02 Joel Brobecker <brobecker@adacore.com>
1703
1704 Back out the following change:
1705 | 2010-06-29 Hui Zhu <teawater@gmail.com>
1706 | * record.c (set_record_pic_cmdlist,
1707 | show_record_pic_cmdlist): New variables.
1708 | (set_record_pic_command,
1709 | show_record_pic_command): New functions.
1710 | (record_pic_function, record_pic_line, record_pic_enum,
1711 | set_record_pic_type, record_pic_hide_nofunction,
1712 | record_pic_hide_nosource, record_pic_hide_same): New variables.
1713 | (record_pic_fputs): New function.
1714 | (function_list, node_list, edge_list): New struct.
1715 | (function_list, node_list, edge_list): New variables.
1716 | (record_pic_cleanups, record_pic_node,
1717 | record_pic_edge, cmd_record_pic): New functions.
1718 | (_initialize_record): Add new commands for record pic.
1719
1720 2010-09-02 Daniel Jacobowitz <dan@codesourcery.com>
1721
1722 * config.in, configure: Regenerated.
1723 * configure.ac: Check for waitpid.
1724 * ser-pipe.c (pipe_close): Wait for the program to exit.
1725
1726 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1727
1728 * cli/cli-logging.c: Include gdb_assert.h.
1729 (set_logging_overwrite): New function.
1730 (logging_redirect): New comment.
1731 (logging_no_redirect_file, set_logging_redirect)
1732 (pop_output_files) <logging_no_redirect_file>: New.
1733 (handle_redirections) <!logging_redirect>: New variable
1734 no_redirect_file. Remove file autoclose for tee_file_new. No longer
1735 discard cleanup for the close of former OUTPUT. Set
1736 LOGGING_NO_REDIRECT_FILE.
1737 (handle_redirections) <logging_redirect>: gdb_assert
1738 LOGGING_NO_REDIRECT_FILE.
1739 (show_logging_command) <logging_redirect handling>: Adjust messages
1740 for SAVED_FILENAME not NULL.
1741 (_initialize_cli_logging): Install set_logging_overwrite and
1742 set_logging_redirect.
1743
1744 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1745
1746 * iq2000-tdep.c (iq2000_scan_prologue): Initialize SAL.END.
1747
1748 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1749
1750 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT): Convert it to the no- form.
1751 (monitor.o): Replace $(INTERNAL_WARN_CFLAGS) by $(INTERNAL_CFLAGS) and
1752 add $(GDB_WARN_CFLAGS_NO_FORMAT).
1753 (printcmd.o): Replace $(INTERNAL_CFLAGS_BASE) by $(INTERNAL_CFLAGS).
1754
1755 2010-09-02 Yao Qi <yao@codesourcery.com>
1756
1757 * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
1758 number from a WIFSIGNALED status.
1759
1760 2010-09-01 Tom Tromey <tromey@redhat.com>
1761
1762 * symtab.h (lookup_type_symbol): Declare.
1763 * symtab.c (lookup_symbol_in_language_full): Rename from
1764 lookup_symbol_in_language. Add 'for_type' argument.
1765 (lookup_symbol_in_language): New function.
1766 (lookup_type_symbol): Likewise.
1767 (lookup_symbol_aux): Add 'for_type' argument.
1768 (match_symbol_aux): New function.
1769 (lookup_symbol_aux_symtabs): Use expand_one_symtab_matching.
1770 (match_transparent_type): New function.
1771 (basic_lookup_transparent_type): Use expand_one_symtab_matching.
1772 * symfile.h (struct quick_symbol_functions)
1773 <pre_expand_symtabs_matching>: Remove.
1774 <expand_one_symtab_matching>: New field.
1775 * psymtab.c (expand_one_symtab_matching_psymtabs): New function.
1776 (pre_expand_symtabs_matching_psymtabs): Remove.
1777 (psym_functions): Update.
1778 * gdbtypes.c (lookup_typename): Use lookup_type_symbol.
1779 * dwarf2read.c (dw2_lookup_symbol): Update comment.
1780 (dw2_pre_expand_symtabs_matching): Remove.
1781 (dw2_expand_one_symtab_matching): New function.
1782 (dwarf2_gdb_index_functions): Update.
1783
1784 2010-09-01 Joel Brobecker <brobecker@adacore.com>
1785
1786 * NEWS: Add entry announcing GDBserver support on powerpc-lynxos.
1787
1788 2010-09-01 Marc Khouzam <marc.khouzam@ericsson.com>
1789
1790 * mi/mi-main.c (mi_cmd_list_target_features): Add `reverse'
1791 as a feature reported by -list-target-features.
1792
1793 2010-09-01 Joel Brobecker <brobecker@adacore.com>
1794
1795 * features/Makefile (WHICH): Add rs6000/powerpc-32.
1796 (powerpc-32.o, powerpc-32.c): New rules.
1797 (clean): Also remove powerpc-32.c.
1798 * regformats/rs6000/powerpc-32.dat: Generate.
1799
1800 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
1801
1802 * symfile.c (reread_symbols): Use psymbol_bcache_free, and
1803 psymbol_bcache_init.
1804 * psymtab.h (psymbol_bcache_init): New function prototype.
1805 (psymbol_bcache_free): New function prototype.
1806 (psymbol_bcache_get_bcache): New function prototype.
1807 * psymtab.c (psymbol_bcache_init): New function.
1808 (psymbol_bcache_free): New function.
1809 (psymbol_bcache_full): New function.
1810 (psymbol_bcache_get_bcache): New function.
1811 (add_psymbol_to_bcache): use psymbol_bcache_full.
1812 * objfiles.h (psymbol_cache): Change type of psymbol_cache to
1813 psymbol_bcache.
1814 * symmisc.c (print_symbol_bcache_statistics): Updated.
1815 (print_objfile_statistics): Updated.
1816 * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
1817 psymbol_cache.
1818 (free_objfile): Use psymbol_bcache_free.
1819
1820 2010-08-31 Tom Tromey <tromey@redhat.com>
1821
1822 PR c++/11961:
1823 * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
1824 Don't set TYPE_NAME on the type.
1825
1826 2010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1827
1828 * infrun.c (set_exec_direction_func): Error out if target does not
1829 support reverse execution.
1830
1831 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1832
1833 Make linux_get_siginfo_type `type *' unique.
1834 * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
1835 (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
1836 (linux_get_siginfo_type): New variable linux_gdbarch_data. Initialize
1837 it. Use linux_gdbarch_data->siginfo_type as a persistent storage.
1838 (_initialize_linux_tdep): New.
1839
1840 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1841
1842 Code cleanup.
1843 * defs.h (find_memory_region_ftype): New typedef.
1844 (exec_set_find_memory_regions): Use it.
1845 * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
1846 * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
1847 * gcore.c (objfile_find_memory_regions): Likewise.
1848 * gnu-nat.c (gnu_find_memory_regions): Likewise.
1849 * linux-nat.c (linux_nat_find_memory_regions): Likewise.
1850 * procfs.c (iterate_over_mappings_cb_ftype): Remove.
1851 (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
1852 find_memory_region_ftype.
1853 (insert_dbx_link_bpt_in_region): Likewise.
1854 (iterate_over_mappings): Likewise. Drop the comment part about the
1855 function prototype.
1856 (find_memory_regions_callback): Use find_memory_region_ftype.
1857 (proc_find_memory_regions): Likewise.
1858 (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
1859 find_memory_region_ftype.
1860 * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
1861 * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
1862
1863 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
1864
1865 * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
1866 'static partial_symbol psymbol'.
1867 (psymbol_hash): New function.
1868 (psymbol_compare): New function.
1869 * bcache.c (hash_continue): New.
1870 (hash): Use hash_continue.
1871 * bcache.c: Add hash_function and compare_function
1872 pointers to bcache struct.
1873 (bcache_full): Use bcache->hash_function, and
1874 bcache->compare_function.
1875 (bcache_compare): New function.
1876 (bcache_xmalloc): Take hash_function and
1877 compare_function arguments and initialize the
1878 bcach's pointers.
1879 Updated comment.
1880 * objfiles.c (allocate_objfile): Updated.
1881 * symfile.c (reread_symbols): Updated.
1882 * python/py-type.c (typy_richcompare): Updated.
1883
1884 2010-08-30 Andre Poenitz <andre.poenitz@nokia.com>
1885 Tom Tromey <tromey@redhat.com>
1886
1887 PR python/11792:
1888 * python/py-value.c (valpy_get_dynamic_type): New function.
1889 (value_object_getset): Add "dynamic_type".
1890 (valpy_get_type): Fail on error.
1891
1892 2010-08-30 Yao Qi <yao@codesourcery.com>
1893
1894 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
1895 (arm_linux_syscall_next_pc): New.
1896 (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead.
1897 (arm_linux_init_abi): Initialize syscall_next_pc.
1898 * arm-tdep.c (thumb_get_next_pc_raw): Get next pc of SWI in Thumb mode.
1899 (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
1900 * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc.
1901 Declare arm_frame_is_thumb.
1902
1903 2010-08-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1904
1905 Code cleanup.
1906 * breakpoint.c (bpstat_alloc): Remove unused prototype.
1907 (bpstat_alloc): Change parameters cbs to bs_link_pointer. Adjust the
1908 code.
1909 (bpstat_stop_status): Change root_bs into bs_head and bs_link. Adjust
1910 calls of bpstat_alloc. Remove explicit bs chain termination.
1911
1912 2010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1913
1914 Code cleanup.
1915 * linux-nat.c (pull_pid_from_list): Rename status to statusp.
1916 (my_waitpid): Likewise.
1917
1918 2010-08-27 Doug Evans <dje@google.com>
1919
1920 * dwarf2read.c (dw2_require_line_header): Read from .debug_types
1921 as appropriate.
1922
1923 2010-08-27 Tom Tromey <tromey@redhat.com>
1924
1925 * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
1926 TYPE_FIELD_IGNORE_BITS.
1927
1928 2010-08-27 Doug Evans <dje@google.com>
1929
1930 * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
1931 the order they're defined in. munmap .debug_types buffer.
1932
1933 2010-08-26 Doug Evans <dje@google.com>
1934
1935 * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
1936 (dw2_forget_cached_source_info): Rename local cu to per_cu.
1937 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
1938 (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
1939 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
1940 (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
1941 (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
1942 (dwarf2_free_objfile, write_one_signatured_type): Ditto.
1943 (write_psymtabs_to_index): Ditto.
1944
1945 2010-08-26 Pedro Alves <pedro@codesourcery.com>
1946
1947 * NEWS: Mention libthread_db debugging with core files.
1948
1949 2010-08-26 Doug Evans <dje@google.com>
1950
1951 * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
1952 forward decl. Pass pst->dirname to dwarf_decode_lines.
1953 (psymtab_include_file_name): New function.
1954 (dwarf_decode_lines): Call it. Update comments.
1955
1956 2010-08-25 Pedro Alves <pedro@codesourcery.com>
1957
1958 * dwarf2read.c (inherit_abstract_dies): Handle origin die's
1959 compilation unit being different from target die's.
1960
1961 2010-08-24 Doug Evans <dje@google.com>
1962
1963 PR symtab/11942
1964 * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
1965 debug_types_type_hash.
1966 (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
1967 All uses updated.
1968 (lookup_die_type): Renamed from tag_type_to_tag. First look in
1969 appropriate type_hash table. All callers updated.
1970 (allocate_signatured_type_table): Renamed from
1971 allocate_signatured_type_hash_table. All callers updated.
1972 (create_signatured_type_table_from_index): Renamed from
1973 create_signatured_type_hash_from_index. All callers updated.
1974 (read_die_type): Add comment. Move actual reading to ...
1975 (read_die_type_1): ... here. New function.
1976 (follow_die_ref_or_sig): Tweak comment.
1977 (set_die_type): Rewrite to use appropriate choice of
1978 debug_info_type_hash or debug_types_type_hash.
1979 (get_die_type_at_offset): New function.
1980 (get_die_type): Call it.
1981
1982 2010-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1983
1984 * python/py-type.c (typy_richcompare): Initialize worklist.
1985
1986 2010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
1987 Kazu Hirata <kazu@codesourcery.com>
1988 Jonathan Larmour <jifl@eCosCentric.com>
1989
1990 * arm-tdep.c: Include features/arm-with-m.c.
1991 (arm_psr_thumb_bit): New. Update all uses of CPSR_T to
1992 call this function.
1993 (arm_pc_is_thumb): Add a gdbarch argument. Update all callers.
1994 Check is_m after force-mode.
1995 (arm_gdbarch_init): Check the binary before the target description.
1996 Add check for M profile attribute. If we have an M-profile device,
1997 but no target register description, use arm-with-m. Recognize the
1998 new org.gnu.gdb.arm.m-profile feature and its xpsr register.
1999 (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
2000 * arm-tdep.h (XPSR_T): Define.
2001 (struct gdbarch_tdep): Add is_m member.
2002 * features/arm-m-profile.xml, features/arm-with-m.c,
2003 features/arm-with-m.xml: New files.
2004
2005 2010-08-23 Doug Evans <dje@google.com>
2006
2007 * dwarf2read.c (read_structure_type): Add comment.
2008 (read_enumeration_type): Add comment.
2009 (process_enumeration_scope): Move definition of some locals
2010 closer to their use.
2011 (read_namespace_type): Add comment.
2012 (set_die_type): Fix typo in comment.
2013
2014 2010-08-23 Tom Tromey <tromey@redhat.com>
2015
2016 PR python/11145:
2017 * python/py-value.c: Include expression.h.
2018 (valpy_do_cast): New function.
2019 (valpy_cast): Use it.
2020 (valpy_dynamic_cast): New function.
2021 (valpy_reinterpret_cast): Likewise.
2022 (value_object_methods): Add dynamic_cast, reinterpret_cast.
2023
2024 2010-08-23 Tom Tromey <tromey@redhat.com>
2025
2026 PR python/11391:
2027 * python/py-value.c (valpy_nonzero): Don't throw error for other
2028 Value types.
2029
2030 2010-08-23 Tom Tromey <tromey@redhat.com>
2031
2032 PR python/10676:
2033 * python/py-type.c: Include bcache.h, vec.h.
2034 (struct type_equality_entry): New.
2035 (compare_strings): New function.
2036 (check_types_equal): Likewise.
2037 (check_types_worklist): Likewise.
2038 (typy_richcompare): Likewise.
2039 (type_object_type): Set tp_richcompare field.
2040
2041 2010-08-23 Tom Tromey <tromey@redhat.com>
2042
2043 PR python/10953:
2044 * python/py-type.c (typy_fields): Call check_typedef.
2045 (typy_template_argument): Add TRY_CATCH.
2046
2047 2010-08-23 Tom Tromey <tromey@redhat.com>
2048
2049 PR python/11915:
2050 * python/py-type.c (typy_array): New function.
2051 (type_object_methods): Add "array".
2052
2053 2010-08-20 Pedro Alves <pedro@codesourcery.com>
2054
2055 * python/python.c: Include "serial.h".
2056 (gdbpy_event_fds): Change type to `struct serial *' a array from
2057 int array.
2058 (gdbpy_run_events): Change parameters. Use serial_readchar in
2059 place of read.
2060 (gdbpy_post_event): Use serial_write in place of write.
2061 (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
2062 serial_async in place of add_file_handler.
2063
2064 2010-08-20 Pedro Alves <pedro@codesourcery.com>
2065
2066 * serial.h (gdb_pipe, serial_pipe): Declare.
2067 * serial.c (serial_interface_lookup): Take a const char pointer.
2068 (serial_fdopen): Rename to ...
2069 (serial_fdopen_ops): ... this. Add an OPS parameter and use it.
2070 Call the OPS' fdopen function if there is one.
2071 (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
2072 (serial_pipe): New.
2073 (struct serial_ops) <fdopen>: New field.
2074
2075 * ser-mingw.c (free_pipe_state):
2076 (free_pipe_state): Close output on non-pex pipes.
2077 (pipe_windows_fdopen): New.
2078 (gdb_pipe): New.
2079 (_initialize_ser_windows): Register pipe_windows_fdopen.
2080 * ser-go32.c (gdb_pipe): New.
2081 * ser-pipe.c (pipe_close): Close file descriptor even if there's
2082 no state pointer.
2083 (pipe_ops): Delete.
2084 (gdb_pipe): New.
2085
2086 2010-08-20 Keith Seitz <keiths@redhat.com>
2087
2088 PR symtab/11465:
2089 * dwarf2read.c (struct delayed_method_info): New struct.
2090 (struct dwarf2_cu): Add vector method_list.
2091 (scan_partial_symbols): Count methods for union, class, structure,
2092 and interface types.
2093 (add_to_method_list): New function.
2094 (free_delayed_list): New function.
2095 (compute_delayed_physnames): New function.
2096 (process_full_comp_unit): Make a cleanup for the CU's delayed
2097 physname list, compute the delayed physnames, and free the
2098 the list.
2099 (dwarf2_add_member_fn): For C++ and Java, delay the computation
2100 of the physname until after the CU is read.
2101
2102 * dwarf2read.c (read_structure_type): Check if the current
2103 DIE's type was already completed after dwarf2_full_name
2104 was called.
2105
2106 2010-08-19 Stan Shebs <stan@codesourcery.com>
2107
2108 * NEWS: Mention some additional changes.
2109
2110 2010-08-19 Tom Tromey <tromey@redhat.com>
2111
2112 * Makefile.in (install-python): Add DESTDIR.
2113
2114 2010-08-19 Doug Evans <dje@google.com>
2115
2116 PR exp/11926
2117 * parser-defs.h (parse_float, parse_c_float): Declare.
2118 * parse.c (parse_float, parse_c_float): New function.
2119 * c-exp.y (parse_number): Call parse_c_float.
2120 * objc-exp.y (parse_number): Ditto.
2121 * p-exp.y (parse_number): Ditto. Use ANSI/ISO-style definition.
2122 * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
2123
2124 2010-08-19 Joel Brobecker <brobecker@adacore.com>
2125
2126 * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
2127 the arguments in the correct order.
2128 * symtab.c (maybe_add_partial_symtab_filename): Declare
2129 the arguments in the correct order.
2130
2131 2010-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2132
2133 * varobj.c (varobj_create): Replace variable old_fi with old_id,
2134 initialize it by null_frame_id, wrap its usage by get_frame_id,
2135 frame_id_p and frame_find_by_id.
2136
2137 2010-08-18 Tom Tromey <tromey@redhat.com>
2138
2139 PR python/11900:
2140 * configure: Rebuild.
2141 * configure.ac: Add install-python to CONFIG_INSTALL.
2142 * Makefile.in (install-python): New.
2143
2144 2010-08-18 Doug Evans <dje@google.com>
2145
2146 * gdb_assert.h (gdb_assert_not_reached): New macro.
2147 (gdb_assert_fail): Fix typo in comment.
2148 * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
2149 gdb_assert (0).
2150 * darwin-nat.c (darwin_check_new_threads): Ditto.
2151 * dwarf2read.c (dwarf2_get_section_info): Ditto.
2152 (munmap_section_buffer): Ditto.
2153 * m32c-tdep.c (make_types): Ditto.
2154 (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
2155 * macroexp.c (get_character_constant): Ditto.
2156 (get_string_literal): Ditto.
2157 * mep-tdep.c (mep_pseudo_cr_size): Ditto.
2158 (mep_pseudo_cr_index, mep_register_type): Ditto.
2159 (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
2160 (mep_get_insn, mep_analyze_prologue): Ditto.
2161 * objfiles.c (qsort_cmp): Ditto.
2162 * prologue-value.c (pv_is_identical): Ditto.
2163 * record.c (record_get_loc): Ditto.
2164 * value.c (value_static_field): Ditto.
2165 * xtensa-tdep.c (call0_track_op): Ditto.
2166
2167 2010-08-18 Tom Tromey <tromey@redhat.com>
2168
2169 PR symtab/11919:
2170 * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
2171 * parse.c (parse_field_expression): Use RETURN_MASK_ERROR. Move
2172 name-copying lower. Document exception behavior.
2173 * completer.c (expression_completer): Catch exceptions from
2174 parse_field_expression.
2175
2176 2010-08-18 Pedro Alves <pedro@codesourcery.com>
2177
2178 PR corefile/8210
2179
2180 * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
2181 workaround on core files.
2182 (try_thread_db_load_1): Don't try enabling thread event reporting
2183 on core files.
2184 (thread_db_load): Allow thread_db on core files.
2185 (attach_thread): Don't check thread signals on core files, nor try
2186 really attaching to the thread, nor enabling thread event event
2187 reporting.
2188 (thread_db_detach): Don't try disabing thread event reporting or
2189 removing thread event breakpoints when debugging a core file.
2190 (find_new_threads_callback): Don't try enabling thread event
2191 reporting on core files.
2192 (thread_db_find_new_threads_2): Don't look for a stopped lwp when
2193 debugging a core file.
2194 (thread_db_find_new_threads): Don't update thread
2195 cores (processors) when debugging a core (dump).
2196
2197 2010-08-18 Pedro Alves <pedro@codesourcery.com>
2198
2199 PR corefile/8210
2200
2201 * corelow.c (add_to_thread_list): Don't use
2202 gdbarch_core_reg_section_encodes_pid. Use bfd_core_file_pid.
2203 (get_core_register_section): Don't use
2204 gdbarch_core_reg_section_encodes_pid.
2205
2206 * gdbarch.sh (core_reg_section_encodes_pid): Delete.
2207 * gdbarch.h, gdbarch.c: Regenerate.
2208 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
2209 gdbarch_core_reg_section_encodes_pid.
2210 * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
2211 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
2212 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
2213
2214 2010-08-18 Yao Qi <yao@codesourcery.com>
2215
2216 * MAINTAINERS : Add myself under Write After Approval.
2217
2218 2010-08-17 Tom Tromey <tromey@redhat.com>
2219
2220 * NEWS: Mention template parameter support.
2221
2222 2010-08-17 Pedro Alves <pedro@codesourcery.com>
2223
2224 PR breakpoints/11371
2225
2226 * breakpoint.c (decref_bp_location): Assert the reference count is
2227 sane.
2228
2229 2010-08-17 Pedro Alves <pedro@codesourcery.com>
2230
2231 PR breakpoints/11371
2232
2233 * breakpoint.c (breakpoint_init_inferior): Decrement the
2234 location's reference count instead of deleting right away.
2235 (bpstat_free): Decrement the location's reference count. Make
2236 static.
2237 (bpstat_copy): Increment the location's reference count.
2238 (bpstat_find_breakpoint): Adjust.
2239 (bpstat_num): Adjust.
2240 (print_it_typical): Adjust. Use the breakpoint pointer in the
2241 bpstat instead of the location's owner.
2242 (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
2243 Adjust to record the location's owner in the bpstat.
2244 (watchpoint_check): Use the breakpoint pointer in the bpstat
2245 instead of the location's owner.
2246 (bpstat_check_breakpoint_conditions): Don't handle
2247 bp_watchpoint_scope here. Use the breakpoint pointer in the
2248 bpstat instead of the location's owner.
2249 (bpstat_stop_status): Defer inferior function calls to after
2250 building the bpstat list. Handle bp_watchpoint_scope here. Use
2251 the breakpoint pointer in the bpstat instead of the location's
2252 owner.
2253 (bpstat_what): Use the breakpoint pointer in the bpstat instead of
2254 the location's owner.
2255 (free_bp_location): Don't walk bpstats clearing locations.
2256 (incref_bp_location): New.
2257 (decref_bp_location): New.
2258 (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
2259 instead of the location's owner.
2260 (update_global_location_list): Clear the location's owner, and
2261 decrement the location's reference count instead of deleting it
2262 right away.
2263 (breakpoint_retire_moribund): Decrement the location's reference
2264 count instead of deleting it right away.
2265 (bpstat_remove_bp_location): Delete.
2266 (bpstat_remove_breakpoint): New.
2267 (bpstat_remove_bp_location_callback): Delete.
2268 (bpstat_remove_breakpoint_callback): New.
2269 (delete_breakpoint): Iterate over all threads' stop_bpstat's
2270 clearing references to the breakpoint that is being deleted.
2271
2272 * breakpoint.h (struct bp_location) <refc>: New field.
2273 <owner>: Update comments.
2274 (bpstat_free): Delete declaration.
2275 (struct bpstats): Change the type of the breakpoint_at field to
2276 struct breakpoint point, from struct bp_location pointer. Add new
2277 field bp_location_at.
2278
2279 2010-08-16 Tom Tromey <tromey@redhat.com>
2280
2281 * NEWS: Fix typo.
2282
2283 2010-08-16 Tom Tromey <tromey@redhat.com>
2284
2285 * NEWS: Mention watch -location.
2286
2287 2010-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
2288
2289 * breakpoint.c (update_watchpoint): Add source empty line. Prefer
2290 EXP_STRING_REPARSE to EXP_STRING.
2291 (watch_command_1): Set also EXP_STRING_REPARSE.
2292 (delete_breakpoint): Free also EXP_STRING_REPARSE.
2293 * breakpoint.h (struct breakpoint): New field exp_string_reparse.
2294 Update comment for exp_string.
2295
2296 2010-08-16 Tom Tromey <tromey@redhat.com>
2297
2298 * value.c (release_value): Clear 'next' pointer.
2299 * breakpoint.c (watch_command_1): Add 'just_location' argument.
2300 (watch_command_wrapper): Update.
2301 (watch_maybe_just_location): New function.
2302 (watch_command): Update.
2303 (rwatch_command_wrapper): Update.
2304 (rwatch_command): Update.
2305 (awatch_command_wrapper): Update.
2306 (awatch_command): Update.
2307 (check_for_argument): New function.
2308 (_initialize_breakpoint): Update help text.
2309
2310 2010-08-14 Ulrich Weigand <uweigand@de.ibm.com>
2311
2312 * arm-tdep.c (arm_push_dummy_call): Handle pointers to
2313 typedef'ed function types correctly.
2314
2315 2010-08-13 Tom Tromey <tromey@redhat.com>
2316
2317 * python/python-internal.h (gdbpy_get_hook_function): Don't
2318 declare.
2319
2320 2010-08-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2321
2322 * cli/cli-logging.c (logging_overwrite, logging_redirect): Make them
2323 static.
2324
2325 2010-08-13 Ken Werner <ken.werner@de.ibm.com>
2326
2327 * python/python.c (gdbpy_solib_name): Remove the const qualifier of
2328 the format strings to be compatible with Python 2.4.
2329
2330 2010-08-13 Vladimir Prus <vladimir@codesourcery.com>
2331
2332 Easier and more stubborn MI memory read commands.
2333
2334 * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
2335 and data-write-memory-bytes.
2336 * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
2337 (mi_cmd_data_write_memory_bytes): New.
2338 * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
2339 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
2340 New.
2341 (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
2342 * target.c (target_read_until_error): Remove.
2343 (read_whatever_is_readable, free_memory_read_result_vector)
2344 (read_memory_robust): New.
2345 * target.h (target_read_until_error): Remove.
2346 (struct memory_read_result, free_memory_read_result_vector)
2347 (read_memory_robust): New.
2348
2349 2010-08-13 Hui Zhu <teawater@gmail.com>
2350
2351 * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
2352 (read_comp_unit): Initialize back_to.
2353
2354 2010-08-12 Daniel Jacobowitz <dan@codesourcery.com>
2355 Pedro Alves <pedro@codesourcery.com>
2356
2357 * dwarf2read.c: Include "c-lang.h" and "valprint.h".
2358 (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
2359 (struct partial_die_info) <has_template_arguments>: New field.
2360 <num_attrs>: Change type to unsigned char.
2361 <building_fullname>: New field.
2362 (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only
2363 allocate a CU if we don't have one already. Add a cleanup for the
2364 CU.
2365 (partial_die_full_name): Handle template arguments not in
2366 DW_AT_name.
2367 (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
2368 (load_full_comp_unit): Only allocate a CU if we don't have one
2369 already.
2370 (do_ui_file_peek_last): New.
2371 (dwarf2_compute_name): Handle template parameters not in
2372 DW_AT_name.
2373 (read_comp_unit): Read and free abbrevs if not read yet.
2374 (load_partial_dies): Handle template arguments not in DW_AT_name.
2375 (find_partial_die): If we have a CU, but no a partial dies yet,
2376 also read in the CU.
2377 (dwarf2_const_value_attr): New, abstracted out from
2378 dwarf2_const_value.
2379 (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
2380 dwarf2_const_value_attr.
2381 (determine_prefix): Detect and break loops created by RCVT's debug
2382 info.
2383 (maybe_queue_comp_unit): Bail out early if reading partial
2384 symbols.
2385 (follow_die_offset): Load full CU if we have no dies.
2386 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
2387 * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
2388
2389 2010-08-11 Tom Tromey <tromey@redhat.com>
2390 Phil Muldoon <pmuldoon@redhat.com>
2391
2392 * python/python.c (gdbpy_run_events): New function.
2393 (gdbpy_post_event): Likewise.
2394 (gdbpy_initialize_events): Likewise.
2395 (_initialize_python): Call gdbpy_initialize_events.
2396
2397 2010-08-11 Ken Werner <ken.werner@de.ibm.com>
2398
2399 * gdb/valarith.c (vector_binop): New function.
2400 (scalar_binop): Likewise.
2401 (value_binop): Call scalar_binop or vector_binop depending on the types.
2402 * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
2403 (evaluate_subexp_with_coercion): Add vector check to not convert vectors
2404 to pointers.
2405 * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
2406
2407 2010-08-11 Brad Roberts <braddr@puremagic.com>
2408
2409 * d-lang.c (extract_identifiers): Handle multiple digits.
2410
2411 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2412
2413 Code cleanup.
2414 * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
2415 Rename to dummy_frame_unwind.
2416 (dummy_frame_unwind): Remove.
2417 * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
2418 * frame-unwind.c (frame_unwind_init): Use address of
2419 dummy_frame_unwind and inline_frame_unwind.
2420 * frame.c (create_sentinel_frame): Use address of
2421 sentinel_frame_unwind.
2422 * inline-frame.c (inline_frame_unwinder): Rename to
2423 inline_frame_unwind.
2424 (inline_frame_unwind): Remove.
2425 * inline-frame.h (inline_frame_unwind): Reference directly the struct.
2426 * sentinel-frame.c (sentinel_frame_unwinder): Rename to
2427 sentinel_frame_unwind.
2428 (sentinel_frame_unwind): Remove.
2429 * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
2430 struct.
2431
2432 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2433
2434 Code cleanup.
2435 * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
2436 and returned value. New comment from frame-unwind.h.
2437 * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
2438 Extend the comment.
2439 * frame.c (get_frame_id, frame_unwind_register_value)
2440 (create_new_frame, get_prev_frame_1, frame_unwinder_is)
2441 (get_frame_type, frame_unwind_arch): Do not use the return value of
2442 frame_unwind_find_by_frame.
2443
2444 2010-08-11 Phil Muldoon <pmuldoon@redhat.com>
2445 Thiago Jung Bauermann <bauerman@br.ibm.com>
2446 Tom Tromey <tromey@redhat.com>
2447
2448 * python/python.c (gdbpy_solib_address): New function.
2449 (gdbpy_decode_line): Likewise.
2450
2451 2010-08-10 Tom Tromey <tromey@redhat.com>
2452
2453 Revert gdb-add-index addition:
2454 * Makefile.in (install-only): Don't install gdb-add-index.
2455 * gdb-add-index.sh: Remove.
2456
2457 2010-08-09 Kevin Buettner <kevinb@redhat.com>
2458
2459 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
2460 `target_has_execution' check with `to_has_memory' check.
2461 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
2462 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
2463 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
2464
2465 2010-08-09 Kevin Buettner <kevinb@redhat.com>
2466
2467 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
2468 (resume_siggnal, resume_step): Move these static globals...
2469 (struct sim_inferior_data): ...into this new struct.
2470 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
2471 New static globals.
2472 (gdb_callback, callbacks_initialized): Move these globals to
2473 a point earlier in the file.
2474 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
2475 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
2476 (gdbsim_close_inferior, gdbsim_resume_inferior)
2477 (gdbsim_stop_inferior): New functions.
2478 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
2479 New constants.
2480 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
2481 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
2482 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
2483 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
2484 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
2485 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
2486 new local variable `sim_data' in each of these functions. Use
2487 `sim_data' to reference former globals `program_loaded',
2488 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
2489 `resume_step'.
2490 (gdbsim_open): Remove local variable `argv'. Put results of call
2491 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
2492 make a cleanup for it. Free it though when a sim instance cannot
2493 be obtained.
2494 (gdbsim_close): Free sim_argv and null it out as appropriate.
2495 Close sim instances in all inferiors.
2496 (gdbsim_cntrl_c): Stop all inferiors.
2497 (gdbsim_wait):
2498 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
2499
2500 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2501
2502 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
2503 function after symbol construction is complete.
2504 Do the same for template symbol addition to template_symbols list.
2505
2506 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2507
2508 * symtab.c (symbol_get_demangled_name): Remove assertion and
2509 return NULL when language_specific.cplus_specific is not initialized.
2510 * stabsread.c (define_symbol): Set the name before calling
2511 cp_scan_for_anonymous_namespaces.
2512
2513 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2514
2515 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
2516 SYMBOL_SET_LANGUAGE.
2517 (symbol_init_language_specific): Renamed to symbol_set_language.
2518 * symtab.c (symbol_init_language_specific): Removed redundant check
2519 for language_cplus.
2520 Renamed to symbol_set_language.
2521 * stabsread.c (define_symbol): Updated.
2522 (read_enum_type): Updated
2523 * psymtab.c (add_psymbol_to_bcache): Updated.
2524 * minsyms.c (install_minimal_symbols): Updated.
2525 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
2526 SYMBOL_LANGUAGE to set the language.
2527 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
2528 * mdebugread.c (new_symbol): Ditto.
2529 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
2530 * dwarf2read.c (new_symbol_full): Ditto.
2531 * jv-lang.c (add_class_symbol): Ditto.
2532
2533 2010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2534
2535 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
2536 (make_cleanup_restore_page_info)
2537 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
2538 * gdbcmd.h (execute_command_to_string): New declaration.
2539 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
2540 (make_cleanup_restore_ui_file): Move to utils.c
2541 (execute_gdb_command) <to_string>: Move ...
2542 * top.c (execute_command_to_string): ... here. Call
2543 set_batch_flag_and_make_cleanup_restore_page_info.
2544 * utils.c (make_cleanup_restore_integer): New source file blank line.
2545 (make_cleanup_restore_uinteger): New.
2546 (struct restore_ui_file_closure, do_restore_ui_file)
2547 (make_cleanup_restore_ui_file): Move here from python/python.c.
2548 (init_page_info) <batch_flag>
2549 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
2550 (set_batch_flag_and_make_cleanup_restore_page_info): New.
2551
2552 2010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
2553
2554 * thread.c (add_thread_silent): Use null_ptid instead of
2555 minus_one_ptid while getting rid of stale inferior_ptid.
2556
2557 2010-08-06 Corinna Vinschen <vinschen@redhat.com>
2558
2559 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
2560 Throughout, call read_encoded_value with ptr_size rather than addr_size.
2561 (decode_frame_entry_1): Remove redundant setting of
2562 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
2563 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
2564 on examined frame section. Add comment to explain why.
2565 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
2566 comment to explain usage.
2567 * gdbarch.c: Regenerate.
2568 * gdbarch.h: Regenerate.
2569
2570 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
2571
2572 2010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2573
2574 Code cleanup.
2575 * varobj.c (varobj_create): Move variables fi, old_fi and block to
2576 a more inner block.
2577
2578 2010-08-05 Pedro Alves <pedro@codesourcery.com>
2579
2580 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
2581 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
2582 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
2583 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
2584 linux-tdep.o to gdb_target_obs.
2585
2586 2010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
2587
2588 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
2589 argument.
2590
2591 2010-08-05 Hui Zhu <teawater@gmail.com>
2592
2593 * mips-linux-tdep.c(regset.h): New include.
2594 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
2595 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
2596 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
2597 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
2598 mips_linux_regset_from_core_section): New functions.
2599 (fetch_core_registers, regset_core_fns): Deleted.
2600 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
2601 Deleted regset_core_fns.
2602 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
2603 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
2604 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
2605 and fpregset64.
2606
2607 2010-08-04 Pedro Alves <pedro@codesourcery.com>
2608
2609 * s390-tdep.c: Include linux-tdep.h.
2610 (s390_gdbarch_init): Call linux_init_abi.
2611
2612 2010-08-04 Pedro Alves <pedro@codesourcery.com>
2613
2614 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
2615 instead of printing "Thread" here.
2616 * linux-tdep.c: Include inferior.h.
2617 (linux_core_pid_to_str): New.
2618 (linux_init_abi): New.
2619 * linux-tdep.h (linux_init_abi): Declare.
2620 * alpha-linux-tdep.c: Include linux-tdep.h.
2621 (alpha_linux_init_abi): Call linux_init_abi.
2622 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
2623 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
2624 * frv-linux-tdep.c: Include linux-tdep.h
2625 (frv_linux_init_abi): Call linux_init_abi.
2626 * hppa-linux-tdep.c: Include linux-tdep.h
2627 (hppa_linux_init_abi): Call linux_init_abi.
2628 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
2629 * ia64-linux-tdep.c: Include linux-tdep.h.
2630 (ia64_linux_init_abi): Call linux_init_abi.
2631 * m32r-linux-tdep.c: Include linux-tdep.h.
2632 (m32r_linux_init_abi): Call linux_init_abi.
2633 * m68klinux-tdep.c: Include linux-tdep.h.
2634 (m68k_linux_init_abi): Call linux_init_abi.
2635 * microblaze-linux-tdep.c: Include linux-tdep.h.
2636 (microblaze_linux_init_abi): Call linux_init_abi.
2637 * mips-linux-tdep.c: Include linux-tdep.h.
2638 (mips_linux_init_abi): Call linux_init_abi.
2639 * mn10300-linux-tdep.c: Include linux-tdep.h.
2640 (am33_linux_init_osabi): Call linux_init_abi. Rename the
2641 'gdbinfo' parameter to 'info'.
2642 * ppc-linux-tdep.c: Include linux-tdep.h.
2643 (ppc_linux_init_abi): Call linux_init_abi.
2644 * sh-linux-tdep.c: Include linux-tdep.h.
2645 (sh_linux_init_abi): Call linux_init_abi.
2646 * sparc-linux-tdep.c: Include linux-tdep.h.
2647 (sparc32_linux_init_abi): Call linux_init_abi.
2648 * sparc64-linux-tdep.c: Include linux-tdep.h.
2649 (sparc64_linux_init_abi): Call linux_init_abi.
2650 * xtensa-linux-tdep.c: Include linux-tdep.h.
2651 (xtensa_linux_init_abi): Call linux_init_abi.
2652 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
2653 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
2654 callback.
2655
2656 2010-08-03 Doug Evans <dje@google.com>
2657
2658 * breakpoint.c (bpdisp_text): Constify bpdisps.
2659 * solib-svr4.c (solib_break_names): Constify.
2660 (bkpt_names, main_name_list): Constify.
2661 (match_main): Constify soname arg.
2662 (bfd_lookup_symbol): Remove unnecessary forward decl.
2663 Constify symname arg.
2664 (enable_break): Constify bkpt_namep.
2665 * symtab.c (search_symbols): Constify types, types2, types3, types4.
2666 (symtab_symbol_info): Constify classnames.
2667
2668 2010-08-03 Phil Muldoon <pmuldoon@redhat.com>
2669
2670 * NEWS: Document Python value inferior function calls.
2671
2672 2010-08-02 Doug Evans <dje@google.com>
2673
2674 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
2675
2676 2010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
2677
2678 * linux-thread-db.c (libthread_db_debug): New variable.
2679 (thread_db_find_new_threads_silently): Control verbosity with it.
2680 (try_thread_db_load_1, try_thread_db_load): Likewise.
2681 (find_new_threads_once): Likewise.
2682 (_initialize_thread_db): Set/show it.
2683
2684 2010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2685
2686 * common/signals.c (signals): Move the content to signals.def.
2687 Include it. Remove the INDENT comments.
2688
2689 2010-07-30 Tom Tromey <tromey@redhat.com>
2690
2691 * Makefile.in (install-only): Install gdb-add-index.
2692 * gdb-add-index.sh: New file.
2693
2694 2010-07-31 Renquan Cheng <crq@gcc.gnu.org>
2695
2696 * MAINTAINERS: Add myself for write after approval privileges.
2697
2698 2010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2699
2700 * symfile.c (addr_section_name): New function.
2701 (addrs_section_compar): Use it.
2702 (addr_info_make_relative): Use it. Move variable sect_name into a more
2703 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
2704
2705 2010-07-30 Tom Tromey <tromey@redhat.com>
2706
2707 * configure: Rebuild.
2708 * configure.ac: Add missing case for Python 2.7.
2709
2710 2010-07-29 DJ Delorie <dj@redhat.com>
2711
2712 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
2713 conditions.
2714
2715 2010-07-29 Pedro Alves <pedro@codesourcery.com>
2716
2717 * PROBLEMS: Remove mention of all problems.
2718
2719 2010-07-28 Pedro Alves <pedro@codesourcery.com>
2720
2721 PR build/11848
2722 * configure.ac: Check for wresize.
2723 * configure, config.in: Regenerate.
2724 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
2725 with HAVE_WRESIZE.
2726
2727 2010-07-28 Tom Tromey <tromey@redhat.com>
2728
2729 PR python/11060:
2730 * python/py-type.c (typy_legacy_template_argument): New function,
2731 extracted from typy_template_argument.
2732 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
2733 value when needed.
2734
2735 2010-07-28 Oleg Nesterov <oleg@redhat.com>
2736
2737 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
2738
2739 2010-07-27 Tom Tromey <tromey@redhat.com>
2740
2741 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
2742
2743 2010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
2744
2745 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
2746 handling DW_AT_object_pointer, and workaround GCC PR 43053.
2747
2748 2010-07-28 Tom Tromey <tromey@redhat.com>
2749
2750 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
2751
2752 2010-07-28 Joel Brobecker <brobecker@adacore.com>
2753
2754 * remote.c (remote_download_tracepoint): Add missing gettext markup.
2755 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
2756
2757 2010-07-28 Joel Brobecker <brobecker@adacore.com>
2758
2759 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
2760 down, just before the block that parse the breakpoint addr_string.
2761
2762 2010-07-28 Tom Tromey <tromey@redhat.com>
2763
2764 PR c++/9946:
2765 * symfile.c (reread_symbols): Clear template_symbols.
2766 * symtab.h (struct symbol) <is_cplus_template_function>: New
2767 field.
2768 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
2769 (struct template_symbol): New.
2770 * symtab.c (lookup_symbol_aux_local): Use
2771 cp_lookup_symbol_imports_or_template.
2772 * objfiles.h (struct objfile) <template_symbols>: New field.
2773 * objfiles.c (relocate_one_symbol): New function.
2774 (objfile_relocate1): Use it. Relocate isolated symbols.
2775 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
2776 template_arguments>: New fields.
2777 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
2778 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
2779 (TYPE_TEMPLATE_ARGUMENT): Likewise.
2780 (lookup_typename): Update.
2781 * gdbtypes.c (lookup_typename): Constify "block" argument.
2782 * dwarf2read.c: Include vec.h.
2783 (symbolp): New typedef.
2784 (read_func_scope): Read template arguments. Allocate a
2785 template_symbol when needed.
2786 (read_structure_type): Read template arguments.
2787 (new_symbol_full): New function, from new_symbol. Handle
2788 DW_TAG_template_type_param and DW_TAG_template_value_param.
2789 (new_symbol): Rewrite as wrapper.
2790 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
2791 * cp-namespace.c: Include language.h.
2792 (search_symbol_list): New function.
2793 (cp_lookup_symbol_imports_or_template): Likewise.
2794
2795 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
2796
2797 * tui/tui-win.c (make_visible_with_new_height): Resize and move
2798 the command window to the new size and position.
2799
2800 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
2801
2802 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
2803 coordinates.
2804
2805 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
2806
2807 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
2808 after a detecting a resize.
2809 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
2810 call.
2811
2812 2010-07-28 Pedro Alves <pedro@codesourcery.com>
2813
2814 * configure.ac: Check for resize_term.
2815 * configure, config.in: Regenerate.
2816
2817 2010-07-27 Joel Brobecker <brobecker@adacore.com>
2818
2819 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
2820
2821 2010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
2822
2823 * dwarf2read.c (read_string): Rename to ...
2824 (read_direct_string): ... this.
2825 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
2826 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
2827
2828 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2829
2830 * linux-nat.c (linux_nat_lp_status_is_event): New function.
2831 (count_events_callback, select_event_lwp_callback)
2832 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
2833
2834 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2835
2836 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
2837 (_initialize_ia64_linux_nat): Install it.
2838 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
2839 (linux_nat_set_status_is_event): New.
2840 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
2841 cancel_breakpoints_callback, linux_nat_filter_event)
2842 (linux_nat_wait_1): Use linux_nat_status_is_event.
2843 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
2844
2845 2010-07-27 Tom Tromey <tromey@redhat.com>
2846
2847 * NEWS: Mention labels, .gdb_index.
2848
2849 2010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
2850
2851 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
2852 "start,+length" form of arguments.
2853 * NEWS: Add "Changed commands" (disassemble) section for "Changes
2854 since GDB 7.1"; and merge two separated paragraphs of disassemble
2855 description in "Changes in GDB 7.0".
2856
2857 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2858
2859 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
2860 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
2861 (fputs_maybe_filtered): Do not do filtering also on
2862 ! INPUT_FROM_TERMINAL_P.
2863
2864 2010-07-27 Joel Brobecker <brobecker@adacore.com>
2865
2866 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
2867 in warning message.
2868
2869 2010-07-27 Phil Muldoon <pmuldoon@redhat.com>
2870
2871 * python/py-value.c (valpy_call): New Function.
2872
2873 2010-07-27 Ken Werner <ken.werner@de.ibm.com>
2874
2875 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
2876 types_list_elements variables.
2877
2878 2010-07-26 Tom Tromey <tromey@redhat.com>
2879
2880 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
2881 TLS with DW_OP_const4u or DW_OP_const8u.
2882
2883 2010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
2884
2885 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
2886 VSX registers contents.
2887
2888 2010-07-26 Jerome Guitton <guitton@adacore.com>
2889
2890 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
2891 its adress is null. Add comment to explain why.
2892 (new_symbol): Ditto.
2893
2894 2010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2895
2896 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
2897 the host signal first.
2898
2899 2010-07-23 Tom Tromey <tromey@redhat.com>
2900
2901 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
2902 type_comp_units>: New fields.
2903 (dw2_get_cu): New function.
2904 (create_cus_from_index): Remove unused argument.
2905 (create_signatured_type_hash_from_index): New function.
2906 (create_addrmap_from_index): Update.
2907 (dwarf2_read_index): Handle version 2.
2908 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
2909 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
2910 (dw2_print_stats, dw2_expand_all_symtabs)
2911 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
2912 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
2913 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
2914 (allocate_signatured_type_hash_table): New function.
2915 (add_signatured_type_cu_to_list): Likewise.
2916 (create_debug_types_hash_table): Use them. Set type_comp_units.
2917 (read_signatured_type): Ensure section data is available.
2918 (add_address_entry): Don't record empty ranges.
2919 (struct signatured_type_index_data): New.
2920 (write_one_signatured_type): New function.
2921 (write_psymtabs_to_index): Write type CUs.
2922 (save_gdb_index_command): Update comment.
2923 (process_type_comp_unit): Move inititalization of
2924 from_debug_types...
2925 (create_debug_types_hash_table): ... here.
2926
2927 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2928
2929 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
2930 cleanup and generating of gdb script to it.
2931 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
2932 and terminal size. Convert $tmpfile to a series of -ex-es.
2933
2934 2010-07-23 Keith Seitz <keiths@redhat.com>
2935
2936 * symtab.c (basic_lookup_transparent_type): Call pre-expand
2937 hook for STATIC_BLOCK types, too.
2938
2939 2010-07-23 Keith Seitz <keiths@redhat.com>
2940
2941 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
2942 and vector definition.
2943
2944 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2945
2946 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
2947
2948 2010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2949
2950 * dwarf2read.c: Include completer.h.
2951 (save_gdb_index_command): Use matching usage command name.
2952 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
2953 Set filename_completer for it.
2954
2955 2010-07-22 Tom Tromey <tromey@redhat.com>
2956
2957 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
2958 type signature's per-CU data.
2959
2960 2010-07-22 Pedro Alves <pedro@codesourcery.com>
2961
2962 * NEWS: Mention target reported shared libraries support by
2963 default.
2964
2965 2010-07-21 Pedro Alves <pedro@codesourcery.com>
2966
2967 PR symtab/11827
2968
2969 Revert:
2970 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
2971 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
2972 and DW_TAG_volatile_type.
2973 (new_symbol): Likewise.
2974
2975 2010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
2976
2977 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
2978 function symbols before overload resolution.
2979
2980 2010-07-21 Pedro Alves <pedro@codesourcery.com>
2981
2982 * breakpoint.c (bptype_string): New, abstracted out from
2983 print_one_breakpoint_location.
2984 (print_one_breakpoint_location): Adjust.
2985 (breakpoint_1): Adjust the type column width dynamically.
2986
2987 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2988
2989 * symfile.c (find_separate_debug_file_by_debuglink): Remove
2990 a gdb_assert call, new comment.
2991
2992 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2993
2994 * linux-nat.c (linux_handle_extended_wait): Handle case when
2995 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
2996
2997 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2998
2999 Code cleanup.
3000 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
3001 linux_nat_wait_1. Use always LP->STATUS afterwards.
3002
3003 2010-07-20 Hui Zhu <teawater@gmail.com>
3004
3005 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
3006 (inf_ptrace_attach): Ditto.
3007
3008 2010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3009
3010 Make core files the process_stratum.
3011 * corefile.c (core_target): New variable.
3012 (core_file_command): Remove variable t, use core_target.
3013 * corelow.c (core_ops): Make it static.
3014 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
3015 * defs.h (make_cleanup_unpush_target): New prototype.
3016 * gdbarch.h: Regenerate.
3017 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
3018 * gdbcore.h (core_target): New declaration.
3019 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
3020 variables ops_already_pushed and back_to. Use push_target,
3021 make_cleanup_unpush_target and discard_cleanups calls.
3022 * record.c (record_open): Replace core_stratum by a core_bfd check.
3023 * target.c (target_is_pushed): New function.
3024 (find_core_target): Remove.
3025 * target.h (enum strata) <core_stratum>: Remove.
3026 (target_is_pushed): New declaration.
3027 (find_core_target): Remove declaration.
3028 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
3029 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
3030
3031 2010-07-19 Hui Zhu <teawater@gmail.com>
3032
3033 * breakpoint.c (single_step_breakpoints_inserted): New
3034 function.
3035 * breakpoint.h (single_step_breakpoints_inserted): Extern.
3036 * infrun.c (maybe_software_singlestep): Add check code.
3037 * record.c (record_resume): Add code for software single step.
3038 (record_wait): Ditto.
3039
3040 2010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3041
3042 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
3043 a more inner block. Remove its unused declaration initializer.
3044
3045 2010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
3046
3047 * NEWS: Mention support for the new ptrace interface and hardware
3048 accelerated watchpoint conditions on powerpc-linux.
3049
3050 2010-07-16 Ozkan Sezer <sezeroz@gmail.com>
3051
3052 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
3053 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
3054 and host_address_to_string() and %s for pointers.
3055 (debug_to_remove_breakpoint): Likewise.
3056 (debug_to_region_ok_for_hw_watchpoint): Likewise.
3057 (debug_to_can_accel_watchpoint_condition): Likewise.
3058 (debug_to_stopped_data_address): Likewise.
3059 (debug_to_watchpoint_addr_within_range): Likewise.
3060 (debug_to_insert_hw_breakpoint): Likewise.
3061 (debug_to_remove_hw_breakpoint): Likewise.
3062 (debug_to_insert_watchpoint): Likewise.
3063 (debug_to_remove_watchpoint): Likewise.
3064
3065 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3066
3067 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
3068 argument.
3069 (cplus_specific): New struct.
3070 * symtab.c (symbol_set_demangled_name): Updated.
3071 Use cplus_specific for cplus symbols.
3072 (symbol_get_demangled_name): Retrive the name from the cplus_specific
3073 struct for cplus symbols.
3074 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
3075 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
3076 * symtab.c (symbol_init_cplus_specific): New function.
3077
3078 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3079
3080 * symtab.h (symbol_set_demangled_name): New function.
3081 (symbol_get_demangled_name): New function.
3082 * symtab.c (symbol_set_demangled_name): New function.
3083 (symbol_get_demangled_name): New function.
3084 (symbol_init_language_specific): Use demangled_name setter and getter.
3085 (symbol_set_names): Ditto.
3086 (symbol_natural_name): Ditto.
3087 (symbol_demangled_name): Ditto.
3088 * dwarf2read.c (new_symbol): Ditto.
3089
3090 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3091
3092 * symtab.h: Renamed cplus_specific to mangled_lang.
3093 * symtab.c (symbol_init_language_specific): Updated.
3094 (symbol_set_names): Updated.
3095 (symbol_natural_name): Updated.
3096 (symbol_demangled_name): Updated.
3097 * ada-lang.c (ada_decode_symbol): Updated.
3098 * dwarf2read.c (new_symbol): Updated.
3099
3100 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
3101
3102 * valops.c (value_assign): Do not call to value_coerce_to_target.
3103 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
3104
3105 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
3106
3107 * MAINTAINERS: Add myself for write after approval privileges.
3108
3109 2010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
3110
3111 * c-valprint.c (c_val_print): Add embedded_offset to address in
3112 call to val_print_array_elements.
3113
3114 2010-07-13 Tom Tromey <tromey@redhat.com>
3115
3116 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
3117
3118 2010-07-13 Tom Tromey <tromey@redhat.com>
3119
3120 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
3121 objfile.
3122
3123 2010-07-13 Tom Tromey <tromey@redhat.com>
3124
3125 * symfile.c (set_initial_language): Update.
3126 (deduce_language_from_filename): Argument type now const.
3127 * symtab.h (find_main_filename): Update.
3128 (deduce_language_from_filename): Update.
3129 * symtab.c (find_main_filename): Make result const.
3130 * dwarf2read.c (dw2_find_symbol_file): Change return type.
3131 * psymtab.c (find_symbol_file_from_partial): Change return type.
3132 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
3133 Make result const.
3134
3135 2010-07-13 Tom Tromey <tromey@redhat.com>
3136
3137 * breakpoint.c (save_cmdlist): No longer static.
3138 * gdbcmd.h (save_cmdlist): Declare.
3139 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
3140 OBJF_READNOW on objfile if readnow_symbol_files.
3141 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
3142 (elf_sym_fns_gdb_index): New global.
3143 * dwarf2read.c: Include exceptions.h.
3144 (offset_type): New.
3145 (struct mapped_index): New.
3146 (dwarf2_per_cu_data_ptr): New typedef.
3147 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
3148 New fields.
3149 (GDB_INDEX_SECTION): New define.
3150 (struct dwarf2_per_cu_quick_data): New.
3151 (struct dwarf2_per_cu_data) <objfile>: New field.
3152 <psymtab>: Removed.
3153 <v>: New field.
3154 (byte_swap): New function.
3155 (MAYBE_SWAP): New macro.
3156 (INDEX_SUFFIX): New macro.
3157 (dw2_do_instantiate_symtab): New function.
3158 (dw2_instantiate_symtab): Likewise.
3159 (create_cus_from_index): Likewise.
3160 (create_addrmap_from_index): Likewise.
3161 (mapped_index_string_hash): Likewise.
3162 (find_slot_in_mapped_hash): Likewise.
3163 (dwarf2_read_index): Likewise.
3164 (dw2_setup): Likewise.
3165 (dw2_require_line_header): Likewise.
3166 (dw2_require_full_path): Likewise.
3167 (dw2_find_last_source_symtab): Likewise.
3168 (dw2_forget_cached_source_info): Likewise.
3169 (dw2_lookup_symtab): Likewise.
3170 (dw2_lookup_symbol): Likewise.
3171 (dw2_do_expand_symtabs_matching): Likewise.
3172 (dw2_pre_expand_symtabs_matching): Likewise.
3173 (dw2_print_stats): Likewise.
3174 (dw2_dump): Likewise.
3175 (dw2_relocate): Likewise.
3176 (dw2_expand_symtabs_for_function): Likewise.
3177 (dw2_expand_all_symtabs): Likewise.
3178 (dw2_expand_symtabs_with_filename): Likewise.
3179 (dw2_find_symbol_file): Likewise.
3180 (dw2_map_ada_symtabs): Likewise.
3181 (dw2_expand_symtabs_matching): Likewise.
3182 (dw2_find_pc_sect_symtab): Likewise.
3183 (dw2_map_symbol_names): Likewise.
3184 (dw2_map_symbol_filenames): Likewise.
3185 (dw2_has_symbols): Likewise.
3186 (dwarf2_gdb_index_functions): New global.
3187 (dwarf2_initialize_objfile): New function.
3188 (process_psymtab_comp_unit): Update.
3189 (add_partial_subprogram): Likewise.
3190 (dwarf2_psymtab_to_symtab): Likewise.
3191 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
3192 (process_full_comp_unit): Update.
3193 (find_file_and_directory): New function.
3194 (read_file_scope): Use find_file_and_directory.
3195 (dwarf2_per_cu_objfile): Update.
3196 (dwarf2_per_cu_addr_size): Update.
3197 (dwarf2_per_cu_offset_size): Update.
3198 (dwarf2_free_objfile): Free the index, if needed.
3199 (dwarf2_per_objfile_free): Unmap the index, if needed.
3200 (struct strtab_entry): New.
3201 (hash_strtab_entry): New function.
3202 (eq_strtab_entry): Likewise.
3203 (create_strtab): Likewise.
3204 (add_string): Likewise.
3205 (struct symtab_index_entry): New.
3206 (struct mapped_symtab): New.
3207 (hash_symtab_entry): New function.
3208 (eq_symtab_entry): Likewise.
3209 (delete_symtab_entry): Likewise.
3210 (create_index_table): Likewise.
3211 (create_mapped_symtab): Likewise.
3212 (cleanup_mapped_symtab): Likewise.
3213 (find_slot): Likewise.
3214 (hash_expand): Likewise.
3215 (add_index_entry): Likewise.
3216 (add_indices_to_cpool): Likewise.
3217 (write_hash_table): Likewise.
3218 (add_address_entry): Likewise.
3219 (write_psymbols): Likewise.
3220 (write_obstack): Likewise.
3221 (unlink_if_set): Likewise.
3222 (write_psymtabs_to_index): Likewise.
3223 (save_gdb_index_command): Likewise.
3224 (_initialize_dwarf2_read): Install "save gdb-index"
3225 command.
3226 (create_all_comp_units): Initialize 'objfile' field of CU.
3227 (dwarf2_locate_sections): Check for .gdb_index.
3228 * psymtab.h (dwarf2_gdb_index_functions): Declare.
3229 * symfile.h (dwarf2_initialize_objfile): Declare.
3230
3231 2010-07-13 Tom Tromey <tromey@redhat.com>
3232
3233 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
3234 (basic_lookup_transparent_type): Likewise.
3235 * symfile.h (struct quick_symbol_functions)
3236 <pre_expand_symtabs_matching>: New field.
3237 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
3238 (psym_functions): Update.
3239
3240 2010-07-13 Tom Tromey <tromey@redhat.com>
3241
3242 PR breakpoints/8357:
3243 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
3244 * linespec.c (decode_line_1): Update comment. Call decode_label.
3245 (decode_label): New function.
3246 (symbol_found): Handle LOC_LABEL.
3247 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
3248 domain. Call add_symbol_to_list.
3249
3250 2010-07-13 Tom Tromey <tromey@redhat.com>
3251
3252 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
3253 * dwarf2loc.c (find_location_expression): Use
3254 dwarf2_per_cu_text_offset.
3255 (dwarf2_evaluate_loc_desc): Likewise.
3256 (dwarf2_loc_desc_needs_frame): Likewise.
3257 (compile_dwarf_to_ax): Likewise.
3258 (loclist_describe_location): Likewise.
3259 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
3260 (dwarf2_per_cu_objfile): Update comment.
3261
3262 2010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
3263
3264 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
3265 * p-lang.c (pascal_printstr): Likewise.
3266
3267 2010-07-09 Tom Tromey <tromey@redhat.com>
3268
3269 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
3270 'hint' if it is NULL.
3271
3272 2010-07-09 Hui Zhu <teawater@gmail.com>
3273
3274 * source.c (print_source_lines_base): Add check for noprint.
3275
3276 2010-07-08 Joel Brobecker <brobecker@adacore.com>
3277
3278 * python/python-config.py: Resync with Python 2.7 version of this
3279 script.
3280
3281 2010-07-08 Joel Brobecker <brobecker@adacore.com>
3282
3283 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
3284
3285 2010-07-07 Joel Brobecker <brobecker@adacore.com>
3286
3287 * NEWS: Create a new section for the next release branch.
3288 Rename the section of the current branch, now that it has
3289 been cut.
3290
3291 2010-07-07 Joel Brobecker <brobecker@adacore.com>
3292
3293 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
3294 * version.in: Bump version to 7.2.50.20100707-cvs.
3295
3296 2010-07-07 Tom Tromey <tromey@redhat.com>
3297
3298 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
3299 LOC_COMPUTED symbol.
3300 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
3301 (dwarf2_loc_desc_needs_frame): Likewise.
3302 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
3303 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
3304 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
3305 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
3306 'offset' argument.
3307 (struct dwarf2_frame_cache) <text_offset>: New field.
3308 (dwarf2_frame_cache): Set new field.
3309 (dwarf2_frame_prev_register): Update.
3310 (dwarf2_frame_sniffer): Update.
3311 (dwarf2_frame_base_sniffer): Update.
3312 (dwarf2_frame_find_fde): Add 'out_offset' argument.
3313
3314 2010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
3315 Thiago Jung Bauermann <bauerman@br.ibm.com>
3316
3317 Support for hw accelerated condition watchpoints in booke powerpc.
3318
3319 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
3320 and move to eval.c. Change callers.
3321 (insert_bp_location): Pass watchpoint condition in
3322 target_insert_watchpoint.
3323 (remove_breakpoint_1) Pass watchpoint condition in
3324 target_remove_watchpoint.
3325 (watchpoint_locations_match): Call
3326 target_can_accel_watchpoint_condition.
3327 * eval.c: Include wrapper.h.
3328 (fetch_subexp_value): Moved from breakpoint.c.
3329 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
3330 Formatting fix.
3331 (can_use_watchpoint_cond_accel): New function.
3332 (calculate_dvc): Likewise.
3333 (num_memory_accesses): Likewise.
3334 (check_condition): Likewise.
3335 (ppc_linux_can_accel_watchpoint_condition): Likewise
3336 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
3337 check_condition and calculate_dvc.
3338 (ppc_linux_remove_watchpoint): Likewise.
3339 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
3340 ppc_linux_can_accel_watchpoint_condition
3341 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
3342 condition.
3343 (debug_to_remove_watchpoint): Likewise.
3344 (debug_to_can_accel_watchpoint_condition): New function.
3345 (update_current_target): Set to_can_accel_watchpoint_condition.
3346 (setup_target_debug): Set to_can_accel_watchpoint_condition.
3347 * target.h: Add opaque declaration for struct expression.
3348 (struct target_ops) <to_insert_watchpoint>,
3349 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
3350 <to_can_accel_watchpoint_condition>: New member.
3351 condition. Update all callers and implementations.
3352 (target_can_accel_watchpoint_condition): New macro.
3353 * value.c (free_value_chain): New function.
3354 * value.h (fetch_subexp_value): New prototype.
3355 (free_value_chain): Likewise.
3356
3357 2010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
3358
3359 * linux-nat.c (linux_nat_do_thread_registers): Use section size
3360 from gdbarch_core_regset_sections also for .reg if present.
3361
3362 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
3363 section size for .reg.
3364 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
3365 (ppc_linux_vmx_regset_sections): Likewise.
3366 (ppc_linux_fp_regset_sections): Likewise.
3367 (ppc64_linux_vsx_regset_sections): New variable.
3368 (ppc64_linux_vmx_regset_sections): Likewise.
3369 (ppc64_linux_fp_regset_sections): Likewise.
3370 (ppc_linux_init_abi): Install core_regset_section lists appropriate
3371 for current word size.
3372
3373 2010-07-06 Joel Brobecker <brobecker@adacore.com>
3374
3375 * server.c (myresume): Make static.
3376
3377 2010-07-06 Tom Tromey <tromey@redhat.com>
3378
3379 * configure, config.in: Rebuild.
3380 * configure.ac (HAVE_LIBPYTHON2_7): New define.
3381 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
3382
3383 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
3384
3385 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
3386 "clear".
3387
3388 2010-07-06 Ken Werner <ken.werner@de.ibm.com>
3389
3390 * gdbtypes.h (floatformats_ieee_half): Add declaration.
3391 * gdbtypes.c (floatformats_ieee_half): New variable.
3392 * doublest.c (floatformat_from_length): Set format to
3393 gdbarch_half_format if length matches.
3394 * gdbarch.sh (half_bit): New architecture method.
3395 (half_format): Likewise.
3396 * gdbarch.h: Regenerate.
3397 * gdbarch.c: Likewise.
3398
3399 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3400 Joel Brobecker <brobecker@adacore.com>
3401
3402 Fix re-run of PIE executable, PR shlibs/11776.
3403 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
3404 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
3405
3406 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3407 Joel Brobecker <brobecker@adacore.com>
3408
3409 * auxv.c (memory_xfer_auxv): Update attach comment.
3410 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
3411 svr4_relocate_main_executable.
3412 (svr4_solib_create_inferior_hook): Make the call to
3413 svr4_relocate_main_executable unconditional.
3414
3415 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3416 Joel Brobecker <brobecker@adacore.com>
3417
3418 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
3419
3420 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3421 Joel Brobecker <brobecker@adacore.com>
3422
3423 Fix attaching to PIEs prelinked on the disk after the process was
3424 started.
3425 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
3426 Verify it against bfd_get_arch_size. Try to match arbitrary
3427 displacement for the phdrs comparison.
3428
3429 2010-07-02 Tom Tromey <tromey@redhat.com>
3430
3431 PR exp/11780:
3432 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
3433 value as optimized-out.
3434
3435 2010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
3436 Thiago Jung Bauermann <bauerman@br.ibm.com>
3437
3438 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
3439 represent?" question in comment. Change comment to a proper sentence.
3440
3441 2010-07-02 Ken Werner <ken.werner@de.ibm.com>
3442
3443 * c-valprint.c (c_val_print): Fix printing of character vectors.
3444
3445 2010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3446
3447 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
3448 create_breakpoint prototype.
3449
3450 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3451
3452 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
3453 usefulness suggestion of multiple breakpoints at same location.
3454
3455 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3456
3457 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
3458
3459 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3460
3461 * dwarf2loc.c (locexpr_tracepoint_var_ref)
3462 (loclist_tracepoint_var_ref): Handle optimized out values.
3463
3464 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3465
3466 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
3467 unnecessary space in string.
3468 * filesystem.c (_initialize_filesystem): Ditto.
3469 * frame.c (_initialize_frame): Ditto.
3470 * infcmd.c (step_once): Ditto.
3471 * infrun.c (_initialize_infrun): Ditto.
3472 * linux-nat.c (linux_child_follow_fork): Ditto.
3473 * maint.c (maintenance_deprecate): Ditto.
3474 * memattr.c (_initialize_mem): Ditto.
3475 * mips-tdep.c (_initialize_mips_tdep): Ditto.
3476 * monitor.c (monitor_open): Ditto.
3477 * procfs.c (procfs_xfer_memory): Ditto.
3478 * reverse.c (bookmarks_info): Ditto.
3479 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
3480 * stack.c (_initialize_stack): Ditto.
3481 * tracepoint.c (_initialize_tracepoint): Ditto.
3482 * xtensa-tdep.c (xtensa_supply_gregset,
3483 xtensa_regset_from_core_section): Ditto.
3484
3485 2010-07-01 Tom Tromey <tromey@redhat.com>
3486
3487 * value.h (struct lval_funcs) <check_any_valid>: Rename from
3488 check_all_valid.
3489 * value.c (value_entirely_optimized_out): Invert result. Update
3490 for new function name.
3491
3492 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3493
3494 Static tracepoints support.
3495
3496 * NEWS: Mention new support for static tracepoints.
3497 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
3498 qXfer:statictrace:read.
3499 (New features in the GDB remote stub, GDBserver): Mention static
3500 tracepoints support using an UST based backend.
3501 (New commands): Mention "info static-tracepoint-markers" and
3502 "strace".
3503 * breakpoint.c (is_marker_spec): New.
3504 (is_tracepoint): Handle static tracepoints.
3505 (validate_commands_for_breakpoint): Static tracepoints can't do
3506 while-stepping.
3507 (static_tracepoints_here): New.
3508 (bpstat_what): Handle static tracepoints.
3509 (print_one_breakpoint_location, allocate_bp_location, mention):
3510 Ditto.
3511 (create_breakpoint_sal): Ditto.
3512 (decode_static_tracepoint_spec): New.
3513 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
3514 `type_wanted'. Adjust. Handle static tracepoint marker
3515 locations.
3516 (break_command_1): Adjust.
3517 (update_static_tracepoint): New.
3518 (update_breakpoint_locations): Handle static tracepoints.
3519 (breakpoint_re_set_one): Handle static tracepoint marker
3520 locations.
3521 (disable_command, enable_command): Handle static tracepoints.
3522 (trace_command, ftrace_command): Adjust.
3523 (strace_command): New.
3524 (create_tracepoint_from_upload): Adjust.
3525 (save_breakpoints): Handle static tracepoints.
3526 (_initialize_breakpoint): Install the "strace" command.
3527 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
3528 (struct breakpoint): New fields static_trace_marker_id and
3529 static_trace_marker_id_idx.
3530 (breakpoints_here_p): Declare.
3531 (create_breakpoint): Adjust.
3532 (static_tracepoints_here): Declare.
3533 * remote.c (struct remote_state) <static_tracepoints>: New field.
3534 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
3535 (remote_static_tracepoint_marker_at): New.
3536 (remote_static_tracepoint_markers_by_strid): New.
3537 (remote_static_tracepoint_feature): New.
3538 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
3539 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
3540 (remote_supports_static_tracepoints): New.
3541 (remote_download_tracepoint): Download static tracepoints.
3542 (init_remote_ops): Install remote_static_tracepoint_marker_at and
3543 remote_static_tracepoint_markers_by_strid.
3544 (_initialize_remote): Install set|show remote static-tracepoints,
3545 and set|show remote read-sdata-object commands.
3546 * target.c (update_current_target): Inherit and default
3547 to_static_tracepoint_marker_at, and
3548 to_static_tracepoint_markers_by_strid.
3549 * target.h (static_tracepoint_marker): Forward declare.
3550 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
3551 (static_tracepoint_marker_p): New typedef.
3552 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
3553 (struct target_ops): New fields to_static_tracepoint_marker_at and
3554 to_static_tracepoint_markers_by_strid.
3555 (target_static_tracepoint_marker_at)
3556 (target_static_tracepoint_markers_by_strid): New.
3557 * tracepoint.c: Include source.h.
3558 (validate_actionline): Handle $_sdata.
3559 (struct collection_list): New field strace_data.
3560 (add_static_trace_data): New.
3561 (clear_collection_list): Clear strace_data.
3562 (stringify_collection_list): Account for a possible static trace
3563 data collection.
3564 (encode_actions_1): Encode an $_sdata collection.
3565 (parse_tracepoint_definition): Handle static tracepoints.
3566 (parse_static_tracepoint_marker_definition): New.
3567 (release_static_tracepoint_marker): New.
3568 (print_one_static_tracepoint_marker): New.
3569 (info_static_tracepoint_markers_command): New.
3570 (sdata_make_value): New.
3571 (_initialize_tracepoint): Create the $_sdata convenience variable.
3572 Add the "info static-tracepoint-markers" command.
3573 Mention $_sdata in the "collect" command's help output.
3574 * tracepoint.h (struct static_tracepoint_marker): New.
3575 (parse_static_tracepoint_marker_definition)
3576 (release_static_tracepoint_marker): Declare.
3577 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
3578 * python/py-breakpoint.c (bppy_new): Adjust.
3579
3580 2010-06-30 Joel Brobecker <brobecker@adacore.com>
3581
3582 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
3583 including Python.h.
3584
3585 2010-06-29 Doug Evans <dje@google.com>
3586
3587 PR gdb/11702
3588 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
3589 DW_AT_external is present.
3590
3591 PR gdb/11702
3592 * NEWS: Add entry.
3593 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
3594 create a symbol for the field and record the value.
3595 (new_symbol): Handle DW_TAG_member.
3596 * gdbtypes.c (field_is_static): Remove FIXME.
3597 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
3598 only ignore LOC_CONST symbols that are enums.
3599
3600 * dwarf2read.c: Remove trailing whitespace.
3601
3602 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
3603 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
3604 (struct main_type, field loc): Delete dwarf_block.
3605 (FIELD_DWARF_BLOCK): Delete.
3606 (SET_FIELD_DWARF_BLOCK): Delete.
3607 (TYPE_FIELD_DWARF_BLOCK): Delete.
3608 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
3609 Update.
3610
3611 2010-06-29 Hui Zhu <teawater@gmail.com>
3612
3613 * record.c (set_record_pic_cmdlist,
3614 show_record_pic_cmdlist): New variables.
3615 (set_record_pic_command,
3616 show_record_pic_command): New functions.
3617 (record_pic_function, record_pic_line, record_pic_enum,
3618 set_record_pic_type, record_pic_hide_nofunction,
3619 record_pic_hide_nosource, record_pic_hide_same): New variables.
3620 (record_pic_fputs): New function.
3621 (function_list, node_list, edge_list): New struct.
3622 (function_list, node_list, edge_list): New variables.
3623 (record_pic_cleanups, record_pic_node,
3624 record_pic_edge, cmd_record_pic): New functions.
3625 (_initialize_record): Add new commands for record pic.
3626
3627 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3628
3629 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
3630 ALLOCATE_CPLUS_STRUCT_TYPE.
3631
3632 2010-06-28 Phil Muldoon <pmuldoon@redhat.com>
3633 Tom Tromey <tromey@redhat.com>
3634 Thiago Jung Bauermann <bauerman@br.ibm.com>
3635
3636 * value.c (pack_unsigned_long): New function.
3637 (value_from_ulongest): New function.
3638 * value.h (value_from_ulongest): Declare.
3639 * python/python.c (_initialize_python): Call
3640 gdbpy_initialize_thread and gdbpy_initialize_inferior.
3641 * python/python-internal.h: Define thread_object.
3642 (gdbpy_inferiors, gdbpy_selected_thread)
3643 (frame_info_to_frame_object, create_thread_object)
3644 (find_thread_object, find_inferior_object)
3645 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
3646 (gdbpy_is_value_object, get_addr_from_python): Declare.
3647 * python/py-value.c (builtin_type_upylong): Define.
3648 (convert_value_from_python): Add logic for ulongest.
3649 (gdbpy_is_value_object): New function.
3650 * python/py-utils.c (get_addr_from_python): New function.
3651 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
3652 (gdbpy_selected_frame): Use PyObject over frame_info.
3653 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
3654 py-infthread.
3655 (SUBDIR_PYTHON_SRCS): Likewise.
3656 (py-inferior.o): New Rule.
3657 (py-infthread.o): New Rule.
3658 * python/py-inferior.c: New File.
3659 * python/py-infthread.c: New File.
3660
3661 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3662
3663 * c-typeprint.c (c_type_print_base): For no fields check include also
3664 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
3665 * dwarf2read.c (struct typedef_field_list)
3666 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
3667 (dwarf2_add_typedef): New.
3668 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
3669 Copy also FI.TYPEDEF_FIELD_LIST.
3670 * gdbtypes.h (struct typedef_field)
3671 (struct cplus_struct_type) <typedef_field, typedef_field_count>
3672 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
3673 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
3674
3675 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3676
3677 * cp-namespace.c (cp_lookup_nested_type): New variable
3678 concatenated_name. Turn the current return condition into a reverse
3679 one. Call also lookup_static_symbol_aux on the constructed qualified
3680 name.
3681 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
3682 other files into a called ...
3683 (lookup_static_symbol_aux): ... new function here.
3684 * symtab.h (lookup_static_symbol_aux): New prototype.
3685 * valops.c (value_maybe_namespace_elt): Call also
3686 lookup_static_symbol_aux if we failed otherwise.
3687
3688 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3689
3690 Fix PR c++/11703 and PR gdb/1448.
3691 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
3692 FIRST_ITER check.
3693
3694 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3695
3696 Fix modification of cplus_struct_default.
3697 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
3698 Call ALLOCATE_CPLUS_STRUCT_TYPE.
3699 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
3700
3701 2010-06-28 Joel Brobecker <brobecker@adacore.com>
3702
3703 * NEWS: Add entry announcing the python directory.
3704
3705 2010-06-28 Tom Tromey <tromey@redhat.com>
3706
3707 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
3708
3709 2010-06-28 Doug Evans <dje@google.com>
3710
3711 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
3712 All callers updated.
3713
3714 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3715
3716 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
3717 obstack_begin after each obstack_free.
3718
3719 2010-06-27 Doug Evans <dje@google.com>
3720
3721 * value.c (value_static_field): Use `switch' instead of `if'.
3722 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
3723
3724 * valops.c (search_struct_field): Fix typo in error message.
3725
3726 2010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
3727
3728 * dwarf2expr.c (execute_stack_op): Place preprocessor
3729 directives at the start of the source line.
3730
3731 2010-06-25 Paul Hilfinger <hilfinger@adacore.com>
3732
3733 * defs.h (make_command_stats_cleanup): Declare.
3734 (set_display_time): Declare.
3735 (set_display_space): Declare.
3736 * event-top.c (command_handler): Use make_command_stats_cleanup.
3737 * main.c (display_time, display_space): Move definitions to utils.c.
3738 (captured_main): Use make_command_stats_cleanup to get start-up
3739 statistics.
3740 Use set_display_time and set_display_space for processing OPT_STATISTICS
3741 case.
3742 * maint.c (maintenance_time_display): Use set_display_time.
3743 (maintenance_space_display): Use set_display_space.
3744 * top.c (execute_command): Remove obsolete 'maint time' code.
3745 (command_loop): Use make_command_stats_cleanup.
3746 * utils.c (struct cmd_stats): Structure for storing initial time
3747 and space usage.
3748 (display_time, display_space): Move definitions here from utils.c.
3749 (set_display_time): New function.
3750 (set_display_space): New function.
3751 (make_command_stats_cleanup): New function.
3752 (report_command_stats): New auxiliary function for
3753 make_command_stats_cleanup.
3754
3755 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3756
3757 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
3758 hosts where CORE_ADDR is long long.
3759
3760 2010-06-25 Tom Tromey <tromey@redhat.com>
3761
3762 PR python/10808:
3763 * python/python.c (execute_gdb_command): Add keywords. Accept
3764 "to_string" argument.
3765 (struct restore_ui_file_closure): New.
3766 (restore_ui_file): New function.
3767 (make_cleanup_restore_ui_file): Likewise.
3768 (GdbMethods) <execute>: Update.
3769
3770 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3771
3772 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
3773 during inferior call stack frame setup.
3774
3775 2010-06-25 Ken Werner <ken.werner@de.ibm.com>
3776
3777 * solib-spu.c: Include "exception.h".
3778 (ocl_program_data_key): New variable.
3779 (append_ocl_sos): New function.
3780 (ocl_enable_break): Likewise.
3781 (spu_current_sos): Call append_ocl_sos.
3782 (spu_solib_loaded): Call ocl_enable_break.
3783 (_initialize_spu_solib): Register ocl_program_data_key.
3784
3785 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3786
3787 * cp-support.c (reset_directive_searched): New function.
3788 (make_symbol_overload_list_using): Prevent recursive calls.
3789
3790 2010-06-25 Phil Muldoon <pmuldoon@redhat.com>
3791
3792 * printcmd.c (print_variable_and_value): Print error message on
3793 caught exception.
3794
3795 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3796
3797 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
3798 of stack values.
3799 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
3800 "value" member.
3801 (dwarf_expr_push): Change input type to ULONGEST.
3802 (dwarf_expr_fetch): Change return type to ULONGEST.
3803 (dwarf_expr_fetch_address): Add prototype.
3804 (dwarf2_read_address): Remove prototype.
3805 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
3806 Truncate stack values to ctx->addr_size bytes.
3807 (dwarf_expr_fetch): Change return value to ULONGEST.
3808 (dwarf_expr_fetch_address): New function.
3809 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
3810 when appropriate. Update for struct dwarf_expr_piece changes.
3811 (dwarf2_read_address): Remove.
3812 (unsigned_address_type): Remove.
3813 (signed_address_type): Remove.
3814 (execute_stack_op): Use dwarf_expr_fetch_address instead of
3815 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
3816 values. Perform operations on ULONGEST instead of on GDB values,
3817 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
3818 values and DW_OP_deref results as unsigned integers.
3819 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
3820 changes.
3821 (write_pieced_value): Likewise.
3822 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
3823 dwarf_expr_fetch when appropriate.
3824 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
3825 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
3826 instead of dwarf_expr_fetch when appropriate.
3827
3828 2010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
3829
3830 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
3831
3832 2010-06-24 Joel Brobecker <brobecker@adacore.com>
3833
3834 * python/python.c (_initialize_python): Add new "constant"
3835 PYTHONDIR in gdb module. Insert this path at the head of
3836 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
3837 exec its __init__.py script if it exists in that directory.
3838
3839 2010-06-24 Kevin Buettner <kevinb@redhat.com>
3840
3841 * rx-tdep.c (RX_ACC_REGNUM): Define.
3842 (RX_NUM_REGS): Redefine to 26.
3843 (rx_register_name): Add register "acc". Change order of several
3844 registers. Change name of "vct" register to "fintv" to match RX
3845 documentation.
3846 (rx_register_type): Add case for RX_ACC_REGNUM.
3847
3848 2010-06-24 Tom Tromey <tromey@redhat.com>
3849
3850 * psymtab.c (lookup_partial_symbol): Mark definition as static.
3851
3852 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3853 Tom Tromey <tromey@redhat.com>
3854
3855 Fix GDB startup on readonly filesystem.
3856 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
3857
3858 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3859 Pedro Alves <pedro@codesourcery.com>
3860
3861 Fix PR 9436.
3862 * breakpoint.c (handle_jit_event): New function.
3863 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
3864 jit, err, table and bs_class. New variables shlib_event, jit_event,
3865 this_action and bptype. Change bs_class assignments to this_action
3866 assignments. new unhandled bptype internal error. Move here
3867 shlib_event and jit_event handling from handle_inferior_event.
3868 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
3869 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
3870 BPSTAT_WHAT_CHECK_JIT.
3871 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
3872 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
3873 (handle_inferior_event): Reinitialize frame and gdbarch after
3874 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
3875 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
3876 gdbarch when frame gets reinitialized.
3877
3878 2010-06-24 Hui Zhu <teawater@gmail.com>
3879
3880 * printcmd.c (ui_printf): New function.
3881 (printf_command): Call ui_printf.
3882 (_initialize_printcmd): New command "eval".
3883
3884 2010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
3885
3886 * infrun.c (handle_inferior_event): Handle presence of single-step
3887 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
3888 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
3889 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
3890 * breakpoint.c (detach_single_step_breakpoints): New function.
3891 (detach_breakpoints): Call it.
3892 (cancel_single_step_breakpoints): New function.
3893 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
3894
3895 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
3896 (spu_gdbarch_init): Install it.
3897
3898 2010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3899
3900 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
3901 * configure: Regenerate.
3902
3903 2010-06-22 Hui Zhu <teawater@gmail.com>
3904
3905 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
3906 (i386_process_record): Ditto.
3907 * record.c (record_memory_query): New variable.
3908 (_initialize_record): New command "set record memory-query".
3909 * record.h (record_memory_query): New extern.
3910
3911 2010-06-21 Doug Evans <dje@google.com>
3912
3913 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
3914 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
3915 (i386_syscall_p): Change type of lengthp to int.
3916 (i386_displaced_step_fixup): Handle kernels that run one past a
3917 syscall insn.
3918 * i386-linux-tdep.c (i386_linux_init_abi): Use
3919 i386_displaced_step_copy_insn instead of
3920 simple_displaced_step_copy_insn.
3921
3922 2010-06-21 Tom Tromey <tromey@redhat.com>
3923
3924 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
3925 (dwarf_type_encoding_name): Likewise.
3926
3927 2010-06-21 Tom Tromey <tromey@redhat.com>
3928
3929 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
3930 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
3931 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
3932 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
3933 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
3934 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
3935 * dwarf2read.c (tag_type_to_type): Create a new error type on
3936 failure.
3937 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
3938 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
3939
3940 2010-06-21 Michael Snyder <msnyder@vmware.com>
3941
3942 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
3943 not add_abbrev_prefix_cmd, for "enable breakpoints".
3944
3945 2010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
3946
3947 * dwarf2loc.c (find_location_expression): Add relocation offset
3948 to base-address-selection entry base addresses. Read addresses
3949 (and offsets) as signed/unsigned integers, depending on the
3950 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
3951 (loclist_describe_location): Likewise.
3952 (disassemble_dwarf_expression): Read DW_OP_addr operand as
3953 unsigned integer. Do not call dwarf2_read_address.
3954 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
3955
3956 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
3957
3958 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
3959 value instead of hard-coded SPU_LS_SIZE.
3960 (spu_software_single_step): Likewise.
3961 * spu-tdep.h (SPU_LS_SIZE): Remove.
3962
3963 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
3964
3965 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
3966 limit on local store memory accesses.
3967 * spu-linux-nat.c (spu_xfer_partial): Likewise.
3968 * spu-tdep.c (spu_lslr): Remove.
3969 (spu_pointer_to_address): Do not truncate addresses.
3970 (spu_integer_to_address): Likewise.
3971 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
3972 * spu-tdep.h: Add comments.
3973 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
3974 (SPU_OVERLAY_LMA): Define.
3975
3976 2010-06-18 Stan Shebs <stan@codesourcery.com>
3977
3978 * osdata.c (get_osdata): Warn separately if target does not report
3979 type list.
3980 (info_osdata_command): Allow empty type, report error if target
3981 does not return available types of OS data.
3982 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
3983 types if no annex supplied.
3984
3985 * thread.c (thread_id_make_value): Make a value representing the
3986 current thread.
3987 (_initialize_thread): Create $_thread.
3988
3989 2010-06-17 Joel Brobecker <brobecker@adacore.com>
3990
3991 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
3992 last local variable declaration. No real code change.
3993
3994 2010-06-17 Tom Tromey <tromey@redhat.com>
3995
3996 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
3997 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
3998 temporary obstack.
3999
4000 2010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
4001 Jan Kratochvil <jan.kratochvil@redhat.com>
4002
4003 * breakpoint.c: Include parser-defs.h.
4004 (watchpoint_exp_is_const): New function.
4005 (watch_command_1): Call watchpoint_exp_is_const to check
4006 if the expression is constant.
4007
4008 2010-06-15 Andreas Schwab <schwab@linux-m68k.org>
4009
4010 * configure.ac: Check for RDYNAMIC also for cross builds.
4011 * configure: Regenerate.
4012
4013 2010-06-15 Pedro Alves <pedro@codesourcery.com>
4014
4015 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
4016 (SFILES): Remove solib-null.c, add solib-target.c.
4017 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
4018 (ALLDEPFILES): Remove solib-target.c.
4019 * solib-target.c (_initialize_solib_target): Set
4020 current_target_so_ops to solib_target_so_ops if not already set.
4021 * solib-null.c: Delete.
4022
4023 2010-06-14 Pedro Alves <pedro@codesourcery.com>
4024
4025 * NEWS: Mention GDBserver's JIT compilation of tracepoint
4026 bytecode.
4027
4028 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
4029
4030 * cp-valprint.c (cp_print_static_field): Members of
4031 dont_print_stat_array_obstack are of type "struct type *".
4032 (_initialize_cp_valprint): Likewise.
4033
4034 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
4035
4036 * frame.c (frame_register_unwind): Do not access contents
4037 of "optimized out" unwound register value.
4038
4039 2010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4040
4041 * ada-lang.h (ada_print_type): Make varstring const.
4042 * ada-typeprint.c (print_func_type): Make name const.
4043 (ada_print_type): Make varstring const.
4044 * c-lang.h (c_print_type): Make varstring const.
4045 * c-typeprint.c (c_print_type): Likewise.
4046 * f-lang.h (f_print_type): Likewise.
4047 * f-typeprint.c (f_print_type): Likewise.
4048 * jv-lang.h (java_print_type): Likewise.
4049 * jv-typeprint.c (java_print_type): Likewise.
4050 * language.c (unk_lang_print_type): Likewise.
4051 * language.h (struct language_defn) <la_print_type>: Likewise.
4052 * m2-lang.h (m2_print_type): Likewise.
4053 * m2-typeprint.c (m2_print_type): Likewise.
4054 * p-lang.h (pascal_print_type): Likewise.
4055 * p-typeprint.c (pascal_print_type): Likewise.
4056
4057 2010-06-11 Stan Shebs <stan@codesourcery.com>
4058
4059 Add per-operation permission flags.
4060
4061 * target.h (struct target_ops): New method to_set_permissions.
4062 (target_set_permissions): New macro.
4063 (target_insert_breakpoint): Change macro to function.
4064 (target_remove_breakpoint): Ditto.
4065 (target_stop): Ditto.
4066 (may_write_registers): Declare.
4067 (may_write_memory): Declare.
4068 (may_insert_breakpoints): Declare.
4069 (may_insert_tracepoints): Declare.
4070 (may_insert_fast_tracepoints): Declare.
4071 (may_stop): Declare.
4072 * target.c (may_write_registers, may_write_registers_1): New globals.
4073 (may_write_memory, may_write_memory_1): New globals.
4074 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
4075 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
4076 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
4077 globals.
4078 (may_stop, may_stop_1): New global.
4079 (target_xfer_partial): Test for write permission.
4080 (target_store_registers): Ditto.
4081 (target_insert_breakpoint): New function.
4082 (target_remove_breakpoint): New function.
4083 (target_stop): New function.
4084 (_initialize_targets): Add new set/show variables.
4085 (set_write_memory_permission): New function.
4086 (update_target_permissions): New function.
4087 (set_target_permissions): New function.
4088 (update_current_target): Default to_set_permissions.
4089 (_initialize_targets): Use new globals and setter function.
4090 * tracepoint.c (start_tracing): Test for permission.
4091 * inferior.h (update_observer_mode): Declare.
4092 * infrun.c (non_stop_1): Define earlier.
4093 (observer_mode, observer_mode_1): New globals.
4094 (set_observer_mode, show_observer_mode): New functions.
4095 (update_observer_mode): New function.
4096 (_initialize_infrun): Define "set observer" command.
4097 * remote.c (PACKET_QAllow): New optional packet.
4098 (remote_protocol_features): Add QAllow.
4099 (remote_set_permissions): New function.
4100 (remote_start_remote): Call it.
4101 (init_remote_ops): Add it to target vector.
4102 (_initialize_remote): Add config command for QAllow.
4103
4104 2010-06-11 Tom Tromey <tromey@redhat.com>
4105
4106 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
4107 DW_AT_vtable_elem_location even when GCC extension is seen.
4108
4109 2010-06-11 Tom Tromey <tromey@redhat.com>
4110
4111 PR gdb/9977, PR exp/11636:
4112 * value.h (value_offset): Update.
4113 (struct lval_funcs) <check_validity>: New field.
4114 <copy_closure>: Make argument const.
4115 (value_computed_closure): Update.
4116 (value_contents_for_printing): Declare.
4117 (value_bits_valid): Likewise.
4118 (val_print): Likewise.
4119 (set_value_component_location): Update.
4120 (value_entirely_optimized_out): Declare.
4121 * value.c (value_offset): Argument now const.
4122 (require_not_optimized_out): New function.
4123 (value_contents_for_printing): New function.
4124 (value_contents_all): Call require_not_optimized_out.
4125 (value_contents): Likewise.
4126 (value_bits_valid): New function.
4127 (value_computed_closure): Argument now const.
4128 (set_value_component_location): Make 'whole' argument const.
4129 (value_entirely_optimized_out): New function.
4130 (value_bitsize): Argument now 'const'.
4131 (value_bitpos): Likewise.
4132 (value_type): Likewise.
4133 * valprint.h (val_print_array_elements): Update.
4134 * valprint.c (val_print): Add 'val' argument. Use
4135 valprint_check_validity.
4136 (valprint_check_validity): New function.
4137 (value_check_printable): Use value_entirely_optimized_out.
4138 (common_val_print): Update.
4139 (value_print): Likewise.
4140 (val_print_array_elements): Add 'val' argument.
4141 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
4142 value_bits_valid. Reinit frame cache for lval_computed.
4143 * sh64-tdep.c (sh64_do_register): Update.
4144 * scm-valprint.c (scm_val_print): Add 'val' argument.
4145 * scm-lang.h (scm_val_print): Update.
4146 * python/python.h (apply_val_pretty_printer): Update.
4147 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
4148 argument. Call set_value_component_location.
4149 * printcmd.c (print_scalar_formatted): Update.
4150 * p-valprint.c (pascal_val_print): Add 'val' argument.
4151 (pascal_object_print_value_fields): Likewise.
4152 (pascal_object_print_value): Likewise.
4153 (pascal_object_print_static_field): Update.
4154 * p-lang.h (pascal_val_print): Update.
4155 (pascal_object_print_value_fields): Update.
4156 * mt-tdep.c (mt_registers_info): Update.
4157 * mi/mi-main.c (get_register): Update.
4158 (mi_cmd_data_evaluate_expression): Use common_val_print.
4159 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
4160 (m2_print_unbounded_array): Likewise.
4161 (m2_val_print): Likewise.
4162 * m2-lang.h (m2_val_print): Update.
4163 * language.h (struct language_defn) <la_val_print>: Add 'val'
4164 argument.
4165 (LA_VAL_PRINT): Likewise.
4166 * language.c (unk_lang_val_print): Add 'val' argument.
4167 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
4168 (java_val_print): Likewise.
4169 * jv-lang.h (java_val_print): Add 'val' argument.
4170 * infcmd.c (default_print_registers_info): Update.
4171 * f-valprint.c (f77_print_array_1): Add 'val' argument.
4172 (f77_print_array): Likewise.
4173 (f_val_print): Likewise.
4174 * f-lang.h (f_val_print): Add 'val' argument.
4175 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
4176 value_bitpos.
4177 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
4178 set_value_optimized_out.
4179 (write_pieced_value): Use value_bitsize and value_bitpos.
4180 <default>: Don't exit loop.
4181 (check_pieced_value_validity): New function.
4182 (pieced_value_funcs): Reference check_pieced_value_validity,
4183 check_pieced_value_invalid.
4184 (copy_pieced_value_closure): Update.
4185 (check_pieced_value_bits): New function.
4186 (check_pieced_value_invalid): New function.
4187 * d-valprint.c (dynamic_array_type): Add 'val' argument.
4188 (d_val_print): Likewise.
4189 * d-lang.h (d_val_print): Update.
4190 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
4191 (cp_print_value_fields_rtti): Likewise.
4192 (cp_print_value): Likewise.
4193 (cp_print_static_field): Update.
4194 * c-valprint.c (c_val_print): Add 'val' argument.
4195 (c_value_print): Update.
4196 * c-lang.h (c_val_print): Update.
4197 (cp_print_value_fields): Likewise.
4198 (cp_print_value_fields_rtti): Likewise.
4199 * ada-valprint.c (struct ada_val_print_args): Remove.
4200 (val_print_packed_array_elements): Add 'val' argument.
4201 (ada_val_print): Likewise. Rewrite.
4202 (ada_val_print_stub): Remove.
4203 (ada_val_print_array): Add 'val' argument.
4204 (ada_val_print_1): Likewise.
4205 (print_variant_part): Likewise.
4206 (ada_value_print): Update.
4207 (print_record): Add 'val' argument.
4208 (print_field_values): Likewise.
4209 * ada-lang.h (ada_val_print): Update.
4210
4211 2010-06-11 Tom Tromey <tromey@redhat.com>
4212
4213 * vec.h (VEC_cleanup): New macro.
4214 (DEF_VEC_ALLOC_FUNC_I): Update.
4215 (DEF_VEC_ALLOC_FUNC_P): Likewise.
4216 (DEF_VEC_ALLOC_FUNC_O): Likewise.
4217 * dwarf2loc.c (struct axs_var_loc): Remove.
4218 (unimplemented): New function.
4219 (translate_register): Likewise.
4220 (access_memory): Likewise.
4221 (compile_dwarf_to_ax): Likewise.
4222 (dwarf2_tracepoint_var_loc): Remove.
4223 (dwarf2_tracepoint_var_access): Likewise.
4224 (dwarf2_tracepoint_var_ref): Likewise.
4225 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
4226 (loclist_tracepoint_var_ref): Likewise.
4227 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
4228 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
4229 require_composition. No longer static.
4230 (execute_stack_op): Update.
4231 * ax-gdb.h (trace_kludge): Declare.
4232
4233 2010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4234
4235 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
4236 (should_be_inserted): Return zero also on NULL OWNER.
4237 (breakpoint_program_space_exit): New OWNER comment.
4238 (insert_breakpoint_locations): Extend comment for OWNER.
4239 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
4240 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
4241 New OWNER comment.
4242 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
4243 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
4244 (bpstat_check_location): New assert on OWNER.
4245 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
4246 and B initializations to the code block. New assert on them.
4247 (print_one_breakpoint_location): New OWNER comment.
4248 (watchpoint_locations_match): Assert on OWNER.
4249 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
4250 initializations to the code block. New assert on OWNER.
4251 (set_breakpoint_location_function): New assert on OWNER.
4252 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
4253 (bp_location_compare, update_global_location_list)
4254 (update_global_location_list): New OWNER comment.
4255
4256 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4257
4258 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
4259
4260 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4261
4262 * config/nm-linux.h (struct target_ops): Remove forward declaration.
4263 (lin_thread_get_thread_signals): Remove prototype.
4264 (GET_THREAD_SIGNALS): Remove.
4265 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
4266 * linux-thread-db.c (check_thread_signals): Directly call
4267 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
4268
4269 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4270
4271 * gregset.h (GDB_FPXREGSET_T): Remove.
4272 (gdb_fpxregset_t): Likewise.
4273 (supply_fpxregset): Remove prototype.
4274 (fill_fpxregset): Likewise.
4275 * i386-linux-nat.c (supply_fpxregset): Remove.
4276 (fill_fpxregset): Likewise.
4277 (fetch_fpxregs): Inline supply_fpxregset call.
4278 (store_fpxregs): Inline fill_fpxregset call.
4279
4280 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
4281 * config/i386/nm-linux.h: Remove file.
4282
4283 2010-06-09 Michael Snyder <msnyder@vmware.com>
4284
4285 * target.c (update_current_target): Fix spelling error in comment.
4286 (target_mourn_inferior): Fix spelling error in error message.
4287
4288 2010-06-08 Paul Hilfinger <hilfingr@adacore.com>
4289
4290 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
4291 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
4292
4293 2010-06-08 Michael Snyder <msnyder@vmware.com>
4294
4295 * remote.c (remote_close): Set inferior_ptid to null_ptid.
4296
4297 2010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4298
4299 * configure.ac <"${have_libpython}" != no>: New workaround of
4300 python#4434.
4301 * configure: Regenerate.
4302
4303 2010-06-08 Hui Zhu <teawater@gmail.com>
4304
4305 * record.c (record_wait): Move signal out of replay code.
4306
4307 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4308
4309 Fix PR 10640.
4310 * dwarf2-frame.c (no_dwarf_call): New function.
4311 (execute_stack_op): Set CTX->DWARF_CALL.
4312 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
4313 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
4314 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
4315 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
4316 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
4317 (needs_frame_dwarf_call): New function.
4318 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
4319 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
4320 Update the comment. Move variables die, offset and error call to ...
4321 (follow_die_ref): ... a new function.
4322 (dwarf2_fetch_die_location_block): New function.
4323 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
4324
4325 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4326
4327 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
4328 (dwarf_expr_tls_address): Use per_cu instead of objfile.
4329 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
4330 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
4331 this change.
4332 (struct needs_frame_baton): New field per_cu.
4333 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
4334 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
4335
4336 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
4337
4338 * cp-support.c (make_symbol_overload_list_namespace): Only search
4339 static and global blocks.
4340 (make_symbol_overload_list_block): New function.
4341 (make_symbol_overload_list): Separate namespace search from block
4342 search.
4343 (make_symbol_overload_list_qualified): Use
4344 make_symbol_overload_list_block.
4345
4346 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
4347
4348 * value.h: Created oload_search_type enum.
4349 (find_overload_match): Use oload_search_type enum.
4350 * valops.c (find_overload_match): Support combined member and
4351 non-member search.
4352 * eval.c (evaluate_subexp_standard): Calls to
4353 find_overload_match now use oload_search_type enum.
4354 (oload_method_static): Verify index is a proper value.
4355 * valarith.c (value_user_defined_cpp_op): Search for and handle
4356 both member and non-member operators.
4357 (value_user_defined_cpp_op): New function.
4358 (value_user_defined_op): New function.
4359 (value_x_unop): Use value_user_defined_op.
4360 (value_x_binop): Ditto.
4361 * cp-support.c (make_symbol_overload_list_using): Added block
4362 iteration.
4363 Add check for namespace aliases and imported declarations.
4364
4365 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4366
4367 * breakpoint.h (owner): Extend the comment.
4368
4369 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4370
4371 Clear stale specific bp_location from former whole breakpoint.
4372 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
4373 code ...
4374 (free_bp_location): ... here. Rename there the called function to
4375 bpstat_remove_bp_location_callback.
4376 (bpstat_remove_breakpoint_callback): Rename to ...
4377 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
4378 to struct bp_location. Change the called function to
4379 bpstat_remove_bp_location. Create new declaration for the function.
4380 (bpstat_remove_breakpoint): Rename to ...
4381 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
4382 code for the new parameter type.
4383
4384 2010-06-07 Nathan Sidwell <nathan@codesourcery.com>
4385
4386 * README: Make version-agnostic.
4387
4388 2010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4389
4390 Fix duplicate types for single DIE.
4391 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
4392 set_die_type.
4393 (read_array_type): Remove type initialization. Recheck get_die_type
4394 after initial die_type. Move set_die_type before set_descriptive_type.
4395 (read_set_type): New variable domain_type. Recheck get_die_type after
4396 initial die_type. Move attr initialization later.
4397 (read_tag_pointer_type, read_tag_reference_type): New variable
4398 target_type. Recheck get_die_type after initial die_type.
4399 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
4400 die_type and die_containing_type.
4401 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
4402 Recheck get_die_type after initial die_type.
4403 (read_subrange_type): Recheck get_die_type after initial die_type.
4404 Move set_die_type before set_descriptive_type.
4405 (set_die_type): Extend the function comment. Call complaint if DIE has
4406 some type already set.
4407
4408 2010-06-05 Vladimir Prus <vladimir@codesourcery.com>
4409
4410 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
4411 for current naming of thread groups (iN, not N).
4412
4413 2010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4414
4415 * ada-lang.c (ada_operator_length): Constify `struct expression'.
4416 * parse.c (operator_length): Likewise.
4417 (operator_length_standard): Likewise.
4418 * parser-defs.h (operator_length): Likewise.
4419 (operator_length_standard): Likewise.
4420 (struct exp_descriptor <operator_length>): Likewise.
4421
4422 2010-06-04 Doug Evans <dje@google.com>
4423
4424 Add support for enabling/disabling individual pretty-printers.
4425 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
4426 * python/python-internal.h (gdbpy_enabled_cst): Declare.
4427 * python/python.c (gdbpy_enabled_cst): Define.
4428 (_initialize_python): Initialize gdbpy_enabled_cst.
4429 * NEWS: Add entry.
4430
4431 2010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4432
4433 * breakpoint.c (update_global_location_list): Fix comment typo.
4434
4435 2010-06-04 Hui Zhu <teawater@gmail.com>
4436
4437 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
4438
4439 2010-06-03 Doug Evans <dje@google.com>
4440
4441 * configure.ac: Don't fail if python is unusable when
4442 configured with --with-python=auto.
4443 * configure: Regenerate.
4444
4445 2010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
4446
4447 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
4448
4449 2010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
4450
4451 * valprint.h (get_array_bounds): Change low and high parameter types
4452 to LONGEST *.
4453 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
4454 compute bounds.
4455 (val_print_array_elements): Adapt to change above.
4456 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
4457 * p-valprint.c (pascal_val_print): Likewise.
4458
4459 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4460
4461 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
4462 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
4463 .F08.
4464
4465 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4466
4467 Support DW_TAG_module as separate namespaces.
4468 * dwarf2read.c (typename_concat): New parameter physname.
4469 (read_module_type): New function and declaration.
4470 (scan_partial_symbols): Scan also DW_TAG_module children.
4471 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
4472 to typename_concat backward compatible physname value 0.
4473 (partial_die_full_name, read_namespace_type): Pass to typename_concat
4474 backward compatible physname value 0.
4475 (add_partial_module, read_module): Remove FIXME comment.
4476 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
4477 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
4478 DIEs under DW_TAG_module.
4479 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
4480 DW_AT_MIPS_linkage_name first, extend it for language_fortran
4481 && physname and return there instead of just setting NAME. Extend
4482 the main block for language_fortran. Pass physname parameter to the
4483 typename_concat call.
4484 (read_import_statement, read_func_scope, get_scope_pc_bounds)
4485 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
4486 (new_symbol): Fill in cplus_specific.demangled_name if it is still
4487 missing from SYMBOL_SET_NAMES in the language_fortran case.
4488 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
4489 variables.
4490 (read_type_die) <DW_TAG_module>: New.
4491 (MAX_SEP_LEN): Increase to 7.
4492 (typename_concat): New parameter physname. New variable lead. Support
4493 also language_fortran.
4494 * f-exp.y (yylex): Consider : also as a symbol name character class.
4495 * f-lang.c: Include cp-support.h.
4496 (f_word_break_characters, f_make_symbol_completion_list): New functions.
4497 (f_language_defn): Use cp_lookup_symbol_nonlocal,
4498 f_word_break_characters and f_make_symbol_completion_list.
4499 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
4500 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
4501 * symtab.c (symbol_init_language_specific): Support language_fortran.
4502 (symbol_find_demangled_name): New comment on language_fortran.
4503 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
4504 for language_fortran.
4505 (lookup_symbol_aux_local): Check imports also for language_fortran.
4506 (default_make_symbol_completion_list): Rename to ...
4507 (default_make_symbol_completion_list_break_on): ... this name. New
4508 parameter break_on, use it.
4509 (default_make_symbol_completion_list): New stub.
4510 * symtab.h (default_make_symbol_completion_list_break_on): New
4511 prototype.
4512
4513 2010-06-02 Joel Brobecker <brobecker@adacore.com>
4514
4515 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
4516 to error.
4517
4518 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4519
4520 * dwarf2read.c (typename_concat): Add const to the variable sep.
4521
4522 2010-06-02 Tom Tromey <tromey@redhat.com>
4523
4524 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
4525 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
4526 type is const. Add 'def' argument. Add missing operators, remove
4527 unhandled ones.
4528 (decode_locdesc): Update.
4529 (dwarf2_always_disassemble): New global.
4530 (show_dwarf2_always_disassemble): New function.
4531 (_initialize_dwarf2_read): Add always-disassemble.
4532 (dwarf2_per_cu_offset_size): New function.
4533 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
4534 (piece_end_p): New function.
4535 (locexpr_describe_location_piece): Replace 'size' argument with
4536 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
4537 some constants. Remove errors.
4538 (disassemble_dwarf_expression): New function.
4539 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
4540 Add 'offset_size' argument.
4541 (loclist_describe_location): Change output formatting.
4542 * dwarf2expr.h (dwarf_stack_op_name): Declare.
4543
4544 2010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
4545
4546 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
4547 anonymous type case.
4548
4549 2010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
4550
4551 * dwarf2read.c (read_subrange_type): Handle missing base type
4552 according to Dwarf-2 specifications.
4553
4554 2010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
4555
4556 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
4557 BINOP_EXCL.
4558 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
4559 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
4560 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
4561 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
4562 UNOP_CHMAX, UNOP_CHMIN.
4563 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
4564 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
4565 UNOP_CHMIN>: Remove opcodes.
4566
4567 2010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
4568
4569 * dwarf2read.c (read_func_scope): Do not complain for
4570 external function if bounds are not found.
4571
4572 2010-06-01 Pedro Alves <pedro@codesourcery.com>
4573
4574 * NEWS: Mention gdbserver fast tracepoints support.
4575
4576 2010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
4577
4578 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
4579 New macros.
4580 (windows_set_console_info): New function.
4581 (windows_create_inferior): Call windows_set_console_info
4582 if NEW_CONSOLE is true.
4583 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
4584 (_initialize_loadable): Initialize GetConsoleFontSize and
4585 GetCurrentConsoleFont.
4586
4587 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4588
4589 * Makefile.in (RDYNAMIC): New.
4590 (SFILES): Add proc-service.list.
4591 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
4592 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
4593 * config/arm/linux.mh: Likewise.
4594 * config/i386/linux.mh: Likewise.
4595 * config/i386/linux64.mh: Likewise.
4596 * config/ia64/linux.mh: Likewise.
4597 * config/m32r/linux.mh: Likewise.
4598 * config/m68k/linux.mh: Likewise.
4599 * config/mips/linux.mh: Likewise.
4600 * config/pa/linux.mh: Likewise.
4601 * config/powerpc/linux.mh: Likewise.
4602 * config/powerpc/ppc64-linux.mh: Likewise.
4603 * config/s390/s390.mh: Likewise.
4604 * config/sparc/linux.mh: Likewise.
4605 * config/sparc/linux64.mh: Likewise.
4606 * config/xtensa/linux.mh: Likewise.
4607 * configure.ac: New RDYNAMIC on native host and GCC.
4608 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
4609 * configure: Regenerate.
4610 * proc-service.list: New.
4611
4612 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4613
4614 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
4615 CONTENT.
4616
4617 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4618
4619 * linux-nat.c (linux_nat_wait_1): Do not call
4620 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
4621 TARGET_WAITKIND_SIGNALLED.
4622
4623 2010-05-27 Joel Brobecker <brobecker@adacore.com>
4624
4625 * ada-lang.c (ada_inferior_data): New struct.
4626 (ada_inferior_data): New static global.
4627 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
4628 (ada_get_tsd_type): New functions.
4629 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
4630 to look the tsd type up.
4631 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
4632 event. Set ada_inferior_data.
4633
4634 2010-05-27 Pedro Alves <pedro@codesourcery.com>
4635
4636 * remote.c (unpack_varlen_hex): Remove forward declaration.
4637 (remote_console_output): Make static, and add forward declaration.
4638 * remote.h: Drop FIXME comment.
4639 (unpack_varlen_hex): Declare.
4640 (remote_console_output, remote_cisco_objfile_relocate)
4641 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
4642 Delete declarations.
4643 * tracepoint.c: Include "remote.h".
4644 (unpack_varlen_hex): Delete declaration.
4645
4646 2010-05-27 Tom Tromey <tromey@redhat.com>
4647
4648 * dwarf2loc.c (struct piece_closure) <refc>: New field.
4649 (allocate_piece_closure): Initialize refc.
4650 (copy_pieced_value_closure): Use refc.
4651 (free_pieced_value_closure): Likewise.
4652
4653 2010-05-27 Tom Tromey <tromey@redhat.com>
4654
4655 * arm-tdep.c (push_stack_item): 'contents' now const.
4656 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
4657 value_contents_writeable. Introduce new temporary.
4658
4659 2010-05-27 Tom Tromey <tromey@redhat.com>
4660
4661 * findcmd.c (parse_find_args): Use value_contents, not
4662 value_contents_raw.
4663
4664 2010-05-27 Tom Tromey <tromey@redhat.com>
4665
4666 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
4667 const. Use value_contents, not value_contents_writeable.
4668
4669 2010-05-27 Joel Brobecker <brobecker@adacore.com>
4670
4671 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
4672 by call to value_contents.
4673
4674 2010-05-27 Ozkan Sezer <sezeroz@gmail.com>
4675
4676 * MAINTAINERS: Add myself for write after approval privileges.
4677
4678 2010-05-26 Doug Evans <dje@google.com>
4679
4680 Allow python to find its files if moved from original location.
4681 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
4682 (GDB_AC_WITH_DIR): Call it.
4683 * configure.ac: Define WITH_PYTHON_PATH if we can find the
4684 python installation directory.
4685 * config.in: Regenerate.
4686 * configure: Regenerate.
4687 * defs.h (python_libdir): Declare.
4688 * main.c (python_libdir): Define.
4689 (captured_main): Initialize python_libdir.
4690 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
4691 call Py_SetProgramName to make sure python can find its libraries
4692 and modules.
4693
4694 * configure.ac: Try to use python's distutils to fetch compilation
4695 parameters.
4696 * configure: Regenerate.
4697 * python/python-config.py: New file.
4698
4699 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
4700
4701 * ser-tcp.c (net_open): Check error return from socket() call by its
4702 equality to -1 not by it being negative.
4703 (net_close): Likewise.
4704
4705 2010-05-26 Pedro Alves <pedro@codesourcery.com>
4706
4707 * NEWS: Mention the `qRelocInsn' feature.
4708 * gdbarch.sh (relocate_instruction): New.
4709 * amd64-tdep.c (rip_relative_offset): New.
4710 (append_insns): New.
4711 (amd64_relocate_instruction): New.
4712 (amd64_init_abi): Install it.
4713 * i386-tdep.c (append_insns): New.
4714 (i386_relocate_instruction): New.
4715 (i386_gdbarch_init): Install it.
4716 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
4717 * gdbarch.h, gdbarch.c: Regenerate.
4718
4719 2010-05-26 Tom Tromey <tromey@redhat.com>
4720
4721 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
4722 (struct dwarf2_loclist_baton) <data>: Likewise.
4723 * dwarf2loc.c (find_location_expression): Constify return type.
4724 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
4725 (dwarf2_loc_desc_needs_frame): Likewise.
4726 (loclist_read_variable): Constify.
4727 (loclist_describe_location): Likewise.
4728 (loclist_tracepoint_var_ref): Likewise.
4729
4730 2010-05-25 Tom Tromey <tromey@redhat.com>
4731
4732 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
4733 (dwarf_expr_frame_base_1): Likewise.
4734 (read_pieced_value): Update.
4735 (needs_frame_frame_base): Constify.
4736 (dwarf2_tracepoint_var_loc): Likewise.
4737 (dwarf2_tracepoint_var_access): Likewise.
4738 (locexpr_describe_location_piece): Likewise.
4739 (locexpr_describe_location_1): Likewise.
4740 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
4741 Constify.
4742 (data): Now const.
4743 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
4744 (dwarf_expr_eval, read_uleb128, read_sleb128)
4745 (dwarf2_read_address): Update.
4746 * dwarf2expr.c (dwarf_expr_eval): Constify.
4747 (read_uleb128): Likewise.
4748 (read_sleb128): Likewise.
4749 (dwarf2_read_address): Likewise.
4750 (require_composition): Likewise.
4751 (execute_stack_op): Likewise.
4752 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
4753 "const gdb_byte *".
4754 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
4755 Now const.
4756 (no_get_frame_base): Constify.
4757 (execute_stack_op): Likewise.
4758 (execute_cfa_program): Likewise.
4759 (read_encoded_value): Likewise.
4760
4761 2010-05-25 Doug Evans <dje@google.com>
4762
4763 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
4764
4765 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
4766 * event-loop.c: ... here.
4767 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
4768 `error' for clarity.
4769 (tui_getc): Pass correct value for `error' parameter to
4770 tui_readline_output.
4771
4772 Add python gdb.GdbError and gdb.string_to_argv.
4773 * NEWS: Document them.
4774 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
4775 the exception is gdb.GdbError. Print a second traceback if there's
4776 an error computing the error message.
4777 (gdbpy_string_to_argv): New function.
4778 * python/py-utils.c (gdbpy_obj_to_string): New function.
4779 (gdbpy_exception_to_string): New function.
4780 * python/python-internal.h (gdbpy_string_to_argv): Declare.
4781 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
4782 (gdbpy_gdberror_exc): Declare.
4783 * python/python.c (gdbpy_gdberror_exc): New global.
4784 (_initialize_python): Initialize gdbpy_gdberror_exc and create
4785 gdb.GdbError.
4786 (GdbMethods): Add string_to_argv.
4787
4788 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4789
4790 * windows-nat.c (display_selector): Call GetLastError to give better
4791 failure explanation.
4792
4793 2010-05-24 Pedro Alves <pedro@codesourcery.com>
4794
4795 * config.in: Regenerate.
4796
4797 2010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
4798
4799 Code cleanup.
4800 * target.c (push_target): Return only void. Remove the return value
4801 comment.
4802 * target.h (push_target): Return only void.
4803
4804 2010-05-23 Pedro Alves <pedro@codesourcery.com>
4805
4806 Update gnulib from latest git.
4807 (250b80067c1e1d8faa0c42fb572f721975b929c5)
4808
4809 * gnulib/memcmp.c: Removed.
4810 * gnulib/memchr.valgrind: New.
4811 * gnulib/stddef.in.h: New.
4812 * gnulib/Makefile.am: Updated.
4813 * gnulib/memchr.c: Updated.
4814 * gnulib/memmem.c: Updated.
4815 * gnulib/stdint.in.h: Updated.
4816 * gnulib/str-two-way.h: Updated.
4817 * gnulib/string.in.h: Updated.
4818 * gnulib/wchar.in.h: Updated.
4819
4820 * gnulib/extra/link-warning.h: Removed.
4821 * gnulib/extra/c++defs.h: New.
4822 * gnulib/extra/warn-on-use.h: New.
4823 * gnulib/extra/arg-nonnull.h: Updated.
4824
4825 * gnulib/m4/extensions.m4: Updated.
4826 * gnulib/m4/gnulib-cache.m4: Updated.
4827 * gnulib/m4/gnulib-common.m4: Updated.
4828 * gnulib/m4/gnulib-comp.m4: Updated.
4829 * gnulib/m4/gnulib-tool.m4: Updated.
4830 * gnulib/m4/include_next.m4: Updated.
4831 * gnulib/m4/longlong.m4: Updated.
4832 * gnulib/m4/memchr.m4: Updated.
4833 * gnulib/m4/memmem.m4: Updated.
4834 * gnulib/m4/stdint.m4: Updated.
4835 * gnulib/m4/string_h.m4: Updated.
4836 * gnulib/m4/memcmp.m4: Removed.
4837 * gnulib/m4/onceonly_2_57.m4: Removed.
4838 * gnulib/m4/00gnulib.m4: New.
4839 * gnulib/m4/mmap-anon.m4: New.
4840 * gnulib/m4/multiarch.m4: New.
4841 * gnulib/m4/onceonly.m4: New.
4842 * gnulib/m4/stddef_h.m4: New.
4843 * gnulib/m4/warn-on-use.m4: New.
4844 * gnulib/m4/wchar.m4: Removed.
4845 * gnulib/m4/wchar_h.m4: New.
4846 * gnulib/m4/wchar_t.m4: New.
4847 * gnulib/m4/wint_t.m4: New.
4848
4849 * aclocal.m4: Regenerate.
4850 * config.in: Likewise.
4851 * configure: Likewise.
4852 * gnulib/Makefile.in: Likewise.
4853
4854 2010-05-21 Tom Tromey <tromey@redhat.com>
4855
4856 * dwarf2loc.c (extract_bits_primitive): New function.
4857 (extract_bits): Likewise.
4858 (insert_bits): Likewise.
4859 (copy_bitwise): Likewise.
4860 (read_pieced_value): Do all operations in bits.
4861 (write_pieced_value): Likewise.
4862 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
4863 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
4864 Always use xrealloc to resize piece array.
4865 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
4866 <DW_OP_piece>: Update.
4867 <DW_OP_bit_piece>: New case.
4868
4869 2010-05-21 Tom Tromey <tromey@redhat.com>
4870
4871 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
4872 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
4873 * dwarf2expr.h (enum dwarf_value_location)
4874 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
4875 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
4876 (add_piece): Handle empty piece.
4877 (execute_stack_op) <DW_OP_piece>: Handle
4878 DWARF_VALUE_OPTIMIZED_OUT.
4879
4880 2010-05-21 Tom Tromey <tromey@redhat.com>
4881
4882 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
4883 evaluate_subexp, not evaluate_subexp_with_coercion.
4884
4885 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4886
4887 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
4888 attribute.
4889
4890 2010-05-21 Tom Tromey <tromey@redhat.com>
4891
4892 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
4893 offset.
4894 (write_pieced_value): Likewise.
4895
4896 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4897
4898 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
4899 and DW_TAG_volatile_type.
4900 (new_symbol): Likewise.
4901
4902 2010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
4903
4904 * p-valprint.c (pascal_val_print): Call get_array_bounds
4905 to obtain the number of elements in an array.
4906
4907 2010-05-19 Doug Evans <dje@google.com>
4908
4909 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
4910
4911 * python.c (source_python_script): Add comment.
4912 (source_python_script_for_objfile): Remove unnecessary call to
4913 gdbpy_print_stack.
4914
4915 2010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4916 Sergio Durigan Junior <sergiodj@redhat.com>
4917
4918 Code cleanup.
4919 * parse.c (exp_iterate): Use operator_length wrapper function.
4920
4921 2010-05-18 Michael Snyder <msnyder@vmware.com>
4922
4923 * ada-lang.c: White space.
4924 * ada-typeprint.c: White space.
4925 * ada-valprint.c: White space.
4926 * addrmap.c: White space.
4927 * auxv.c: White space.
4928 * ax-gdb.c: White space.
4929
4930 2010-05-18 Hui Zhu <teawater@gmail.com>
4931
4932 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
4933 for oldfp.
4934 (inferior_call_waitpid): Move make_cleanup out of check.
4935 Check the return of waitpid.
4936 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
4937
4938 2010-05-17 Michael Snyder <msnyder@vmware.com>
4939
4940 * tui/tui.c: White space.
4941 * tui/tui-data.c: White space.
4942 * tui/tui-disasm.c: White space.
4943 * tui/tui-file.c: White space.
4944 * tui/tui-interp.c: White space.
4945 * tui/tui-main.c: White space.
4946 * tui/tui-out.c: White space.
4947 * tui/tui-regs.c: White space.
4948 * tui/tui-source.c: White space.
4949 * tui/tui-stack.c: White space.
4950 * tui/tui-win.c: White space.
4951 * tui/tui-winsource.c: White space.
4952
4953 * procfs.c: White space.
4954
4955 * python/py-auto-load.c: White space.
4956 * python/py-block.c: White space.
4957 * python/py-breakpoint.c: White space.
4958 * python/py-cmd.c: White space.
4959 * python/py-function.c: White space.
4960 * python/py-lazy-string.c: White space.
4961 * python/py-objfile.c: White space.
4962 * python/py-param.c: White space.
4963 * python/py-prettyprint.c: White space.
4964 * python/py-progspace.c: White space.
4965 * python/py-symtab.c: White space.
4966 * python/python.c: White space.
4967 * python/py-type.c: White space.
4968 * python/py-utils.c: White space.
4969 * python/py-value.c: White space.
4970
4971 * mi/mi-cmd-break.c: White space.
4972 * mi/mi-cmd-env.c: White space.
4973 * mi/mi-cmds.c: White space.
4974 * mi/mi-cmd-stack.c: White space.
4975 * mi/mi-cmd-var.c: White space.
4976 * mi/mi-console.c: White space.
4977 * mi/mi-getopt.c: White space.
4978 * mi/mi-interp.c: White space.
4979 * mi/mi-main.c: White space.
4980 * mi/mi-out.c: White space.
4981 * mi/mi-parse.c: White space.
4982
4983 * cli/cli-cmds.c: White space.
4984 * cli/cli-decode.c: White space.
4985 * cli/cli-dump.c: White space.
4986 * cli/cli-interp.c: White space.
4987 * cli/cli-logging.c: White space.
4988 * cli/cli-script.c: White space.
4989 * cli/cli-setshow.c: White space.
4990
4991 * valarith.c: White space.
4992 * valops.c: White space.
4993 * valprint.c: White space.
4994 * value.c: White space.
4995 * varobj.c: White space.
4996 * xcoffread.c: White space.
4997 * xml-support.c: White space.
4998 * xml-tdesc.c: White space.
4999
5000 2010-05-17 Andreas Schwab <schwab@redhat.com>
5001
5002 PR gdb/11092
5003 * c-lang.c (c_printstr): Compute real length of NUL terminated
5004 string at first.
5005
5006 2010-05-17 Joel Brobecker <brobecker@adacore.com>
5007
5008 * parse.c (parse_exp_in_context): When block is not NULL, use
5009 its associated language to parse the expression instead of
5010 the current_language.
5011
5012 2010-05-17 Joel Brobecker <brobecker@adacore.com>
5013
5014 * jv-lang.c (java_lookup_class): Remove commented out code.
5015 (type_from_class): Likewise.
5016 (java_op_print_tab): Remove commented-out elements.
5017
5018 2010-05-17 Joel Brobecker <brobecker@adacore.com>
5019
5020 * ada-lang.c (to_fixed_range_type): The the raw index type as
5021 argument instead of the raw type name. Remove orig_type parameter.
5022 Update calls throughout.
5023 (ada_fixup_array_indexes_type): New function.
5024 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
5025 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
5026 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
5027 Remove name parameter.
5028 (print_array_type): Add call to ada_fixup_array_indexes_type.
5029 Update calls to print_range_type.
5030 (ada_print_type): Update calls to print_range_type.
5031
5032 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
5033
5034 * dwarf2read.c (read_set_type): Set type length if
5035 DW_AT_byte_size attribute is present.
5036
5037 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
5038
5039 * p-valprint.c (pascal_val_print): Handle set type if range limits
5040 are undefined but size is known.
5041
5042 2010-05-17 Pedro Alves <pedro@codesourcery.com>
5043
5044 * procfs.c: Reformat.
5045
5046 2010-05-16 Michael Snyder <msnyder@vmware.com>
5047
5048 * target.c: White space.
5049 * target-descriptions.c: White space.
5050 * target-memory.c: White space.
5051 * thread.c: White space.
5052 * top.c: White space.
5053 * tracepoint.c: White space.
5054 * trad-frame.c: White space.
5055 * tramp-frame.c: White space.
5056 * ui-file.c: White space.
5057 * ui-out.c: White space.
5058 * user-regs.c: White space.
5059 * utils.c: White space.
5060
5061 * scm-exp.c: White space.
5062 * scm-lang.c: White space.
5063 * scm-valprint.c: White space.
5064 * sentinel-frame.c: White space.
5065 * ser-base.c: White space.
5066 * ser-go32.c: White space.
5067 * serial.c: White space.
5068 * ser-mingw.c: White space.
5069 * ser-pipe.c: White space.
5070 * ser-tcp.c: White space.
5071 * ser-unix.c: White space.
5072 * solib.c: White space.
5073 * solib-darwin.c: White space.
5074 * solib-frv.c: White space.
5075 * solib-irix.c: White space.
5076 * solib-osf.c: White space.
5077 * solib-pa64.c: White space.
5078 * solib-som.c: White space.
5079 * solib-spu.c: White space.
5080 * solib-svr4.c: White space.
5081 * solib-target.c: White space.
5082 * source.c: White space.
5083 * stabsread.c: White space.
5084 * stack.c: White space.
5085 * std-regs.c: White space.
5086 * symfile.c: White space.
5087 * symmisc.c: White space.
5088 * symtab.c: White space.
5089
5090 2010-05-16 Michael Snyder <msnyder@vmware.com>
5091
5092 * source.c (_initialize_source): Add "rev" as an abbreviation
5093 for the "reverse-search" command.
5094
5095 2010-05-16 Michael Snyder <msnyder@vmware.com>
5096
5097 * record.c: White space.
5098 * regcache.c: White space.
5099 * reggroups.c: White space.
5100 * remote-fileio.c: White space.
5101 * remote-m32r-sdi.c: White space.
5102 * remote-mips.c: White space.
5103 * remote-sim.c: White space.
5104 * remote.c: White space.
5105 (process_g_packet): Remove orphan braces.
5106
5107 2010-05-15 Michael Snyder <msnyder@vmware.com>
5108
5109 * parse.c: White space.
5110 * p-lang.c: White space.
5111 * posix-hdep.c: White space.
5112 * printcmd.c: White space.
5113 * progspace.c: White space.
5114 * prologue-value.c: White space.
5115 * psymtab.c: White space.
5116 * p-typeprint.c: White space.
5117 * p-valprint.c: White space.
5118
5119 * objc-lang.c: White space.
5120 * objfiles.c: White space.
5121 * observer.c: White space.
5122 * osabi.c: White space.
5123 * osdata.c: White space.
5124
5125 * m2-lang.c: White space.
5126 * m2-valprint.c: White space.
5127 * macrocmd.c: White space.
5128 * macroexp.c: White space.
5129 * macroscope.c: White space.
5130 * macrotab.c: White space.
5131 * main.c: White space.
5132 * maint.c: White space.
5133 * mdebugread.c: White space.
5134 * memattr.c: White space.
5135 * minsyms.c: White space.
5136 * monitor.c: White space.
5137
5138 2010-05-14 Michael Snyder <msnyder@vmware.com>
5139
5140 * jv-lang.c: White space.
5141 * jv-typeprint.c: White space.
5142 * jv-valprint.c: White space.
5143 * language.c: White space.
5144 * libunwind-frame.c: White space.
5145 * linespec.c: White space.
5146 * linux-nat.c: White space.
5147 * linux-record.c: White space.
5148 * linux-thread-db.c: White space.
5149
5150 * infcall.c: White space.
5151 * inf-child.c: White space.
5152 * infcmd.c: White space.
5153 * inferior.c: White space.
5154 * inf-loop.c: White space.
5155 * inflow.c: White space.
5156 * inline-frame.c: White space.
5157 * interps.c: White space.
5158
5159 * gcore.c: White space.
5160 * gdb.c: White space.
5161 * gdbtypes.c: White space.
5162 * gnu-nat.c: White space.
5163 * gnu-v2-abi.c: White space.
5164 * gnu-v3-abi.c: White space.
5165
5166 * findcmd.c: White space.
5167 * findvar.c: White space.
5168 * fork-child.c: White space.
5169 * frame-base.c: White space.
5170 * frame.c: White space.
5171 * frame-unwind.c: White space.
5172 * f-valprint.c: White space.
5173
5174 * elfread.c: White space.
5175 * environ.c: White space.
5176 * eval.c: White space.
5177 * event-loop.c: White space.
5178 * event-top.c: White space.
5179 * exceptions.c: White space.
5180 * exec.c: White space.
5181 * expprint.c: White space.
5182
5183 * dbxread.c: White space.
5184 * dcache.c: White space.
5185 * disasm.c: White space.
5186 * doublest.c: White space.
5187 * dsrec.c: White space.
5188 * dummy-frame.c: White space.
5189 * dwarf2expr.c: White space.
5190 * dwarf2-frame.c: White space.
5191 * dwarf2loc.c: White space.
5192 * dwarf2read.c: White space.
5193
5194 2010-05-14 Phil Muldoon <pmuldoon@redhat.com>
5195
5196 PR python/11482
5197
5198 * python/py-value.c (valpy_hash): New function.
5199 (value_object_type): Register valpy_hash.
5200
5201 2010-05-14 Hui Zhu <teawater@gmail.com>
5202 Michael Snyder <msnyder@vmware.com>
5203
5204 * linux-fork.c (gdbthread.h): New include.
5205 (fork_info): Add parent_ptid.
5206 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
5207 functions.
5208 (delete_checkpoint_command): Call inferior_call_waitpid.
5209 (checkpoint_command): Set parent_ptid.
5210
5211 2010-05-13 Michael Snyder <msnyder@vmware.com>
5212
5213 * dictionary.c: Re-indent to GNU coding standard.
5214
5215 * charset.c: White space.
5216 * c-lang.c: White space.
5217 * cli-out.c: White space.
5218 * coffread.c: White space.
5219 * complaints.c: White space.
5220 * completer.c: White space.
5221 * corefile.c: White space.
5222 * corelow.c: White space.
5223 * cp-abi.c: White space.
5224 * cp-namespace.c: White space.
5225 * cp-support.c: White space.
5226 * cp-valprint.c: White space.
5227 * c-typeprint.c: White space.
5228 * c-valprint.c: White space.
5229 * blockframe.c: White space.
5230 * breakpoint.c: White space.
5231 * buildsym.c: White space.
5232 * blockframe.c: White space.
5233 * bcache.c: White space.
5234 * gdbarch.sh: White space, add blank lines.
5235 * arch-utils.c: Ditto.
5236 * gdbarch.c: Regenerate.
5237 * frame.c: White space, add blank lines.
5238 * stack.c: White space, add blank lines.
5239 (initialize_stack): Remove long-dead code.
5240
5241 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5242
5243 Code cleanup.
5244 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
5245 (locexpr_read_variable, loclist_read_variable): Update the callers.
5246
5247 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5248
5249 Code cleanup.
5250 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
5251 Remove check of NULL returned by tag_type_to_type.
5252 (die_containing_type): Remove variable type. Remove type_die variable
5253 initialization. Remove check of NULL returned by tag_type_to_type.
5254
5255 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
5256
5257 PR exp/11530.
5258 * gdbtypes.c (lookup_struct_elt_type): Also lookup
5259 names of unnamed structures or unions.
5260
5261 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
5262
5263 * procfs.c (proc_watchpoint_address): New function.
5264 (procfs_stopped_by_watchpoint): Remove useless check after
5265 find_procinfo_or_die call.
5266 (procfs_stopped_data_address): New function.
5267 (procfs_use_watchpoints): Register new watchpoint related function.
5268
5269 2010-05-11 Tom Tromey <tromey@redhat.com>
5270
5271 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
5272
5273 2010-05-10 Michael Snyder <msnyder@vmware.com>
5274
5275 * utils.c: White space cleanup.
5276
5277 2010-05-10 Tom Tromey <tromey@redhat.com>
5278
5279 * eval.c (ptrmath_type_p): Add 'lang' argument.
5280 (evaluate_subexp_standard): Update.
5281 (evaluate_subexp_with_coercion): Update.
5282 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
5283
5284 2010-05-10 Michael Snyder <msnyder@vmware.com>
5285
5286 * utils.c (do_fclose_cleanup) Restore local variable.
5287
5288 2010-05-09 Doug Evans <dje@google.com>
5289
5290 * record.c (init_record_core_ops): Rename record_core to record-core.
5291
5292 2010-05-08 Joel Brobecker <brobecker@adacore.com>
5293
5294 Implement task switching on pa-hpux.
5295 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
5296 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
5297
5298 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
5299
5300 * valops.c (find_overload_match): Add missing i18n markup.
5301
5302 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
5303
5304 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
5305
5306 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5307
5308 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
5309 list for the obconcat call.
5310 * mdebugread.c (parse_symbol): Likewise.
5311 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
5312 Likewise.
5313 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
5314 New variable ap. Remove variables len and val.
5315 * symfile.h (obconcat): Likewise for the prototype.
5316
5317 2010-05-07 Michael Snyder <msnyder@vmware.com>
5318
5319 * python/python.c (execute_gdb_command): Remove unused variables.
5320 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
5321 * python/py-breakpoint.c (gdbpy_breakpoint_created):
5322 Remove unused variable.
5323 * python/py-cmd.c (cmdpy_function): Remove unused variable.
5324 (cmdpy_completer): Remove unused variable.
5325 * python/py-frame.c (frapy_find_sal): Remove unused variable.
5326 * python/py-function.c (fnpy_call): Remove unused variable.
5327 * python/py-objfile.c (objfile_to_objfile_object):
5328 Remove unused variable.
5329 * python/py-param.c (parmpy_init): Remove unused variable.
5330 * python/py-prettyprint.c (apply_varobj_pretty_printer):
5331 Remove unused variable.
5332 (gdbpy_default_visualizer): Remove unused variable.
5333 * python/py-progspace.c (pspace_to_pspace_object):
5334 Remove unused variable.
5335 * python/py-symtab.c (symtab_and_line_to_sal_object):
5336 Remove unused variable.
5337 * python/py-type.c (typy_template_argument):
5338 Remove unused variable.
5339 * python/py-value.c (valpy_string): Remove unused variable.
5340 (convert_value_from_python): Remove unused variables.
5341
5342 2010-05-07 Michael Snyder <msnyder@vmware.com>
5343
5344 * valops.c (value_cast_pointers): Restore unused variable 'type1',
5345 and use it to compute variable 't1'.
5346
5347 2010-05-07 Joel Brobecker <brobecker@adacore.com>
5348
5349 * ada-lang.c (assign_aggregate): Remove unused variable.
5350
5351 2010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
5352
5353 PR C++/7943:
5354 * valops.c (find_overload_match): Handle fsym == NULL case.
5355 Add int no_adl argument.
5356 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
5357 when appropriate.
5358 Add int no_adl argument.
5359 (find_oload_champ_namespace): Add int no_adl argument.
5360 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
5361 expression.
5362 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
5363 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
5364 Evaluate arguments and use them to perform ADL lookup.
5365 Pass no_adl argument to find_overload_match.
5366 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
5367 * cp-support.h: Added prototype for
5368 make_symbol_overload_list_namespace.
5369 * cp-support.c (make_symbol_overload_list_namespace): New function.
5370 (make_symbol_overload_list_adl_namespace): New function.
5371 (make_symbol_overload_list_adl): New function.
5372 (make_symbol_overload_list_using): Moved code to add function to
5373 overload set to make_symbol_overload_list_namespace.
5374 * c-exp.y: create UNKNOWN_CPP_NAME token.
5375 Add parse rule for ADL functions.
5376 (classify_name): Recognize an UNKNOWN_CPP_NAME.
5377
5378 2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5379
5380 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
5381 sentinel.
5382
5383 2010-05-07 Joel Brobecker <brobecker@adacore.com>
5384
5385 Implement task switching on solaris targets.
5386 * sol-thread.c (thread_db_find_thread_from_tid)
5387 (sol_get_ada_task_ptid): New functions.
5388 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
5389
5390 2010-05-07 Pedro Alves <pedro@codesourcery.com>
5391
5392 * remote.c (remote_query_supported_append): Use reconcat.
5393 (remote_query_supported): Install a cleanup. Use reconcat.
5394
5395 2010-05-07 Pedro Alves <pedro@codesourcery.com>
5396
5397 * gdbarch.sh (qsupported): Delete.
5398 * gdbarch.h, gdbarch.c: Regenerate.
5399 * remote.c (remote_query_supported): Remove use of
5400 gdbarch_qsupported.
5401
5402 2010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
5403
5404 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
5405 function.
5406
5407 2010-05-06 Michael Snyder <msnyder@vmware.com>
5408
5409 * xml-support.c (xinclude_start_include): Delete unused variable.
5410 (xml_process_xincludes): Delete unused variable.
5411 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
5412 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
5413 (tdesc_find_arch_register): Delete unused variable.
5414 (tdesc_use_registers): Delete unused variable.
5415 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
5416 * inferior.c (print_inferior): Delete unused variable.
5417 * record.c (record_open_1): Delete unused variable.
5418 (record_restore): Delete unused variable.
5419 (cmd_record_save): Delete unused variable.
5420 * gcore.c (derive_heap_segment): Delete unused variable.
5421 (objfile_find_memory_regions): Use unused variable.
5422 * jit.c (jit_inferior_init): Delete unused variable.
5423 * progspace.c (clone_program_space): Delete unused variable.
5424 (pspace_empty_p): Delete unused variable.
5425
5426 * frame-unwind.c (frame_unwind_find_by_frame):
5427 Delete unused variable.
5428 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
5429 * cp-support.c (mangled_name_to_comp): Delete unused variable.
5430 (method_name_from_physname): Delete unused variable.
5431 (cp_func_name): Delete unused variable.
5432 (cp_validate_operator): Delete unused variable.
5433 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
5434 Delete unused variable.
5435 * trad-frame.c (trad_frame_get_prev_register):
5436 Delete unused variable.
5437 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
5438
5439 * serial.c (serial_for_fd): Delete unused variable.
5440 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
5441 * top.c (execute_command): Delete unused variable.
5442 (init_main): Delete unused variable.
5443 * utils.c (do_fclose_cleanup): Delete unused variable.
5444 (do_all_inferior_continuations): Delete unused variable.
5445 (initialize_utils): Delete unused variable.
5446 (internal_problem_mode): Delete unused global.
5447 * frame.c (get_prev_frame): Delete unused global.
5448 (get_frame_locals_address): Delete unused global.
5449 (get_frame_args_address): Delete unused global.
5450
5451 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
5452 (pascal_type_print_varspec_prefix): Delete unused variable.
5453 * f-typeprint.c (f_type_print_base): Delete unused variable.
5454 (f_type_print_varspec_suffix): Delete unused variable.
5455 * m2-typeprint.c (m2_print_type): Delete unused variable.
5456 (m2_long_set): Delete unused variable.
5457 * ada-valprint.c (ada_val_print_1): Delete unused variable.
5458 * d-valprint.c (dynamic_array_type): Delete unused variable.
5459 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
5460 Delete unused variable.
5461 (f77_create_arrayprint_offset_tbl): Delete unused variable.
5462 * m2-valprint.c (m2_val_print): Delete unused variable.
5463
5464 * ui-out.c (ui_out_field_int): Delete unused variable.
5465 (ui_out_field_fmt_int): Delete unused variable.
5466 * varobj.c (varobj_list_children): Delete unused variable.
5467 (varobj_set_value): Delete unused variable.
5468 (install_new_value_visualizer): Delete unused variable.
5469 (varobj_set_visualizer): Delete unused variable.
5470 (varobj_update): Delete unused variable.
5471 (varobj_editable_p): Delete unused variable.
5472 (c_value_of_root): Delete unused variable.
5473 (cplus_describe_child): Delete unused variable.
5474
5475 * ada-lang.c (add_defn_to_vec): Delete unused variable.
5476 (decode_constrained_packed_array_type): Delete unused variable.
5477 (add_defn_to_vec): Delete unused variable.
5478 (symbol_completion_match): Delete unused variable.
5479 (value_tag_from_contents_and_address): Delete unused variable.
5480 (ada_evaluate_subexp): Delete unused variable.
5481 * c-lang.c (classify_type): Delete unused variable.
5482 * f-lang.c (f_printstr): Delete unused variable.
5483 * objc-lang.c (objc_printstr): Delete unused variable.
5484 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
5485 * jv-lang.c (type_from_class): ifdef unused variable.
5486 (java_class_name_from_physname): Delete unused variable.
5487 * m2-lang.c (m2_printstr): Delete unused variable.
5488
5489 * objfiles.c (objfile_relocate): Delete unused variable.
5490 * maint.c (_initialize_maint_cmds): Delete unused variable.
5491 * demangle.c (_initialize_demangler): Delete unused variable.
5492 * corefile.c (reopen_exec_file): Delete unused variable.
5493 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
5494 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
5495
5496 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
5497 * memattr.c (mem_delete): Delete unused variable.
5498 (invalidate_target_mem_regions): Delete unused variable.
5499 * mem-break.c (default_memory_insert_breakpoint):
5500 Delete unused variable.
5501 * target.c (target_get_osdata): Delete unused variable.
5502 * parse.c (length_of_subexp): Delete unused variable.
5503 (prefixify_subexp): Delete unused variable.
5504 (exp_iterate): Delete unused variable.
5505 * reverse.c (delete_bookmark_command): Delete unused variable.
5506
5507 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
5508 * macroexp.c (gather_arguments): Delete unused variable.
5509 (substitute_args): Delete unused variable.
5510 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
5511 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
5512 (_initialize_gdbarch): Delete unused variable.
5513 * gdbarch.c, gdbarch.h: Regenerate.
5514 * arch-utils.c (initialize_current_architecture):
5515 Delete unused variable.
5516 (_initialize_gdbarch_utils): Delete unused variable.
5517 * gdbtypes.c (make_cv_type): Delete unused variable.
5518 (make_type_with_address_space): Delete unused variable.
5519
5520 * linespec.c (decode_compound): Delete unused variable.
5521 * dictionary.c (iterator_next_hashed): Delete unused variable.
5522 * infcall.c (call_function_by_hand): Delete unused variable.
5523 * infcmd.c (step_1): Delete unused variable.
5524 (registers_info): Delete unused variable.
5525 (attach_command): Delete unused variable.
5526 * infrun.c (follow_exec): Delete unused variable.
5527 (handle_step_into_function_backwards): Delete unused variable.
5528 (_initialize_infrun): Delete unused variable.
5529 * stack.c (parse_frame_specification_1): Delete unused variable.
5530 (frame_info): Delete unused variable.
5531 (backtrace_command_1): Delete unused variable.
5532 (catch_info): Delete unused variable.
5533
5534 * eval.c (evaluate_subexp_standard): Delete unused variable.
5535 * valops.c (value_cast_pointers): Delete unused variable.
5536 (value_dynamic_cast): Delete unused variable.
5537 (value_array): Delete unused variable.
5538 (find_overload_match): Delete unused variable.
5539 * valarith.c (value_subscript): Delete unused variable.
5540 (value_binop): Delete unused variable.
5541 * valprint.c (_initialize_valprint): Delete unused variable.
5542 * printcmd.c (print_command_1): Delete unused variable.
5543 (address_info): Delete unused variable.
5544 (printf_command): Delete unused variable.
5545
5546 * auxv.c (target_auxv_search): Delete unused variable.
5547 * blockframe.c (get_frame_block): Delete unused variable.
5548 * regcache.c (regcache_cpy): Delete unused variable.
5549 (regcache_cpy_no_passthrough): Delete unused variable.
5550 * charset.c (wchar_iterate): Delete unused variable.
5551 (find_charset_names): Delete unused variable.
5552 (_initialize_charset): Delete unused variable.
5553 * disasm.c (do_mixed_source_and_assembly):
5554 Delete unused variable.
5555 * source.c (set_default_source_symtab_and_line):
5556 Delete unused variable.
5557 (set_substitute_path_command): Delete unused variable.
5558 * value.c (preserve_values): Delete unused variable.
5559 (value_from_double): Delete unused variable.
5560
5561 2010-05-05 Michael Snyder <msnyder@vmware.com>
5562
5563 * psymtab.c (lookup_partial_symbol): Delete unused variable.
5564 (find_last_source_symtab_from_partial): Delete unused variable.
5565 * symfile.c (place_section): Delete unused variable.
5566 (default_symfile_offsets): Delete unused variable.
5567 (get_debug_link_info): Delete unused variable.
5568 (find_separate_debug_file_by_debuglink): Delete unused variable.
5569 (add_symbol_file_command): Delete unused variable.
5570 (symfile_find_segment_sections): Delete unused variable.
5571 * symmisc.c (free_symtab): Delete unused variable.
5572 (dump_symtab_1): Delete unused variable.
5573 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
5574 (find_pc_sect_symtab): Delete unused variable.
5575 (skip_prologue_using_lineinfo): Delete unused variable.
5576 (sources_info): Delete unused variable.
5577 (completion_list_add_name): Delete unused variable.
5578 (expand_line_sal): Delete unused variable.
5579
5580 * breakpoint.c (validate_commands_for_breakpoint):
5581 Delete unused variables.
5582 (insert_catchpoint): Delete unused variable.
5583 (update_watchpoint): Delete unused variable.
5584 (insert_bp_location): Delete unused variable.
5585 (insert_breakpoint_locations): Delete unused variable.
5586 (remove_breakpoint_1): Delete unused variable.
5587 (software_breakpoint_inserted_here_p): Delete unused variable.
5588 (watchpoints_triggered): Delete unused variable.
5589 (bpstat_check_watchpoint): Delete unused variable.
5590 (bpstat_stop_status): Delete unused variable.
5591 (print_one_breakpoint_location): Delete unused variable.
5592 (allocate_bp_location): Delete unused variable.
5593 (create_breakpoint): Delete unused variable.
5594 (watch_command_1): Delete unused variable.
5595 (catch_exception_command_1): Delete unused variable.
5596 (catch_ada_exception_command): Delete unused variable.
5597 (delete_breakpoint): Delete unused variable.
5598 (breakpoint_re_set_one): Delete unused variable.
5599 (do_enable_breakpoint): Delete unused variable.
5600
5601 2010-05-06 Pedro Alves <pedro@codesourcery.com>
5602
5603 * amd64-tdep.c: Include disasm.h.
5604 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
5605 (amd64_insn_length): Moved to disasm.c and renamed.
5606 (fixup_riprel): Adjust.
5607 * disasm.c (do_ui_file_delete): New.
5608 (gdb_insn_length): New.
5609 (gdb_buffered_insn_length_fprintf)
5610 (gdb_buffered_insn_length_init_dis)
5611 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
5612 renamed.
5613 * disasm.h (gdb_insn_length): Declare.
5614 (gdb_buffered_insn_length): Declare.
5615
5616 2010-05-06 Pedro Alves <pedro@codesourcery.com>
5617
5618 * remote.c (clear_threads_parsing_context): New.
5619 (remote_threads_info): Delete unused null_cleanup. Install a
5620 cleanup to clear the threads_parsing_context in case parsing
5621 throws.
5622
5623 2010-05-05 Michael Snyder <msnyder@vmware.com>
5624
5625 * c-exp.y (parse_string_or_char): Delete unused variable.
5626 (c_lex): Delete unused variable.
5627 * cp-name-parser.y (cpname_lex): Delete unused variable.
5628 * ada-exp.y (find_primitive_type): Delete unused variable.
5629 (write_var_or_type): Delete unused variable.
5630 * jv-exp.y (java_parse): Delete unused variable.
5631 (push_expression_name): Delete unused variable.
5632 * p-exp.y (pascal_lex): Delete unused variable.
5633
5634 2010-05-05 Pedro Alves <pedro@codesourcery.com>
5635
5636 * remote.c (remote_threads_info): Really revert previous previous
5637 change.
5638
5639 2010-05-05 Michael Snyder <msnyder@vmware.com>
5640
5641 * elfread.c (elf_symtab_read): Delete unused variable.
5642 (find_separate_debug_file_by_buildid): Delete unused variables.
5643 (elf_symfile_read): Delete unused variable.
5644
5645 * coffread.c (coff_symfile_read): Delete unused variables.
5646
5647 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
5648 (read_pe_exported_syms): Delete unused variable.
5649
5650 * stabsread.c (define_symbol): Delete unused variable.
5651
5652 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
5653 (process_psymtab_comp_unit): Delete unused variable.
5654 (dwarf2_build_psymtabs_hard): Delete unused variable.
5655 (load_partial_comp_unit): Delete unused variable.
5656 (create_all_comp_units): Delete unused variable.
5657 (scan_partial_symbols): Delete unused variable.
5658 (add_partial_symbol): Delete unused variable.
5659 (add_partial_namespace): Delete unused variable.
5660 (add_partial_enumeration): Delete unused variable.
5661 (load_full_comp_unit): Delete unused variable.
5662 (process_full_comp_unit): Delete unused variable.
5663 (read_file_scope): Delete unused variable.
5664 (read_type_unit_scope): Delete unused variable.
5665 (process_structure_scope): Delete unused variable.
5666 (process_enumeration_scope): Delete unused variable.
5667 (read_tag_ptr_to_member_type): Delete unused variable.
5668 (read_typedef): Delete unused variable.
5669 (read_partial_die): Delete unused variable.
5670 (decode_locdesc): Delete unused variable.
5671 (zeroed_partial_die): Delete unused global variable.
5672
5673 * tui/tui-interp.c (_initialize_tui_interp):
5674 Delete unused variable.
5675 * tui/tui-regs.c tui_display_registers_from):
5676 Delete unused variable.
5677 (tui_check_register_values): Delete unused variable.
5678 (tui_register_format): Delete unused variable.
5679 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
5680 * tui/tui-windata.c (tui_display_data_from_line):
5681 Delete unused variables.
5682 (tui_vertical_data_scroll): Delete unused variables.
5683
5684 2010-05-05 Michael Snyder <msnyder@vmware.com>
5685
5686 * remote.c (remote_threads_info): Revert questionable part of
5687 the previous change.
5688
5689 2010-05-05 Michael Snyder <msnyder@vmware.com>
5690
5691 * mi/mi-out.c (mi_table_begin): Delete unused variable.
5692 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
5693 (mi_cmd_var_list_children): Delete unused variable.
5694 (varobj_update_one): Delete unused variable.
5695 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
5696 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
5697 Delete unused variable.
5698 (mi_cmd_stack_list_variables): Delete unused variable.
5699 (list_args_or_locals): Delete unused variable.
5700 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
5701 Delete unused variables.
5702 (mi_cmd_file_list_exec_source_files): Delete unused variable.
5703 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
5704 Delete unused variable.
5705 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
5706 (mi_cmd_interpreter_exec): Delete unused variable.
5707 (mi_on_normal_stop): Delete unused variable.
5708 * mi/mi-main.c (run_one_inferior): Delete unused variable.
5709 (print_one_inferior): Delete unused variables.
5710 (mi_execute_command): Delete unused variable.
5711 (mi_cmd_execute): Delete unused variable.
5712 (timestamp): Delete unused variable.
5713
5714 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
5715 (restore_binary_file): Delete unused variable.
5716 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
5717 * cli/cli-script.c (define_command): Delete unused variables.
5718 (recurse_read_control_structure): Delete unused variable.
5719 (script_from_file): Delete unused variable.
5720 * cli/cli-cmds.c (complete_command): Delete unused variable.
5721 (disassemble_command): Delete unused variable.
5722
5723 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
5724 * tracepoint.c (delete_trace_variable_command):
5725 Delete unused variables.
5726 (encode_actions_1): Delete unused variables.
5727 (start_tracing): Delete unused variable.
5728 (trace_status_mi): Delete unused variable.
5729 (tfind_1): Delete unused variable.
5730 (trace_find_pc_command): Delete unused variable.
5731 (trace_find_line_command): Delete unused variables.
5732 (trace_find_range_command): Delete unused variables.
5733 (trace_find_outside_command): Delete unused variables.
5734 (parse_tracepoint_definition): Delete unused variables.
5735 (tfile_fetch_registers): Delete unused variable.
5736
5737 * dcache.c (dcache_init): Delete unused variable.
5738 (dcache_info): Delete unused variable.
5739
5740 * remote.c (remote_threads_info): Delete unused variable.
5741 (process_stop_reply) :Delete unused variable.
5742 (remote_get_trace_status): Delete unused variables.
5743
5744 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
5745 (thread_from_lwp): Delete unused variable.
5746 (enable_thread_event_reporting): Delete unused variable.
5747 (check_for_thread_db): Delete unused variables.
5748 (thread_db_find_new_threads_2): Delete unused variable.
5749
5750 * linux-fork.c (info_checkpoints_command): Delete unused variables.
5751 (checkpoint_command): Delete unused variable.
5752 (linux_fork_context): Delete unused variables.
5753
5754 * linux-nat.c (linux_parent_pid): Delete unused global variable.
5755 (linux_tracefork_child): Delete unused variable.
5756 (linux_child_follow_fork): Delete unused variable.
5757 (linux_nat_detach): Delete unused variable.
5758 (linux_handle_extended_wait): Delete unused variable.
5759 (linux_nat_has_pending_sigint): Delete unused variable.
5760 (linux_nat_find_memory_regions): Delete unused variable.
5761 (linux_nat_make_corefile_notes): Delete unused variables.
5762 (linux_nat_info_proc_cmd): Delete unused variable.
5763 (linux_proc_pending_signals): Delete unused variable.
5764 (linux_nat_stop_lwp): Delete unused variables.
5765 (_initialize_linux_nat): Delete unused variable.
5766
5767 * ser-pipe.c (pipe_ops): Delete unused global variable.
5768
5769 * linux-record.c (record_linux_system_call):
5770 Delete unused variables.
5771
5772 * corelow.c (core_xfer_partial): Delete unused variables.
5773
5774 * solib-svr4.c (find_program_interpreter): Delete unused variable.
5775 (svr4_solib_create_inferior_hook): Add ifdef around
5776 conditionally-used variable declarations.
5777
5778 * solib.c (solib_find): Delete unused variable.
5779 (free_so_symbols): Delete unused variable.
5780 (info_sharedlibrary_command): Delete unused variable.
5781 (reload_shared_libraries_1): Delete unused variable.
5782 (_initialize_solib): Delete unused variable.
5783
5784 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
5785 (i386_collect_xstateregset): Delete unused variable.
5786 * i387-tdep.c (i387_print_float_info): Delete unused variable.
5787
5788 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
5789 Delete unused variable 'type'.
5790
5791 2010-05-05 Joel Brobecker <brobecker@adacore.com>
5792
5793 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
5794 ada-lang.c: Remove comment mentioning these macros.
5795 * m2-exp.y: Delete commented out code.
5796
5797 2010-05-05 Joel Brobecker <brobecker@adacore.com>
5798
5799 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
5800 for array types.
5801 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
5802
5803 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
5804
5805 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
5806 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
5807 ATTRIBUTE_UNUSED.
5808 (cleanup_kernel_helper_return): Likewise.
5809 * arm-tdep.c (copy_unmodified): Likewise.
5810 (copy_preload): Likewise.
5811 (copy_copro_load_store): Likewise.
5812 (cleanup_branch): Likewise.
5813 (copy_b_bl_blx): Likewise.
5814 (copy_bx_blx_reg): Likewise.
5815 (copy_alu_imm): Likewise.
5816 (copy_alu_reg): Likewise.
5817 (copy_alu_shifted_reg): Likewise.
5818 (cleanup_load): Likewise.
5819 (cleanup_store): Likewise.
5820 (cleanup_block_load_pc): Likewise.
5821 (cleanup_svc): Likewise.
5822 (copy_undef): Likewise.
5823 (copy_unpred): Likewise.
5824 * remote.c (register_remote_support_xml): Likewise.
5825
5826 2010-05-05 Hui Zhu <teawater@gmail.com>
5827
5828 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
5829
5830 2010-05-04 Mark Kettenis <kettenis@gnu.org>
5831
5832 * remote.c (register_remote_support_xml)
5833 (remote_query_supported_append, remote_query_supported): Add cast
5834 to NULL used as sentinel.
5835 * tracepoint.c (tvariables_info_1): Likewise.
5836 * utils.c (add_internal_problem_command): Likewise.
5837
5838 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5839
5840 * dwarf2loc.c (read_pieced_value, write_pieced_value,
5841 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
5842 registers gracefully.
5843
5844 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5845
5846 * exec.c (print_section_info): Display entry point without arch
5847 specific parts.
5848
5849 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
5850
5851 PR exp/11349.
5852 * printcmd.c (x_command): Only dereference once implicitly for
5853 TYPE_CODE_REF.
5854
5855 2010-05-03 Doug Evans <dje@google.com>
5856
5857 * event-loop.c (gdb_timer): Delete unused global.
5858 (create_timer): Update.
5859
5860 2010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5861
5862 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
5863 CURRENT->DECLARATION case.
5864 * cp-support.h (struct using_direct): Provide extended comment.
5865
5866 2010-05-03 Mark Kettenis <kettenis@gnu.org>
5867
5868 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
5869 HPPABSD_SIZEOF_GREGS.
5870 (HPPAOBSD_SIZEOF_FPREGS): New define.
5871 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
5872 (hppaobsd_supply_fpregset): New function.
5873 (hppaobsd_gregset): Renamed from hppabsd_gregset.
5874 (hppaobsd_fpregset): New variable.
5875 (hppaobsd_regset_from_core_section): Handle floating-point registers.
5876 (_initialize_hppabsd_tdep): Remove spurious blank line.
5877
5878 2010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
5879
5880 PR pascal/11349.
5881 * p-valprint.c (pascal_value_print): Always dereference a value with
5882 type code TYPE_CODE_REF.
5883
5884 2010-05-03 Pedro Alves <pedro@codesourcery.com>
5885
5886 * remote.c (remote_notice_signals): New.
5887 (remote_start_remote): In non-stop mode, update the remote end on
5888 which signals it can silently pass.
5889 (init_remote_ops): Install remote_notice_signals.
5890
5891 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5892
5893 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
5894 * command.h (error_no_arg): ... here. Remove NORETURN, change
5895 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5896 * defs.h (NORETURN, ATTR_NORETURN): Remove.
5897 (perror_with_name, verror, error, error_stream, vfatal, fatal)
5898 (internal_verror, internal_error, nomem): Remove NORETURN, change
5899 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5900 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
5901 (throw_vfatal, throw_error): Remove NORETURN.
5902 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
5903 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
5904 (throw_error, deprecated_throw_reason): Remove NORETURN, change
5905 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5906 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
5907 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
5908 NORETURN.
5909 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
5910 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
5911 ATTRIBUTE_NORETURN.
5912 * target.c (tcomplain): Likewise.
5913 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
5914 ATTRIBUTE_NORETURN.
5915 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
5916 (internal_error, perror_with_name, nomem): Remove NORETURN.
5917 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
5918 ATTRIBUTE_NORETURN.
5919
5920 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5921
5922 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5923 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
5924 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
5925 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5926 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
5927 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5928 * complaints.h (complaint, internal_complaint): Likewise.
5929 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
5930 (ATTR_FORMAT): Remove.
5931 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
5932 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
5933 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
5934 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
5935 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
5936 (internal_error, internal_vwarning, internal_warning, warning)
5937 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5938 * disasm.c (fprintf_disasm): Likewise.
5939 * exceptions.c (throw_it): Likewise.
5940 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
5941 (throw_error): Likewise.
5942 * language.h (type_error, range_error): Likewise.
5943 * linespec.c (cplusplus_error): Likewise.
5944 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
5945 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
5946 * monitor.c (monitor_debug): Likewise.
5947 * parser-defs.h (parser_fprintf): Likewise.
5948 * serial.h (serial_printf): Likewise.
5949 * tui/tui-hooks.c (tui_query_hook): Likewise.
5950 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
5951 (uo_message): Likewise.
5952 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
5953 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
5954 Likewise.
5955 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
5956
5957 2010-05-02 Pedro Alves <pedro@codesourcery.com>
5958
5959 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
5960 (cli_table_header, cli_begin, cli_end, cli_field_int)
5961 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
5962 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
5963 Delete forward declarations.
5964 (cli_ui_out_impl): Move below the callbacks.
5965 (_initialize_cli_out): Delete.
5966
5967 2010-05-02 Pedro Alves <pedro@codesourcery.com>
5968
5969 * README: Use consistent `GDB' and `GDBserver' spellings.
5970
5971 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5972
5973 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
5974
5975 2010-05-01 Pedro Alves <pedro@codesourcery.com>
5976
5977 * infrun.c (prepare_for_detach): In non-stop, context switch to
5978 the thread that got the event before handling the event.
5979
5980 2010-04-30 Tom Tromey <tromey@redhat.com>
5981
5982 * symtab.c (symbol_set_names): Fix typo.
5983
5984 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5985
5986 * python/py-param.c (parm_constants): Avoid ARI warning
5987 by adding ARI comment.
5988 (parmpy_init): Likewise.
5989
5990 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5991
5992 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
5993 and created type for re-use.
5994
5995 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5996
5997 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
5998
5999 2010-04-29 Doug Evans <dje@google.com>
6000
6001 * ser-base.h (reschedule): Delete prototype.
6002 * ser-base.c (reschedule): Make static.
6003
6004 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6005
6006 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
6007 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
6008 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
6009 EABI.
6010 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
6011 use.
6012
6013 2010-04-29 Pedro Alves <pedro@codesourcery.com>
6014
6015 PR gdb/11557
6016
6017 * regcache.c (registers_changed): Rename to ...
6018 (registers_changed_ptid): ... this, and only delete register cache
6019 entries matching the ptid filter argument.
6020 (registers_changed): Reimplement on top of registers_changed_ptid.
6021 * regcache.h (registers_changed_ptid): Declare.
6022 * target.c (target_resume): Flush register caches.
6023
6024 2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
6025 Tom Tromey <tromey@redhat.com>
6026 Thiago Jung Bauermann <bauerman@br.ibm.com>
6027
6028 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
6029 (SUBDIR_PYTHON_SRCS): Likewise.
6030 (py-parameter.o): New rule.
6031 * python/py-parameter.c: New file.
6032 * python/python-internal.h (gdbpy_initialize_parameter)
6033 (gdbpy_parameter, gdbpy_parameter_value)
6034 (gdbpy_parse_command_name): Declare.
6035 * python/py-cmd.c (parse_command_name): Rename to
6036 gdbpy_parse_command_name.
6037 (gdbpy_parse_command_name): Accept a starting list parameter and
6038 use over cmdlist.
6039 (cmdpy_init): Use gdbpy_parse_command_name.
6040 * python/python.c (parameter_to_python): Rename to
6041 gdbpy_parameter_to_python. Accept enum var_types and value.
6042 (gdbpy_parameter): Use gdbpy_parameter_value.
6043 (_initialize_python): Call gdbpy_initialize_parameters.
6044
6045 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6046
6047 * MAINTAINERS: Add myself for write after approval privileges.
6048
6049 2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
6050
6051 D language support.
6052 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
6053 (COMMON_OBS): Add d-lang.o d-valprint.o.
6054 (HFILES_NO_SRCDIR): Add d-lang.h.
6055 * NEWS: Mention D language support.
6056 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
6057 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
6058 * d-lang.c: New file.
6059 * d-lang.h: New file.
6060 * d-valprint.c: New file.
6061 * defs.h (enum language): Add language_d.
6062 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
6063 * language.c (binop_result_type, integral_type, character_type)
6064 (string_type, boolean_type, structured_type): Add language_d.
6065 * symfile.c (init_filename_language_table): Add language_d.
6066 * symtab.c: Include d-lang.h.
6067 (symbol_init_language_specific, symbol_find_demangled_name)
6068 (symbol_natural_name, lookup_symbol_in_language)
6069 (symbol_demangled_name, symbol_matches_domain): Add language_d.
6070
6071 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6072
6073 * solib-svr4.c (solib_svr4_r_map): Expand function description.
6074
6075 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6076
6077 * symfile.c (init_filename_language_table): Register .dg files
6078 with language_ada.
6079
6080 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6081
6082 * gdbtypes.h (struct main_type): Expand comment about target_type
6083 field.
6084
6085 2010-04-27 Pedro Alves <pedro@codesourcery.com>
6086 Tristan Gingold <gingold@adacore.com>
6087
6088 * symfile.c (reread_symbols): Also search for file in libraries.
6089 Update comment.
6090
6091 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6092
6093 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
6094 in terms of configuration.
6095
6096 2010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
6097
6098 * objfiles.c: Include solist.h.
6099 (free_all_objfiles): New variable so. Check stale solist objfiles.
6100 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
6101 and no_shared_libraries.
6102
6103 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6104
6105 ARI warning fix.
6106 * python/py-auto-load.c (source_section_scripts): Remove trailing
6107 new-line in i18n string.
6108
6109 2010-04-26 Doug Evans <dje@google.com>
6110
6111 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
6112
6113 2010-04-26 Tom Tromey <tromey@redhat.com>
6114
6115 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
6116 command list.
6117
6118 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
6119
6120 Removal of config/i386/nm-i386sol2.h native configuration file.
6121 * config/i386/nm-i386sol2.h: Remove file.
6122 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
6123 * config/i386/sol2-64.mh: Idem.
6124 * config/djgpp/fnchange.lst: Remove reference to that file.
6125 * Makefile.in (HFILES_NO_SRCDIR): Idem.
6126
6127 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
6128
6129 PR breakpoints/11531.
6130 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
6131 macro definition and related comment.
6132 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
6133 (resume): Remove code and comment related to this macro.
6134
6135 2010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6136
6137 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
6138 Fix whitespace.
6139
6140 2010-04-24 Pedro Alves <pedro@codesourcery.com>
6141
6142 * defs.h: Adjust comment.
6143 * filesystem.h, filesystem.c: New files.
6144 * Makefile.in (SFILES): Add filesystem.c.
6145 (COMMON_OBS): Add filesystem.o.
6146 * solib.c (solib_find): Handle DOS-based filesystems. Handle
6147 different target and host path flavours.
6148 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
6149 has_dos_based_file_system on the gdbarch.
6150 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
6151 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
6152 * i386-tdep.c (i386_go32_init_abi): Ditto.
6153 * gdbarch.sh (has_dos_based_file_system): New.
6154 * gdbarch.h, gdbarch.c: Regenerate.
6155 * NEWS: Mention improved support for remote targets with DOS-based
6156 filesystems. Mention new `set/show target-file-system-kind'
6157 commands.
6158
6159 2010-04-23 Stan Shebs <stan@codesourcery.com>
6160
6161 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
6162 comments.
6163 (struct agent_reqs): Remove.
6164 (ax_reg_mask): Declare.
6165 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
6166 (free_agent_expr): Free reg_mask.
6167 (ax_print): Add scope and register mask info.
6168 (ax_reqs): Remove agent_reqs argument, use agent expression
6169 fields, and move part of register mask computation to...
6170 (ax_reg_mask): New function.
6171 * ax-gdb.c (gen_trace_static_fields): Call it.
6172 (gen_traced_pop): Ditto.
6173 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
6174 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
6175 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
6176 (gen_eval_for_expr): Ditto, and require an rvalue.
6177 (agent_command): Call ax_reqs.
6178 (agent_eval_command): Ditto.
6179 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
6180 (validate_action_line): Ditto.
6181 (collect_symbol): Ditto.
6182 (encode_actions_1): Ditto.
6183
6184 2010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
6185 Paul Pluzhnikov <ppluzhnikov@google.com>
6186 Jan Kratochvil <jan.kratochvil@redhat.com>
6187
6188 Fix deadlock on looped list of loaded shared objects.
6189 * solib-svr4.c (LM_PREV): New function.
6190 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
6191 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
6192 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
6193 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
6194
6195 2010-04-23 Doug Evans <dje@google.com>
6196
6197 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
6198 python.
6199 * configure: Regenerate.
6200 * main.c: #include "python/python.h".
6201 (captured_main): Defer loading auto-loaded scripts until after
6202 local_gdbinit has been sourced.
6203 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
6204 (load_auto_scripts_for_objfile): New function.
6205 (auto_load_new_objfile): Call it.
6206 * python/python.h (gdbpy_global_auto_load): Declare.
6207 (load_auto_scripts_for_objfile): Declare.
6208
6209 Add support for auto-loading scripts from .debug_gdb_scripts section.
6210 * NEWS: Add entry for .debug_gdb_scripts.
6211 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
6212 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
6213 (py-auto-load.o): New rule.
6214 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
6215 * cli/cli-cmds.h (find_and_open_script): Update prototype.
6216 * python/py-auto-load.c: New file.
6217 * python/python-internal.h: #include <stdio.h>.
6218 (set_python_list, show_python_list): Declare.
6219 (gdbpy_initialize_auto_load): Declare.
6220 (source_python_script_for_objfile): Declare.
6221 * python/python.c: Remove #include of observer.h.
6222 (gdbpy_auto_load): Moved to py-auto-load.c.
6223 (GDBPY_AUTO_FILENAME): Ditto.
6224 (gdbpy_new_objfile): Delete.
6225 (source_python_script_for_objfile): New function.
6226 (set_python_list, show_python_list): Make externally visible.
6227 (_initialize_python): Move "auto-load" command to py-auto-load.c
6228 and observer_attach_new_objfile to py-auto-load.c.
6229
6230 2010-04-23 Jerome Guitton <guitton@adacore.com>
6231
6232 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
6233 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
6234 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
6235 New constants.
6236 (alpha_heuristic_analyze_probing_loop): New function.
6237 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
6238 and handle cases when a stack probe loop is generated.
6239 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
6240 (alpha_mdebug_max_frame_size_exceeded): New function.
6241 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
6242 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
6243 Return 0 when the maximum debuggable frame size has been exceeded.
6244
6245 2010-04-23 Joel Brobecker <brobecker@adacore.com>
6246
6247 Fix ARI warning.
6248 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
6249
6250 2010-04-20 Chris Moller <cmoller@redhat.com>
6251
6252 PR 10179
6253
6254 * symtab.c (rbreak_command): Added code to include a filename
6255 specification in the rbreak argument.
6256 * NEWS: Added a brief description of filename-qualified rbreak.
6257
6258 2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
6259
6260 Fix crashes on dangling display expressions.
6261 * ada-lang.c (ada_operator_check): New function.
6262 (ada_exp_descriptor): Fill-in the field operator_check.
6263 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
6264 * jv-lang.c (exp_descriptor_java): Likewise.
6265 * m2-lang.c (exp_descriptor_modula2): Likewise.
6266 * scm-lang.c (exp_descriptor_scm): Likewise.
6267 * parse.c (exp_descriptor_standard): Likewise.
6268 (operator_check_standard): New function.
6269 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
6270 * parser-defs.h (struct exp_descriptor): New field operator_check.
6271 (operator_check_standard, exp_uses_objfile): New declarations.
6272 * printcmd.c: Remove the inclusion of solib.h.
6273 (display_uses_solib_p): Remove the function.
6274 (clear_dangling_display_expressions): Call lookup_objfile_from_block
6275 and exp_uses_objfile instead of display_uses_solib_p.
6276 * solist.h (struct so_list) <objfile>: New comment.
6277 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
6278 * symtab.h (lookup_objfile_from_block): New declaration.
6279 (struct general_symbol_info) <obj_section>: Extend the comment.
6280
6281 2010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
6282 Thiago Jung Bauermann <bauerman@br.ibm.com>
6283
6284 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
6285 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
6286 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
6287 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
6288 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
6289 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
6290 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
6291 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
6292 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
6293 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
6294 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
6295 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
6296 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
6297 Define, in case <ptrace.h> doesn't provide it.
6298 (booke_debug_info): New variable.
6299 (max_slots_number): Ditto.
6300 (hw_break_tuple): New struct.
6301 (thread_points): Ditto.
6302 (ppc_threads): New variable.
6303 (PPC_DEBUG_CURRENT_VERSION): New define.
6304 (have_ptrace_new_debug_booke): New function.
6305 (ppc_linux_check_watch_resources): Renamed to ...
6306 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
6307 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
6308 (booke_cmp_hw_point): New function.
6309 (booke_find_thread_points_by_tid): Ditto.
6310 (booke_insert_point): Ditto.
6311 (booke_remove_point): Ditto.
6312 (ppc_linux_insert_hw_breakpoint): Ditto.
6313 (ppc_linux_remove_hw_breakpoint): Ditto.
6314 (get_trigger_type): Ditto.
6315 (ppc_linux_insert_watchpoint): Handle BookE processors.
6316 (ppc_linux_remove_watchpoint): Ditto.
6317 (ppc_linux_new_thread): Ditto.
6318 (ppc_linux_thread_exit): New function..
6319 (ppc_linux_stopped_data_address): Handle BookE processors.
6320 (ppc_linux_watchpoint_addr_within_range): Ditto.
6321 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
6322 to_remove_hw_breakpoint fields of the target operations struct.
6323 Add observe for the thread_exit event.
6324
6325 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
6326
6327 * i386-linux-nat.c (regmap): Removed.
6328 (fetch_register): Replace regmap with
6329 i386_linux_gregset_reg_offset.
6330 (store_register): Likewise.
6331 (supply_gregset): Likewise.
6332 (fill_gregset): Likewise.
6333
6334 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
6335 global.
6336
6337 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
6338
6339 2010-04-22 Chris Moller <cmoller@redhat.com>
6340
6341 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
6342 method of popping recursion-detection stack with a method based on
6343 obstack_object_size(). (Similar to the PR9167 patch below, but for
6344 the static array obstack rather than the static member obstack.)
6345
6346 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
6347
6348 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
6349 (_initialize_amd64_linux_nat): Replace
6350 amd64_linux_gregset64_reg_offset with
6351 amd64_linux_gregset_reg_offset.
6352
6353 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
6354 global.
6355
6356 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
6357
6358 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
6359
6360 PR stabs/11479.
6361 * stabsread.c (set_length_in_type_chain): New function.
6362 (read_struct_type): Call set_length_in_type_chain function.
6363 (read_enum_type): Idem.
6364
6365 2010-04-21 Stan Shebs <stan@codesourcery.com>
6366 Nathan Sidwell <nathan@codesourcery.com>
6367
6368 * tracepoint.c (trace_save): Open in binary mode.
6369
6370 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
6371
6372 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
6373 fields.
6374 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
6375 builtin_char32 fields.
6376 * printcmd.c (decode_format): Set char size to '\0'
6377 for strings unless explicit size is given.
6378 (print_formatted): Correct calculation of NEXT_ADDRESS
6379 for 16 or 32 bit strings.
6380 (do_examine): Do not force byte size for strings.
6381 Use builtin_char16 and builtin_char32 types to display
6382 16 or 32 bit-wide strings.
6383 (x_command): Set LAST_SIZE to 'b' for string type.
6384
6385 2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
6386
6387 PR corefiles/11523
6388 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6389 XCR0 first.
6390
6391 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
6392 there is no .reg-xstate section.
6393 (i386_linux_core_read_description): Check XCR0 first.
6394
6395 2010-04-21 Mike Frysinger <vapier@gentoo.org>
6396
6397 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
6398 for len <= 8.
6399
6400 2010-04-21 Chris Moller <cmoller@redhat.com>
6401
6402 PR 9167
6403 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
6404 method of popping recursion-detection stack with a method based on
6405 obstack_object_size().
6406
6407 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
6408
6409 PR pascal/11492.
6410 * p-valprint.c (pascal_val_print): Fix default printing of integer
6411 arrays.
6412
6413 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
6414
6415 Fix compilation warning on gcc-4.1.2.
6416 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
6417 local variable`pc' to zero.
6418
6419 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6420
6421 Implement thread support with core files on alpha-tru64.
6422 * dec-thread.c (dec_thread_find_new_threads): New function,
6423 extracted from resync_thread_list.
6424 (resync_thread_list): Add OPS parameter. Replace extracted-out
6425 code by call to dec_thread_find_new_threads.
6426 (dec_thread_wait): Update call to resync_thread_list.
6427 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
6428
6429 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6430
6431 * ada-lang.c (value_pointer): New function.
6432 (make_array_descriptor): Call value_pointer to convert addresses to
6433 pointers.
6434
6435 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6436
6437 * rs6000-aix-tdep.c: #include exceptions.h.
6438 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
6439 while reading the memory at ADDR, then ADDR cannot be a function
6440 descriptor.
6441
6442 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6443
6444 * ada-typeprint.c (ada_print_typedef): New function.
6445 * ada-lang.h (ada_print_typedef): Add declaration.
6446 * ada-lang.c (ada_language_defn): set la_print_typdef field
6447 to ada_print_typedef.
6448
6449 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6450
6451 * procfs.c (procfs_address_to_host_pointer): Only define when used.
6452
6453 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6454
6455 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
6456 (iterate_over_mappings): Adjust function profile. Add declaration.
6457 (insert_dbx_link_bpt_in_region, info_mappings_callback):
6458 Adjust accordingly.
6459
6460 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6461
6462 * procfs.c (solib_mappings_callback): Move function up to avoid
6463 a compiler warning.
6464
6465 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6466
6467 * procfs.c (find_signalled_thread, find_stop_signal): Move
6468 these functions down to define them only when used.
6469
6470 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6471
6472 * valprint.c (common_val_print): Fix the value before extracting
6473 its contents.
6474 * ada-lang.c (ada_to_fixed_value): Make this function extern.
6475 * ada-lang.h (ada_to_fixed_value): New function declaration.
6476 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
6477 to avoid code duplication and fix a bug in the handling of
6478 fixed types contents.
6479
6480 2010-04-20 Tom Tromey <tromey@redhat.com>
6481
6482 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
6483 (read_partial_die): Likewise.
6484 (dwarf_attr_name): Likewise.
6485
6486 2010-04-20 Chris Moller <cmoller@redhat.com>
6487
6488 PR 10867
6489
6490 * cp-valprint.c (global): Adding new static array recursion
6491 detection obstack.
6492 (cp_print_value_fields, cp_print_static_field): Added new static
6493 array recursion detection code.
6494
6495 2010-04-20 Mark Kettenis <kettenis@gnu.org>
6496
6497 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
6498 general-purpose register set should be 68 instead of 144.
6499 (i386_linux_sse_regset_sections): Likewise.
6500 (i386_linux_avx_regset_sections): Likewise.
6501
6502 2010-04-20 Stan Shebs <stan@codesourcery.com>
6503 Nathan Sidwell <nathan@codesourcery.com>
6504
6505 * dwarf2loc.c (struct axs_var_loc): New struct.
6506 (dwarf2_tracepoint_var_loc): New function.
6507 (dwarf2_tracepoint_var_access): New function.
6508 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
6509 with DW_OP_piece.
6510 (locexpr_describe_location_piece): New function.
6511 (locexpr_describe_location_1): New function.
6512 (locexpr_describe_location): Call it, update signature.
6513 (loclist_describe_location): Rewrite to loop over locations,
6514 update signature.
6515 * symtab.h (struct symbol_computed_ops): Add address to
6516 describe_location arguments, return void.
6517 * printcmd.c (address_info): Get context PC, pass to computed
6518 location description.
6519 * tracepoint.c (scope_info): Ditto.
6520 * ax-gdb.c (trace_kludge): Export.
6521
6522 2010-04-20 Tom Tromey <tromey@redhat.com>
6523
6524 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
6525 (struct dwarf2_cie) <segment_size>: New field.
6526 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
6527 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
6528 DW_FORM_exprloc.
6529 (read_attribute_value): Handle DW_FORM_flag_present,
6530 DW_FORM_sec_offset, DW_FORM_exprloc.
6531 (dump_die_shallow): Likewise.
6532 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
6533 (dwarf2_const_value): Handle DW_FORM_exprloc.
6534 (attr_form_is_block): Likewise.
6535 (struct line_header) <maximum_ops_per_instruction>: New field.
6536 (dwarf_decode_line_header): Set new field.
6537 (dwarf_decode_lines): Handle new field.
6538
6539 2010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6540
6541 * f-exp.y: Add new production to recognize the `logical*8' type.
6542 (LOGICAL_S8_KEYWORD): New token.
6543 * f-lang.c (enum f_primitive_types)
6544 <f_primitive_type_logical_s8>: New field.
6545 (f_language_arch_info): Handling `logical*8' type.
6546 (build_fortran_types): Building `logical*8' type.
6547 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
6548
6549 2010-04-19 Doug Evans <dje@google.com>
6550
6551 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
6552 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
6553 (pipe_close): Ditto.
6554
6555 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6556
6557 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
6558
6559 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6560
6561 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
6562 type to void function.
6563
6564 2010-04-19 Stan Shebs <stan@codesourcery.com>
6565 Vladimir Prus <vladimir@codesourcery.com>
6566
6567 * tracepoint.c (tfind_1): Add missing newline, report exit from
6568 tfind mode as such.
6569 * target.c (update_current_target): Make default
6570 to_trace_find return -1.
6571
6572 2010-04-19 Mike Frysinger <vapier@gentoo.org>
6573
6574 * objc-lang.c (find_methods): Move symname check up.
6575
6576 2010-04-19 Pedro Alves <pedro@codesourcery.com>
6577
6578 * ada-lang.c (print_recreate_exception)
6579 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
6580 not "catch unhandled".
6581
6582 2010-04-19 Pedro Alves <pedro@codesourcery.com>
6583
6584 PR breakpoints/8554.
6585
6586 Implement `save-breakpoints'.
6587
6588 * breakpoint.c (save_cmdlist): New.
6589 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
6590 to save_cmdlist.
6591 (print_recreate_catch_fork): New.
6592 (catch_fork_breakpoint_ops): Install it.
6593 (print_recreate_catch_vfork): New.
6594 (catch_vfork_breakpoint_ops): Install it.
6595 (print_recreate_catch_syscall): New.
6596 (catch_syscall_breakpoint_ops): Install it.
6597 (print_recreate_catch_exec): New.
6598 (catch_exec_breakpoint_ops): Install it.
6599 (print_recreate_exception_catchpoint): New.
6600 (gnu_v3_exception_catchpoint_ops): Install it.
6601 (save_breakpoints): New, based on tracepoint_save_command, but
6602 handle all breakpoint types.
6603 (save_breakpoints_command): New.
6604 (tracepoint_save_command): Rename to...
6605 (save_tracepoints_command): ... this, and reimplement using
6606 save_breakpoints.
6607 (save_command): New.
6608 (_initialize_breakpoints): Install the "save" command prefix.
6609 Install the "save breakpoints" command. Make "save-tracepoints" a
6610 deprecated alias for "save tracepoints".
6611 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
6612 * ada-lang.c (print_recreate_exception): New.
6613 (print_recreate_catch_exception): New.
6614 (catch_exception_breakpoint_ops): Install it.
6615 (print_recreate_catch_exception_unhandled): New.
6616 (catch_exception_unhandled_breakpoint_ops): Install it.
6617 (print_recreate_catch_assert): New.
6618 (catch_assert_breakpoint_ops): Install it.
6619
6620 * NEWS: Mention the new `save breakpoints' command. Mention the
6621 new `save tracepoints' alias and that `save-tracepoints' is now
6622 deprecated.
6623
6624 2010-04-18 Pedro Alves <pedro@codesourcery.com>
6625
6626 PR tui/9217
6627
6628 * tui/tui-out.c: Include cli-out.h.
6629 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6630 (tui_begin, tui_end, tui_field_int, tui_field_skip)
6631 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
6632 (tui_message, tui_wrap_hint, tui_flush): Delete forward
6633 declarations.
6634 (struct ui_out_data): Rename to...
6635 (struct tui_ui_out_data): ... this. Remove `stream' and
6636 `suppress_output' fields, and inherit cli_ui_out_data.
6637 (tui_out_data): New typedef.
6638 (tui_ui_out_impl): Don't initialize fields staticaly.
6639 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6640 (tui_begin, tui_end): Delete.
6641 (tui_field_int): Adjust to delegate most work to the base type.
6642 (tui_field_skip): Delete.
6643 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
6644 delegate most work to the base type.
6645 (tui_spaces): Delete.
6646 (tui_text): Adjust to delegate most work to the base type.
6647 (tui_message): Delete.
6648 (tui_wrap_hint): Delete.
6649 (tui_flush): Delete.
6650 (out_field_fmt): Delete.
6651 (field_separator): Delete.
6652 (tui_out_new): Adjust to initialize the base type.
6653 (_initialize_tui_out): Initialize tui_ui_out_impl.
6654 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
6655 cli_ui_out_data.
6656 (cli_out_data): Adjust.
6657 (cli_ui_out_impl): Make extern.
6658 (cli_table_header, cli_field_int, cli_field_skip): Use
6659 uo_field_string instead of cli_field_string.
6660 (cli_redirect): Adjust to use cli_out_data.
6661 (cli_out_data_ctor): New.
6662 (cli_out_new): Use it.
6663 * cli-out.h (struct ui_file): Remove forward declaration.
6664 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
6665 (cli_ui_out_impl): Declare.
6666 (cli_out_data_ctor): Declare.
6667 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
6668 (uo_field_string): No longer static.
6669 (ui_out_data): Change return type to void pointer.
6670 (ui_out_new): Change `data' parameter type to void pointer.
6671 * ui-out.h (struct ui_out_data): Don't forward declare.
6672 (ui_out_data): Change return type to void pointer.
6673 (ui_out_new): Change `data' parameter type to void pointer.
6674 (uo_field_string): Declare.
6675
6676 2010-04-17 Pedro Alves <pedro@codesourcery.com>
6677
6678 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
6679 instead of always false.
6680
6681 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
6682
6683 PR corefiles/11511
6684 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
6685 orig_rax.
6686
6687 2010-04-17 Pedro Alves <pedro@codesourcery.com>
6688
6689 * breakpoint.c (watchpoints_triggered): Use
6690 is_hardware_watchpoint.
6691 (watchpoints_triggered): Ditto.
6692 (bpstat_check_location): Use is_watchpoint and
6693 is_hardware_watchpoint.
6694 (bpstat_check_watchpoint): Use is_watchpoint and
6695 is_hardware_watchpoint.
6696 (bpstat_stop_status): Fix comment.
6697 (user_settable_breakpoint): Use is_watchpoint.
6698 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
6699 (disable_watchpoints_before_interactive_call_start): Use
6700 is_watchpoint.
6701 (enable_watchpoints_after_interactive_call_stop): Use
6702 is_watchpoint.
6703 (clear_command): Use is_watchpoint.
6704 (do_enable_breakpoint): Use is_watchpoint.
6705
6706 2010-04-16 Mike Frysinger <vapier@gentoo.org>
6707
6708 * solib-frv.c (enable_break1_done): Delete.
6709 (enable_break2): Do not check enable_break1_done. Move the
6710 enable_break2_done setting and call to
6711 remove_solib_event_breakpoints() to the end. Return without
6712 warning when the contents of _dl_debug_addr are 0.
6713 (enable_break): Do not set enable_break1_done.
6714 (frv_clear_solib): Likewise.
6715
6716 2010-04-16 Kevin Buettner <kevinb@redhat.com>
6717
6718 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
6719 instead of an error if no PLT entry is found. Return a
6720 potentially useful result.
6721 (m32c_m16c_pointer_to_address): Add code to search for function
6722 address when no .plt entry is found.
6723
6724 2010-04-16 Stan Shebs <stan@codesourcery.com>
6725
6726 * tracepoint.c (trace_variable_command): Run a cleanup.
6727
6728 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6729
6730 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
6731
6732 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6733
6734 Support for Windows OS Thread Information Block.
6735 * NEWS: Document new feature.
6736 * remote.c (PACKET_qGetTIBAddr): New enum element.
6737 (remote_get_tib_address): New function.
6738 (init_remote_ops): Set to_get_tib_address field
6739 to remote_get_tib_address.
6740 (_initialize_remote): Add add_packet_config_cmd
6741 for PACKET_qGetTIBAddr.
6742 * target.c (update_current_target): Set default value for
6743 new to_get_tib_address field.
6744 * target.h (target_ops): New field to_get_tib_address.
6745 (target_get_tib_address): New macro.
6746 * windows-nat.c (thread_info): Add thread_local_base field.
6747 (windows_add_thread): Add tlb argument of type 'void *'.
6748 (fake_create_process): Adapt windows_add_thread call.
6749 (get_windows_debug_event): Idem.
6750 (windows_get_tib_address): New function.
6751 (init_windows_ops): Set to_get_tib_address field
6752 to remote_get_tib_address.
6753 (_initialize_windows_nat): Replace info_w32_cmdlist
6754 initialization by a call to init_w32_command_list.
6755 (info_w32_command, info_w32_cmdlist): Removed from here...
6756 to windows-tdep.c file.
6757 * windows-tdep.h (info_w32_cmdlist): Declare.
6758 (init_w32_command_list): New external function
6759 declaration.
6760 * windows-tdep.c: Add several headers.
6761 (info_w32_cmdlist): to here, made global.
6762 (thread_information_32): New struct.
6763 (thread_information_64): New struct.
6764 (TIB_NAME): New char array.
6765 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
6766 (maint_display_all_tib): New static variable.
6767 (windows_get_tlb_type): New function.
6768 (tlb_value_read, tlb_value_write): New functions.
6769 (tlb_value_funcs): New static struct.
6770 (tlb_make_value): New function.
6771 (display_one_tib): New function.
6772 (display_tib): New function.
6773 (show_maint_show_all_tib):New function.
6774 (info_w32_command): Moved from windows-nat.c.
6775 (init_w32_command_list): New function.
6776 (_initialize_windows_tdep): New function.
6777 New "maint set/show show-all-tib" command
6778 New "$_tlb" internal variable.
6779
6780 2010-04-16 Joel Brobecker <brobecker@adacore.com>
6781
6782 * tui/tui-regs.c (tui_display_register): Add comment about
6783 a couple of casts.
6784 * tui/tui-stack.c (tui_show_locator_content): Ditto.
6785
6786 2010-04-15 Stan Shebs <stan@codesourcery.com>
6787
6788 * frame.c: Include tracepoint.h.
6789 (get_current_frame): Allow a trace frame to be an alternate source
6790 of stack frame data.
6791 * tracepoint.c (tfind_1): Don't try to get current stack frame if
6792 it won't succeed.
6793
6794 2010-04-15 Pedro Alves <pedro@codesourcery.com>
6795
6796 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
6797 flags.
6798 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
6799
6800 2010-04-15 Doug Evans <dje@google.com>
6801
6802 * NEWS: Add entry for python program space support.
6803 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
6804 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
6805 (py-progspace.o): New rule.
6806 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
6807 function.
6808 (find_pretty_printer_from_progspace): New function.
6809 (find_pretty_printer_from_gdb): New function.
6810 (find_pretty_printer): Rewrite.
6811 * python/py-progspace.c: New file.
6812 * python/python-internal.h (program_space): Add forward decl.
6813 (pspace_to_pspace_object, pspy_get_printers): Declare.
6814 (gdbpy_initialize_pspace): Declare.
6815 * python/python.c: #include "progspace.h".
6816 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
6817 (_initialize_python): Call gdbpy_initialize_pspace.
6818 (GdbMethods): Add current_progspace, progspaces.
6819
6820 Add -s option to source command.
6821 * NEWS: Document new option.
6822 * cli/cli-cmds.c (find_and_open_script): Add function comment.
6823 Delete from_tty and cleanupp args. Split filep arg into file and
6824 full_pathp. New arg search_path.
6825 (source_script_from_stream): New function.
6826 (source_script_with_search): New function.
6827 (source_script): Rewrite.
6828 (source_command): Parse "-s" option.
6829 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
6830 * python/python.c (source_python_script): Make file arg a const char *.
6831 Don't call fclose, leave for caller.
6832 * python/python.h (source_python_script): Update.
6833
6834 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
6835 Pedro Alves <pedro@codesourcery.com>
6836
6837 Avoid rereading shared libraries that haven't changed.
6838
6839 * solib.c (free_so_symbols): New function, from ...
6840 (free_so): ... here. Call it.
6841 (solib_read_symbols): Don't warn here if symbols have already been
6842 loaded.
6843 (solib_add): Warn here instead, if a pattern was specified.
6844 (reload_shared_libraries_1): New.
6845 (reload_shared_libraries): Rewrite to not fetch the library list.
6846
6847 2010-04-14 Doug Evans <dje@google.com>
6848
6849 * source.c (openp): Strip DOS drive letter if present before
6850 concatenating string to search path.
6851
6852 2010-04-14 Pedro Alves <pedro@codesourcery.com>
6853
6854 * objfiles.h (gdb_bfd_close_or_warn): Declare.
6855 * objfiles.c (gdb_bfd_close_or_warn): New.
6856 * corelow.c: Include objfiles.h
6857 (core_close): Use gdb_bfd_close_or_warn.
6858 * elfread.c (build_id_verify): Ditto.
6859 * exec.c (exec_close, exec_close_1): Ditto.
6860
6861 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
6862 Pedro Alves <pedro@codesourcery.com>
6863
6864 Group errors for many missing shared libraries.
6865
6866 * solist.h (struct so_list): Remove from_tty.
6867 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
6868 (solib_map_sections): Take so_list argument. Return 0 if we
6869 failed to open a BFD. Add target sections here.
6870 (symbol_add_stub): Delete.
6871 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
6872 not from_tty copied from the so_list. Don't warn a second time
6873 for a missing library.
6874 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
6875 add to the section table here. Print out a single warning for all
6876 missing libraries.
6877 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
6878 flags.
6879
6880 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
6881
6882 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
6883 error/warning messages. Capitalize and use complete sentences.
6884 (blpy_block_syms_iternext): Likewise.
6885 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
6886 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
6887 (frame_info_to_frame_object, frapy_read_var)
6888 (gdbpy_frame_stop_reason_string): Likewise.
6889 * python/py-lazy-string.c (stpy_convert_to_value)
6890 (gdbpy_create_lazy_string_object): Likewise.
6891 * python/py-objfile.c (objfpy_set_printers): Likewise.
6892 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
6893 * python/python.c (parameter_to_python): Likewise.
6894 * python/py-type.c (typy_range, typy_target): Likewise.
6895 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
6896 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
6897
6898
6899 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
6900
6901 PR python/11381
6902
6903 * python/py-prettyprint.c (pretty_print_one_value): Test for
6904 Py_None.
6905 (print_string_repr): Test for Py_None. Set flags accordingly.
6906 Return value depending on return type.
6907 (print_children): Take a value indicating whether data was printed
6908 before this function was called. Alter output accordingly.
6909 (apply_val_pretty_printer): Capture return value from
6910 print_string_repr and pass to print_children.
6911
6912 2010-04-13 Mark Kettenis <kettenis@gnu.org>
6913
6914 PR corefiles/11481
6915 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
6916 register note sections.
6917 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
6918 New variables.
6919 (i386_linux_init_abi): Install list of supported register note
6920 sections that matches the target description.
6921
6922 2010-04-13 Pedro Alves <pedro@codesourcery.com>
6923
6924 * remote.c (remote_get_noisy_reply): Don't error out on empty
6925 replies.
6926 (remote_start_remote): Update and merge tracepoints and trace
6927 state variables as long as the target supports tracepoints.
6928 (remote_trace_init): Fix prototype.
6929 (remote_download_trace_state_variable): Validate reply.
6930 (remote_trace_set_readonly_regions): Fix prototype.
6931 (remote_trace_start): Fix prototype. Check for empty reply.
6932 (remote_get_trace_status): Small cleanup.
6933 (remote_trace_stop): Fix prototype. Check for empty reply.
6934 (remote_trace_find): Check for empty reply.
6935 (remote_save_trace_data): Validate reply.
6936 (remote_set_disconnected_tracing): Check for empty reply, and
6937 validate reply.
6938 (remote_set_circular_trace_buffer): Ditto.
6939
6940 2010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
6941
6942 Suppress unused value warning during compilation.
6943 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
6944 calls to void.
6945 * tui/tui-stack.c (tui_show_locator_content): Likewise.
6946
6947 2010-04-12 Stan Shebs <stan@codesourcery.com>
6948
6949 * tracepoint.c (tfile_xfer_partial): Check read result.
6950
6951 2010-04-12 Mike Frysinger <vapier@gentoo.org>
6952
6953 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
6954 * remote-sim.c (gdbsim_files_info): Likewise.
6955
6956 2010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6957
6958 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
6959 * arm-linux-nat.c (arm_linux_vfp_register_count): New
6960 variable.
6961 (fetch_vfp_registers): New function to fetch VFP registers.
6962 (store_vfp_registers): New function to store VFP registers.
6963 (arm_linux_fetch_inferior_registers): Add support for VFP
6964 registers.
6965 (arm_linux_store_inferior_registers): Likewise.
6966 (arm_linux_read_description): Likewise.
6967 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
6968 until we need it.
6969
6970 2010-04-11 H.J. Lu <hongjiu.lu@intel.com>
6971
6972 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
6973 tdep.
6974 (amd64_collect_xstateregset): Likewise.
6975
6976 2010-04-09 Stan Shebs <stan@codesourcery.com>
6977
6978 * tracepoint.c (trace_status_mi): Report frames created.
6979
6980 * tracepoint.c (trace_dump_command): Include default-collect
6981 expressions.
6982
6983 2010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
6984
6985 * symtab.c (find_function_start_sal): Never return SAL pointing
6986 before function start address, even if line info is missing.
6987
6988 2010-04-09 Pedro Alves <pedro@codesourcery.com>
6989
6990 * NEWS: Mention tracepoints support.
6991
6992 2010-04-09 Pedro Alves <pedro@codesourcery.com>
6993
6994 * tracepoint.c (trace_status_mi): Report disconnected tracing and
6995 circular trace buffer statuses.
6996
6997 2010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6998
6999 * config/djgpp/fnchange.lst: Fix typo in translations for
7000 symbol-without-target_section.exp and symbol-without-target_section.c.
7001
7002 2010-04-09 Pedro Alves <pedro@codesourcery.com>
7003
7004 * breakpoint.c (condition_command): Pass condition expression to
7005 set_breakpoint_condition stripped from breakpoint number.
7006
7007 2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
7008 Thiago Jung Bauermann <bauerman@br.ibm.com>
7009 Tom Tromey <tromey@redhat.com>
7010
7011 * breakpoint.c (condition_command): Simplify. Move condition
7012 setting code to ...
7013 (set_breakpoint_condition): ... here. New function.
7014 * breakpoint.h (set_breakpoint_condition): Declare.
7015 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
7016 (SUBDIR_PYTHON_SRCS): Likewise.
7017 (py-breakpoint.o): New rule.
7018 * python/py-breakpoint.c: New file.
7019 * python/python-internal.h (gdbpy_breakpoints)
7020 (gdbpy_initialize_breakpoints): Declare.
7021 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
7022
7023 2010-04-09 Pedro Alves <pedro@codesourcery.com>
7024
7025 * regformats/regdat.sh: Include server.h. Don't include
7026 regcache.h.
7027
7028 2010-04-08 Stan Shebs <stan@codesourcery.com>
7029 Pedro Alves <pedro@codesourcery.com>
7030
7031 * tracepoint.h (struct trace_status): New fields disconnected_tracing
7032 and circular_buffer.
7033 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
7034 * tracepoint.c (trace_status_command): Display target's status for
7035 disconnected tracing and circular buffer.
7036 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
7037 query for non-disconnected-tracing case, remove the stop_tracing
7038 call.
7039 (tfile_open): Clear disconnected and circular buffer status.
7040 (trace_save): Save disconnected and circular buffer status.
7041 (parse_trace_status): Parse disconnected and circular buffer status,
7042 also recognize disconnected as a stop reason.
7043 * remote.c (remote_set_disconnected_tracing): Only set
7044 QTDisconnected if the remote end supports disconnected tracing.
7045 Warn otherwise, if trying to enable disconnected tracing.
7046 * infcmd.c (detach_command): Update disconnect_tracing call.
7047 * cli/cli-cmds.c (quit_command): Ditto.
7048
7049 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7050
7051 * i387-tdep.c (i387_collect_xsave): Replace abort with
7052 internal_error.
7053
7054 2010-04-08 Stan Shebs <stan@codesourcery.com>
7055
7056 * breakpoint.c (default_collect_info): New function.
7057 (breakpoints_info): Call it.
7058 (maintenance_info_breakpoints): Ditto.
7059 (tracepoints_info): Ditto.
7060
7061 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7062
7063 * i387-tdep.c (i387_collect_xsave): Re-indent.
7064
7065 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7066
7067 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
7068 if HAVE_PTRACE_GETFPXREGS is defined.
7069 (i386_linux_read_description): Set have_ptrace_getfpxregs and
7070 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
7071
7072 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
7073 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
7074 if .reg-xfp section doesn't exist.
7075 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
7076
7077 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
7078
7079 * i386-tdep.c: Include "features/i386/i386-mmx.c".
7080 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
7081 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
7082 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
7083 (i386_gdbarch_init): Update comments.
7084 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
7085
7086 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
7087
7088 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
7089
7090 * features/Makefile (i386/i386-mmx-expedite): New.
7091 (i386/i386-mmx-linux-expedite): Likewise.
7092 ($(outdir)/i386/i386-mmx.dat): Likewise.
7093 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
7094
7095 * features/i386/i386-mmx-linux.c: New.
7096 * features/i386/i386-mmx-linux.xml: Likewise.
7097 * features/i386/i386-mmx.c: Likewise.
7098 * features/i386/i386-mmx.xml: Likewise.
7099 * regformats/i386/i386-mmx-linux.dat: Likewise.
7100 * regformats/i386/i386-mmx.dat: Likewise.
7101
7102 * features/Makefile (WHICH): Add i386/i386-mmx and
7103 i386/i386-mmx-linux.
7104
7105 2010-04-08 Doug Evans <dje@google.com>
7106
7107 * source.c (openp): Skip $cdir in PATH.
7108
7109 2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
7110
7111 PR python/11417
7112 * python/py-lazy-string.c (stpy_convert_to_value): Check for
7113 a NULL address.
7114 (gdbpy_create_lazy_string_object): Allow strings with a NULL
7115 address and a zero length.
7116
7117 2010-04-08 Hui Zhu <teawater@gmail.com>
7118
7119 * i386-tdep.c (i386_process_record): Add support for insn
7120 rdtsc.
7121
7122 2010-04-07 Doug Evans <dje@google.com>
7123
7124 * python/python.c (source_python_script): Use ensure_python_env
7125 to prepare environment for script.
7126
7127 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7128
7129 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
7130 <sys/uio.h> and "i386-xstate.h".
7131 (PTRACE_GETREGSET): New.
7132 (PTRACE_SETREGSET): Likewise.
7133 (have_ptrace_getregset): Likewise.
7134 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
7135 registers.
7136 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
7137 registers.
7138 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
7139 (amd64_linux_store_inferior_registers): Likewise.
7140 (amd64_linux_read_description): Check and enable AVX target
7141 descriptions.
7142
7143 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
7144 and "features/i386/amd64-avx-linux.c".
7145 (amd64_linux_regset_sections): New.
7146 (amd64_linux_core_read_description): Check and enable AVX
7147 target description.
7148 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
7149 set_gdbarch_core_regset_sections.
7150 (_initialize_amd64_linux_tdep): Call
7151 initialize_tdesc_amd64_avx_linux.
7152
7153 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
7154 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
7155 (tdesc_amd64_avx_linux): New.
7156 (amd64_linux_update_xstateregset): Likewise.
7157
7158 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
7159 (amd64_ymm_names): New.
7160 (amd64_ymmh_names): Likewise.
7161 (amd64_register_name): Likewise.
7162 (amd64_supply_xstateregset): Likewise.
7163 (amd64_collect_xstateregset): Likewise.
7164 (amd64_supply_xsave): Likewise.
7165 (amd64_collect_xsave): Likewise.
7166 (AMD64_NUM_REGS): Removed.
7167 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
7168 %xmmN if AVX is available.
7169 (amd64_pseudo_register_name): Support pseudo YMM registers.
7170 (amd64_regset_from_core_section): Support .reg-xstate section.
7171 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
7172 and ymm0h_regnum. Call set_gdbarch_register_name.
7173 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
7174
7175 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
7176 AMD64_YMM15H_REGNUM.
7177 (AMD64_NUM_REGS): New.
7178 (amd64_supply_xsave): Likewise.
7179 (amd64_collect_xsave): Likewise.
7180 (amd64_register_name): Removed.
7181 (amd64_register_type): Likewise.
7182
7183 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7184
7185 * i387-tdep.c: Include "i386-xstate.h".
7186 (XSAVE_XSTATE_BV_ADDR): New.
7187 (xsave_avxh_offset): Likewise.
7188 (XSAVE_AVXH_ADDR): Likewise.
7189 (i387_supply_xsave): Likewise.
7190 (i387_collect_xsave): Likewise.
7191
7192 * i387-tdep.h (I387_NUM_YMM_REGS): New.
7193 (I387_YMM0H_REGNUM): Likewise.
7194 (I387_YMMENDH_REGNUM): Likewise.
7195 (i387_supply_xsave): Likewise.
7196 (i387_collect_xsave): Likewise.
7197
7198 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7199
7200 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
7201 <sys/uio.h> and "i386-xstate.h".
7202 (PTRACE_GETREGSET): New.
7203 (PTRACE_SETREGSET): Likewise.
7204 (fetch_xstateregs): Likewise.
7205 (store_xstateregs): Likewise.
7206 (GETXSTATEREGS_SUPPLIES): Likewise.
7207 (regmap): Include 8 upper YMM registers.
7208 (i386_linux_fetch_inferior_registers): Support XSAVE extended
7209 state.
7210 (i386_linux_store_inferior_registers): Likewise.
7211 (i386_linux_read_description): Check and enable AVX target
7212 descriptions.
7213
7214 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
7215 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
7216 (i386_linux_regset_sections): Add ".reg-xstate".
7217 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
7218 (i386_linux_core_read_xcr0): New.
7219 (i386_linux_core_read_description): Check and enable AVX target
7220 description.
7221 (i386_linux_init_abi): Set xsave_xcr0_offset.
7222 (_initialize_i386_linux_tdep): Call
7223 initialize_tdesc_i386_avx_linux.
7224
7225 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
7226 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
7227 (i386_linux_core_read_xcr0): New.
7228 (tdesc_i386_avx_linux): Likewise.
7229 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
7230
7231 * i386-tdep.c: Include "i386-xstate.h" and
7232 "features/i386/i386-avx.c".
7233 (i386_ymm_names): New.
7234 (i386_ymmh_names): Likewise.
7235 (i386_ymmh_regnum_p): Likewise.
7236 (i386_ymm_regnum_p): Likewise.
7237 (i386_xmm_regnum_p): Likewise.
7238 (i386_register_name): Likewise.
7239 (i386_ymm_type): Likewise.
7240 (i386_supply_xstateregset): Likewise.
7241 (i386_collect_xstateregset): Likewise.
7242 (i386_sse_regnum_p): Removed.
7243 (i386_pseudo_register_name): Support pseudo YMM registers.
7244 (i386_pseudo_register_type): Likewise.
7245 (i386_pseudo_register_read): Likewise.
7246 (i386_pseudo_register_write): Likewise.
7247 (i386_dbx_reg_to_regnum): Return %ymmN register number for
7248 %xmmN if AVX is available.
7249 (i386_regset_from_core_section): Support .reg-xstate section.
7250 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
7251 (i386_process_record): Replace i386_sse_regnum_p with
7252 i386_xmm_regnum_p.
7253 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
7254 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
7255 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
7256 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
7257 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
7258 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
7259 Set ymm0_regnum.
7260 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
7261
7262 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
7263 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
7264 i386_ymm_type.
7265 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
7266 (I386_AVX_NUM_REGS): New.
7267 (i386_xmm_regnum_p): Likewise.
7268 (i386_ymm_regnum_p): Likewise.
7269 (i386_ymmh_regnum_p): Likewise.
7270
7271 * common/i386-xstate.h: New.
7272
7273 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7274
7275 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
7276
7277 * features/Makefile (WHICH): Add i386/i386-avx,
7278 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
7279 (i386/i386-avx-expedite): New.
7280 (i386/i386-avx-linux-expedite): Likewise.
7281 (i386/x86-64-avx-expedite):Likewise.
7282 (i386/x86-64-avx-linux-expedite): Likewise.
7283 ($(outdir)/i386/i386-avx.dat): New dependency.
7284 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
7285 ($(outdir)/i386/x86-avx-64.dat): Likewise.
7286 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
7287
7288 * features/i386/32bit-avx.xml: New.
7289 * features/i386/64bit-avx.xml: Likewise.
7290 * features/i386/i386-avx-linux.c: Likewise.
7291 * features/i386/i386-avx-linux.xml: Likewise.
7292 * features/i386/i386-avx.c: Likewise.
7293 * features/i386/i386-avx.xml: Likewise.
7294 * features/i386/x86-64-avx-linux.c: Likewise.
7295 * features/i386/x86-64-avx-linux.xml: Likewise.
7296 * features/i386/x86-64-avx.c: Likewise.
7297 * features/i386/x86-64-avx.xml: Likewise.
7298 * regformats/i386/i386-avx-linux.dat: Likewise.
7299 * regformats/i386/i386-avx.dat: Likewise.
7300 * regformats/i386/x86-64-avx-linux.dat: Likewise.
7301 * regformats/i386/x86-64-avx.dat: Likewise.
7302
7303 2010-04-07 Doug Evans <dje@google.com>
7304
7305 * top.c (source_file_name): Make const char *.
7306 * top.h (source_file_name): Update.
7307 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
7308 const char *.
7309 (script_from_file): Change `file' arg to const char *.
7310 * cli/cli-script.h (script_from_file): Update.
7311
7312 2010-04-06 Doug Evans <dje@google.com>
7313
7314 * cli/cli-cmds.c (source_command): Run cleanups.
7315
7316 2010-04-06 Stan Shebs <stan@codesourcery.com>
7317
7318 * defs.h (char_ptr): Move typedef here from...
7319 * ada-lang.c (char_ptr): Remove.
7320 * charset.c (char_ptr): Remove.
7321 * tracepoint.h (struct uploaded_string): Remove.
7322 (struct uploaded_tp): Use vectors for string arrays.
7323 * tracepoint.c (trace_save): Use vectors of actions.
7324 (parse_tracepoint_definition): Ditto.
7325 (get_uploaded_tp): Clear vectors.
7326 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
7327 (next_cmd): Change to an int.
7328 (read_next_cmd): Use vector of command strings.
7329
7330 2010-04-06 Doug Evans <dje@google.com>
7331
7332 * top.h (source_script, cd_command): Delete.
7333 * main.c: #include "cli/cli-cmds.h"
7334
7335 2010-04-06 Kevin Buettner <kevinb@redhat.com>
7336
7337 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
7338 type in bytes, not bits.
7339
7340 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
7341
7342 * stabsread.c (define_symbol): Add support for char
7343 and string constants.
7344
7345 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
7346
7347 Remove remaining "%ll" uses.
7348 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
7349 hex_string call.
7350 * rs6000-nat.c (rs6000_ptrace64): Idem.
7351 * solib-pa64.c (pa64_current_sos): Idem.
7352 * solib-spu.c (spu_current_sos): Idem.
7353 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
7354 plongest call.
7355 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
7356 phex (VAR, 8) call.
7357 * sh64-tdep.c (sh64_show_media_regs): Idem.
7358
7359 2010-04-05 Stan Shebs <stan@codesourcery.com>
7360
7361 * tracepoint.c: Include gdbcore.h.
7362 (tfile_xfer_partial): Return partial results, also try reading
7363 from executable.
7364 (tfile_has_all_memory): New function.
7365 (init_tfile_ops): Use it.
7366
7367 2010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
7368
7369 PR gdb/10736:
7370 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
7371 the changes in data-directory.
7372 (init_sysinfo): Reload the syscall XML file if the data-directory
7373 has changed.
7374
7375 2010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7376
7377 Code cleanup.
7378 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
7379
7380 2010-04-04 Stan Shebs <stan@codesourcery.com>
7381 Nathan Sidwell <nathan@codesourcery.com>
7382
7383 * breakpoint.c (breakpoint_1): Add filter argument, return number of
7384 breakpoints printed.
7385 (is_hardware_watchpoint): Make argument const.
7386 (is_watchpoint): Ditto.
7387 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
7388 use it everywhere.
7389 (breakpoints_info): Pass NULL to breakpoint_1.
7390 (maintenance_info_breakpoints): Ditto.
7391 (watchpoints_info): New function.
7392 (tracepoints_info): Use breakpoint_1 filter.
7393 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
7394 (_initialize_breakpoint): Make "info watchpoints" its own command.
7395 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
7396 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
7397
7398 2010-04-04 Stan Shebs <stan@codesourcery.com>
7399
7400 * tracepoint.c (tfile_fetch_registers): Add fallback case.
7401
7402 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7403
7404 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
7405 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
7406
7407 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7408
7409 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
7410 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
7411
7412 2010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7413
7414 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
7415 code form.
7416
7417 2010-04-02 Hui Zhu <teawater@gmail.com>
7418
7419 * i386-tdep.c (OT_DQUAD): New enum.
7420 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
7421 SSE3, SSSE3 and SSE4.
7422
7423 2010-04-02 Hui Zhu <teawater@gmail.com>
7424
7425 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
7426 "*addr = 0".
7427
7428 2010-04-02 Pedro Alves <pedro@codesourcery.com>
7429
7430 * tracepoint.c (trace_dump_actions): New, factored out from
7431 trace_dump_command, and adjusted to recurse into while-stepping's
7432 action list.
7433 (trace_dump_command): Use it.
7434
7435 2010-04-02 Pedro Alves <pedro@codesourcery.com>
7436
7437 * breakpoint.h (struct counted_command_line): Moved definition to
7438 breakpoint.c, and forward declare.
7439 (breakpoint_commands): Declare.
7440 * breakpoint.c (struct counted_command_line): Moved here.
7441 (breakpoint_commands): New.
7442 * tracepoint.c (encode_actions): Use breakpoint_commands.
7443 * remote.c (remote_download_tracepoint): Ditto.
7444
7445 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
7446
7447 * remote.c (remote_parse_stop_reply): Use hex_string instead
7448 of phex_nz for error.
7449
7450 2010-04-01 Stan Shebs <stan@codesourcery.com>
7451 Nathan Sidwell <nathan@codesourcery.com>
7452
7453 * tracepoint.h (enum actionline_type): Remove.
7454 (validate_actionline): Change return to void.
7455 * tracepoint.c (report_agent_reqs_errors): New function.
7456 (validate_actionline): Call it, change return to void, report errors
7457 more consistently.
7458 (collect_symbol): Call report_agent_reqs_errors.
7459 (encode_actions_1): Ditto.
7460 (encode_actions): Don't expect a result from validate_actionline.
7461
7462 2010-04-01 Stan Shebs <stan@codesourcery.com>
7463
7464 * tracepoint.c (trace_start_command): Confirm if trace is running.
7465 (trace_stop_command): Error if trace not running.
7466
7467 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
7468
7469 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
7470 (AMD64_NUM_LOWER_BYTE_REGS): New.
7471 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
7472 (amd64_pseudo_register_write): Likewise.
7473 (amd64_init_abi): Set num_byte_regs to 20.
7474
7475 2010-04-01 Pedro Alves <pedro@codesourcery.com>
7476
7477 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
7478 (prev_breakpoint_count): New.
7479 (set_breakpoint_count): Adjust.
7480 (rbreak_start_breakpoint_count): New.
7481 (start_rbreak_breakpoints): Adjust.
7482 (end_rbreak_breakpoints): Adjust.
7483 (struct commands_info) <arg>: New field.
7484 (do_map_commands_command): Tweak output to include breakpoint spec
7485 range.
7486 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
7487 ARG was empty on entry. Set INFO's arg.
7488 (create_breakpoint): Adjust.
7489
7490 * NEWS: Clarify `commands' changes.
7491
7492 2010-04-01 Pedro Alves <pedro@codesourcery.com>
7493
7494 * tracepoint.c: Include stack.h.
7495 (struct add_local_symbols_data): New.
7496 (do_collect_symbol): New.
7497 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
7498 iterate_over_block_local_vars.
7499 * stack.c (print_block_frame_locals): Rewrite as ...
7500 (iterate_over_block_locals): ... this. Take a callback function
7501 pointer and generic data pointer, and call that instead of
7502 print_variable_and_value.
7503 (struct print_variable_and_value_data): New.
7504 (do_print_variable_and_value): New.
7505 (iterate_over_block_local_vars): New, abstracted out from
7506 print_frame_local_vars.
7507 (print_frame_local_vars): Rewrite using
7508 iterate_over_block_local_vars.
7509 (iterate_over_block_arg_vars): New, abstracted out from
7510 print_frame_arg_vars.
7511 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
7512 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
7513 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
7514
7515 2010-03-31 Richard Earnshaw <rearnsha@arm.com>
7516
7517 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
7518 instructions. Use the PC+4 if the base of the TBB or TBH is the
7519 PC register.
7520
7521 2010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
7522
7523 Fix crash on reading wrong function declaration DWARF.
7524 * dwarf2read.c (read_subroutine_type): New variable void_type.
7525 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
7526 more close to their use.
7527
7528 2010-03-31 Stan Shebs <stan@codesourcery.com>
7529
7530 * breakpoint.c (tracepoint_save_command): Include variables,
7531 conditionals, tracepoint types, and default-collect.
7532 * tracepoint.c (save_trace_state_variables): New function.
7533 * tracepoint.h (save_trace_state_variables): Declare it.
7534
7535 2010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
7536
7537 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
7538
7539 2010-03-30 Keith Seitz <keiths@redhat.com>
7540
7541 * c-typeprint.c (c_type_print_args): Don't print "void"
7542 for java, regardless of whether it is TYPE_PROTOTYPED.
7543 Use the passed-in language instead of current_language.
7544 (c_type_print_varspec_suffix): Use current_language instead
7545 of assuming language_c.
7546 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
7547 any return type specifier from the physname.
7548
7549 2010-03-30 Pedro Alves <pedro@codesourcery.com>
7550
7551 * tui/tui-interp.c (tui_is_toplevel): New.
7552 (tui_init): Set it.
7553 (tui_allowed_p): New.
7554 * tui/tui.c (tui_enable): Check if the TUI is allowed before
7555 enabling it.
7556 * tui/tui.h (tui_allowed_p): Declare.
7557
7558 2010-03-30 Ozkan Sezer <sezeroz@gmail.com>
7559
7560 * serial.h: Include winsock2.h before windows.h.
7561
7562 2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
7563
7564 * NEWS: Mention xmlRegisters= in qSupported packet.
7565
7566 * i386-tdep.c: Include "remote.h".
7567 (_initialize_i386_tdep): Call register_remote_support_xml.
7568
7569 * remote.c (remote_support_xml): New.
7570 (register_remote_support_xml): Likewise.
7571 (remote_query_supported_append): Likewise.
7572 (remote_query_supported): Support remote_support_xml.
7573
7574 * remote.h (register_remote_support_xml): New.
7575
7576 2010-03-29 Stan Shebs <stan@codesourcery.com>
7577
7578 * tracepoint.c (trace_find_line_command): Remove dead code.
7579
7580 * tracepoint.h (struct uploaded_string): New struct.
7581 (struct uploaded_tp): New fields for source strings.
7582 * breakpoint.c (this_utp, next_cmd): New globals.
7583 (read_uploaded_action): New function.
7584 (create_tracepoint_from_upload): Fill in more parts
7585 of a tracepoint.
7586 * tracepoint.c (encode_source_string): New function.
7587 (trace_save): Write out source strings, fix error checks.
7588 (parse_tracepoint_definition): Add source string parsing.
7589 * remote.c (PACKET_TracepointSource): New packet type.
7590 (remote_download_command_source): New function.
7591 (remote_download_tracepoint): Download source pieces also.
7592 (_initialize_remote): Add packet config command.
7593
7594 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
7595 expression handler.
7596
7597 * tracepoint.c (start_tracing): Check tracepoints before sending
7598 commands to target, don't start if all tracepoints disabled.
7599
7600 2010-03-28 Pedro Alves <pedro@codesourcery.com>
7601
7602 * cli/cli-script.c (process_next_line): Handle 'stepping'.
7603
7604 2010-03-26 Stan Shebs <stan@codesourcery.com>
7605
7606 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
7607
7608 2010-03-26 Tom Tromey <tromey@redhat.com>
7609
7610 * breakpoint.c (commands_command_1): Duplicate 'arg'.
7611
7612 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7613
7614 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
7615 (skip_prologue_sal): Remove local definition.
7616 (resolve_sal_pc): Remove now unnecessary code.
7617 * linespec.c (minsym_found): Call skip_prologue_sal.
7618 * symtab.c (find_function_start_pc): Remove.
7619 (find_function_start_sal): Extract prologue skipping into ...
7620 (skip_prologue_sal): ... this new function. Handle code both
7621 with and without debug info. Respect SAL's explicit_pc and
7622 explicit_line flags. Inline old find_function_start_pc.
7623 * symtab.h (find_function_start_pc): Remove.
7624 (skip_prologue_sal): Add prototype.
7625
7626 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7627
7628 * dwarf2read.c (read_func_scope): Also scan specification DIEs
7629 for DW_TAG_imported_module children.
7630
7631 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7632
7633 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
7634 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
7635 * completer.c (add_struct_fields): Fix inverted logic.
7636
7637 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7638
7639 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
7640
7641 2010-03-26 Pedro Alves <pedro@codesourcery.com>
7642
7643 * tracepoint.c (current_trace_status): Don't make sure error_desc
7644 is non-NULL here.
7645 (parse_trace_status): Release a previous error_desc string, and
7646 set it to NULL by default. If stop reason is tracepoint_error,
7647 make sure error_desc is not left NULL.
7648
7649 2010-03-26 Pedro Alves <pedro@codesourcery.com>
7650
7651 * tracepoint.c (trace_save): Remove X from tracepoint error
7652 description.
7653
7654 2010-03-26 Pedro Alves <pedro@codesourcery.com>
7655
7656 * tracepoint.c (parse_trace_status): Don't allow plain strings in
7657 the terror description. Don't expect an X prefix.
7658
7659 2010-03-25 Stan Shebs <stan@codesourcery.com>
7660
7661 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
7662 (struct trace_status): New field error_desc.
7663 * tracepoint.c (stop_reason_names): Add terror.
7664 (current_trace_status): Ensure non-NULL error description.
7665 (trace_status_command): Add error report.
7666 (trace_status_mi): Ditto.
7667 (trace_save): Add special case for error description.
7668 (parse_trace_status): Add case for errors.
7669
7670 2010-03-25 Keith Seitz <keiths@redhat.com>
7671
7672 * dwarf2read.c (read_subroutine_type): If the compilation unit
7673 language is Java, mark any formal parameter named "this" as
7674 artificial (GCC/43521).
7675 (dwarf2_name): Add special handling for Java constructors.
7676
7677 2010-03-25 Tom Tromey <tromey@redhat.com>
7678
7679 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
7680 * infrun.c (handle_inferior_event): Change initialization of
7681 stop_stack_dummy.
7682 (handle_inferior_event): Change assignment to stop_stack_dummy.
7683 (normal_stop): Update use of stop_stack_dummy.
7684 (struct inferior_status) <stop_stack_dummy>: Change type.
7685 * inferior.h (stop_stack_dummy): Update.
7686 * infcmd.c (stop_stack_dummy): Change type.
7687 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
7688 function.
7689 (call_function_by_hand): Call set_std_terminate_breakpoint.
7690 Rewrite std::terminate handling.
7691 * breakpoint.h (enum bptype) <bp_std_terminate,
7692 bp_std_terminate_master>: New.
7693 (enum stop_stack_kind): New.
7694 (struct bpstat_what) <call_dummy>: Change type.
7695 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
7696 Declare.
7697 * breakpoint.c (create_std_terminate_master_breakpoint): New
7698 function.
7699 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
7700 Call create_std_terminate_master_breakpoint.
7701 (print_it_typical): Handle new breakpoint kinds.
7702 (bpstat_stop_status): Handle bp_std_terminate_master.
7703 (bpstat_what): Correctly set call_dummy field. Handle
7704 bp_std_terminate_master and bp_std_terminate.
7705 (print_one_breakpoint_location): Update.
7706 (allocate_bp_location): Update.
7707 (set_std_terminate_breakpoint): New function.
7708 (delete_std_terminate_breakpoint): Likewise.
7709 (create_thread_event_breakpoint): Update.
7710 (delete_command): Update.
7711 (breakpoint_re_set_one): Update.
7712 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
7713
7714 2010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7715
7716 * symfile.c (build_section_addr_info_from_bfd): New.
7717 (build_section_addr_info_from_objfile): Base it on
7718 build_section_addr_info_from_bfd.
7719 (addrs_section_compar, addrs_section_sort): New.
7720 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
7721 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
7722 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
7723
7724 2010-03-24 Michael Snyder <msnyder@localhost.localdomain>
7725
7726 * elfread.c (find_separate_debug_file_by_buildid):
7727 Remove unused local variable.
7728
7729 2010-03-24 Tom Tromey <tromey@redhat.com>
7730
7731 PR breakpoints/9352:
7732 * NEWS: Mention changes to `commands' and `rbreak'.
7733 * symtab.c (do_end_rbreak_breakpoints): New function.
7734 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
7735 end_rbreak_breakpoints.
7736 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
7737 (set_breakpoint_count): Likewise. Clear last_was_multi.
7738 (multi_start, multi_end, last_was_multi): New globals.
7739 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
7740 functions.
7741 (struct commands_info): New
7742 (do_map_commands_command): New function.
7743 (commands_command_1): New function.
7744 (commands_command): Use it.
7745 (commands_from_control_command): Likewise.
7746 (do_delete_breakpoint): New function.
7747 (delete_command): Use it.
7748 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
7749 (do_map_disable_breakpoint): New function.
7750 (disable_command): Use it.
7751 (do_map_enable_breakpoint): New function.
7752 (enable_command): Use it.
7753 (enable_once_breakpoint): Add argument.
7754 (enable_once_command): Update.
7755 (enable_delete_breakpoint): Add argument.
7756 (enable_delete_command): Update.
7757 (break_command_really): Set last_was_multi when needed.
7758 (check_tracepoint_command): Fix formatting.
7759 (validate_commands_for_breakpoint): New function.
7760 (breakpoint_set_commands): Use it.
7761 (tracepoint_save_command): Update.
7762 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
7763 Declare.
7764
7765 2010-03-24 Tom Tromey <tromey@redhat.com>
7766
7767 * breakpoint.h (struct counted_command_line): New struct.
7768 (struct breakpoint) <commands>: Change type.
7769 (struct bpstats) <commands>: Change type.
7770 <commands_left>: New field.
7771 * breakpoint.c (alloc_counted_command_line): New function.
7772 (incref_counted_command_line): Likewise.
7773 (decref_counted_command_line): Likewise.
7774 (do_cleanup_counted_command_line): Likewise.
7775 (make_cleanup_decref_counted_command_line): Likewise.
7776 (breakpoint_set_commands): Use decref_counted_command_line and
7777 alloc_counted_command_line.
7778 (commands_command): Don't error if breakpoint commands are
7779 executing.
7780 (commands_from_control_command): Likewise.
7781 (bpstat_free): Update.
7782 (bpstat_copy): Likewise.
7783 (bpstat_clear_actions): Likewise.
7784 (bpstat_do_actions_1): Likewise.
7785 (bpstat_stop_status): Likewise.
7786 (print_one_breakpoint_location): Likewise.
7787 (delete_breakpoint): Likewise.
7788 (bpstat_alloc): Initialize new field.
7789 (tracepoint_save_command): Update.
7790 * tracepoint.c (encode_actions): Update.
7791 (trace_dump_command): Update.
7792
7793 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7794
7795 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
7796 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
7797 (read_structure_type): For RealView, set TYPE_STUB on structures with
7798 no byte size and no children.
7799 (read_subroutine_type): Mark functions as prototyped by default.
7800 * symtab.c (producer_is_realview): New function.
7801 * symtab.h (expand_line_sal): Fix declaration formatting.
7802 (producer_is_realview): Declare.
7803
7804 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7805
7806 * arm-tdep.c (skip_prologue_function): New function.
7807 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
7808 (thumb_analyze_prologue): Document return value. Recognize more
7809 Thumb instructions, skippable calls, and some Thumb-2 instructions.
7810 Add debug output.
7811 (arm_skip_prologue): Remove call dummy check. Check the prologue
7812 for non-GNU compilers.
7813 (arm_instruction_changes_pc): New function.
7814 (arm_analyze_prologue): New function, broken out from
7815 arm_scan_prologue. Recognize more ARM instructions and skippable
7816 calls. Update comments. Handle NULL cache. Return the address
7817 of the first unrecognized instruction. Do not skip past other
7818 instructions which change control flow. Add debug output.
7819 (arm_scan_prologue): Use arm_analyze_prologue.
7820 (ARM_PC_32): Delete.
7821 (shifted_reg_val): Simplify ARM_PC_32 check.
7822
7823 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7824
7825 * tracepoint.c (tvariables_info_1): Actually compute
7826 the number of rows in the result.
7827
7828 2010-03-24 Pedro Alves <pedro@codesourcery.com>
7829
7830 * remote.c (crc32): Constify `buf' parameter.
7831 (remote_verify_memory): New, abstracted out from...
7832 (compare_sections_command): ... this. Remove hardcoded target
7833 checks.
7834 (init_remote_ops): Install remote_verify_memory.
7835 * target.c (target_verify_memory): New.
7836 * target.h (struct target_ops) <to_verify_memory>: New field.
7837 (target_verify_memory): Declare.
7838
7839 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7840
7841 Implement -trace-save.
7842
7843 * mi-cmds.h (mi_cmds_trace_save): Declare.
7844 * mi-cmds.c (mi_cmds): Register -trace-save.
7845 * mi/mi-main.c (mi_cmd_trace_save): New.
7846 * remote.c (remote_save_trace_data): Take const parameter.
7847 * target.h (struct target_ops::to_save_trace_data): Take
7848 const parameter.
7849 * target.c (update_current_target): Adjust to the above.
7850 * tracepoint.c (trave_save): New, extracted from
7851 (trace_save_command): ...this.
7852 (tfile_trace_find): Remove message that is unnecessary now
7853 that 'tfind' reports found frame.
7854 * tracepoint.h (trace_save): Declare.
7855
7856 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7857
7858 Implement -trace-find.
7859
7860 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
7861 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
7862 * mi/mi-main.c (mi_cmd_trace_find): New.
7863 * target.h (struct target_ops): Document to_trace_find.
7864 * tracepoint.h (tfind_1): Declare.
7865 * tracepoint.c (finish_tfind_command): Rename to...
7866 (tfind_1): ...this.
7867 * remote.c (remote_trace_find): Return -1 if target say
7868 there's no frame. Improve error diagnostics.
7869
7870 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7871
7872 -trace-define-variable and -trace-list-variables.
7873
7874 * tracepoint.c (create_trace_state_variable): Make
7875 private copy of name, as opposed to assuming the
7876 pointer lives forever.
7877 (tvariables_info_1): New.
7878 (tvariables_info): Use the above.
7879 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
7880 Declare.
7881 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
7882 and -trace-list-variables.
7883 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
7884 (mi_cmd_trace_list_variables): New.
7885 * mi/mi-main.c (mi_cmd_trace_define_variable)
7886 (mi_cmd_trace_list_variables): New.
7887
7888 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7889
7890 Implement -break-passcount.
7891
7892 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
7893 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
7894 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
7895
7896 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7897
7898 -trace-start/-trace-end/-trace-status.
7899
7900 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
7901 and -trace-stop.
7902 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
7903 (mi_cmd_trace_stop): Declare.
7904 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
7905 (mi_cmd_trace_stop): New.
7906 * tracepoint.c (start_tracing): New, extracted from...
7907 (trace_start_command): ...this.
7908 (trace_status_mi): New.
7909 * tracepoint.h (struct trace_status): Document
7910 stopping_tracepoint.
7911 (start_tracing, stop_tracing, trace_status_mi): Declare.
7912
7913 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7914
7915 Implement creating tracepoints with -break-insert.
7916
7917 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
7918 to mean that tracepoint should be created.
7919
7920 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7921
7922 * breakpoint.c (check_no_tracepoint_commands): Use
7923 current spelling of 'teval'.
7924
7925 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7926
7927 Unify actions and commands
7928
7929 * defs.h (read_command_lines, read_command_lines_1): New
7930 parameters validator and closure.
7931 * tracepoint.h (struct action_line): Remove.
7932 * breakpoint.h (struct breakpoint): Remove the 'actions'
7933 field.
7934 * defs.h (enum command_control_type): New value
7935 while_stepping_control.
7936 (struct command_line): Add comments.
7937 * breakpoint.c (breakoint_is_tracepoint): New.
7938 (breakpoint_set_commands): For tracepoints,
7939 verify the commands are permissible.
7940 (check_tracepoint_commands): New.
7941 (commands_command): Require that each new line is validated using
7942 check_tracepoint_command, if we set commands for a tracepoint.
7943 (create_tracepoint_from_upload): Likewise.
7944 (print_one_breakpoint_location): Remove the code to print
7945 actions specifically.
7946 (tracepoint_save_command): Relay to print_command_lines.
7947 * cli/cli-script.c (process_next_line): New parameters validator
7948 and closure. Handle 'while-stepping'. Call validator if not null.
7949 (read_command_lines, read_command_lines1): Likewise.
7950 (recurse_read_control_structure): New parameters validator and
7951 closure. Handle while_stepping_control.
7952 (print_command_lines): Handle while-stepping.
7953 (get_command_line, define_command, document_command): Adjust.
7954 * remote.c (remote_download_tracepoint): Adjust.
7955 * tracepoint.c (make_cleanup_free_actions, read_actions)
7956 (free_actions, do_free_actions_cleanup): Remove.
7957 (trace_actions_command): Use read_command_lines.
7958 (validate_actionline): Use error in one place.
7959 (encode_actions_1): New, extracted from...
7960 (encode_actions): ...this. Also use cleanups for exception
7961 safety.
7962 (trace_dump_command): Adjust.
7963 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
7964 it's tracepoint.
7965
7966 2010-03-23 Mike Frysinger <vapier@gentoo.org>
7967
7968 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
7969
7970 2010-03-22 Stan Shebs <stan@codesourcery.com>
7971
7972 * value.c (value_static_field): Be lazy about the field's value.
7973
7974 2010-03-22 Reid Kleckner <reid@kleckner.net>
7975
7976 PR gdb/11094
7977 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
7978 bp_jit_event.
7979 (disable_breakpoints_in_shlibs): Likewise.
7980
7981 2010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
7982
7983 * dwarf2read.c (partial_die_parent_scope): Work around buggy
7984 GCC 4.1 debug info generation (GCC PR c++/28460).
7985 (determine_prefix): Likewise.
7986
7987 2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
7988
7989 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
7990 get_current_arch.
7991 * tui/tui-layout.c (extract_display_start_addr): Likewise.
7992
7993 2010-03-19 Stan Shebs <stan@codesourcery.com>
7994
7995 * ax-gdb.c (gen_fetch): Handle bool.
7996 (gen_usual_unary): Ditto.
7997 (gen_cast): Ditto.
7998 (gen_equal): New function.
7999 (gen_less): New function.
8000 (gen_expr_binop_rest): Call them, also return integer type from
8001 logical operations.
8002 (gen_expr): Ditto.
8003
8004 2010-03-19 Tom Tromey <tromey@redhat.com>
8005
8006 * jv-lang.c (jv_dynamics_objfile_data_key)
8007 (jv_type_objfile_data_key): New globals.
8008 (class_symtab): Move earlier.
8009 (jv_per_objfile_free): New function.
8010 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
8011 parameter.
8012 Remove ancient #if 1.
8013 (add_class_symbol): Remove redundant declaration.
8014 (java_lookup_class): Use alloc_type, not alloc_type_arch.
8015 (java_link_class_type): Mark as static. Update.
8016 (jv_clear_object_type): New function.
8017 (set_java_object_type): Likewise.
8018 (get_java_object_type): Use set_java_object_type.
8019 (is_object_type): Likewise.
8020 (_initialize_java_language): Register new objfile keys.
8021 (get_java_class_symtab): Add 'gdbarch' parameter.
8022 (add_class_symtab_symbol): Update.
8023 (type_from_class): Update.
8024
8025 2010-03-19 Stan Shebs <stan@codesourcery.com>
8026
8027 * ax-general.c (ax_const_l): Fix a sizing bug.
8028
8029 2010-03-18 Joel Brobecker <brobecker@adacore.com>
8030
8031 GDB 7.1 released.
8032
8033 2010-03-18 Stan Shebs <stan@codesourcery.com>
8034 Pedro Alves <pedro@codesourcery.com>
8035
8036 * target.h (struct target_ops): New method
8037 to_set_circular_trace_buffer.
8038 (target_set_circular_trace_buffer): New macro.
8039 * target.c (update_current_target): Add
8040 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
8041 default behavior.
8042 * remote.c (remote_set_circular_trace_buffer): New function.
8043 (init_remote_ops): Add it to vector.
8044 * tracepoint.h (struct trace_status): New field traceframes_created,
8045 change buffer_size and buffer_free to int.
8046 * tracepoint.c (circular_trace_buffer): New global.
8047 (start_tracing): Send values of disconnected tracing and circular
8048 trace buffer settings.
8049 (set_circular_trace_buffer): New function.
8050 (parse_trace_state): Handle total space and frames created.
8051 (trace_status_command): Display total space and total frames
8052 created.
8053 (trace_save): Write out new status values.
8054 (parse_trace_status): Set traceframe_count, traceframes_created,
8055 buffer_free and buffer_size to -1 by default.
8056 (_initialize_tracepoint): New setshow for circular-trace-buffer.
8057 * NEWS: Mention the circular trace buffer option.
8058
8059 2010-03-18 Tom Tromey <tromey@redhat.com>
8060
8061 * infcmd.c (finish_command_continuation): Wrap print_return_value
8062 in TRY_CATCH.
8063
8064 2010-03-18 Joel Brobecker <brobecker@adacore.com>
8065
8066 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
8067 DIE has a name before creating the associated partial symbol.
8068 (read_func_scope): Emit a complaint if the subprogram does not
8069 have a name or when we can't extract the subprogram PC bounds.
8070
8071 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
8072
8073 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
8074 instead of selected frame architecture.
8075
8076 2010-03-18 Pedro Alves <pedro@codesourcery.com>
8077
8078 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
8079 a valid selected thread, and that it is not running.
8080 (advance_command): Ditto.
8081 (finish_command): Ditto.
8082
8083 2010-03-17 Stan Shebs <stan@codesourcery.com>
8084
8085 * ax-gdb.c (require_rvalue): Disallow non-scalars.
8086
8087 * infcall.c: Include tracepoint.h.
8088 (call_function_by_hand): Disallow calls in tfind mode.
8089 * infcmd.c: Include tracepoint.h.
8090 (ensure_not_tfind_mode): New function.
8091 (continue_1): Call it.
8092 (step_1) Ditto.
8093 (jump_command): Ditto.
8094 (signal_command): Ditto.
8095 (advance_command): Ditto.
8096 (until_command): Ditto.
8097 (finish_command): Ditto.
8098 * tracepoint.h (disconnect_or_stop_tracing): Declare.
8099
8100 * ax-gdb.h (struct axs_value): New field optimized_out.
8101 (gen_trace_for_var): Add gdbarch argument.
8102 * ax-gdb.c (gen_trace_static_fields): New function.
8103 (gen_traced_pop): Call it, add gdbarch argument.
8104 (gen_trace_for_expr): Update call to it.
8105 (gen_trace_for_var): Ditto, and report optimized-out variables.
8106 (gen_struct_ref_recursive): Check for optimized-out value.
8107 (gen_struct_elt_for_reference): Ditto.
8108 (gen_static_field): Pass gdbarch instead of expression, assume
8109 optimization if field not found.
8110 (gen_var_ref): Set the optimized_out flag.
8111 (gen_expr): Error on optimized-out variable.
8112 * tracepoint.c (collect_symbol): Handle struct-valued vars as
8113 expressions, skip optimized-out variables with computed locations.
8114 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
8115 erroring out if location expression missing.
8116 (loclist_tracepoint_var_ref): Don't error out here.
8117
8118 2010-03-17 Tom Tromey <tromey@redhat.com>
8119
8120 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
8121 DWARF data is available.
8122
8123 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
8124
8125 * symfile.c (generic_load): Reset breakpoints after loading.
8126
8127 2010-03-17 Tom Tromey <tromey@redhat.com>
8128
8129 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
8130
8131 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8132
8133 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
8134 create_breakpoint call, adjust the parameters.
8135
8136 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8137 Chandru <chandru@in.ibm.com>
8138
8139 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
8140 * valarith.c (value_subscripted_rvalue): Suppress error if
8141 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
8142
8143 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
8144
8145 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
8146
8147 2010-03-16 Joel Brobecker <brobecker@adacore.com>
8148
8149 * ada-tasks.c (task_command_1): Check that the task ptid is valid
8150 before doing the associated thread switch.
8151
8152 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
8153
8154 * MAINTAINERS: Update my email address.
8155
8156 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
8157
8158 Simplify MI breakpoint setting.
8159
8160 * breakpoint.c (break_command_really): Make nonstatic and
8161 rename to...
8162 (create_breakpoint): ...this. Rename prior function by this name
8163 to...
8164 (create_breakpoint_sal): ...this.
8165 (create_breakpoints): Rename to...
8166 (create_breakpoints_sal): ...this.
8167 (set_breakpoint): Remove.
8168 * breakpoint.h: Adjust to above changes.
8169 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
8170
8171 2010-03-15 Stan Shebs <stan@codesourcery.com>
8172
8173 * ax-gdb.c: Include cp-support.h.
8174 (find_field): Remove.
8175 (gen_primitive_field): New function.
8176 (gen_struct_ref_recursive): New function.
8177 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
8178 of find_field.
8179 (gen_static_field): New function.
8180 (gen_struct_elt_for_reference): New.
8181 (gen_namespace_elt): New.
8182 (gen_maybe_namespace_elt): New.
8183 (gen_aggregate_elt_ref): New.
8184 (gen_expr): Add OP_SCOPE, display opcode name in error message.
8185
8186 2010-03-15 Tom Tromey <tromey@redhat.com>
8187
8188 * dwarf2read.c (die_needs_namespace): Also return 0 for
8189 DW_TAG_subprogram.
8190
8191 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
8192
8193 PR c++/7936:
8194 * cp-support.h: Added char *declaration element to using_direct
8195 data struct.
8196 (cp_add_using): Added char *declaration argument.
8197 (cp_add_using_directive): Ditto.
8198 (cp_lookup_symbol_imports): made extern.
8199 * cp-namespace.c: Updated with the above changes.
8200 * dwarf2read.c (read_import_statement): Ditto.
8201 (read_namespace): Ditto.
8202 (read_import_statement): Support import declarations.
8203 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
8204 declarations.
8205 Added support for 'declaration_only' search.
8206 (cp_lookup_symbol_namespace): Attempt to search for the name as
8207 is before consideration of imports.
8208 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
8209 search at every block level search.
8210 Now takes language argument.
8211 (lookup_symbol_aux): Updated.
8212
8213 2010-03-15 Tom Tromey <tromey@redhat.com>
8214
8215 * c-exp.y (name_not_typename): Add 'operator' clause.
8216
8217 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
8218
8219 * configure.ac: Exit if ${gdb_target_obs}" is not set.
8220 * configure: Regenerate.
8221
8222 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8223
8224 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
8225 and ".sdynbss". Update the comment.
8226
8227 2010-03-15 Jie Zhang <jie@codesourcery.com>
8228
8229 * MAINTAINERS: Update my email address.
8230
8231 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
8232
8233 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
8234
8235 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
8236
8237 * charset.c [USE_WIN32API]: Include <windows.h>.
8238 (_initialize_charset): Correct type of w32_host_default_charset.
8239
8240 2010-03-14 Pedro Alves <pedro@codesourcery.com>
8241
8242 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
8243
8244 2010-03-12 Tom Tromey <tromey@redhat.com>
8245
8246 PR c++/9708:
8247 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
8248 in a lexical block does not need a namespace.
8249 (new_symbol) <DW_TAG_variable>: Put extern variables on
8250 list_in_scope in all cases.
8251
8252 2010-03-12 Stan Shebs <stan@codesourcery.com>
8253
8254 * ax-gdb.c (gen_expr): Add shift expressions.
8255 (gen_expr_binop_rest): Ditto.
8256
8257 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
8258
8259 * buildsym.c (finish_block): Reset using_directives pointer
8260 after block initialization.
8261
8262 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
8263
8264 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
8265 * i386-tdep.c (i386_word_names): Likewise.
8266
8267 2010-03-12 Pedro Alves <pedro@codesourcery.com>
8268
8269 * target.c (memory_xfer_partial): Don't use the stack cache if
8270 inspecting trace frames.
8271 * tracepoint.c (finish_tfind_command): Invalidate the target
8272 dcache.
8273
8274 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8275
8276 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
8277 for the PIC displacement, print also the displacement value.
8278 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
8279
8280 2010-03-10 Kevin Buettner <kevinb@redhat.com>
8281
8282 * remote-mips.c (close_ports, mips_initialize_cleanups)
8283 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
8284 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
8285 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
8286 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
8287 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
8288 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
8289 comments describing each of these functions.
8290 (mips_enter_debug, mips_exit_debug, common_open)
8291 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
8292 blank line after the comment describing the function.
8293
8294 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8295
8296 * solib-svr4.c (svr4_exec_displacement): Return now success, new
8297 parameter displacementp. Update comment.
8298 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
8299 element exists. Return if svr4_exec_displacement was not successful.
8300 Update comment.
8301
8302 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8303 Daniel Jacobowitz <dan@codesourcery.com>
8304
8305 * solib-svr4.c (read_program_header): Support type == -1 to read
8306 all program headers.
8307 (read_program_headers_from_bfd): New function.
8308 (svr4_static_exec_displacement): Remove and move the comment ...
8309 (svr4_exec_displacement): ... here. Remove variable found. New
8310 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
8311 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
8312 targets using read_program_headers_from_bfd. Remove the call of
8313 svr4_static_exec_displacement.
8314
8315 2010-03-10 Tom Tromey <tromey@redhat.com>
8316
8317 * dwarf2read.c (struct pubnames_header): Remove.
8318 (_PUBNAMES_HEADER): Remove.
8319 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
8320 (struct aranges_header): Remove.
8321 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
8322 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
8323 (PUBNAMES_SECTION): Remove.
8324 (ARANGES_SECTION): Remove.
8325 (dwarf2_locate_sections): Don't handle pubnames or aranges.
8326 (dwarf2_build_psymtabs): Remove dead code.
8327 (dwarf2_build_psymtabs_easy): Remove.
8328
8329 2010-03-10 Tom Tromey <tromey@redhat.com>
8330
8331 * elfread.c (elf_symfile_read): Don't call
8332 dwarf2_build_frame_info.
8333 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
8334 (struct dwarf2_per_objfile) <objfile>: New field.
8335 (dwarf2_has_info): Now idempotent. Set objfile field.
8336 (dwarf2_read_section): Check and set readin field. Call
8337 posix_madvise.
8338 (dwarf2_build_psymtabs): Don't read all sections.
8339 (read_type_comp_unit_head): Read types section.
8340 (create_debug_types_hash_table): Likewise.
8341 (init_cu_die_reader): Add asserts.
8342 (process_type_comp_unit): Add assert.
8343 (dwarf2_build_psymtabs_hard): Read info section.
8344 (load_partial_comp_unit): Add assert.
8345 (create_all_comp_units): Read info section.
8346 (load_full_comp_unit): Likewise.
8347 (dwarf2_ranges_read): Read ranges section.
8348 (dwarf2_record_block_ranges): Add assert.
8349 (dwarf2_read_abbrevs): Read abbrev section.
8350 (read_indirect_string): Read str section.
8351 (dwarf_decode_line_header): Read line section.
8352 (read_signatured_type_at_offset): Read types section.
8353 (dwarf_decode_macros): Read macinfo section.
8354 (dwarf2_symbol_mark_computed): Read loc section.
8355 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
8356 dwarf2_build_frame_info.
8357 (dwarf2_build_frame_info): Unconditionally set
8358 dwarf2_frame_objfile_data on the objfile.
8359 * configure.ac: Check for posix_madvise.
8360 * config.in, configure: Rebuild.
8361
8362 2010-03-10 Tom Tromey <tromey@redhat.com>
8363
8364 * xcoffread.c (xcoff_start_psymtab): Update.
8365 (xcoff_end_psymtab): Update.
8366 * psymtab.c (allocate_psymtab): Remove dead code.
8367 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
8368 void*.
8369 * mdebugread.c (parse_partial_symbols): Update.
8370 (new_psymtab): Likewise.
8371 * dwarf2read.c (process_psymtab_comp_unit): Update.
8372 (psymtab_to_symtab_1): Update.
8373 * dbxread.c (start_psymtab): Update.
8374 (end_psymtab): Likewise.
8375
8376 2010-03-10 Tom Tromey <tromey@redhat.com>
8377
8378 * xcoffread.c: Include psymtab.h.
8379 (xcoff_sym_fns): Update.
8380 * symtab.h (struct partial_symbol): Remove.
8381 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
8382 (struct partial_symtab): Remove.
8383 (PSYMTAB_TO_SYMTAB): Remove.
8384 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
8385 (find_pc_sect_psymtab): Remove.
8386 (find_pc_sect_symtab_via_partial): Declare.
8387 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
8388 (find_main_psymtab): Remove.
8389 (find_main_filename): Declare.
8390 (fixup_psymbol_section): Remove.
8391 (fixup_section): Declare.
8392 * symtab.c: Include psymtab.h.
8393 (lookup_symtab): Use lookup_symtab method.
8394 (lookup_partial_symtab): Remove.
8395 (find_pc_sect_psymtab_closer): Remove.
8396 (find_pc_sect_psymtab): Remove.
8397 (find_pc_sect_symtab_via_partial): New function.
8398 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
8399 (fixup_section): No longer static.
8400 (fixup_psymbol_section): Remove.
8401 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
8402 (lookup_global_symbol_from_objfile): Likewise.
8403 (lookup_symbol_aux_psymtabs): Remove.
8404 (lookup_symbol_aux_quick): New function.
8405 (lookup_symbol_global): Use lookup_symbol_aux_quick.
8406 (lookup_partial_symbol): Remove.
8407 (basic_lookup_transparent_type_quick): New function.
8408 (basic_lookup_transparent_type): Use it.
8409 (find_main_psymtab): Remove.
8410 (find_main_filename): New function.
8411 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
8412 (find_line_symtab): Use expand_symtabs_with_filename method.
8413 (output_partial_symbol_filename): New function.
8414 (sources_info): Use map_partial_symbol_filenames.
8415 (struct search_symbols_data): New type.
8416 (search_symbols_file_matches): New function.
8417 (search_symbols_name_matches): Likewise.
8418 (search_symbols): Use expand_symtabs_matching method.
8419 (struct add_name_data): Rename from add_macro_name_data.
8420 (add_macro_name): Update.
8421 (add_partial_symbol_name): New function.
8422 (default_make_symbol_completion_list): Use
8423 map_partial_symbol_names.
8424 (struct add_partial_symbol_name): New type.
8425 (maybe_add_partial_symtab_filename): New function.
8426 (make_source_files_completion_list): Use
8427 map_partial_symbol_filenames.
8428 (expand_line_sal): Use expand_symtabs_with_filename method.
8429 * symmisc.c: Include psymtab.h.
8430 (print_objfile_statistics): Use print_stats method.
8431 (dump_objfile): Use dump method.
8432 (dump_psymtab, maintenance_print_psymbols)
8433 (maintenance_info_psymtabs, maintenance_check_symtabs)
8434 (extend_psymbol_list): Remove.
8435 * symfile.h (struct quick_symbol_functions): New struct.
8436 (struct sym_fns) <qf>: New field.
8437 (sort_pst_symbols): Remove.
8438 (increment_reading_symtab): Declare.
8439 * symfile.c: Include psymtab.h.
8440 (compare_psymbols, sort_pst_symbols): Remove.
8441 (psymtab_to_symtab): Remove.
8442 (increment_reading_symtab): New function.
8443 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
8444 method.
8445 (set_initial_language): Use find_main_filename.
8446 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
8447 (free_named_symtabs): Remove unused code.
8448 (start_psymtab_common, add_psymbol_to_bcache)
8449 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
8450 Remove.
8451 * stack.c: Include psymtab.h, symfile.h.
8452 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
8453 * source.h (psymtab_to_fullname): Don't declare.
8454 * source.c: Include psymtab.h.
8455 (select_source_symtab): Use find_last_source_symtab method.
8456 (forget_cached_source_info): Use forget_cached_source_info
8457 method.
8458 (find_and_open_source): No longer static.
8459 (psymtab_to_fullname): Remove.
8460 * somread.c: Include psymtab.h.
8461 (som_sym_fns): Update.
8462 * psympriv.h: New file.
8463 * psymtab.h: New file.
8464 * psymtab.c: New file.
8465 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
8466 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
8467 * objfiles.c: Include psymtab.h.
8468 (objfile_relocate1): Use relocate method.
8469 (objfile_has_partial_symbols): Use has_symbols method.
8470 * mipsread.c: Include psymtab.h.
8471 (ecoff_sym_fns): Update.
8472 * mi/mi-cmd-file.c: Include psymtab.h.
8473 (print_partial_file_name): New function.
8474 (mi_cmd_file_list_exec_source_files): Use
8475 map_partial_symbol_filenames.
8476 * mdebugread.c: Include psympriv.h.
8477 * machoread.c: Include psympriv.h.
8478 (macho_sym_fns): Update.
8479 * m2-exp.y (yylex): Use lookup_symtab.
8480 * elfread.c: Include psympriv.h.
8481 (elf_sym_fns): Update.
8482 * dwarf2read.c: Include psympriv.h.
8483 * dbxread.c: Include psympriv.h.
8484 (aout_sym_fns): Update.
8485 * cp-support.c: Include psymtab.h.
8486 (read_in_psymtabs): Remove.
8487 (make_symbol_overload_list_qualified): Use
8488 expand_symtabs_for_function method.
8489 * coffread.c: Include psympriv.h.
8490 (coff_sym_fns): Update.
8491 * blockframe.c: Include psymtab.h.
8492 (find_pc_partial_function): Use find_pc_sect_symtab method.
8493 * ada-lang.h (ada_update_initial_language): Update.
8494 * ada-lang.c: Include psymtab.h.
8495 (ada_update_initial_language): Remove 'main_pst' argument.
8496 (ada_lookup_partial_symbol): Remove.
8497 (struct ada_psym_data): New type.
8498 (ada_add_psyms): New function.
8499 (ada_add_non_local_symbols): Use map_ada_symtabs method.
8500 (struct add_partial_datum): New type.
8501 (ada_add_partial_symbol_completions): New function.
8502 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
8503 (ada_exception_support_info_sniffer): Update.
8504 * Makefile.in (SFILES): Add psymtab.c.
8505 (COMMON_OBS): Add psymtab.o.
8506 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
8507
8508 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
8509
8510 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
8511
8512 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
8513
8514 PR C++/11236:
8515 * cp-namespace.c (cp_add_using): Deleted.
8516 (cp_add_using_directive): Use obstack allocations.
8517 Merged the function cp_add_using into this one.
8518 Added 'struct obstack *' argument.
8519 (cp_scan_for_anonymous_namespaces): Updated.
8520 * cp-support.h: Updated.
8521 * dwarf2read.c (read_import_statement): Updated.
8522 (read_namespace): Updated.
8523
8524 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
8525
8526 * windows-nat.c (cygwin_conv_path): Remove old macro.
8527
8528 2010-03-10 Pedro Alves <pedro@codesourcery.com>
8529
8530 * breakpoint.c (condition_command): Handle watchpoint conditions.
8531 (is_hardware_watchpoint): Add comment.
8532 (is_watchpoint): New.
8533 (update_watchpoint): Don't reparse the watchpoint's condition
8534 unless necessary.
8535 (WP_IGNORE): New.
8536 (watchpoint_check): Use it.
8537 (bpstat_check_watchpoint): Handle it.
8538 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
8539 conditions in a frame where it makes sense.
8540 (watch_command_1): Store the innermost block of the condition
8541 expression.
8542 (delete_breakpoint): Delete the watchpoint condition expression.
8543 * breakpoint.h (struct bp_location) <cond>: Update comment.
8544 (struct breakpoint): New field `cond_exp_valid_block'.
8545
8546 2010-03-09 Joel Brobecker <brobecker@adacore.com>
8547
8548 Adjust handling of Ada DIEs after dwarf2_physname patch.
8549 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
8550
8551 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
8552 Pierre Muller <muller@ics.u-strasbg.fr>
8553
8554 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
8555 from/to posix/win32.
8556 (windows_make_so): Use non-Cygwin 1.7 specific function.
8557 (windows_create_inferior): Make sure that cygallargs points to
8558 original args in non Cygwin 1.7. case.
8559
8560 2010-03-09 Michael Snyder <msnyder@vmware.com>
8561
8562 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
8563 after target_read_memory to get host byte order.
8564 (i386_process_record): Ditto.
8565
8566 2010-03-09 Keith Seitz <keiths@redhat.com>
8567
8568 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
8569 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
8570 print out const or volatile qualifiers, too.
8571 (c_type_print_args): Add parameters show_artificial and language.
8572 Skip artificial parameters when requested.
8573 Use the appropriate language printer.
8574 (c_type_print_varspec): Tell c_type_print_args to skip artificial
8575 parameters and pass language_c.
8576 * dwarf2read.c (die_list): New file global.
8577 (struct partial_die_info): Update comments for name field.
8578 (pdi_needs_namespace): Renamed to ...
8579 (die_needs_namespace): ... this. Rewrite.
8580 (dwarf2_linkage_name): Remove.
8581 (add_partial_symbol): Do not predicate the call to
8582 partial_die_full_name based on pdi_needs_namespace.
8583 Remove call to cp_check_possible_namespace_symbols and associated
8584 outdated comments.
8585 (guess_structure_name): Do not inspect child subprogram DIEs.
8586 (dwarf2_fullname): Update comments.
8587 Use die_needs_namespace to assist in computing the name.
8588 (read_func_scope): Use dwarf2_name to get the DIE's name.
8589 Use dwarf2_physname to get the "linkage name" of the DIE.
8590 (dwarf2_add_member_field): Use dwarf2_physname instead of
8591 dwarf2_linkage_name.
8592 (read_structure_type): For structs and classes, set TYPE_NAME, too.
8593 (determine_class): Remove.
8594 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
8595 except Ada.
8596 (new_symbol): Unconditionally call dwarf2_name.
8597 Compute the "linkage name" using dwarf2_physname.
8598 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
8599 When determining to scan for anonymous C++ namespaces, ignore
8600 the linkage name.
8601 (dwarf2_physname): New function.
8602 (dwarf2_full_name): Move content to new function and call
8603 that.
8604 (dwarf2_compute_name): "New" function.
8605 (_initialize_dwarf2_read): Initialize die_list.
8606 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
8607 physname.
8608 (gnu_v3_print_method_ptr): Use the physname for virtual methods
8609 without a demangled name.
8610 Print out type information for non-virtual methods.
8611 * linespec.c (decode_line_1): Force ANY string using "::" (or
8612 "." for java) to use decode_compound, and clean up any stray quoting.
8613 If we found a file symtab, re-evaluate whether the remainder is_quoted.
8614 (decode_compound): Stop consuming at an open parenthesis.
8615 Keep template parameters.
8616 Keep any overload information.
8617 Keep keywords like "const".
8618 Remove paren_pointer.
8619 Move is_quoted check from set_flags to here.
8620 Remove #if 0 code from 2000. Ten years is long enough.
8621 (find_method): Before comparing symbol names, canonicalize the string
8622 from the user.
8623 If a specific overload is requested, find it. Otherwise throw an error.
8624 (find_method_overload_end): New function.
8625 (set_flags): Remove.
8626 (decode_compound): Assume that parentheses are matched.
8627 It's a lot easier.
8628 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
8629 to cplus_demangle.
8630 * linespec.c (decode_line_1): Keep important keywords like
8631 "const" and "volatile".
8632 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
8633 * typeprint.h (c_type_print_args): Add declaration.
8634 * ui-file.c (do_ui_file_obsavestring): New function.
8635 (ui_file_obsavestring): New function.
8636 * ui-file.h (ui_file_obsavestring): Add declaration.
8637 * valops.c (find_overload_match): Resolve the object to
8638 a non-pointer type.
8639 If the object is a data member, search the object for the member
8640 and return with staticp set.
8641 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
8642 Do not attempt to extract a function name from non-function types.
8643 If the extracted function name and the original name are the same,
8644 we don't have a C++ method.
8645
8646 From Jan Kratochvil <jan.kratochvil@redhat.com>:
8647 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
8648
8649 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
8650 and arguments from symbol lookups.
8651 * ax-gdb.c (gen_expr): Likewise.
8652 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
8653 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
8654 lookup_possible_namespace_symbol): Likewise.
8655 * cp-support.c (read_in_psymtabs): Likewise.
8656 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
8657 * language.h (la_lookup_symbol_nonlocal): Likewise.
8658 * scm-valprint.c (scm_inferior_print): Likewise.
8659 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
8660 * solib-svr.c (elf_lookup_lib): Likewise.
8661 * solib.c (show_auto_solib_add): Likewise.
8662 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
8663 * symmisc.c (maintenance_check_symtabs): Likewise.
8664 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
8665 lookup_symbol_aux_local, lookup_symbol_aux_block,
8666 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
8667 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
8668 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
8669 basic_lookup_transparent_type, find_main_psymtab,
8670 lookup_block_symbol): Likewise.
8671 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
8672 lookup_symbol_global, lookup_symbol_aux_block,
8673 lookup_symbol_partial_symbol, lookup_block_symbol,
8674 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
8675
8676 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
8677
8678 * python/python-internal.h: Include symtab.h.
8679
8680 2010-03-09 Joel Brobecker <brobecker@adacore.com>
8681 Pierre Muller <muller@ics.u-strasbg.fr>
8682
8683 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
8684 * p-valprint.c (pascal_val_print): Remove undeed block and fix
8685 indentation.
8686
8687 2010-03-08 Tom Tromey <tromey@redhat.com>
8688
8689 * breakpoint.c (breakpoint_1): Add "QUIT".
8690
8691 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
8692 Pedro Alves <pedro@codesourcery.com>
8693
8694 * solib.c (solib_find): Replace extension if
8695 solib_symbols_extension is set in the target gdbarch.
8696 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
8697 solib_symbols_extension to "sym".
8698 * gdbarch.sh (solib_symbols_extension): New variable.
8699 (pstring): New function.
8700 * gdbarch.h, gdbarch.c: Regenerate.
8701
8702 2010-03-08 Tom Tromey <tromey@redhat.com>
8703
8704 PR cli/9591:
8705 * NEWS: Update.
8706 * utils.c: Include main.h.
8707 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
8708 (defaulted_query): Use default answer if `batch_flag'.
8709 * main.h (batch_flag): Declare.
8710 * main.c (batch_flag): New global.
8711 (captured_main): Remove 'batch'. Update.
8712
8713 2010-03-08 Kevin Buettner <kevinb@redhat.com>
8714
8715 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
8716 and Kevin Buettner:
8717
8718 * remote-mips.c (rockhopper_ops): New target_ops struct.
8719 (MON_ROCKHOPPER): New mips_monitor_type.
8720 (read_hex_value): New function.
8721 (mips_request): Send 8-byte values with a 'T' packet. Read the
8722 packet argument as a string and use read_hex_value to parse it.
8723 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
8724 (rockhopper_open): New function.
8725 (mips_wait): Read the PC, FP and SP fields as strings. Use
8726 read_hex_value to parse them and mips_set_register to commit them.
8727 (mips_set_register): New function.
8728 (mips_fetch_registers): Do not cast register value to "unsigned"
8729 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
8730 (mips_store_registers): Use a 'T' packet to set registers when
8731 using MON_ROCKHOPPER.
8732 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
8733 and expect the total to be printed before the entry address.
8734 (_initialize_remote_mips): Initialize and add rockhopper_ops.
8735
8736 2010-03-08 Kevin Buettner <kevinb@redhat.com>
8737
8738 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
8739 Change return value to int. Store value fetched in location
8740 addressed by `val'. Use function's return value as success
8741 or failure indicator. Adjust all callers.
8742
8743 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
8744
8745 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
8746
8747 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8748 Hui Zhu <teawater@gmail.com>
8749
8750 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
8751 tmp_to_stopped_data_address.
8752 (record_open): Reset tmp_to_stopped_by_watchpoint and
8753 tmp_to_stopped_data_address.
8754 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
8755 to_stopped_data_address.
8756
8757 2010-03-08 Hui Zhu <teawater@gmail.com>
8758
8759 * i386-tdep.c (i386_process_record): Initialize regnum.
8760
8761 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8762
8763 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
8764 Do not warn on ".gnu.liblist" and ".gnu.conflict".
8765
8766 2010-03-08 Joel Brobecker <brobecker@adacore.com>
8767
8768 Memory error when reading wrong core file.
8769 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
8770 errors while reading the inferior memory, and return zero if
8771 an exception was raised.
8772
8773 2010-03-07 Michael Snyder <msnyder@vmware.com>
8774
8775 * record.c (record_restore): Rename tmpu8 to rectype.
8776
8777 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
8778 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
8779
8780 (i386_record_push): Rename local tmpulongest to addr.
8781
8782 (i386_process_record): Rename local tmpulongest to addr.
8783
8784 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
8785 addr64.
8786
8787 Rename local variable tmpu8 to opcode8 and regnum.
8788
8789 2010-03-07 Joel Brobecker <brobecker@adacore.com>
8790
8791 * remote.c (remote_get_ada_task_ptid): New function.
8792 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
8793
8794 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
8795
8796 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
8797 block. Define helper macros to reduce ifdefs in code.
8798 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
8799 size. Call unadorned GetModuleFileNameEx rather than
8800 GetModuleFileNameEx*.
8801 (windows_make_so): Use __PMAX to denote maximum buffer size and
8802 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
8803 appropriate.
8804 (get_image_name): Use __PMAX to denote maximum buffer size.
8805 (handle_load_dll): Likewise.
8806 (windows_pid_to_exec_file): Likewise.
8807 (windows_create_inferior): Add many accommodations for older Cygwin and
8808 non-Cygwin.
8809 (bad_GetModuleFileNameExW): Control inclusion of this function based on
8810 __USEWIDE conditional.
8811 (bad_GetModuleFileNameExA): Likewise.
8812 (_initialize_loadable): Just use real function names without the dyn_
8813 part since they are defined earlier.
8814
8815 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
8816 Tom Tromey <tromey@redhat.com>
8817
8818 * utils.c (host_char_to_target): Add 'gdbarch' argument.
8819 (parse_escape): Likewise.
8820 * python/py-utils.c (unicode_to_target_string): Update.
8821 (unicode_to_target_python_string): Update.
8822 (target_string_to_unicode): Update.
8823 * printcmd.c (printf_command): Update.
8824 * p-exp.y (yylex): Update.
8825 * objc-exp.y (yylex): Update.
8826 * mi/mi-parse.c: Include charset.h.
8827 (mi_parse_escape): New function.
8828 (mi_parse_argv): Use it.
8829 * jv-exp.y (yylex): Update.
8830 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
8831 function.
8832 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
8833 * gdbarch.sh (auto_charset, auto_wide_charset): New.
8834 * gdbarch.c: Rebuild.
8835 * gdbarch.h: Rebuild.
8836 * defs.h (parse_escape): Update.
8837 * cli/cli-setshow.c: Include arch-utils.h.
8838 (do_setshow_command): Update.
8839 * cli/cli-cmds.c (echo_command): Update.
8840 * charset.h (target_charset, target_wide_charset): Update.
8841 * charset.c: Include arch-utils.h.
8842 (target_charset_name): Default to "auto".
8843 (target_wide_charset_name): Likewise.
8844 (show_target_charset_name): Handle "auto".
8845 (show_target_wide_charset_name): Likewise.
8846 (be_le_arch): New global.
8847 (set_be_le_names): Add 'gdbarch' argument.
8848 (validate): Likewise. Don't call set_be_le_names.
8849 (set_charset_sfunc, set_host_charset_sfunc)
8850 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
8851 Update.
8852 (target_charset): Add 'gdbarch' argument.
8853 (target_wide_charset): Likewise. Remove 'byte_order' argument.
8854 (auto_target_charset_name): New global.
8855 (default_auto_charset, default_auto_wide_charset): New functions.
8856 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
8857 for target charsets. Copy result of nl_langinfo. Use GetACP if
8858 USE_WIN32API.
8859 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
8860 remove 'byte_order' argument. Update.
8861 (classify_type): Likewise.
8862 (c_emit_char): Update.
8863 (c_printchar): Update.
8864 (c_printstr): Update.
8865 (c_get_string): Update.
8866 (evaluate_subexp_c): Update.
8867 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
8868 Declare.
8869 * python/python.c (gdbpy_target_charset): New function.
8870 (gdbpy_target_wide_charset): Likewise.
8871 (GdbMethods): Update.
8872 * NEWS: Update.
8873
8874 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
8875
8876 * symfile.c (build_section_addr_info_from_objfile): Do not mask
8877 off high address bits.
8878
8879 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
8880
8881 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
8882 address as UnsignedLongLong, not LongLong.
8883
8884 2010-03-05 Kevin Buettner <kevinb@redhat.com>
8885 Pedro Alves <pedro@codesourcery.com>
8886
8887 * remote-mips.c (gdbthread.h): Include.
8888 (remote_mips_ptid): Declare.
8889 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
8890 (common_open): Set inferior_ptid, add it as an inferior, and
8891 as a thread too. Delete FIXME comment regarding start_remote().
8892 (mips_close): Invoke generic_mourn_inferior().
8893 (mips_kill): Make sure that target_mourn_inferior is invoked.
8894 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
8895 it's now invoked from mips_close().
8896 (mips_load): Don't null out inferior_ptid. Don't call
8897 clear_symtab_users().
8898 (mips_thread_alive, mips_pid_to_str): New functions.
8899 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
8900 to_thread_alive and to_pid_to_str operations.
8901
8902 2010-03-04 Tom Tromey <tromey@redhat.com>
8903
8904 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
8905 in DWARF 3 and later.
8906 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
8907
8908 2010-03-04 Keith Seitz <keiths@redhat.com>
8909
8910 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
8911 If the filename portion of the linespec was quoted, recheck the
8912 remainder for additional quoting.
8913 (locate_first_half): Skip over completer chars, too.
8914
8915 2010-03-04 Tom Tromey <tromey@redhat.com>
8916
8917 * printcmd.c (printf_command): Pass dummy argument to
8918 printf_filtered.
8919
8920 2010-03-04 Doug Evans <dje@google.com>
8921
8922 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
8923 unwound_fp.
8924
8925 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
8926
8927 2010-03-04 Pedro Alves <pedro@codesourcery.com>
8928
8929 * breakpoint.c (update_watchpoint): Create a sentinel location if
8930 the software watchpoint isn't watching any memory.
8931 (breakpoint_address_bits): Skip dummy software watchpoint locations.
8932
8933 2010-03-04 Pedro Alves <pedro@codesourcery.com>
8934
8935 * utils.c (fputs_maybe_filtered): Check if there's already a top
8936 level interpreter before dereferencing it. If there isn't one,
8937 don't paginate either.
8938
8939 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
8940
8941 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
8942 the state right when single stepping.
8943 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
8944 Get the next PC along with the instruction state.
8945 (thumb_get_next_pc): Remove.
8946 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
8947
8948 2010-03-04 Hui Zhu <teawater@gmail.com>
8949
8950 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
8951
8952 2010-03-03 Pedro Alves <pedro@codesourcery.com>
8953
8954 * utils.c (fputs_maybe_filtered): Always disable pagination if the
8955 top level interpreter is MI.
8956
8957 2010-03-03 Stan Shebs <stan@codesourcery.com>
8958
8959 * remote.c (remote_download_tracepoint): Iterate over locations.
8960 * tracepoint.c (validate_actionline): Ditto.
8961 (encode_actions): Add location argument.
8962 (trace_dump_command): Check all locations to see if stepping
8963 frame.
8964
8965 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
8966 Eli Zaretskii <eliz@gnu.org>
8967
8968 * NEWS: Add X86 general purpose registers section.
8969
8970 2010-03-03 Tom Tromey <tromey@redhat.com>
8971
8972 PR mi/11098:
8973 * varobj.c (install_new_value): Handle case where new print_value
8974 is NULL.
8975
8976 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
8977
8978 PR gdb/11345:
8979 * printcmd.c (printf_command): Print end of format string using
8980 printf_filtered.
8981
8982 2010-03-02 Tom Tromey <tromey@redhat.com>
8983
8984 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
8985 * defs.h (read_command_lines_1): Add missing 'void'.
8986 * cli/cli-script.c (recurse_read_control_structure): Add missing
8987 'void'.
8988 (read_next_line): Likewise.
8989 (read_command_lines_1): Likewise.
8990
8991 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
8992
8993 * spu-tdep.c (spu_analyze_prologue): Track instruction to
8994 store backchain as part of prologue.
8995
8996 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
8997
8998 * progspace.c (update_address_spaces): Update inferior address spaces
8999 also.
9000
9001 2010-03-02 Doug Evans <dje@google.com>
9002
9003 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
9004 lowpc,highpc args to addrmap_set_empty.
9005
9006 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
9007
9008 * amd64-tdep.c (amd64_byte_names): New.
9009 (amd64_word_names): Likewise.
9010 (amd64_dword_names): Likewise.
9011 (amd64_pseudo_register_name): Likewise.
9012 (amd64_pseudo_register_read): Likewise.
9013 (amd64_pseudo_register_write): Likewise.
9014 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
9015 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
9016 set_gdbarch_pseudo_register_write and
9017 set_tdesc_pseudo_register_name. Don't call
9018 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
9019
9020 * i386-tdep.c (i386_num_mmx_regs): Removed.
9021 (i386_num_pseudo_regs): Likewise.
9022 (i386_byte_names): New.
9023 (i386_word_names): Likewise.
9024 (i386_byte_regnum_p): Likewise.
9025 (i386_word_regnum_p): Likewise.
9026 (i386_mmx_regnum_p): Updated.
9027 (i386_pseudo_register_name): Make it global. Handle byte and
9028 word pseudo-registers.
9029 (i386_pseudo_register_read): Likewise.
9030 (i386_pseudo_register_write): Likewise.
9031 (i386_pseudo_register_type): Handle byte, word and dword
9032 pseudo-registers
9033 (i386_register_reggroup_p): Don't include pseudo
9034 registers, except for MXX, in any register groups. Don't
9035 include pseudo byte, word, dword registers in general_reggroup.
9036 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
9037 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
9038 pseudo-registers after word pseudo-registers. Call
9039 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
9040
9041 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
9042 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
9043 eax_regnum.
9044 (i386_byte_regnum_p): New.
9045 (i386_word_regnum_p): Likewise.
9046 (i386_dword_regnum_p): Likewise.
9047 (i386_pseudo_register_name): Likewise.
9048 (i386_pseudo_register_read): Likewise.
9049 (i386_pseudo_register_write): Likewise.
9050
9051 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
9052
9053 * target-descriptions.c (tdesc_type): Remove
9054 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9055 (tdesc_predefined_types): Likewise.
9056 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
9057 if flag name is empty.
9058 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
9059
9060 * features/i386/32bit-core.xml: Define i386_eflags.
9061 * features/i386/64bit-core.xml: Likewise.
9062
9063 * features/i386/32bit-sse.xml: Define i386_mxcsr.
9064 * features/i386/64bit-sse.xml: Likewise.
9065
9066 * features/i386/amd64-linux.c: Regenerated.
9067 * features/i386/amd64.c: Likewise.
9068 * features/i386/i386-linux.c: Likewise.
9069 * features/i386/i386.c: Likewise.
9070
9071 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
9072
9073 * gdbtypes.c (append_composite_type_field_raw): New.
9074 (append_composite_type_field_aligned): Use the new function.
9075 * gdbtypes.h (append_composite_type_field_raw): Declare.
9076 * target-descriptions.c (struct tdesc_type_field): Add start and end.
9077 (struct tdesc_type_flag): New type.
9078 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
9079 kind. Add size to u.u. Add u.f for flags.
9080 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
9081 (tdesc_free_type): Likewise.
9082 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
9083 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
9084 (tdesc_add_bitfield, tdesc_add_flag): New.
9085 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
9086 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
9087 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
9088 current_type. Add current_type_size and current_type_is_flags.
9089 (tdesc_start_union): Clear the new fields.
9090 (tdesc_start_struct, tdesc_start_flags): New.
9091 (tdesc_start_field): Handle struct fields, including bitfields.
9092 (field_attributes): Make type optional. Add start and end.
9093 (union_children): Rename to struct_union_children.
9094 (union_attributes): Rename to struct_union_attributes. Add optional
9095 size.
9096 (flags_attributes): New.
9097 (feature_children): Add struct and flags.
9098 * features/gdb-target.dtd: Add flags and struct to features.
9099 Make field type optional. Add field start and end.
9100
9101 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
9102
9103 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
9104 (amd64_linux_read_description): Likewise.
9105 (_initialize_amd64_linux_nat): Set to_read_description to
9106 amd64_linux_read_description.
9107
9108 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
9109 (amd64_linux_register_name): Removed.
9110 (amd64_linux_register_type): Likewise.
9111 (amd64_linux_core_read_description): New.
9112 (amd64_linux_init_abi): Set target description to
9113 tdesc_amd64_linux if needed. Support orig_rax in target
9114 description. Don't call set_gdbarch_register_name nor
9115 set_gdbarch_register_type. Call
9116 set_gdbarch_core_read_description.
9117 (_initialize_amd64_linux_tdep): Call
9118 initialize_tdesc_amd64_linux.
9119
9120 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
9121
9122 * amd64-tdep.c: Include "features/i386/amd64.c".
9123 (amd64_register_names): Removed.
9124 (amd64_register_name): Likewise.
9125 (amd64_register_type): Likewise.
9126 (amd64_init_abi): Set num_core_regs and register_names. Set
9127 target description to tdesc_amd64 if needed. Don't call
9128 set_gdbarch_register_name nor set_gdbarch_register_type.
9129 (_initialize_amd64_tdep): New.
9130
9131 * i386-linux-nat.c (i386_linux_read_description): New.
9132 (_initialize_i386_linux_nat): Set to_read_description to
9133 i386_linux_read_description.
9134
9135 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
9136 (i386_linux_register_name): Removed.
9137 (i386_linux_core_read_description): New.
9138 (i386_linux_read_description): Likewise.
9139 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
9140 Set target description to tdesc_i386_linux if needed. Support
9141 orig_eax. Set register_reggroup_p. Call
9142 set_gdbarch_core_read_description.
9143 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
9144
9145 * i386-linux-tdep.h (tdesc_i386_linux): New.
9146
9147 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
9148 with I387_NUM_REGS.
9149
9150 * i386-tdep.c: Include "features/i386/i386.c".
9151 (i386_register_names): Make it const.
9152 (i386_mmx_names): Likewise.
9153 (i386_num_register_names): Removed.
9154 (i386_register_name): Likewise.
9155 (i386_eflags_type): Likewise.
9156 (i386_mxcsr_type): Likewise.
9157 (i386_sse_type): Likewise.
9158 (i386_register_type): Likewise.
9159 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
9160 (i386_pseudo_register_name): New.
9161 (i386_pseudo_register_type): Likewise.
9162 (i386_mmx_type): Make it static.
9163 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
9164 I387_NUM_REGS. Set num_core_regs and register_names. Don't
9165 call set_gdbarch_register_name nor set_gdbarch_register_type.
9166 Set register_reggroup_p. Set target description to tdesc_i386
9167 if needed. Call set_tdesc_pseudo_register_type,
9168 set_tdesc_pseudo_register_name and tdesc_use_registers.
9169 (_initialize_i386_tdep): Call initialize_tdesc_i386.
9170 initialize_tdesc_x86_64.
9171
9172 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
9173 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
9174 register_names, tdesc and register_reggroup_p.
9175 (I386_NUM_FREGS): Removed.
9176 (i386_eflags_type): Likewise.
9177 (i386_mxcsr_type): Likewise.
9178 (i386_mmx_type): Likewise.
9179 (i386_sse_type): Likewise.
9180 (i386_register_name): Likewise.
9181 (i386_regnum): Add I386_MXCSR_REGNUM.
9182 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
9183
9184 * i387-tdep.h (I387_NUM_REGS): New.
9185
9186 * regformats/i386/i386-linux.dat: Generated.
9187 * regformats/i386/i386.dat: Likewise.
9188 * regformats/i386/amd64-linux.dat: Likewise.
9189 * regformats/i386/amd64.dat: Likewise.
9190
9191 * regformats/reg-i386-linux.dat: Removed.
9192 * regformats/reg-i386.dat: Likewise.
9193 * regformats/reg-x86-64-linux.dat: Likewise.
9194 * regformats/reg-x86-64.dat: Likewise.
9195
9196 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
9197
9198 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
9199 cygwin_conv_path API rather than the deprecated
9200 cygwin_conv_to_full_posix_path.
9201 * windows-nat.c:
9202 (GetModuleFileNameExA): Undefine for Cygwin.
9203 (GetModuleFileNameExW): Define for Cygwin.
9204 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
9205 Call GetModuleFileNameExW and convert path to POSIX using
9206 cygwin_conv_path.
9207 (windows_make_so): Always define p. Drop unused variable m.
9208 Don't use Win32 functions to check file existance, rather use
9209 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
9210 Use canonicalize_file_name to get full path.
9211 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
9212 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
9213 use correct target buffer size in call to WideCharToMultiByte.
9214 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
9215 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
9216 (windows_create_inferior): Convert all paths and arguments to wchar_t
9217 and use CreateProcessW on Cygwin.
9218 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
9219 (bad_GetModuleFileNameExA): Undefine for Cygwin.
9220 (bad_GetModuleFileNameExW): Define for Cygwin.
9221 (_initialize_loadable): Load GetModuleFileNameExW into
9222 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
9223
9224 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
9225
9226 PR python/11036
9227 * python/py-frame.c (frapy_read_var): Add block argument and logic
9228 to cope with user provided blocks.
9229
9230 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
9231
9232 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
9233 New comment.
9234
9235 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
9236
9237 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
9238 (COMMON_OBS): ... to here since it's used unconditionally.
9239 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
9240 (SFILES): To here.
9241
9242 2010-02-26 David Daney <ddaney@caviumnetworks.com>
9243
9244 * mips-linux-tdep.c: Update struct sigframe comments.
9245 (SIGFRAME_CODE_OFFSET): Delete macro.
9246 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
9247 this_frame's sp.
9248 (mips_linux_n32n64_sigframe_init): Same.
9249
9250 2010-02-26 Kevin Buettner <kevinb@redhat.com>
9251
9252 * remote-mips.c (mips_load): Don't use pseudo-register when
9253 invalidating regcache.
9254
9255 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
9256
9257 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
9258
9259 2010-02-26 Pedro Alves <pedro@codesourcery.com>
9260
9261 * NEWS: Add "New targets" section, and mention ARM Symbian
9262 support.
9263
9264 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
9265
9266 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
9267 add ADDR_SIZE member.
9268 (allocate_piece_closure): Update.
9269 (copy_pieced_value_closure): Likewise.
9270 (dwarf2_evaluate_loc_desc): Likewise.
9271 (read_pieced_value): Use DWARF address size instead of
9272 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
9273
9274 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
9275 Tom Tromey <tromey@redhat.com>
9276
9277 * python/py-type.c (typy_lookup_typename): Add in block argument.
9278 If provided restrict lookup to specified blocks.
9279 (gdbpy_lookup_type): Likewise.
9280 (typy_lookup_type): Likewise.
9281
9282 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
9283
9284 Symbian config
9285
9286 gdb/
9287 * arm-symbian-tdep.c: New.
9288 * configure.tgt (arm*-*-symbianelf*): New target.
9289 (*-*-symbianelf*): New OS.
9290 * osabi.c (gdb_osabi_names): Add Symbian.
9291 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
9292 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
9293 (ALLDEPFILES): Add arm-symbian-tdep.c.
9294
9295 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
9296
9297 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
9298
9299 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9300
9301 * mi/mi-main.c (mi_cmd_execute): Fix typo.
9302
9303 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
9304 Tom Tromey <tromey@redhat.com>
9305 Thiago Jung Bauermann <bauerman@br.ibm.com>
9306
9307 * python/python.c (_initialize_python): Call
9308 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
9309 gdbpy_initialize_blocks.
9310 * python/python-internal.h: Declare struct symbol, block and
9311 symtab_and_line. Declare block_object_type and
9312 symbol_object_type
9313 (gdbpy_lookup_symbol gdbpy_block_for_pc)
9314 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
9315 (symbol_to_symbol_object, block_to_block_object)
9316 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
9317 (gdbpy_initialize_blocks ): Declare.
9318 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
9319 (frapy_select): Add methods.
9320 (frapy_read_var): Add symbol branch.
9321 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
9322 py-block.
9323 (SUBDIR_PYTHON_SRCS): Likewise.
9324 (py-symbol.o): New rule.
9325 (py-symtab.o): Likewise.
9326 (py-block.o): Likewise.
9327 * python/py-symbol.c: New file.
9328 * python/py-symtab.c: Likewise.
9329 * python/py-block.c: Likewise.
9330
9331 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9332
9333 PR gdb/11321
9334
9335 * inferior.h (prepare_for_detach): Declare.
9336 (struct inferior) <detaching>: New field.
9337 * infrun.c (prepare_for_detach): New.
9338 (handle_inferior_event) <random signal>: Don't stop if detaching.
9339 * target.c (target_detach): Call prepare_for_detach.
9340
9341 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9342
9343 Per-process displaced stepping queue.
9344
9345 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
9346 (displaced_step_gdbarch, displaced_step_closure,
9347 (displaced_step_original, displaced_step_copy): Move globals to
9348 this...
9349 (struct displaced_step_inferior_state): ... new structure.
9350 (displaced_step_inferior_states): New global.
9351 (get_displaced_stepping_state, add_displaced_stepping_state)
9352 (remove_displaced_stepping_state, infrun_inferior_exit): New
9353 functions.
9354 (displaced_step_clear): Add displaced_step_inferior_state
9355 parameter, and adjust to handle it.
9356 (displaced_step_clear_cleanup): Parameter is now a
9357 displaced_step_inferior_state. Adjust.
9358 (displaced_step_prepare): Adjust.
9359 (displaced_step_fixup, displaced_step_fixup)
9360 (infrun_thread_ptid_changed, resume): Adjust.
9361 (init_wait_for_inferior): Don't call displaced_step_clear.
9362 (infrun_thread_stop_requested): Rewrite.
9363 (_initialize_infrun): Install infrun_inferior_exit as
9364 inferior_exit observer.
9365
9366 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9367
9368 * inferior.h (ptid_match): Declare.
9369 * infrun.c (ptid_match): New.
9370 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
9371 (handle_notification): Add debug output.
9372 * linux-nat.c (ptid_match): Delete.
9373
9374 2010-02-24 David S. Miller <davem@davemloft.net>
9375
9376 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
9377 * syscalls/sparc-linux.xml: New.
9378 * syscalls/sparc64-linux.xml: New.
9379 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
9380 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
9381 (sparc32_linux_get_syscall_number): New function.
9382 (sparc32_linux_init_abi): Set syscall XML file name and hook up
9383 syscall number fetcher.
9384 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
9385 (sparc64_linux_get_syscall_number): New function.
9386 (sparc64_linux_init_abi): Set syscall XML file name and hook up
9387 syscall number fetcher.
9388
9389 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
9390
9391 Multiexec MI
9392
9393 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
9394 * inferior.c (add_inferior_silent): Notify inferior_added
9395 observer.
9396 (delete_inferior_1): Notify inferior_removed observer.
9397 (exit_inferior_1): Pass inferior, not pid, to observer.
9398 (inferior_appeared): Likewise.
9399 (add_inferior_with_spaces): New.
9400 (add_inferior_command): Use the above.
9401 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
9402 Declare.
9403
9404 * inflow.c (inflow_inferior_exit): Likewise.
9405 * jit.c (jit_inferior_exit_hook): Likewise.
9406
9407 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
9408 remove-inferior.
9409 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9410 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
9411 (report_initial_inferior): New.
9412 (mi_inferior_removed): Register the above. Make sure
9413 inferior_added observer is called on the first inferior.
9414 (mi_new_thread, mi_thread_exit): Thread group is now identified by
9415 inferior number, not pid.
9416 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
9417 affected.
9418 * mi/mi-main.c (current_context): New.
9419 (proceed_thread_callback): Use typed closure.
9420 Proceed everything if pid is 0. Most implementation split into
9421 (proceed_thread): ... this.
9422 (run_one_inferior): New.
9423 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
9424 Adjust for multiexec behaviour.
9425 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9426 (mi_cmd_execute): Handle the 'thread-group' option here.
9427 Do some extra checks.
9428 * mi-parse.c (mi_parse): Handle the --all and --thread-group
9429 options.
9430 * mi-parse.h (struct mi_parse): New fields all and thread_group.
9431
9432 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
9433
9434 Make -exec-run a proper MI commands.
9435
9436 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
9437 * mi/mi-cmds.c (mi_cmds): Adjust.
9438 * mi/mi-main.c (mi_cmd_exec_run): New.
9439
9440 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9441 Stan Shebs <stan@codesourcery.com>
9442
9443 * tracepoint.h (set_traceframe_number)
9444 (cleanup_restore_current_traceframe): Declare.
9445 * tracepoint.c (set_traceframe_number): New.
9446 (struct current_traceframe_cleanup): New.
9447 (do_restore_current_traceframe_cleanup)
9448 (restore_current_traceframe_cleanup_dtor)
9449 (make_cleanup_restore_current_traceframe): New.
9450 * infrun.c: Include tracepoint.h.
9451 (fetch_inferior_event): Switch out and in of tfind mode.
9452
9453 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9454
9455 * breakpoint.c (breakpoint_init_inferior): Also delete
9456 bp_shlib_event breakpoints.
9457 * solib-frv.c (enable_break): Remove call to
9458 remove_solib_event_breakpoints.
9459 * solib-svr4.c (enable_break): Ditto.
9460 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
9461 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
9462 * solib-som.c (som_solib_create_inferior_hook): Ditto.
9463 * solib-spu.c (spu_enable_break): Ditto.
9464
9465 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
9466
9467 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
9468
9469 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
9470
9471 * varobj.c (varobj_update): Avoid non-constants in initializers.
9472
9473 2010-02-23 Tom Tromey <tromey@redhat.com>
9474
9475 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
9476 handle big-endian values.
9477 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
9478
9479 2010-02-22 Pedro Alves <pedro@codesourcery.com>
9480
9481 PR9605
9482
9483 gdb/
9484 * breakpoint.c (insert_bp_location): If inserting the read
9485 watchpoint failed, fallback to an access watchpoint.
9486 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
9487 if the value changed, if not watching the same memory for writes.
9488 (watchpoint_locations_match): Add comment.
9489 (update_global_location_list): Copy the location's watchpoint type.
9490 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
9491 handle read watchpoints here.
9492 (i386_insert_watchpoint): Read watchpoints aren't supported.
9493 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
9494 packets.
9495 * target.h (target_insert_watchpoint): Update description.
9496
9497 2010-02-19 Tom Tromey <tromey@redhat.com>
9498
9499 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
9500 * m2-typeprint.c (m2_print_type): Update.
9501 * gdbtypes.c (recursive_dump_type): Update.
9502 (copy_type_recursive): Update.
9503 * c-typeprint.c (c_type_print_varspec_prefix): Update.
9504 (c_type_print_base): Update.
9505 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
9506 Remove.
9507 (struct cplus_struct_type) <ntemplate_args>: Remove.
9508 <struct template_arg>: Remove.
9509 <is_dynamic>: Move earlier.
9510 (TYPE_TEMPLATE_ARGS): Remove.
9511 (TYPE_NTEMPLATE_ARGS): Remove.
9512 (TYPE_TEMPLATE_ARG): Remove.
9513
9514 2010-02-19 Tom Tromey <tromey@redhat.com>
9515
9516 PR c++/8693, PR c++/9496:
9517 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
9518 * c-exp.y (lex_one_token): Rename from yylex. Don't call
9519 write_dollar_variable. Don't try to classify NAME tokens.
9520 (token_and_value): New type.
9521 (token_fifo, popping, name_obstack): New globals.
9522 (classify_name): New function.
9523 (classify_inner_name): Likewise.
9524 (yylex): Likewise.
9525 (VARIABLE): Now has type sval.
9526 (exp : VARIABLE): Call write_dollar_variable.
9527 (qualified_name): Use TYPENAME, not typebase. Add production for
9528 multiple "::" instances.
9529 (variable): Use name_not_typename.
9530 (qualified_type): Remove.
9531 (typebase): Update.
9532
9533 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9534
9535 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
9536 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
9537 found by bfd_get_section_by_name.
9538 * symfile.h (struct section_addr_info) <sectindex>: New comment.
9539
9540 2010-02-19 Joel Brobecker <brobecker@adacore.com>
9541
9542 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
9543 7.0 section" into "Changes in 7.1".
9544
9545 2010-02-19 Joel Brobecker <brobecker@adacore.com>
9546
9547 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
9548 * version.in: Bump version to 7.1.50.20100219-cvs.
9549
9550 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
9551
9552 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
9553 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
9554
9555 2010-02-17 Tom Tromey <tromey@redhat.com>
9556
9557 * NEWS: Add Python API Improvements section.
9558
9559 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
9560
9561 * NEWS: Correct typo.
9562
9563 2010-02-17 Tom Tromey <tromey@redhat.com>
9564
9565 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
9566
9567 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9568
9569 * symfile.c (build_section_addr_info_from_objfile): Include sections
9570 only if they are SEC_ALLOC or SEC_LOAD.
9571
9572 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
9573
9574 PR shlibs/11293
9575 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
9576 of ULONGEST for address size.
9577
9578 2010-02-17 Tom Tromey <tromey@redhat.com>
9579
9580 * NEWS: Add C++ improvements section.
9581
9582 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
9583
9584 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
9585 PyThreadState_Swap): Avoid "statement with no effect" warning.
9586
9587 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9588
9589 * solib-svr4.c (enable_break <target_auxv_search>): New variable
9590 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
9591
9592 2010-02-17 Tristan Gingold <gingold@adacore.com>
9593 Petr Hluzin <petr.hluzin@gmail.com>
9594
9595 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
9596 gdb_assert. Fix info->size for SIG prologue.
9597
9598 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9599
9600 * infcmd.c (show_inferior_tty_command): Check for NULL.
9601 Correct output message.
9602
9603 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9604
9605 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
9606 FUNCTION contains parentheses. Improve removal of a trailing
9607 single quote.
9608
9609 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9610
9611 * gcore.c (do_bfd_delete_cleanup): New function.
9612 (gcore_command): Use it. Discard the cleanup after success.
9613 (gcore_copy_callback): Delete dead code.
9614
9615 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9616
9617 * symfile.c (addr_info_make_relative): Always use
9618 find_lowest_section.
9619
9620 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
9621
9622 * NEWS: Added entry for namespace fixes.
9623
9624 2010-02-15 Tom Tromey <tromey@redhat.com>
9625
9626 * dwarf2read.c (guess_structure_name): Allocate name on the
9627 objfile obstack.
9628
9629 2010-02-15 Tom Tromey <tromey@redhat.com>
9630
9631 * c-typeprint.c (c_type_print_base): Reverse order of test.
9632
9633 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9634
9635 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
9636 initialize it from ELF BFD. Extend the prelink condition by it.
9637
9638 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9639
9640 * defs.h (parse_pid_to_attach): New.
9641 * utils.c (parse_pid_to_attach): New.
9642 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
9643 * gnu-nat.c (gnu_attach): Likewise.
9644 * nto-procfs.c (procfs_attach): Likewise.
9645 * procfs.c (procfs_attach): Likewise.
9646 * windows-nat.c (windows_attach): Likewise.
9647 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
9648 * inf-ttrace.c (inf_ttrace_attach): Likewise.
9649 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
9650 check.
9651
9652 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
9653
9654 * MAINTAINERS: Add myself for write after approval privileges.
9655
9656 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9657
9658 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
9659 block.
9660
9661 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9662
9663 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
9664 only if INFO_VERBOSE.
9665
9666 2010-02-12 Tomas Holmberg <th@virtutech.com>
9667
9668 * mi/mi-main.c: Added the --reverse flag to the following MI
9669 commands: exec-continue, exec-finish, exec-next, exec-step,
9670 exec-next-instruction, exec-step-instruction. This is to
9671 support reverse execution over the MI interface to gdb.
9672
9673 2010-02-12 Pedro Alves <pedro@codesourcery.com>
9674
9675 * tracepoint.c (_initialize_tracepoint): Specify that the address
9676 range of `tfind outsize' is exclusive, and that the address range
9677 of `tfind range' is inclusive, in the commands' help strings.
9678
9679 2010-02-12 Joel Brobecker <brobecker@adacore.com>
9680
9681 Spurious "dll not found" error messages on x64-windows.
9682 * windows-nat.c: Add include of complaints.h.
9683 (handle_unload_dll): Change dll-not-found error into a complaint.
9684
9685 2010-02-12 Pedro Alves <pedro@codesourcery.com>
9686
9687 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
9688 bp_tracepoint and bp_fast_tracepoint, not
9689 bp_loc_software_breakpoint.
9690 (update_global_location_list): Tracepoints are never duplicates of
9691 anything.
9692
9693 2010-02-12 Pedro Alves <pedro@codesourcery.com>
9694
9695 * breakpoint.c (break_command_really): Change return type to int.
9696 Return false if no breakpoint was created, true otherwise.
9697 (trace_command): Don't set the tracepoint count if no tracepoint
9698 was created.
9699 (ftrace_command): Ditto.
9700 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
9701 created in the breakpoints table.
9702
9703 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9704 Ulrich Weigand <uweigand@de.ibm.com>
9705
9706 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
9707
9708 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9709
9710 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
9711 the offset value isn't of integral type.
9712
9713 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9714
9715 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
9716 New.
9717
9718 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9719
9720 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
9721 non-subscriptable types.
9722 * valarith.c (binop_types_user_defined_p): New, abstracted out
9723 from ...
9724 (binop_user_defined_p): ... this.
9725 * value.h (binop_types_user_defined_p): Declare.
9726
9727 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9728
9729 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
9730 Merge uploaded TSVs before merging uploaded tracepoints.
9731
9732 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9733
9734 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
9735
9736 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
9737
9738 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
9739 whitespace character after a dot in comment.
9740 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
9741 Likewise.
9742 (list_args_or_locals): For the 'all' (that is
9743 -stack-list-variables) case, always output list of tuples.
9744 Output 'arg' field if variable is argument.
9745
9746 2010-02-10 Tom Tromey <tromey@redhat.com>
9747
9748 * parser-defs.h (parser_debug): Declare.
9749 * parse.c (_initialize_parse): Install "debug parser" set/show
9750 command.
9751 (parser_debug): New global.
9752 (show_parserdebug): New function.
9753 * c-exp.y (c_parse): Set yydebug.
9754
9755 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
9756
9757 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
9758 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9759 (tdesc_predefined_types): Add i387_ext, i386_eflags and
9760 i386_mxcsr.
9761 (tdesc_find_type): New.
9762 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
9763 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9764
9765 * target-descriptions.h (tdesc_find_type): New.
9766
9767 2010-02-10 Michael Snyder <msnyder@vmware.com>
9768
9769 * gdb-gdb.py: Comment fix.
9770
9771 2010-02-09 Tristan Gingold <gingold@adacore.com>
9772
9773 * machoread.c (macho_symfile_relocate): New function.
9774 (macho_sym_fns): Use macho_symfile_relocate instead of
9775 default_symfile_relocate.
9776 (macho_oso_data): New type.
9777 (current_oso): New variable.
9778 (macho_add_oso_symfile): Do not compute section_addr_info, but
9779 instead set vma of sections.
9780 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
9781 Set and clear current_oso.
9782
9783 2010-02-09 Joel Brobecker <brobecker@adacore.com>
9784
9785 Wrong type description for tagged type parameter.
9786 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
9787 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
9788 reference to a tagged type.
9789
9790 2010-02-09 Tristan Gingold <gingold@adacore.com>
9791
9792 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
9793 brothers of the parent.
9794
9795 2010-02-08 Tom Tromey <tromey@redhat.com>
9796
9797 PR c++/8017:
9798 * value.h: Update.
9799 * valops.c (search_struct_field): Make 'name' const.
9800 (search_struct_method): Likewise.
9801 (find_method_list): Make 'method' const.
9802 (value_struct_elt): Make 'name' and 'err' const.
9803 (value_find_oload_method_list): Make 'method' const.
9804 (find_overload_match): Make 'name' const.
9805 * eval.c (evaluate_subexp_standard): New locals function,
9806 function_name.
9807 <OP_FUNCALL>: Handle OP_SCOPE specially.
9808
9809 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
9810
9811 * infrun.c (handle_inferior_event): Do not look up regcache
9812 for exited processes.
9813
9814 2010-02-08 Chris Moller <moller@mollerware.com>
9815
9816 PR gdb/10728
9817 * valarith.c (value_ptrdiff): Added a test for a zero type length,
9818 warn if found, and assume length = 1.
9819
9820 2010-02-08 Chris Moller <cmoller@redhat.com>
9821
9822 PR gdb/9067
9823 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
9824 (cp_print_static_field) Fix use of obstacks.
9825
9826 2010-02-08 Pedro Alves <pedro@codesourcery.com>
9827
9828 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
9829 resumed LWPs as resumed.
9830 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
9831 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
9832 of throwing an internal error. If an LWP of a process we're not
9833 waiting for reports a signal, don't force collecting a SIGSTOP,
9834 and if it was breakpoint hit in non-stop mode, cancel it. Don't
9835 go through all LWPs cancelling breakpoints in non-stop mode.
9836 (resume_stopped_resumed_lwps): New.
9837 (linux_nat_wait): Use it.
9838
9839 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
9840
9841 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
9842 i386/amd64 and i386/amd64-linux.
9843 (i386/i386-expedite): New.
9844 (i386/i386-linux-expedite): Likewise.
9845 (i386/amd64-expedite):Likewise.
9846 (i386/amd64-linux-expedite): Likewise.
9847 ($(outdir)/i386/i386-linux.dat): Likewise.
9848 ($(outdir)/i386/amd64.dat): Likewise.
9849 ($(outdir)/i386/amd64-linux.dat): Likewise.
9850
9851 * features/i386/32bit-core.xml: New.
9852 * features/i386/32bit-linux.xml: Likewise.
9853 * features/i386/32bit-sse.xml: Likewise.
9854 * features/i386/64bit-core.xml: Likewise.
9855 * features/i386/64bit-linux.xml: Likewise.
9856 * features/i386/64bit-sse.xml: Likewise.
9857 * features/i386/i386-linux.xml: Likewise.
9858 * features/i386/i386.xml: Likewise.
9859 * features/i386/amd64-linux.xml: Likewise.
9860 * features/i386/amd64.xml: Likewise.
9861 * features/i386/i386-linux.c: Likewise.
9862 * features/i386/i386.c: Likewise.
9863 * features/i386/amd64-linux.c: Likewise.
9864 * features/i386/amd64.c: Likewise.
9865
9866 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
9867
9868 PR c++/7935:
9869 * cp-support.h: Added char* alias element to using_direct data
9870 struct.
9871 (cp_add_using): Added char* alias argument.
9872 (cp_add_using_directive): Ditto.
9873 * cp-namespace.c: Updated with the above changes.
9874 (cp_lookup_symbol_imports): Check for aliases.
9875 * dwarf2read.c (read_import_statement): Figure out local alias
9876 for the import and pass it on to cp_add_using.
9877 (read_namespace): Pass alias argument to cp_add_using.
9878
9879 2010-02-05 Hui Zhu <teawater@gmail.com>
9880
9881 * defs.h (gdb_bfd_errmsg): New extern.
9882 * exec.c (exec_file_attach): Change bfd_errmsg to
9883 gdb_bfd_errmsg.
9884 * utils.c (AMBIGUOUS_MESS1): New macro.
9885 (AMBIGUOUS_MESS2): New macro.
9886 (gdb_bfd_errmsg): New function.
9887
9888 2010-02-04 Doug Evans <dje@google.com>
9889
9890 * solib-svr4.c (enable_break): Add comment.
9891
9892 2010-02-04 Anthony Green <green@moxielogic.com>
9893
9894 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
9895 gracefully.
9896
9897 2010-02-04 Tom Tromey <tromey@redhat.com>
9898
9899 * valops.c (search_struct_field): Account for
9900 value_embedded_offset. Fix check for virtual base past the end of
9901 the object. Use value_copy when making a slice of the value.
9902
9903 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
9904
9905 PR tui/9622
9906 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
9907 only if gdb_stdout is a tty.
9908
9909 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
9910
9911 * target-descriptions.c: Include "osabi.h".
9912 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
9913 OSABI.
9914
9915 2010-02-04 Tristan Gingold <gingold@adacore.com>
9916
9917 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
9918 (macho_symtab_read): Adjust calls to macho_add_oso.
9919 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
9920 (macho_symfile_read): Adjust call to macho_oso_symfile.
9921 (macho_new_init): Move this function after declarations.
9922 (macho_symfile_init): Ditto.
9923 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
9924 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
9925
9926 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
9927
9928 Include MI command in remotelog.
9929
9930 * mi/mi-main.c (mi_execute_command): Call target_log_command.
9931
9932 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9933
9934 * remote.c (remote_state): Remove gdbarch.
9935 (init_remote_state): Don't set gdbarch.
9936 (remote_query_supported): Pass target_gdbarch instead of
9937 rs->gdbarch to gdbarch_qsupported.
9938
9939 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9940
9941 * gdbarch.sh: Add qsupported.
9942
9943 * gdbarch.c: Regenerated.
9944 * gdbarch.h: Likewise.
9945
9946 * remote.c (remote_state): Add gdbarch.
9947 (init_remote_state): Set gdbarch.
9948 (remote_query_supported): Support gdbarch_qsupported.
9949
9950 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
9951
9952 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
9953 __FreeBSD_kernel_version.
9954
9955 2010-02-03 Tristan Gingold <gingold@adacore.com>
9956
9957 * symfile.h (struct sym_fns): Add sym_relocate field.
9958 (default_symfile_relocate): New prototype.
9959 (symfile_relocate_debug_section): First argument is now an objfile.
9960 * symfile.c (default_symfile_relocate): Rename from
9961 symfile_relocate_debug_section, first argument is now an objfile.
9962 (symfile_relocate_debug_section): New function.
9963 * coffread.c (coff_sym_fns): Set sym_relocate field.
9964 * somread.c (som_sym_fns): Ditto.
9965 * mipsread.c (ecoff_sym_fns): Ditto.
9966 * machoread.c (macho_sym_fns): Ditto.
9967 * elfread.c (elf_sym_fns): Ditto.
9968 * dwarf2read.c (dwarf2_read_section): Ditto.
9969 * xcoffread.c (xcoff_sym_fns): Ditto.
9970 * dbxread.c (aout_sym_fns): Ditto.
9971 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
9972 (elfstab_build_psymtabs): Ditto.
9973
9974 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9975
9976 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
9977
9978 2010-02-02 Tom Tromey <tromey@redhat.com>
9979
9980 * valops.c (value_cast_structs): Try downcasting using the RTTI
9981 type.
9982
9983 2010-02-02 Tom Tromey <tromey@redhat.com>
9984
9985 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
9986 (gnuv2_baseclass_offset): Now static.
9987 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
9988 * gnu-v2-abi.h: Remove.
9989
9990 2010-02-02 Tom Tromey <tromey@redhat.com>
9991
9992 * m2-typeprint.c (m2_record_fields): Don't use
9993 TYPE_DECLARED_TYPE.
9994 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
9995 (struct main_type) <flag_declared_class>: New field.
9996 (struct cplus_struct_type) <declared_type>: Remove.
9997 <ntemplate_args>: Move earlier.
9998 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
9999 (DECLARED_TYPE_TEMPLATE): Remove.
10000 (TYPE_DECLARED_TYPE): Remove.
10001 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
10002 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
10003 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
10004 TYPE_DECLARED_TYPE.
10005
10006 2010-02-02 Tom Tromey <tromey@redhat.com>
10007
10008 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
10009 * valops.c (search_struct_field): Compute nbases after calling
10010 CHECK_TYPEDEF.
10011 (check_field): Call CHECK_TYPEDEF.
10012 * cp-valprint.c (cp_print_value): Pass correct address to
10013 baseclass_offset. Fix check for virtual base past the end of the
10014 object. Don't offset address passed to cp_print_value_fields or
10015 apply_val_pretty_printer.
10016 (cp_print_value_fields): Fix call to val_print.
10017 (cp_print_value_fields_rtti): New function.
10018 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
10019 * p-valprint.c (pascal_object_print_value_fields): Fix call to
10020 val_print.
10021 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
10022 offset to address.
10023 * language.h (struct language_defn) <la_val_print>: Document.
10024 * c-lang.h (cp_print_value_fields_rtti): Declare.
10025
10026 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10027
10028 PR libc/11214:
10029 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10030 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
10031 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10032
10033 2010-02-01 Michael Matz <matz@suse.de>
10034 Daniel Jacobowitz <dan@codesourcery.com>
10035
10036 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
10037 functions use a frame pointer.
10038
10039 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10040
10041 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
10042 by a conditional setting DYN_ADDR. Use DYN_ADDR.
10043 * config/djgpp/fnchange.lst: Add translations for
10044 symbol-without-target_section.exp and symbol-without-target_section.c.
10045
10046 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10047
10048 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
10049 (remote_breakpoint_for_pc): Correct invalid_p check.
10050 * gdbarch.c: Regenerated.
10051
10052 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10053
10054 * arm-tdep.c (arm_find_mapping_symbol): New function, from
10055 arm_pc_is_thumb.
10056 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
10057 (extend_buffer_earlier): New function.
10058 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
10059 (arm_adjust_breakpoint_address): New function.
10060 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
10061
10062 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10063
10064 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
10065 (arm_linux_thumb2_le_breakpoint): New constants.
10066 (arm_linux_init_abi): Set thumb2_breakpoint and
10067 thumb2_breakpoint_size.
10068 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
10069 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
10070 Implement support for single stepping through IT blocks if
10071 a 32-bit Thumb breakpoint instruction is available.
10072 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
10073 is available, use it when needed.
10074 (arm_remote_breakpoint_from_pc): New function.
10075 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
10076 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
10077 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
10078
10079 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10080
10081 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
10082 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
10083 * gdbarch.c, gdbarch.h: Regenerated.
10084 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
10085 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
10086 gdbarch_remote_breakpoint_from_pc.
10087
10088 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
10089
10090 * infrun.c (prepare_to_proceed): Handle other signals which might
10091 match a breakpoint.
10092 (handle_inferior_event): Move the check for unusual breakpoint
10093 signals earlier.
10094
10095 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
10096
10097 amd64 - function returning record with field straddling 2 registers.
10098 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
10099 a record of length <= 16 in which a field straddles the two
10100 eightbytes.
10101
10102 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10103
10104 Implement return values on amd64-windows.
10105 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
10106 (amd64_windows_return_value): New function.
10107 (amd64_windows_init_abi): Call set_gdbarch_return_value with
10108 amd64_windows_return_value.
10109
10110 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10111
10112 amd64-windows: 32 bytes allocated on stack by caller for integer
10113 parameter registers.
10114 * i386-tdep.h (struct gdbarch_tdep): Add new field
10115 integer_param_regs_saved_in_caller_frame.
10116 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10117 tdep->integer_param_regs_saved_in_caller_frame to 1.
10118 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
10119 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
10120
10121 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10122
10123 amd64-windows: memory args passed by pointer during function calls.
10124 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
10125 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
10126 where tdep->memory_args_by_pointer is non-zero.
10127 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10128 tdep->memory_args_by_pointer to 1.
10129
10130 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10131
10132 amd64-windows: Integer parameters in function calls.
10133 * i386-tdep.h (enum amd64_reg_class): New, moved here from
10134 amd64-tdep.c.
10135 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
10136 call_dummy_integer_regs, and classify.
10137 * amd64-tdep.h (amd64_classify): Add declaration.
10138 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
10139 (amd64_reg_class): Delete, moved to i386-tdep.h.
10140 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
10141 Replace call to amd64_classify by call to tdep->classify.
10142 (amd64_push_arguments): Get the list of registers to use for
10143 passing integer parameters from the gdbarch tdep structure,
10144 rather than using a hardcoded one. Replace calls to amd64_classify
10145 by calls to tdep->classify.
10146 (amd64_push_dummy_call): Get the register number used for
10147 the "hidden" argument from tdep->call_dummy_integer_regs.
10148 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
10149 and tdep->call_dummy_integer_regs. Set tdep->classify.
10150 * amd64-windows-tdep.c: Add include of gdbtypes.h.
10151 (amd64_windows_dummy_call_integer_regs): New static global.
10152 (amd64_windows_classify): New function.
10153 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
10154 tdep->call_dummy_integer_regs and tdep->classify.
10155
10156 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
10157
10158 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
10159 for the new regcache. All callers updated.
10160 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
10161 (get_thread_arch_regcache): Do not set aspace here.
10162 * regcache.h (regcache_xmalloc): Update declaration.
10163
10164 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
10165 regcache_xmalloc updated.
10166
10167 2010-01-28 Joel Brobecker <brobecker@adacore.com>
10168
10169 Another -Wunused-function error in procfs.c (sparc-solaris)
10170 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
10171 Only define if SYS_syssgi is defined.
10172 (remove_dbx_link_breakpoint): Delete declaration. Move up.
10173 (dbx_link_addr, insert_dbx_link_bpt_in_file)
10174 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
10175 is itself defined.
10176
10177 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
10178
10179 * windows-nat.c (windows_initialization_done): New variable.
10180 (get_windows_debug_event): Issue error when process dies before
10181 completely initializing.
10182 (do_initial_windows_stuff): Set flag to indicate when we are done with
10183 the initial steps of attaching to the child.
10184
10185 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10186
10187 * symtab.h (struct symbol <symtab>): New comment on NULL values.
10188
10189 2010-01-27 Doug Evans <dje@google.com>
10190
10191 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
10192
10193 * breakpoint.c (bpstat_stop_status): Delete useless code.
10194
10195 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10196
10197 * printcmd.c (display_uses_solib_p): Remove variable section. Access
10198 objfile via SYMBOL_SYMTAB.
10199
10200 2010-01-26 Tom Tromey <tromey@redhat.com>
10201
10202 PR exp/7643:
10203 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
10204 coerce_array on result.
10205
10206 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
10207
10208 * cp-namespace.c (cp_lookup_symbol_namespace): Added
10209 search_parent argument.
10210 (cp_add_using): Initialize 'searched' field.
10211 (reset_directive_searched): New function.
10212 * cp-support.h: Add 'searched' field to using_direct struct.
10213 (cp_lookup_symbol_imports): Ditto.
10214 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
10215 Perform recursive search.
10216 Implement non parent search.
10217 * valops.c (value_maybe_namespace_elt): Updated.
10218
10219 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
10220
10221 PR gdb/10929:
10222 * dwarf2read.c (read_lexical_block_scope): Create blocks for
10223 scopes which contain using directives even if they contain no
10224 declarations.
10225 * symtab.c (lookup_symbol_aux): Pass lowest level block to
10226 la_lookup_symbol_nonlocal.
10227 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
10228 cp_lookup_symbol_namespace.
10229 (cp_lookup_symbol_namespace): Perform an import lookup at every
10230 block level.
10231 (cp_lookup_symbol_imports): New function.
10232 (cp_lookup_symbol_in_namespace): New function.
10233
10234 2010-01-25 Tom Tromey <tromey@redhat.com>
10235
10236 PR gdb/11049:
10237 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
10238 result.
10239
10240 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10241
10242 * configure.ac: Only use host_os part when disabling TUI on osf.
10243 Use test to check variables, prefix strings with x.
10244 * configure: Regenerate.
10245
10246 * solib-osf.c (osf_current_sos): Initialize tail.
10247
10248 2010-01-25 gingold <gingold@adacore.com>
10249
10250 * windows-nat.c (windows_continue): Use %x to print thread id.
10251 (get_windows_debug_event): Ditto.
10252
10253 2010-01-22 Tom Tromey <tromey@redhat.com>
10254
10255 PR symtab/11199:
10256 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
10257 type and arguments. Use smash_to_methodptr_type.
10258 (read_structure_type): Call quirk_gcc_member_function_pointer
10259 later.
10260 * gdbtypes.h (smash_to_methodptr_type): Declare.
10261 * gdbtypes.c (smash_to_methodptr_type): New function.
10262 (lookup_methodptr_type): Use it.
10263
10264 2010-01-21 Tom Tromey <tromey@redhat.com>
10265
10266 PR symtab/11198:
10267 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
10268 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
10269 * glibc-tdep.c (find_minsym_and_objfile): Remove.
10270 (glibc_skip_solib_resolver): Use
10271 lookup_minimal_symbol_and_objfile.
10272
10273 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
10274
10275 * inflow.c (check_syscall): Guard by #if clause for GO32 and
10276 WIN32 targets.
10277
10278 2010-01-20 Tom Tromey <tromey@redhat.com>
10279
10280 PR backtrace/10770:
10281 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
10282 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
10283 * dwarf2expr.c (new_dwarf_expr_context): Allocate
10284 dwarf_stack_values, not CORE_ADDRs.
10285 (execute_stack_op): Change DW_OP_div and comparison operators to
10286 use signed operands.
10287
10288 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
10289
10290 Per-inferior args and tty and environment.
10291
10292 * infcmd.c (inferior_args): Rename to ...
10293 (inferior_args_scratch): ... this.
10294 (inferior_io_terminal): Rename to ...
10295 (inferior_io_terminal_scratch): ... this.
10296 (inferior_argc, inferior_argv): Remove.
10297 (set_inferior_io_terminal, get_inferior_io_terminal): Store
10298 inside current_inferior().
10299 (set_inferior_tty_command, show_inferior_tty_command): New.
10300 (get_inferior_args, set_inferior_args): Store inside
10301 current_inferior().
10302 (notice_args_set): Likewise and rename to...
10303 (set_args_command): ... this.
10304 (set_inferior_args_vector): Likewise.
10305 (notice_args_read): Rename to...
10306 (show_args_command): ...new.
10307 (tty_command): Remove.
10308 (run_command_1): Don't free old args, as they are freed by
10309 set_inferior_arg now.
10310 (run_no_args_command): Likewise.
10311 (inferior_environ): Remove.
10312 (run_command_1): Use environment of the current inferior.
10313 (environment_info, set_environment_command)
10314 (unset_environment_command, path_info, path_command): Likewise.
10315 (_initialize_infcmd): Adjust for function and variable renames.
10316 Do not init inferior_environ.
10317 * inferior.h (set_inferior_arg): Adjust prototype.
10318 (struct inferior): New fields args, argc, argv, terminal, environment.
10319 (inferior_environ): Remove declaration.
10320 * inferior.c (free_inferior): Free new fields.
10321 (add_inferior_silent): Initialize 'environment' field.
10322 * main.c (captured_main): Set arguments only after the initial
10323 inferior has been created. Set set_inferior_io_terminal,
10324 not tty_command.
10325 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
10326 inferior.
10327 (_initialize_mi_cmd_env): Adjust for disappearance of global
10328 inferior_environ.
10329 * solib.c (solib_find): Use environment of the current inferior.
10330
10331 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10332
10333 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
10334 HAVE_PYTHON.
10335 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
10336
10337 2010-01-20 Joel Brobecker <brobecker@adacore.com>
10338
10339 Get rid of ada-lang.c:function_name_from_pc.
10340 * ada-lang.c: Add "stack.h" #include.
10341 (function_name_from_pc): Delete.
10342 (is_known_support_routine): Replace call to function_name_from_pc
10343 by call to find_frame_funname.
10344 (ada_unhandled_exception_name_addr_from_raise): Likewise.
10345
10346 2010-01-19 Tom Tromey <tromey@redhat.com>
10347
10348 PR c++/11026:
10349 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
10350 objfile obstack.
10351
10352 2010-01-19 Tom Tromey <tromey@redhat.com>
10353
10354 * top.c (stop_sig, float_handler, do_nothing): Remove.
10355
10356 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
10357
10358 * breakpoint.c (watchpoint_check): Check the call
10359 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
10360 Extend the comment.
10361 * config/djgpp/fnchange.lst: Add translations for
10362 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
10363 watchpoint-cond-gone-stripped.c.
10364
10365 2010-01-19 Tom Tromey <tromey@redhat.com>
10366
10367 PR c++/8000:
10368 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
10369 into parent scope, and enumerator into grandparent scope.
10370
10371 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10372
10373 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
10374
10375 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10376
10377 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
10378 i[34567]86-*-solaris2.1[0-9]*.
10379 * configure.tgt: Likewise.
10380
10381 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10382
10383 * NEWS: Document the source command enhancement allowing it
10384 to load Python scripts. Document the "set/show script-extension"
10385 commands.
10386
10387 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10388
10389 Add -Wunused-function to compile flags.
10390 * configure.ac: Add -Wunused-function to build_warnings.
10391 * configure: Regenerate.
10392
10393 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10394
10395 "delete" ada-lex.c:input function, not used.
10396 * ada-lex.l: #define YY_NO_INPUT.
10397
10398 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10399
10400 Delete free_named_symtabs and associated cleanup.
10401 * symfile.h (free_named_symtabs): Delete declaration.
10402 * symfile.c: Remove some commented out code (clear_symtab_users_once).
10403 (cashier_psymtab): Comment function out.
10404 Delete declaration.
10405 (free_named_symtabs): Delete.
10406 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
10407 * dbxread.c (end_psymtab): Likewise.
10408 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
10409 * exec.c (exec_close_1): Ditto.
10410 * xcoffread.c (xcoff_end_psymtab): Likewise.
10411
10412 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10413
10414 * stack.c (print_block_frame_labels): Comment function out.
10415
10416 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10417
10418 Delete unused or undefined functions.
10419 * breakpoint.c (ep_parse_optional_filename): Delete.
10420 * dcache.c (dcache_write_line): Remove declaration.
10421 * infrun.c (build_infrun): Remove declaration.
10422 * tracepoint.c (tracepoint_save_command): Remove declaration.
10423 * linux-nat.c (init_lwp_list): Delete. No longer used.
10424 * event-loop.c (check_async_signal_handlers): Delete declaration.
10425 * infrun.c (init_execution_control_state): Delete.
10426 (proceed): Update comment to avoid mentioning
10427 init_execution_control_state.
10428 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
10429 * ada-lang.c (ada_to_static_fixed_value): Delete.
10430 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
10431 * cp-namespace.c (cp_copy_usings): Delete.
10432 * xml-syscall.c (xml_number_of_syscalls): Delete.
10433 * progspace.c (find_program_space_by_num): Delete.
10434 * inflow.c (handle_sigio): Delete declaration.
10435 * hppa-tdep.c (hppa_alignof): Delete.
10436 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
10437 (mipsnbsd_core_osabi_sniffer): Delete.
10438
10439 2010-01-18 Tom Tromey <tromey@redhat.com>
10440
10441 PR c++/9680:
10442 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
10443 (CONST_CAST): New tokens.
10444 (exp): Add new productions.
10445 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
10446 reinterpret_cast.
10447 (is_cast_operator): New function.
10448 (yylex): Handle cast operators specially.
10449 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
10450 UNOP_REINTERPRET_CAST>: New cases.
10451 * expprint.c (print_subexp_standard): Likewise.
10452 (op_name_standard): Likewise.
10453 (dump_subexp_body_standard): Likewise.
10454 * parse.c (operator_length_standard): Likewise.
10455 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
10456 UNOP_REINTERPRET_CAST.
10457 * gdbtypes.c (class_types_same_p): New function.
10458 (is_ancestor): Use it.
10459 (is_public_ancestor): New function.
10460 (is_unique_ancestor_worker): Likewise.
10461 (is_unique_ancestor): Likewise.
10462 * gdbtypes.h (class_types_same_p, is_public_ancestor)
10463 (is_unique_ancestor): Declare.
10464 * valops.c (value_reinterpret_cast): New function.
10465 (dynamic_cast_check_1): Likewise.
10466 (dynamic_cast_check_2): Likewise.
10467 (value_dynamic_cast): Likewise.
10468 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
10469
10470 2010-01-18 Joel Brobecker <brobecker@adacore.com>
10471
10472 Fix build failure when building without Python support.
10473 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
10474 is not defined.
10475
10476 2010-01-18 Joel Brobecker <brobecker@adacore.com>
10477
10478 Use XVS field type instead of doing a parallel lookup.
10479 * ada-lang.c (ada_get_base_type): Follow the XVS field type
10480 if it is a reference type instead of doing a type lookup using
10481 the XVS field name.
10482
10483 2010-01-18 Joel Brobecker <brobecker@adacore.com>
10484
10485 Trust PAD types instead of using PAD___XVS.
10486 * ada-lang.c (trust_pad_over_xvs): New static variable.
10487 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
10488 parallel XVS type, follow the XVS type instead of the PAD type.
10489 (unwrap_value): Make sure that there is no parallel XVE type
10490 before returning the value as is.
10491 (set_ada_list, show_ada_list): New static variables.
10492 (set_ada_command, show_ada_command): New functions.
10493 (_initialize_ada_language): Add new "set/show ada" prefix commands.
10494 Add new "set/show ada trust-PAD-over-XVS" setting.
10495
10496 2010-01-18 Tom Tromey <tromey@redhat.com>
10497 Thiago Jung Bauermann <bauerman@br.ibm.com>
10498
10499 Allow "source" to load python scripts.
10500 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
10501 * python/python.c (source_python_script): New function.
10502 * python/python.h (source_python_script): Add declaration.
10503 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
10504 (script_ext_off, script_ext_soft, script_ext_strict)
10505 (script_ext_enums, script_ext_mode): New static constants.
10506 (show_script_ext_mode, find_and_open_script): New functions.
10507 (source_script): Enhance to handle Python scripts.
10508 (init_cli_cmds): Add set/show script-extension commands.
10509
10510 2010-01-16 Stan Shebs <stan@codesourcery.com>
10511
10512 * tracepoint.h (struct trace_status): Use unsigned long long
10513 instead of size_t.
10514 * tracepoint.c (trace_status_command): Fix printf directive.
10515 (trace_save_command): Check fwrite returns, fix printf directive.
10516 (trace_filename): New global.
10517 (tfile_open): Set it, check read returns.
10518 (tfile_close): Free trace_filename.
10519 (tfile_get_traceframe_address): Check read returns.
10520 (tfile_trace_find): Ditto.
10521 (tfile_fetch_registers): Ditto.
10522 (tfile_xfer_partial): Ditto.
10523 (tfile_get_trace_state_variable_value): Ditto.
10524
10525 2010-01-15 Stan Shebs <stan@codesourcery.com>
10526
10527 Add trace file support.
10528 * tracepoint.h (enum trace_stop_reason): New enum.
10529 (struct trace_status): New struct.
10530 (parse_trace_status): Declare.
10531 (struct uploaded_tp): Move here from remote.c,
10532 add fields for actions.
10533 (struct uploaded_tsv): New struct.
10534 * tracepoint.c (tfile_ops): New target vector.
10535 (trace_fd): New global.
10536 (tfile_open): New function.
10537 (tfile_close): New function.
10538 (tfile_files_info): New function.
10539 (tfile_get_trace_status): New function.
10540 (tfile_get_traceframe_address): New function.
10541 (tfile_trace_find): New function.
10542 (tfile_fetch_registers): New function.
10543 (tfile_xfer_partial): New function.
10544 (tfile_get_trace_state_variable_value): New function.
10545 (init_tfile_ops): New function.
10546 (_initialize_tracepoint): Call it, add tfile target.
10547 (trace_status): New global.
10548 (current_trace_status): New function.
10549 (trace_running_p): Remove, change all users to get from
10550 current_trace_status()->running.
10551 (get_trace_status): Remove.
10552 (trace_status_command): Call target_get_trace_status directly,
10553 report more detail including tracing stop reasons.
10554 (trace_find_command): Always allow tfind on a file.
10555 (trace_find_pc_command): Ditto.
10556 (trace_find_tracepoint_command): Ditto.
10557 (trace_find_line_command): Ditto.
10558 (trace_find_range_command): Ditto.
10559 (trace_find_outside_command): Ditto.
10560 (trace_frames_offset, cur_offset): Declare as off_t.
10561 (trace_regblock_size): Rename from reg_size, update users.
10562 (parse_trace_status): New function.
10563 (tfile_interp_line): New function.
10564 (disconnect_or_stop_tracing): Ensure current trace
10565 status before asking what to do.
10566 (stop_reason_names): New global.
10567 (trace_save_command): New command.
10568 (get_uploaded_tp): Move here from remote.c.
10569 (find_matching_tracepoint): Ditto.
10570 (merge_uploaded_tracepoints): New function.
10571 (parse_trace_status): Use stop_reason_names.
10572 (_initialize_tracepoint): Define tsave command.
10573 * target.h (target_ops): New fields to_save_trace_data,
10574 to_upload_tracepoints, to_upload_trace_state_variables,
10575 to_get_raw_trace_data, change to_get_trace_status
10576 to take a pointer to a status struct.
10577 (target_save_trace_data): New macro.
10578 (target_upload_tracepoints): New macro.
10579 (target_upload_trace_state_variables): New macro.
10580 (target_get_raw_trace_data): New macro.
10581 * target.c (update_current_target): Add new methods, change
10582 signature of to_get_trace_status.
10583 * remote.c (hex2bin): Make globally visible.
10584 (bin2hex): Ditto.
10585 (remote_download_trace_state_variable): Download name also.
10586 (remote_get_trace_status): Update parameter, use
10587 parse_trace_status.
10588 (remote_save_trace_data): New function.
10589 (remote_upload_tracepoints): New function.
10590 (remote_upload_trace_state_variables): New function.
10591 (remote_get_raw_trace_data): New function.
10592 (remote_start_remote): Use them.
10593 (_initialize_remote_ops): Add operations.
10594 * ax-gdb.c: Include breakpoint.h.
10595 * breakpoint.c (create_tracepoint_from_upload): Use
10596 break_command_really, return tracepoint, warn about unimplemented
10597 parts.
10598 * NEWS: Mention trace file addition.
10599
10600 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10601
10602 Fix compilation warning on gcc-3.4.
10603 * exec.c (print_section_info): Move the `displacement' variable
10604 initialization to its declaration.
10605
10606 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10607
10608 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
10609 comparison.
10610
10611 2010-01-15 Eric Botcazou <botcazou@adacore.com>
10612
10613 "info tasks" broken by typedefs in ATCB type definitions.
10614 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
10615 ada_check_typedef before retrieving the length of the type for
10616 regular fields.
10617
10618 2010-01-15 Joel Brobecker <brobecker@adacore.com>
10619
10620 Do not use name-based lookup for unconstrained packed arrays.
10621 * ada-lang.c (find_parallel_type_by_descriptive_type):
10622 Limit the fallback to name-based lookups to the case where
10623 the type is a constrained packed array.
10624
10625 2010-01-15 Joel Brobecker <brobecker@adacore.com>
10626
10627 Enhance gdb-gdb.py to handle main_type.type_specific.
10628 * gdb-gdb.py: Print the type-specific part of struct main_type.
10629
10630 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10631
10632 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
10633 * configure: Regenerate.
10634 * config.in: Regenerate.
10635 * utils.c: Include sys/resource.h.
10636 (dump_core, can_dump_core): New.
10637 (internal_vproblem): Update the comment. Check can_dump_core while
10638 setting dump_core_p. Replace two abort calls by dump_core calls.
10639
10640 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10641 Eli Zaretskii <eliz@gnu.org>
10642
10643 * NEWS: Document the PIE support.
10644
10645 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10646
10647 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
10648 (check_is_pie_binary, _initialize_linux_tdep): Remove.
10649
10650 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10651
10652 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
10653 Replace exec_entry_point call by bfd_get_start_address.
10654
10655 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10656
10657 Support Valgrind attachments broken by the PIE support.
10658 * auxv.c: Include gdbcore.h.
10659 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
10660 parameters ops, object and annex. Remove their assertions.
10661 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
10662 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
10663 (memory_xfer_auxv): ... here.
10664 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
10665 memory_xfer_auxv.
10666 * procfs.c (procfs_xfer_partial): Likewise.
10667 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
10668 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
10669 (svr4_solib_create_inferior_hook): Conditionalize the
10670 svr4_relocate_main_executable call.
10671
10672 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10673
10674 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
10675 target_section. Find SECT in current_target_sections, gdb_assert it.
10676 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
10677 New variable abfd.
10678 * symtab.c (lookup_objfile_from_block): Return the binary file instead
10679 of separate debug info file.
10680
10681 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10682
10683 Support PIEs with no symfile_objfile.
10684 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
10685 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
10686
10687 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10688
10689 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
10690 code part to ...
10691 (svr4_static_exec_displacement): ... a new function.
10692 (svr4_exec_displacement): New function.
10693 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
10694 new_offsets using alloca now. Remove variable old_chain and changed.
10695 Call objfile_relocate unconditionally now.
10696
10697 2010-01-14 Doug Evans <dje@google.com>
10698
10699 * gdbtypes.c (arch_flags_type): Fix comment.
10700 * gdbtypes.h (arch_composite_type): Fix comment.
10701
10702 2009-01-14 Tristan Gingold <gingold@adacore.com>
10703
10704 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
10705 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
10706 to symbol_file_add_from_bfd. Add OSO as separate objfile.
10707 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
10708 macho_add_oso_symfile.
10709 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
10710
10711 2010-01-14 Joel Brobecker <brobecker@adacore.com>
10712
10713 Tru64: Dead threads are never deleted.
10714 * dec-thread.c (dec_thread_ptid_is_alive): New function.
10715 (dec_thread_count_gdb_threads): Fix counter increment.
10716 (dec_thread_add_gdb_thread): Fix *listp increment.
10717 (resync_thread_list): Fix bug in deletion of dead threads that
10718 caused all threads to be deleted, instead of just the dead ones.
10719
10720 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
10721
10722 PR python/10705
10723
10724 * python/python-internal.h: Add lazy_string_object_type
10725 definition.
10726 (create_lazy_string_object, gdbpy_initialize_lazy_string)
10727 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
10728 * python/py-value.c (valpy_lazy_string): New function.
10729 (convert_value_from_python): Add lazy string conversion.
10730 * python/py-prettyprint.c (pretty_print_one_value): Check if
10731 return is also a lazy string.
10732 (print_string_repr): Add lazy string printing branch.
10733 (print_children): Likewise.
10734 * python/py-lazy-string.c: New file. Implement lazy strings.
10735 * python/python.c (_initialize_python): Call
10736 gdbpy_initialize_lazy_string.
10737 * varobj.c (value_get_print_value): Add lazy string printing
10738 branch. Account for encoding.
10739 * c-lang.c (c_printstr): Account for new encoding argument. If
10740 encoding is NULL, find encoding suited for type, otherwise use
10741 user encoding.
10742 * language.h (language_defn): Add encoding argument.
10743 (LA_PRINT_STRING): Likewise.
10744 * language.c (unk_lang_printstr): Update to reflect new encoding
10745 argument to language_defn.
10746 * ada-lang.h (ada_printstr): Likewise.
10747 * c-lang.h (c_printstr): Likewise.
10748 * p-lang.h (pascal_printstr);
10749 * f-lang.c (f_printstr): Likewise.
10750 * m2-lang.c (m2_printstr): Likewise.
10751 * objc-lang.c (objc_printstr): Likewise.
10752 * p-lang.c (pascal_printstr): Likewise.
10753 * scm-lang.c (scm_printstr): Likewise.
10754 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
10755 encoding argument.
10756 * ada-valprint.c (ada_printstr): Likewise.
10757 * f-valprint.c (f_val_print): Likewise
10758 * m2-valprint.c (m2_val_print): Likewise.
10759 * p-valprint.c (pascal_val_print): Likewise.
10760 * expprint.c (print_subexp_standard): Likewise.
10761 * valprint.c (val_print_string): Likewise.
10762 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
10763 (SUBDIR_PYTHON_SRCS): Likewise.
10764 (py-lazy-string.o): New rule.
10765
10766 2010-01-13 Doug Evans <dje@google.com>
10767
10768 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
10769 uninitialized" warning from gcc on local `tree'.
10770
10771 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
10772
10773 Implement core awareness.
10774
10775 * bcache.c (compare_ints): Remove
10776 (print_percentage): Use compare_positive_ints.
10777 * defs.h (compare_positive_ints): Declare.
10778 * linux-nat.h (struct lin_lwp): New field core.
10779 (linux_nat_core_of_thread_1): Declare.
10780 * linux-nat.c (add_lwp): Init the 'core' field.
10781 (linux_nat_wait_1): Record the core.
10782 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
10783 (linux_nat_add_target): Register the above.
10784 * linux-thread-db.c (update_thread_core): New.
10785 (thread_db_find_new_threads): Update core information for
10786 every thread.
10787 * remote.c (struct private_thread_info): New.
10788 (free_private_thread_info, demand_private_info): New.
10789 (PACKET_qXfer_threads, use_osdata_threads): New.
10790 (struct thread_item, threads_parsing_context
10791 (start_thread, end_thread, thread_attributes)
10792 (thread_children, threads_children, threads_elements): New.
10793 (remote_threads_info): Try qXfer:threads before anything
10794 else.
10795 (remote_protocol_packets): Register qXfer:threads.
10796 (remote_open_1): Init use_osdata_threads.
10797 (struct stop_reply): New field 'core'.
10798 (remote_parse_stop_reply): Parse core number.
10799 (process_stop_reply): Record core number.
10800 (remote_xfer_partial): Handle qXfer:threads.
10801 (remote_core_of_thread): New.
10802 (init_remote_ops): Register remote_core_of_thread.
10803 (_initialize_remote): Register qXfer:read.
10804 * target.c (target_core_of_thread): New
10805 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
10806 (struct target_ops): New field to_core_of_threads.
10807 (target_core_of_thread): Declare.
10808 * gdbthread.h (struct thread_info): New field private_dtor.
10809 * thread.c (print_thread_info): Report the core.
10810 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
10811 * utils.c (compare_positive_ints): New.
10812 * features/threads.dtd: New.
10813 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
10814 * mi/mi-main.c (struct collect_cores_data, collect_cores)
10815 (do_nothing, free_vector_of_osdata_items)
10816 (splay_tree_int_comparator, free_splay_tree): New.
10817 (print_one_inferior_data): Implemented printing of selected
10818 inferiors. Collect and print cores.
10819 (output_cores): New.
10820 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
10821 thread groups together with --available.
10822
10823 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
10824
10825 * configure: Regenerate (for _STRUCTURED_PROC).
10826
10827 2010-01-12 Joel Brobecker <brobecker@adacore.com>
10828
10829 Delete dead function.
10830 * ada-lang.c (extract_string): Delete. No longer used.
10831
10832 2010-01-12 Joel Brobecker <brobecker@adacore.com>
10833
10834 Fix -Wunused warning in dec-thread.c.
10835 * dec-thread.c (dec_thread_count_gdb_threads)
10836 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
10837
10838 2010-01-12 Joel Brobecker <brobecker@adacore.com>
10839
10840 * ada-valprint.c (ada_print_floating): Remove trailing space.
10841
10842 2010-01-12 Joel Brobecker <brobecker@adacore.com>
10843
10844 Add support for DW_AT_GNAT_descriptive_type.
10845 * gdbtypes.h (enum type_specific_kind): New enum.
10846 (struct main_type) [type_specific_field]: New component.
10847 [type_specific]: Add new component "gnat_stuff".
10848 (struct gnat_aux_type): New type.
10849 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
10850 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
10851 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
10852 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
10853 (TYPE_SPECIFIC_FIELD): New macros.
10854 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
10855 type does not hold any cplus-specific data.
10856 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
10857 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
10858 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
10859 cplus-specific data.
10860 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
10861 Set new component TYPE_SPECIFIC_FIELD (type).
10862 (gnat_aux_default): New constant.
10863 (allocate_gnat_aux_type): New function.
10864 (init_type): Add initialization the type-specific stuff for
10865 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
10866 (print_gnat_stuff): New function.
10867 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
10868 specific data. Adjust code that prints the contents of the
10869 type-specific union using the TYPE_SPECIFIC_FIELD value.
10870 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
10871 the type cplus stuff for Ada types.
10872 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
10873 Error out if these routines are called with an Ada type.
10874 (read_structure_type, read_array_type, read_subrange_type):
10875 Add call to set_descriptive_type.
10876 (set_die_type): Initialize the gnat-specific data if necessary.
10877 (need_gnat_info, die_descriptive_type, set_descriptive_type):
10878 New functions.
10879 * ada-lang.c (decode_constrained_packed_array_type): Use
10880 decode_constrained_packed_array_type instead of doing a standard
10881 lookup to locate a parallel type.
10882 (find_parallel_type_by_descriptive_type): New function.
10883 (ada_find_parallel_type_with_name): New function.
10884 (ada_find_parallel_type): Reimplement using
10885 ada_find_parallel_type_with_name.
10886 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
10887 to check if type has a cplus stuff.
10888 * linespec.c (total_number_of_methods): Likewise.
10889 * mdebugread.c (new_type): Likewise.
10890
10891 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10892
10893 * NEWS: Document the 0b binary number prefix parsing.
10894
10895 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10896
10897 * objfiles.c (objfile_relocate1): Change the return type to int.
10898 Describe the new return value. Return non-zero if data changed.
10899 (objfile_relocate): New variable changed. Set it. Call
10900 breakpoint_re_set depending on CHANGED.
10901
10902 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10903
10904 Implement binary numbers parsing.
10905 * c-exp.y (parse_number): New case 'b' and 'B'.
10906
10907 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10908 Tristan Gingold <gingold@adacore.com>
10909
10910 * solib.c (info_sharedlibrary_command): Replace
10911 objfile_has_partial_symbols and objfile_has_full_symbols calls by
10912 objfile_has_symbols.
10913
10914 2010-01-10 Joel Brobecker <brobecker@adacore.com>
10915
10916 * NEWS: Document the improvements made to the mips-irix port.
10917
10918 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10919
10920 Fix the documentation of valprint.c:value_print.
10921 * valprint.c (value_print): Update the function description to
10922 mention that the syntax of the output follows the current_language,
10923 not necessarily C.
10924
10925 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
10926
10927 Fix displacement of separate debug info files.
10928 * objfiles.c (objfile_relocate): Rename to ...
10929 (objfile_relocate1): ... here and make it static. Extend the comment.
10930 (objfile_relocate): New function.
10931 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
10932 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
10933 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
10934 allocated using alloca.
10935 * symfile.c (copy_section_addr_info): Remove.
10936 (build_section_addr_info_from_objfile): Make it global. New variables
10937 addr_bit and mask, use them.
10938 * symfile.h (build_section_addr_info_from_objfile): New prototype.
10939 (copy_section_addr_info): Remove.
10940
10941 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10942
10943 Signal unwinder for mips-irix N32.
10944 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
10945 tramp-frame.h.
10946 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
10947 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
10948 (SIGCONTEXT_LO_OFF): New macros.
10949 (mips_irix_n32_tramp_frame_init): New function.
10950 (mips_irix_n32_tramp_frame): New static constant.
10951 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
10952
10953 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10954
10955 Breakpoint in shared library does not work on mips-irix.
10956 * procfs.c: #include "observer.h".
10957 (procfs_inferior_created): New function, moving here the code
10958 which unsets the syssgi syscall-exit notifications.
10959 (procfs_create_inferior): Remove the code which unsets the syssgi
10960 syscall-exit notifications. It is too early to do this here.
10961 (_initialize_procfs): Attach the procfs_inferior_created observer.
10962
10963 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10964
10965 Wrong return convention for arrays (mips-irix).
10966 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
10967 128 bits or smaller are returned the same way as structs
10968 and unions of the the same size.
10969
10970 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10971
10972 Cannot set the PC on mips-irix.
10973 * irix5-nat.c (fill_gregset): Check regno against the raw PC
10974 register number, no the cooked one.
10975
10976 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10977
10978 Error while loading core file on mips-irix.
10979 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
10980 if debugging from a core file.
10981
10982 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10983
10984 GDB hangs when attaching to process on mips-irix.
10985 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
10986 attaching to a process.
10987
10988 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10989
10990 Use the correct breakpoint instruction on mips-irix.
10991 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
10992 containing the correct breakpoint instruction to use on mips-irix.
10993 Use it when the osabi is GDB_OSABI_IRIX.
10994
10995 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10996
10997 -Wunused warning in procfs.c (mips-irix only).
10998 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
10999 throughout instead of using praddset and prdelset respectively.
11000
11001 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11002
11003 GDB crash while stepping into function.
11004 * infrun.c (handle_inferior_event): Refetch the current frame
11005 after handling what.main_action, in case that pointer became
11006 dangling.
11007
11008 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11009
11010 Fix build failure of solaris-hosted cross debuggers.
11011 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
11012
11013 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
11014
11015 Fix build failure on sparc-solaris.
11016 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
11017
11018 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11019
11020 Move some symfile code into subroutines.
11021 * symfile.h (relative_addr_info_to_section_offsets)
11022 (addr_info_make_relative): New prototypes.
11023 * symfile.c (default_symfile_offsets): Move a part to ...
11024 (relative_addr_info_to_section_offsets): ... this new function.
11025 (default_symfile_offsets): Call it.
11026 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
11027 this part to ...
11028 (addr_info_make_relative): ... this new function.
11029
11030 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11031
11032 Add from_tty to solib_create_inferior_hook.
11033 * infcmd.c (post_create_inferior): Move solib_add after
11034 solib_create_inferior_hook. Pass from_tty to
11035 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
11036 0 from_tty and comment why.
11037 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
11038 * linux-nat.c (linux_child_follow_fork): Likewise.
11039 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
11040 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
11041 from_tty.
11042 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
11043 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
11044 * solib-null.c (null_solib_create_inferior_hook): Likewise.
11045 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
11046 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
11047 * solib-som.c (som_solib_create_inferior_hook): Likewise.
11048 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
11049 Pass it to svr4_so_ops.solib_create_inferior_hook.
11050 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
11051 from_tty.
11052 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
11053 solib_add.
11054 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
11055 enable_break.
11056 * solib-target.c (solib_target_solib_create_inferior_hook): New
11057 parameter from_tty.
11058 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
11059 it to ops->solib_create_inferior_hook.
11060 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
11061 Move solib_add after solib_create_inferior_hook, call it now with
11062 from_tty as 0. New comment there.
11063 * solib.h (solib_create_inferior_hook): New parameter from_tty.
11064 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
11065 Likewise.
11066
11067 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
11068
11069 Fix multiexec race.
11070 * infrun.c (handle_inferior_event): Use get_thread_regcache
11071 with events ptid, not get_current_regcache.
11072
11073 2009-01-08 Joel Brobecker <brobecker@adacore.com>
11074
11075 GDB crash with empty executable name (MinGW).
11076 * source.c (openp): Add assert that parameter string is not NULL.
11077 if parameter string is an empty string, then return with a failure
11078 immediately.
11079
11080 2009-01-08 Joel Brobecker <brobecker@adacore.com>
11081
11082 Get rid of support for VAX Floats.
11083 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11084 (ada_vax_float_print_function): Delete.
11085 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11086 (ada_vax_float_print_function): Delete.
11087 * ada-typeprint.c (print_vax_floating_point_type): Delete.
11088 (ada_print_type): Remove support for VAX floats.
11089 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
11090
11091 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11092
11093 * stabsread.c (read_args): Handle zero arguments.
11094
11095 2009-01-08 Joel Brobecker <brobecker@adacore.com>
11096
11097 Cannot find in-tree libiconv.a after reconfigure.
11098 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
11099 that we can use, then cache the path to this archive.
11100 * configure: Regenerate.
11101
11102 2010-01-07 Stan Shebs <stan@codesourcery.com>
11103
11104 Make tracepoint operations go through target vector.
11105 * target.h (enum trace_find_type): New enum.
11106 (struct target_ops): New fields to_trace_init,
11107 to_download_tracepoint, to_download_trace_state_variable,
11108 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
11109 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
11110 to_set_disconnected_tracing.
11111 (target_trace_init): New macro.
11112 (target_download_tracepoint): New macro.
11113 (target_download_trace_state_variable): New macro.
11114 (target_trace_start): New macro.
11115 (target_trace_set_readonly_regions): New macro.
11116 (target_get_trace_status): New macro.
11117 (target_trace_stop): New macro.
11118 (target_trace_find): New macro.
11119 (target_get_trace_state_variable_value): New macro.
11120 (target_set_disconnected_tracing): New macro.
11121 * target.c (update_current_target): Inherit and set defaults for
11122 tracepoint operations.
11123 * tracepoint.c (default_collect): Make globally visible.
11124 (target_is_remote): Remove, along with all calls.
11125 (tvariables_info): Call target_get_trace_state_variable_value.
11126 (remote_set_transparent_ranges): Remove.
11127 (trace_start_command): Call target_trace_init,
11128 target_download_tracepoint, etc.
11129 (download_tracepoint): Remove.
11130 (trace_stop_command): Simplify.
11131 (stop_tracing): Call target_trace_stop.
11132 (get_trace_status): Call target_get_trace_status.
11133 (trace_status_command): Add case for targets that cannot trace.
11134 (finish_tfind_command): Change to take numerical arguments, call
11135 target_trace_find.
11136 (trace_find_command): Update call to finish_tfind_command.
11137 (trace_find_pc_command): Ditto.
11138 (trace_find_tracepoint_command): Ditto.
11139 (trace_find_line_command): Ditto.
11140 (trace_find_range_command): Ditto.
11141 (trace_find_outside_command): Ditto.
11142 (set_disconnected_tracing_value): Call
11143 target_set_disconnected_tracing.
11144 * remote.c: Add protocol encoding bits from tracepoint.c.
11145 (trace_error): Move from tracepoint.c.
11146 (remote_get_noisy_reply): Ditto.
11147 (free_actions_list_cleanup_wrapper): Ditto.
11148 (free_actions_list): Ditto.
11149 (remote_trace_init): New function.
11150 (remote_download_tracepoint): New function.
11151 (remote_download_trace_state_variable): New function.
11152 (remote_trace_set_readonly_regions): New function.
11153 (remote_trace_start): New function.
11154 (remote_get_trace_status): New function.
11155 (remote_trace_stop): New function.
11156 (remote_trace_find): New function.
11157 (remote_download_trace_state_variable): New function.
11158 (remote_set_disconnected_tracing): New function.
11159 (init_remote_ops): Add tracepoint operations.
11160
11161 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
11162
11163 2010-01-07 Tristan Gingold <gingold@adacore.com>
11164
11165 * symfile.c (build_section_addr_info_from_objfile): New function.
11166 (symbol_file_add_separate): Don't use offsets from objfile but
11167 built an addr info.
11168
11169 2010-01-06 Stan Shebs <stan@codesourcery.com>
11170
11171 Support disconnected tracing.
11172 * infcmd.c (detach_command): Ask whether to stop tracing.
11173 * cli/cli-cmds.c (quit_command): Ditto.
11174 * breakpoint.h (struct breakpoint): New field number_on_target.
11175 * breakpoint.c (create_tracepoint_from_upload): New function.
11176 (get_tracepoint_by_number_on_target): New function.
11177 * remote.c (struct remote): New field disconnected_tracing.
11178 (remote_disconnected_tracing_feature): New function.
11179 (remote_protocol_features): Add DisconnectedTracing.
11180 (struct uploaded_tp): New struct.
11181 (uploaded_tps): New global.
11182 (get_uploaded_tp): New function.
11183 (find_matching_tracepoint): New function.
11184 (remote_get_tracing_state): New function.
11185 (remote_start_remote): Call it.
11186 * tracepoint.c (disconnected_tracing): New global.
11187 (trace_start_command): Initialize number_on_target.
11188 (stop_tracing): New function, split out from...
11189 (trace_stop_command): Call stop_tracing.
11190 (get_trace_status): New function, split out from...
11191 (trace_status_command): Call get_trace_status, add info on
11192 disconnection behavior.
11193 (disconnect_or_stop_tracing): New function.
11194 (finish_tfind_command): Translate from number on target.
11195 (trace_find_tracepoint_command): Translate to number on target.
11196 (send_disconnected_tracing_value): New function.
11197 (set_disconnected_tracing): New function.
11198 (_initialize_tracepoint): Add disconnected-tracing variable.
11199 * NEWS: Mention disconnected tracing.
11200
11201 2010-01-06 Tristan Gingold <gingold@adacore.com>
11202
11203 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
11204 parameter to main_objfile. Iterate on all separate debug objfiles.
11205 * symfile.h (symbol_file_add_separate)
11206 (find_separate_debug_file_by_debuglink): Remove parameter names.
11207 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
11208 (reread_symbols): Use free_objfile_separate_debug.
11209 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
11210 Adjust comment.
11211 (objfile_separate_debug_iterate, add_separate_debug_objfile)
11212 (free_objfile_separate_debug): New prototypes.
11213 * objfiles.c (objfile_separate_debug_iterate): New function.
11214 (add_separate_debug_objfile, free_objfile_separate_debug): New
11215 functions.
11216 (free_objfile): Use free_objfile_separate_debug. Adjust for
11217 multiple separate debug objfile.
11218 (objfile_has_symbols): Adjust comment. Iterate on all separate
11219 debug objfiles.
11220 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
11221 debug objfile.
11222 (lookup_minimal_symbol_text): Ditto.
11223 (lookup_minimal_symbol_by_pc_name): Ditto.
11224 (lookup_minimal_symbol_solib_trampoline): Ditto.
11225 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
11226 debug objfiles.
11227
11228 2010-01-05 Stan Shebs <stan@codesourcery.com>
11229
11230 Add fast tracepoints.
11231 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
11232 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
11233 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
11234 * breakpoint.c (tracepoint_type): New function.
11235 (ALL_TRACEPOINTS): Use it.
11236 (should_be_inserted): Ditto.
11237 (bpstat_check_location): Ditto.
11238 (print_one_breakpoint_location): Ditto.
11239 (user_settable_breakpoint): Ditto.
11240 (set_breakpoint_location_function): Ditto.
11241 (disable_breakpoints_in_shlibs): Ditto.
11242 (delete_trace_command): Ditto.
11243 (print_it_typical): Add bp_fast_tracepoint case.
11244 (bpstat_what): Ditto.
11245 (print_one_breakpoint_location): Ditto.
11246 (allocate_bp_location): Ditto.
11247 (mention): Ditto.
11248 (breakpoint_re_set_one): Ditto.
11249 (disable_command): Ditto.
11250 (enable_command): Ditto.
11251 (check_fast_tracepoint_sals): New function.
11252 (break_command_really): Call it.
11253 (ftrace_command): New function.
11254 (_initialize_breakpoint): Add ftrace command.
11255 * gdbarch.sh (fast_tracepoint_valid_at): New.
11256 * gdbarch.h, gdbarch.c: Regenerate.
11257 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
11258 (i386_gdbarch_init): Use it.
11259 * remote.c (struct remote_state): New field fast_tracepoints.
11260 (PACKET_FastTracepoints): New packet config type.
11261 (remote_fast_tracepoint_feature): New function.
11262 (remote_protocol_features): Add FastTracepoints.
11263 (remote_supports_fast_tracepoints): New function.
11264 (_initialize_remote): Add FastTracepoints.
11265 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
11266 * NEWS: Mention fast tracepoints.
11267
11268 2010-01-06 Joel Brobecker <brobecker@adacore.com>
11269
11270 * gdb-gdb.py: New file.
11271
11272 2010-01-05 Michael Snyder <msnyder@vmware.com>
11273
11274 * infrun.c (handle_inferior_event): Fix typo in comment.
11275
11276 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
11277
11278 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
11279
11280 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11281
11282 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
11283 and s390x-linux64.
11284 (s390-linux32-expedite): Define.
11285 (s390-linux64-expedite): Define.
11286 (s390x-linux64-expedite): Define.
11287 * features/s390-acr.xml: New file.
11288 * features/s390-fpr.xml: New file.
11289 * features/s390-core32.xml: New file.
11290 * features/s390-core64.xml: New file.
11291 * features/s390x-core64.xml: New file.
11292 * features/s390-linux32.xml: New file.
11293 * features/s390-linux64.xml: New file.
11294 * features/s390x-linux64.xml: New file.
11295 * features/s390-linux32.c: New generated file.
11296 * features/s390-linux64.c: New generated file.
11297 * features/s390x-linux64.c: New generated file.
11298
11299 * regformats/s390-linux32.dat: New generated file.
11300 * regformats/s390-linux64.dat: New generated file.
11301 * regformats/s390x-linux64.dat: New generated file.
11302 * regformats/reg-s390.dat: Remove.
11303 * regformats/reg-s390x.dat: Remove.
11304
11305 * s390-nat.c: Include "auxv.h" and <elf.h>.
11306 (HWCAP_S390_HIGH_GPRS): Define if undefined.
11307 (s390_target_wordsize): New function.
11308 (s390_auxv_parse): Likewise.
11309 (s390_get_hwcap): Likewise.
11310 (s390_read_description): Likewise.
11311 (_initialize_s390_nat): Install s390_auxv_parse and
11312 s390_read_description.
11313
11314 * s390-tdep.c: Include "features/s390-linux32.c",
11315 "features/s390-linux64.c", and "features/s390x-linux64.c".
11316 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
11317 (s390_register_call_saved): New function.
11318 (s390_register_name): Remove.
11319 (s390_register_type): Remove.
11320 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
11321 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
11322 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
11323 (s390_pseudo_register_name): New function.
11324 (s390_pseudo_register_type): New function.
11325 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
11326 Handle full GPR pesudos and varying pseudo register numbers.
11327 (s390_pseudo_register_write): Likewise
11328 (s390x_pseudo_register_read): Remove.
11329 (s390x_pseudo_register_write): Likewise.
11330 (s390_register_group): Remove.
11331 (s390_pseudo_register_group): New function.
11332 (s390_regmap_gregset): Add GPR upper halves.
11333 (s390x_regmap_gregset): Likewise.
11334 (s390_regmap_fpregset): Likewise.
11335 (s390_regmap_upper): New global variable.
11336 (s390_upper_regset): New global variable.
11337 (s390_upper_regset_sections): New global variable.
11338 (s390_regset_from_core_section): Handle GPR upper halves.
11339 (s390_core_read_description): New function.
11340 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
11341 register information. Handle varying pseudo register numbers.
11342 (s390_backchain_frame_unwind_cache): Likewise.
11343 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
11344 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
11345 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
11346 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
11347 Handle varying pseudo register numbers.
11348 (s390_unwind_pc): Handle varying pseudo register numbers.
11349 (s390_dwarf2_prev_register): New function.
11350 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
11351 register information. Handle varying pseudo register numbers.
11352 Install s390_dwarf2_prev_register to unwind full GPRs.
11353 (s390_gdbarch_init): Handle target descriptions. Assign varying
11354 pseudo register numbers. Install s390_adjust_frame_regnum.
11355 (_initialize_s390_tdep): Initialize target descriptions.
11356
11357 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
11358 (S390_NUM_REGS): Redefine to include upper half registers.
11359 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
11360 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
11361 (tdesc_s390_linux32): Add declaration.
11362 (tdesc_s390_linux64): Likewise.
11363 (tdesc_s390x_linux64): Likewise.
11364
11365 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11366
11367 * regset.h (struct core_regset_section): Add HUMAN_NAME.
11368 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
11369 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
11370 (ppc_linux_vmx_regset_sections): Likewise.
11371 (ppc_linux_fp_regset_sections): Likewise.
11372
11373 * corelow.c (get_core_register_section): Constify arguments.
11374 (get_core_registers): Use gdbarch_core_regset_sections instead
11375 of hard-coded platform-specific register section names.
11376
11377 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11378
11379 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
11380 a register, assume the least-significant part is used.
11381 (write_pieced_value): Likewise.
11382
11383 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11384
11385 * printcmd.c: Include "arch-utils.h".
11386 (do_one_display): Re-parse expression if current architecture changed.
11387
11388 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11389 Joel Brobecker <brobecker@adacore.com>
11390
11391 * gdbtypes.c (check_typedef): New comment on type length.
11392 * value.c (allocate_value_lazy): Remove the unused atype variable. New
11393 comment on type length.
11394 (value_primitive_field): Keep the original TYPE value, new comment.
11395
11396 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11397
11398 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
11399 p_start. Change != comparisons to > and < comparisons.
11400
11401 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11402
11403 * cli/cli-script.c (process_next_line): Check P2 overrun.
11404
11405 2009-01-01 Joel Brobecker <brobecker@adacore.com>
11406
11407 Update the copyright hearder to add year 2010 for most GDB files.
11408
11409 2009-01-01 Joel Brobecker <brobecker@adacore.com>
11410
11411 Fix build failure in inf-ptrace.c.
11412 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
11413
11414 2010-01-01 Joel Brobecker <brobecker@adacore.com>
11415
11416 * top.c (print_gdb_version): Update copyright year.
11417
11418 2010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
11419
11420 Fix break *FUN'address thread NUM.
11421 * ada-lex.l (task): Expand rule to also match the thread keyword.
11422
11423 2010-01-01 Joel Brobecker <brobecker@adacore.com>
11424
11425 Fix break *FUN'address task NUM.
11426 * ada-lex.l (task): New rule.
11427 * ada-lang.c (valid_task_id): Make sure the Ada task list has
11428 been built before using it.
11429
11430 For older changes see ChangeLog-2009.
11431 \f
11432 Local Variables:
11433 mode: change-log
11434 left-margin: 8
11435 fill-column: 74
11436 version-control: never
11437 coding: utf-8
11438 End:
This page took 0.261104 seconds and 5 git commands to generate.