* dwarf2read.c (save_gdb_index_command): Add comment.
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2010-12-01  Doug Evans  <dje@google.com>
2
3         * dwarf2read.c (save_gdb_index_command): Add comment.
4
5 2010-12-01  Ulrich Weigand  <uweigand@de.ibm.com>
6
7         * valops.c (value_assign): Returned value is never lazy.  If a
8         C++ class type is returned, fix incorrect enclosing type / embedded
9         offset.  If internal variable is returned, allocate new internalvar
10         value using value_of_internalvar.
11
12         * NEWS: Document changes in behavior of "print x = 0" and similar
13         expressions.
14
15 2010-11-29  Doug Evans  <dje@google.com>
16
17         * python/lib/gdb/printing.py (register_pretty_printer): Change
18         printer-name:subprinter-name to printer-name;subprinter-name.
19         * python/lib/gdb/command/pretty_printers.py (parse_printer_regexps):
20         Ditto.
21         (InfoPrettyPrinter, EnablePrettyPrinter, DisablePrettyPrinter): Ditto.
22
23 2010-11-29  Tom Tromey  <tromey@redhat.com>
24
25         * opencl-lang.c (lval_func_check_synthetic_pointer): New
26         function.
27         * value.h (struct lval_funcs) <indirect, check_synthetic_pointer>:
28         New fields.
29         (value_bits_synthetic_pointer): Declare.
30         * value.c (value_bits_synthetic_pointer): New function.
31         * valprint.c (valprint_check_validity): Handle synthetic
32         pointers.
33         * valops.c (value_ind): Use new 'indirect' lval_funcs method.
34         * valarith.c (value_ptradd): Use set_value_component_location.
35         * p-valprint.c (pascal_object_print_value_fields): Handle
36         synthetic pointers.
37         * jv-valprint.c (java_print_value_fields): Handle synthetic
38         pointers.
39         * dwarf2read.c (dwarf_stack_op_name): Add
40         DW_OP_GNU_implicit_pointer.
41         (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
42         arguments.  Handle location lists.
43         (fill_in_loclist_baton): New function.
44         (dwarf2_symbol_mark_computed): Use it.
45         * dwarf2loc.h (dwarf2_find_location_expression): Declare.
46         (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
47         arguments.
48         * dwarf2loc.c (dwarf2_find_location_expression): Rename from
49         find_location_expression.  No longer static.  Update all callers.
50         (dwarf_expr_frame_pc): New function.
51         (per_cu_dwarf_call): Add get_frame_pc, baton arguments.  Update
52         all callers.
53         (struct piece_closure) <per_cu>: New field.
54         (allocate_piece_closure): Add per_cu argument.
55         (read_pieced_value): Handle DWARF_VALUE_IMPLICIT_POINTER.
56         (check_pieced_value_bits): Remove validity argument, add check_for
57         argument.  Handle DWARF_VALUE_IMPLICIT_POINTER.
58         (check_pieced_value_validity, check_pieced_value_invalid):
59         Update.
60         (check_pieced_synthetic_pointer): New function.
61         (get_frame_address_in_block_wrapper): New function.
62         (indirect_pieced_value): New function.
63         (pieced_value_funcs): Update.
64         (invalid_synthetic_pointer): New function.
65         (dwarf2_evaluate_loc_desc_full): Rename from
66         dwarf2_evaluate_loc_desc.  Add byte_offset argument.
67         (dwarf2_evaluate_loc_desc): Rewrite.
68         (dwarf2_loc_desc_needs_frame): Set new field on context.
69         (get_ax_pc): New function.
70         (disassemble_dwarf_expression): Handle
71         DW_OP_GNU_implicit_pointer.
72         * dwarf2expr.h (enum dwarf_value_location)
73         <DWARF_VALUE_IMPLICIT_POINTER>: New constant.
74         (struct dwarf_expr_context) <get_frame_pc>: New field.
75         (struct dwarf_expr_piece) <v.ptr>: New field.
76         * dwarf2expr.c (add_piece): Handle DWARF_VALUE_IMPLICIT_POINTER.
77         (execute_stack_op): Handle DW_OP_GNU_implicit_pointer.
78         * dwarf2-frame.c (no_get_frame_pc): New function.
79         (execute_stack_op): Set new field on context.
80         * cp-valprint.c (cp_print_value_fields): Handle synthetic
81         pointers.
82
83 2010-11-29  Phil Muldoon  <pmuldoon@redhat.com>
84
85         PR python/12199
86
87         * python/py-breakpoint.c (bppy_delete_breakpoint): New function.
88
89 2010-11-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
90
91         Fix step_resume_breakpoint unsaved during an infcall.
92         * gdbthread.h (struct thread_control_state): Move here field
93         step_resume_breakpoint ...
94         (struct thread_info): ... from here.
95         * infrun.c (save_infcall_control_state): Reset
96         control.step_resume_breakpoint to NULL.
97         (restore_infcall_control_state, discard_infcall_control_state): Delete
98         control.step_resume_breakpoint.
99         * arm-linux-tdep.c, infrun.c, thread.c: Update all the references to
100         the moved field.
101
102 2010-11-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
103
104         Rename and move inferior_thread_state and inferior_status.
105         * gdbthread.h (struct thread_control_state): New struct, move fields
106         step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
107         trap_expected, proceed_to_finish, in_infcall, step_over_calls,
108         stop_step and stop_bpstat here from struct thread_info.
109         (struct thread_suspend_state): New struct, move field stop_signal here
110         from struct thread_info.
111         (struct thread_info): Move the fields above from this struct.
112         * inferior.h: Move the inferior_thread_state and inferior_status
113         declarations comment to their definitions at infrun.c.
114         (struct inferior_control_state): New struct, move field stop_soon from
115         struct inferior here.
116         (struct inferior_suspend_state): New empty struct.
117         (struct inferior): New fields control and suspend.  Move out field
118         stop_soon.
119         * infrun.c (struct inferior_thread_state): Rename to ...
120         (infcall_suspend_state): ... here.  Replace field stop_signal by
121         fields thread_suspend and inferior_suspend.
122         (save_inferior_thread_state): Rename to ...
123         (save_infcall_suspend_state): ... here.  New variable inf.  Update the
124         code for new fields.
125         (restore_inferior_thread_state): Rename to ...
126         (restore_infcall_suspend_state): ... here.  New variable inf.  Update
127         the code for new fields.
128         (do_restore_inferior_thread_state_cleanup): Rename to ...
129         (do_restore_infcall_suspend_state_cleanup): ... here.
130         (make_cleanup_restore_inferior_thread_state): Rename to ...
131         (make_cleanup_restore_infcall_suspend_state): ... here.
132         (discard_inferior_thread_state): Rename to ...
133         (discard_infcall_suspend_state): ... here.
134         (get_inferior_thread_state_regcache): Rename to ...
135         (get_infcall_suspend_state_regcache): ... here.
136         (struct inferior_status): Rename to ...
137         (struct infcall_control_state): ... here.  Replace fields
138         step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
139         trap_expected, proceed_to_finish, in_infcall, step_over_calls,
140         stop_step, stop_bpstat and stop_soon by fields thread_control and
141         inferior_control.
142         (save_inferior_status): Rename to ...
143         (save_infcall_control_state): ... here.  Update the code for new
144         fields.
145         (restore_inferior_status): Rename to ...
146         (restore_infcall_control_state): ... here.  Update the code for new
147         fields.
148         (do_restore_inferior_status_cleanup): Rename to ...
149         (do_restore_infcall_control_state_cleanup): ... here.
150         (make_cleanup_restore_inferior_status): Rename to ...
151         (make_cleanup_restore_infcall_control_state): ... here.
152         (discard_inferior_status): Rename to ...
153         (discard_infcall_control_state): ... here.
154         * alpha-tdep.c, breakpoint.c, dummy-frame.c, dummy-frame.h,
155         exceptions.c, fbsd-nat.c, gdbthread.h, infcall.c, infcmd.c,
156         inferior.c, inferior.h, infrun.c, linux-nat.c, mi/mi-interp.c,
157         mips-tdep.c, procfs.c, solib-irix.c, solib-osf.c, solib-spu.c,
158         solib-sunos.c, solib-svr4.c, thread.c, windows-nat.c: Update all the
159         references to the moved fields and renamed functions.
160
161 2010-11-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
162
163         * infcall.c (struct inferior_thread_state) <siginfo_gdbarch>: Fix up
164         the comment.
165         (save_inferior_thread_state): Reset tp->stop_signal.
166
167 2010-11-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
168
169         * infcall.c (call_function_by_hand): Remove variable
170         caller_state_cleanup.
171
172 2010-11-25  Marc Khouzam  <marc.khouzam@ericsson.com>
173
174         PR breakpoints/12217
175
176         * breakpoint.c (is_marker_spec): Check for NULL.
177
178 2010-11-25  Pedro Alves  <pedro@codesourcery.com>
179
180         * breakpoint.h: No longer include python.h or python-internal.h.
181         (struct breakpoint_object): Forward declare.
182         * defs.h (PyObject) [!HAVE_PYTHON]: Don't define.
183         * varobj.c (PyObject) [!HAVE_PYTHON]: Define.
184         * python/py-breakpoint.c (build_bp_list): Cast py_bp_object to
185         PyObject pointer.
186         (gdbpy_breakpoint_created): Remove casts around py_bp_object
187         accesses.
188
189 2010-11-24  Joel Brobecker  <brobecker@adacore.com>
190
191         * rs6000-tdep.c (bfd_uses_spe_extensions): Use bfd_elf_get_obj_attr_int
192         only if HAVE_ELF is defined.
193
194 2010-11-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
195
196         Code cleanup.
197         * infrun.c (struct inferior_status) <stepping_over_breakpoint>
198         (save_inferior_status) <stepping_over_breakpoint>
199         (restore_inferior_status) <stepping_over_breakpoint>: Rename to
200         trap_expected.
201         (struct inferior_status) <step_resume_break_address>: Remove.
202
203 2010-11-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
204
205         Code cleanup.
206         * infrun.c (struct inferior_status, save_inferior_status)
207         (restore_inferior_status): Group and reorder the fields, comment their
208         groups.
209
210 2010-11-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
211
212         Code cleanup.
213         * dictionary.c
214         (struct dict_vector) <iter_match_first, iter_match_next>
215         (iter_match_first_hashed, iter_match_next_hashed)
216         (iter_match_first_linear, iter_match_next_linear)
217         (dict_iter_match_first, dict_iter_match_next, iter_match_first_hashed)
218         (iter_match_next_hashed, iter_match_first_linear)
219         (iter_match_next_linear): Use symbol_compare_ftype.
220         * dictionary.h: Include symfile.h.
221         (dict_iter_match_first, dict_iter_match_next): Use
222         symbol_compare_ftype.
223         * dwarf2read.c (dw2_map_matching_symbols): Likewise.
224         * psymtab.c (match_partial_symbol, match_partial_symbol, map_block)
225         (map_matching_symbols_psymtab): Likewise.
226         * symfile.h (symbol_compare_ftype): New typedef.
227         (struct quick_symbol_functions) <map_matching_symbols): Use
228         symbol_compare_ftype.
229
230 2010-11-23  Tom Tromey  <tromey@redhat.com>
231
232         * configure: Rebuild.
233         * configure.ac (READLINE_TEXI_INCFLAG): New subst.
234
235 2010-11-19  Tom Tromey  <tromey@redhat.com>
236
237         * Makefile.in (SUBDIRS): Add doc.
238         * configure: Rebuild.
239         * configure.ac: Don't configure in doc.  Create doc/Makefile.
240
241 2010-11-23  Phil Muldoon  <pmuldoon@redhat.com>
242
243         PR python/12212
244
245         * python/py-inferior.c (find_thread_object): Check if PIDGET
246         returns 0.
247
248 010-11-22  Joel Brobecker  <brobecker@adacore.com>
249
250         * ada-lang.c (ada_template_to_fixed_record_type_1): Delete bit_incr.
251
252 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
253
254         * ada-lang.c (ada_to_fixed_type): Expand function documentation.
255         Return the original type if the main type portions match rather
256         than when the type themselves match.
257
258 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
259
260         * ada-lang.c (ada_template_to_fixed_record_type_1):
261         For dynamic fields, check the field size against the maximum
262         object size.
263
264 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
265
266         * mips-irix-tdep.c (mips_irix_n32_stack_tramp_frame_init): New
267         function.
268         (mips_irix_n32_stack_tramp_frame): New static global.
269         (mips_irix_init_abi): Add mips_irix_n32_stack_tramp_frame to
270         list of unwinder.
271
272 2010-11-22  Jerome Guitton  <guitton@adacore.com>
273
274         * ada-tasks.c (get_tcb_types_info): Use C lookups to get
275         ATCB symbols.
276
277 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
278
279         * ada-lang.c (ada_check_typedef): Call ada_check_typedef only
280         if type1 is a typedef.
281
282 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
283
284         * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Add
285         "_finalizer" to the list.
286
287 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
288
289         * symfile.c: Remove all "#if 0"/"#endif" blocks.
290
291 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
292
293         * symfile.c: Add missing second space after period in various comments.
294
295 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
296
297         * ada-typeprint.c (print_array_type): Fix formatting in comment.
298         (print_selected_record_field_types): Fix formatting in function
299         documentation.
300
301 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
302
303         * ravenscar-thread.c (_initialize_ravenscar): Fix copy/paste typo
304         in name of "show ravenscar" prefix command name.
305
306 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
307
308         * ravenscar-thread.c (show_ravenscar_task_switching_command):
309         Add missing '\n' in output.
310
311 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
312
313         * ravenscar-thread.c (running_thread_name): Change value.
314         (read_thread_id): Remove advance declaration.
315         (get_running_thread_msymbol): New function.
316         (has_ravenscar_runtime): Use get_running_thread_msymbol to
317         compute msym_running_thread.
318         (get_running_thread_id): Renames read_thread_id. Slight modifications
319         to not take any argument anymore, using get_running_thread_msymbol
320         to determine which symbol to use instead.
321         (ravenscar_running_thread): Use get_running_thread_id instead of
322         read_thread_id.
323
324 2010-11-22  Joel Brobecker  <brobecker@adacore.com>
325
326         * ravenscar-sparc-thread.c (supply_register_at_address):
327         Fix passing of buf in call to regcache_raw_supply.
328
329 2010-11-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
330
331         * dwarf2read.c (dwarf2_read_index): Ignore higher .gdb_index versions.
332
333 2010-11-22  Tom Tromey  <tromey@redhat.com>
334
335         * Makefile.in (.PRECIOUS): Reference ada-lex.c.
336
337 2010-11-19  Keith Seitz  <keiths@redhat.com>
338
339         * data-directory/Makefile.in (SYSCALLS_INSTALL_DIR):
340         Remove extraneous '/' after $(DESTDIR).
341         (PYTHON_INSTALL_DIR): Likewise.
342
343 2010-11-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
344
345         Fix stale memory references.
346         * elfread.c (elf_symfile_read): Replace xmalloc by bfd_alloc, drop
347         xfree, new comment.
348
349 2010-11-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
350             Tom Tromey  <tromey@redhat.com>
351
352         * Makefile.in (.y.c): Directly create $@ from YLWRAP.
353         (.PHONY): Remove for .y outputs.
354
355 2010-11-19  Will Drewry  <wad@google.com>
356             Tavis Ormandy  <taviso@google.com>
357             Jan Kratochvil  <jan.kratochvil@redhat.com>
358
359         * dwarf2read.c (decode_locdesc): Enforce location description stack
360         boundaries.
361
362 2010-11-18  Pierre Muller  <muller@ics.u-strasbg.fr>
363
364         * arm-tdep.c (arm_in_function_epilogue_p): Fix code when "MOV SP"
365         instruction is found.
366
367 2010-11-17  Tom Tromey  <tromey@redhat.com>
368
369         * value.c (value_entirely_optimized_out): Check the
370         'check_any_valid' field.
371
372 2010-11-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
373
374         * ada-lang.c (modify_general_field): Remove.
375         (make_array_descriptor): Replace all modify_general_field calls by
376         modify_field.
377         * value.c (modify_field): Update comment.  New variable bytesize.
378         Normalize BITPOS.  Initialize BYTESIZE, use it.
379
380 2010-11-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
381
382         * dwarf2read.c (dw2_forget_cached_source_info): Clear the FULL_NAMES
383         elements after xfree.
384
385 2010-11-16  Tom Tromey  <tromey@redhat.com>
386
387         * gdb-add-index.sh: Really remove.
388
389 2010-11-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
390
391         Code cleanup.
392         * dwarf2read.c (alloc_one_comp_unit): Rename prototype to ...
393         (init_one_comp_unit): ... this one.
394         (prepare_one_comp_unit): New prototype.
395         (dw2_require_line_header, process_psymtab_comp_unit): Use
396         init_one_comp_unit.
397         (process_psymtab_comp_unit): Use prepare_one_comp_unit.
398         (load_partial_comp_unit): Remove variable attr.  Use
399         init_one_comp_unit with xmalloc.  Use prepare_one_comp_unit.
400         (load_full_comp_unit): Use init_one_comp_unit with xmalloc.  Use
401         prepare_one_comp_unit.
402         (read_signatured_type): Remove variable attr.  Use init_one_comp_unit.
403         Use prepare_one_comp_unit.
404         (alloc_one_comp_unit): Rename to ...
405         (init_one_comp_unit): ... here and remove there calloc, new parameter
406         cu.
407         (prepare_one_comp_unit): New function.
408
409 2010-11-14  Pierre Muller  <muller@ics.u-strasbg.fr>
410
411         * arm-tdep.c (arm_in_function_epilogue_p): Fix code to avoid
412         possible used of uninitialized variable.
413
414 2010-11-12  Nathan Froyd  <froydnj@codesourcery.com>
415
416         * rs6000-tdep.c (bfd_uses_spe_extensions): New function.
417         (rs6000_gdbarch_init): Call it.
418
419 2010-11-12  Nathan Froyd  <froydnj@codesourcery.com>
420
421         * rs6000-tdep.c (gdb_print_insn_powerpc): Disassemble e500
422         instructions if debugging an E500 binary.
423
424 2010-11-12  Tom Tromey  <tromey@redhat.com>
425
426         * varobj.c (value_get_print_value): Rearrange.  Pass stream to
427         apply_varobj_pretty_printer.
428         * c-lang.c: Include exceptions.h.
429         (c_get_string): Throw MEMORY_ERROR when appropriate.
430         * python/py-prettyprint.c (enum string_repr_result): New.
431         (print_stack_unless_memory_error): New function.
432         (print_string_repr): Change return type.  Use
433         print_stack_unless_memory_error.
434         (print_children): Use print_stack_unless_memory_error.
435         (apply_val_pretty_printer): Update.  Don't print children if
436         string representation threw an exception.
437         (apply_varobj_pretty_printer): Add 'stream' argument.  Use
438         print_stack_unless_memory_error.
439         * python/python.c (gdbpy_gdb_error, gdbpy_gdb_memory_error): New
440         globals.
441         (_initialize_python): Initialize them.
442         * python/python-internal.h (GDB_PY_HANDLE_EXCEPTION): Use
443         gdbpy_convert_exception.
444         (GDB_PY_SET_HANDLE_EXCEPTION): Likewise.
445         (gdbpy_gdb_error, gdbpy_gdb_memory_error): Declare.
446         (gdbpy_convert_exception): Declare.
447         (apply_varobj_pretty_printer): Update.
448         * python/py-utils.c (gdbpy_convert_exception): New function.
449
450 2010-11-12  Marc Khouzam  <marc.khouzam@ericsson.com>
451
452         * mi/mi-main.c (mi_cmd_target_detach): Accept new
453         thread-group id format.
454
455 2010-11-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
456
457         * spu-tdep.c (spu_catch_start): Fix compilation error typo.
458
459 2010-11-11  Phil Muldoon  <pmuldoon@redhat.com>
460
461         * python/py-breakpoint.c (BPPY_REQUIRE_VALID): Check if bp is
462         NULL.
463         (BPPY_SET_REQUIRE_VALID): Ditto.
464         (bpnum_is_valid): Delete function.
465         (bppy_get_visibility): New function.
466         (bppy_new): Parse for, and validate internal keyword.  Pass
467         internal keyword to breakpoint or watchpoint functions.
468         (build_bp_list): New function.
469         (gdbpy_breakpoints): Rewrite.  Use build_bp_list and
470         iterate_over_breakpoints.
471         (gdbpy_breakpoint_created): Rewrite.  Do not store breakpoints in a
472         look-aside vector.
473         (gdbpy_breakpoint_deleted): Rewrite, defer breakpoint management
474         to internal breakpoint chain.
475
476         * breakpoint.c (set_breakpoint_number): New function.
477         (breakpoint_1): Check if breakpoint number is more than zero.
478         (set_raw_breakpoint_without_location): Set py_bp_object to NULL.
479         (create_breakpoint_sal): Take a new parameter called internal.
480         Call set_breakpoint_number with internal parameter.  Do not
481         mention internal breakpoints.  All callers updated.
482         (create_breakpoint): Ditto.
483         (create_breakpoints_sal): Ditto.
484         (watch_command_1): Ditto.
485         (watch_command_wrapper): Take a new parameter called internal.
486         All callers updated.
487         (rwatch_command_wrapper): Ditto.
488         (awatch_command_wrapper): Ditto.
489         (save_breakpoints): Update breakpoint save condition check.
490         (iterate_over_breakpoints): New function.
491         * breakpoint.h: Add conditional python includes.  Add py_bp_object
492         and comment to struct breakpoint.  Update all callers.
493         * defs.h: Add PyObject definition for GDB builds without Python.
494
495 2010-11-10  Doug Evans  <dje@google.com>
496
497         * python/lib/gdb/command/pretty_printers.py
498         (do_enable_pretty_printer_1): Handle printer.subprinters is None.
499
500         * value.c (set_value_enclosing_type): Renamed from
501         value_change_enclosing_type.  All callers updated.
502         * value.h (set_value_enclosing_type): Update.
503         * valops.c (value_full_object): Always return a copy if we need to
504         make changes to the input value.
505
506 2010-11-09  Pedro Alves  <pedro@codesourcery.com>
507
508         * breakpoint.c (watch_command_1): Get a pointer of the lazy
509         version of the expression's value, even if reading the value from
510         memory fails.  When creating a -location watchpoint, get the
511         value's address from the lazy value pointer.
512
513 2010-11-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
514
515         * infrun.c (restore_inferior_thread_state): Use
516         discard_inferior_thread_state to free the data.
517         (discard_inferior_thread_state): xfree also siginfo_data.
518
519 2010-11-05  Doug Evans  <dje@google.com>
520
521         Make gdb.parameter("directories") work.
522         New command "set directories".
523         * NEWS: Document them.
524         * source.c (set_directories_command): New function.
525         (show_directories_1): Renamed from show_directories.
526         All callers updated.
527         (show_directories_command): New function.
528         (_initialize_source): Install "directories" as a set/show
529         variable instead of just a show command.
530
531 2010-11-05  Ken Werner  <ken.werner@de.ibm.com>
532
533         * NEWS: Mention OpenCL C language support.
534         * Makefile.in (SFILES): Add opencl-lang.c.
535         (COMMON_OBS): Add opencl-lang.o.
536         * opencl-lang.c: New File
537         * defs.h (enum language): Add language_opencl.
538         * dwarf2read.c (read_file_scope): Handle DW_AT_producer for the
539         IBM XL C OpenCL compiler.
540         * c-lang.h: Include "parser-defs.h".
541         (evaluate_subexp_c): Declare.
542         * c-lang.c (evaluate_subexp_c): Remove the static qualifier.
543         (c_op_print_tab): Add declaration.
544         * eval.c (binop_promote): Handle language_opencl.
545         * c-exp.y: Lookup the primitive types instead of referring to the
546         builtins.
547
548 2010-11-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
549
550         Fix configure --enable-plugins --without-python.
551         * configure.ac (for ELF support in BFD) <"$plugins" = "yes">: New.
552         * configure: Regenerate.
553
554 2010-11-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
555
556         * solib.c (solib_read_symbols): Call exception_fprintf even without
557         FROM_TTY.  Print also so->so_name.
558
559 2010-11-04  Sami Wagiaalla  <swagiaal@redhat.com>
560
561         * gdbtypes.h (struct rank): Created subrank.
562         * gdbtypes.c: Initialized subrank for all
563         'BADNESS' constants.
564         (distance_to_ancestor): New function.
565         (is_ancestor): Use distance_to_ancestor.
566         (is_public_ancestor): Ditto.
567         (sum_ranks): Handle subrank.
568         (compare_ranks): Ditto.
569         (rank_one_type): Subrank base conversions.
570
571 2010-11-04  Sami Wagiaalla  <swagiaal@redhat.com>
572
573         * gdbtypes.h: Create struct rank.
574         Convert all 'BADNESS' macros to const struct rank declarations.
575         (sum_ranks): New function.
576         (compare_ranks): New function.
577         * valops.c (find_oload_champ): Updated.
578         (classify_oload_match): Use compare_ranks.
579         Improved comments.
580         (compare_parameters): Use compare_ranks.
581         * gdbtypes.c: Initialize 'BADNESS' constants.
582         (sum_ranks): New function.
583         (compare_ranks): New function.
584         (compare_badness): Use compare_ranks.
585         (rank_function): Use global constants instead of literals.
586         (rank_one_type): Ditto.
587         Return struct rank.
588         Use sum_ranks.
589
590 2010-11-04  Doug Evans  <dje@google.com>
591
592         * python/py-prettyprint.c (find_pretty_printer_from_gdb): Fix comment.
593         (find_pretty_printer): Fix comments.
594
595 2010-11-04  Hui Zhu  <teawater@gmail.com>
596
597         * tracepoint.c (remote_trace_set_readonly_regions): Change lma to vma.
598
599 2010-11-03  Joel Brobecker  <brobecker@adacore.com>
600
601         * ada-valprint.c (ada_val_print_array): Move variables `eltlen'
602         and `len' declaration and computation inside block where they
603         are being used.
604
605 2010-11-03  Joel Brobecker  <brobecker@adacore.com>
606
607         * valprint.c (val_print_array_elements): Put back handling of
608         empty arrays.
609
610 2010-11-03  Ken Werner  <ken.werner@de.ibm.com>
611
612         * dwarf2read.c (read_array_type): Read the DW_AT_byte_size from the
613         DIE and set the length of the type.
614         * gdbtypes.h (get_array_bounds): Move here from valprint.h.
615         * gdbtypes.c (get_array_bounds): Move here from valprint.c and
616         return 0 if the corresponding bounds of the type are undefined.
617         * valprint.h (get_array_bounds): Move declaration to gdbtypes.h.
618         * valprint.c (get_array_bounds): Move implementation to gdbtypes.c.
619         (val_print_array_elements): Use get_array_bounds to compute the number
620         of array elements instead of dividing the length of the array by the
621         length of the element types.
622         * valarith.c (vector_binop): Likewise.
623         * valops.c (value_cast): Likewise.
624         * c-valprint.c (c_val_print): Likewise.
625         * c-typeprint.c (c_type_print_varspec_suffix): Likewise.
626
627 2010-11-03  Ken Werner  <ken.werner@de.ibm.com>
628
629         * valarith.c (value_pos, value_neg, value_complement): Handle
630         vector types.
631         * valops.c (value_one): Likewise.
632
633 2010-11-03  Ken Werner  <ken.werner@de.ibm.com>
634
635         * value.h (value_non_lval): Declare.
636         * value.c (value_non_lval): New function.
637         * eval.c (evaluate_subexp_standard) <UNOP_POSTINCREMENT,
638         UNOP_POSTDECREMENT>: Call value_non_lval to ensure to return a
639         non-lvalue.
640
641 2010-11-02  Doug Evans  <dje@google.com>
642
643         New python module gdb.printing, and new commands info pretty-printer,
644         enable pretty-printer, disable pretty-printer.
645         * NEWS: Mention them.
646         * data-directory/Makefile.in (PYTHON_FILES): Add gdb/printing.py,
647         gdb/command/__init__.py, gdb/command/pretty_printers.py.
648         * python/lib/gdb/__init__.py: Install pretty-printer commands.
649         * python/lib/gdb/printing.py: New file.
650         * python/lib/gdb/command/__init__.py: New file.
651         * python/lib/gdb/command/pretty_printers.py: New file.
652
653 2010-11-02  Tom Tromey  <tromey@redhat.com>
654
655         * NEWS: Mention Guile removal.
656         * defs.h (enum language) <language_scm>: Remove.
657         * Makefile.in (SFILES): Remove scm-exp.c, scm-lang.c,
658         scm-valprint.c.
659         (HFILES_NO_SRCDIR): Remove scm-lang.h, scm-tags.h.
660         (COMMON_OBS): Remove scm-exp.o, scm-lang.o, scm-valprint.o.
661         * scm-exp.c, scm-lang.c, scm-valprint.c, scm-lang.h, scm-tags.h:
662         Remove.
663
664 2010-11-02  Doug Evans  <dje@google.com>
665
666         * top.c: #include "python/python.h".
667         (gdb_init): Add a comment regarding initialize_all_files.
668         Call finish_python_initialization at the end.
669         * python/python.h (finish_python_initialization): Declare.
670         * python/python.c (finish_python_initialization): New function.
671         (_initialize_python): Move python-implemented initialization there
672         and call it.
673         (GdbMethods): Use #ifdef HAVE_PYTHON for consistency.
674
675 2010-11-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
676
677         Revert:
678         2010-10-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
679                     Pedro Alves  <pedro@codesourcery.com>
680         * gdbthread.h (currently_stepping): New declaration.
681         * infrun.c (currently_stepping): Remove the forward declaration.
682         (currently_stepping): Make it global.
683         * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
684         variables tp and step, initialized them.  Pass STEP to to_resume.
685         Print also possibly "PTRACE_SINGLESTEP" if STEP.  Initialize LP->STEP.
686         * remote.c (currently_stepping_callback): New.
687         (remote_vcont_resume)
688         <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
689         New variable tp.  Call currently_stepping_callback and step such
690         thread.
691
692 2010-11-01  Hui Zhu  <teawater@gmail.com>
693
694         * tracepoint.c (tfile_xfer_partial): Change lma to vma.
695
696 2010-10-28  Hui Zhu  <teawater@gmail.com>
697
698         * tracepoint.c (trace_save): Change utp->actions to
699         utp->step_actions.
700
701 2010-10-26  Joel Brobecker  <brobecker@adacore.com>
702
703         * (_FILE_OFFSET_BITS): Fix typo in comment.
704
705 2010-10-26  Joel Brobecker  <brobecker@adacore.com>
706
707         * python/python-internal.h (_FILE_OFFSET_BITS): Undefine.
708         (PyEval_InitThreads): Remove duplicate. Define as nothing.
709         (PyEval_ReleaseLock): Define as nothing.
710
711 2010-10-26  Joel Brobecker  <brobecker@adacore.com>
712
713         * dwarf2read.c (psymtab_include_file_name): Replace call to strcmp
714         by call to FILENAME_CMP.
715
716 2010-10-26  Joel Brobecker  <brobecker@adacore.com>
717
718         * dictionary.c (dict_hash): Move assignment out of if condition.
719
720 2010-10-22  Jie Zhang  <jie@codesourcery.com>
721
722         * Makefile.in (install): Remove dependency of install-only and
723         recursively invoke make for install-only.
724         * data-directory/Makefile.in: Add FLAGS_TO_PASS variable.
725         (install): Pass FLAGS_TO_PASS when recursively make install-only.
726
727 2010-10-20  Hui Zhu  <teawater@gmail.com>
728
729         * tracepoint.c (tfile_get_traceframe_address): Call
730         extract_signed_integer.
731         (tfile_trace_find): Call extract_signed_integer and
732         extract_unsigned_integer.  Change data_size to unsigned int.
733         (tfile_fetch_registers): Call extract_unsigned_integer.
734         (tfile_xfer_partial): Ditto.
735         (tfile_get_trace_state_variable_value): Call
736         extract_signed_integer and extract_unsigned_integer.
737
738 2010-10-20  Vladimir Prus  <vladimir@codesourcery.com>
739
740         * remote.c (remote_get_threadlist): If we got empty
741         response, bail out immediately, and don't emit any
742         warnings.
743
744 2010-10-19  Ulrich Weigand  <uweigand@de.ibm.com>
745
746         * arm-tdep.c (thumb_get_next_pc_raw): Handle Thumb-16 encoding
747         for "mov pc, REG" as well.
748         (thumb_instruction_changes_pc): Likewise.
749
750 2010-10-19  Sami Wagiaalla  <swagiaal@redhat.com>
751
752          PR C++/11500:
753         * valarith.c (value_x_unop): Handle STRUCTOP_PTR.
754         * eval.c (evaluate_subexp_standard): Check for overload of
755         'operator->'.
756         * valarith.c (value_x_binop): Throw NOT_FOUND_ERROR.
757         (value_x_unop): Ditto.
758         * valops.c: Include "exceptions.h".
759         (find_overload_match): Throw NOT_FOUND_ERROR.
760         (value_struct_elt): Ditto.
761
762 2010-10-19  Tom Tromey  <tromey@redhat.com>
763
764         * python/py-cmd.c (cmdpy_function): Unreference exception state.
765
766 2010-10-19  Sami Wagiaalla  <swagiaal@redhat.com>
767
768         * gdbtypes.h: Introduce BOOL_PTR_CONVERSION_BADNESS.
769         * gdbtypes.c (rank_one_type): Use BOOL_PTR_CONVERSION_BADNESS
770         for conversion.
771         Make all other conversions illegal.
772
773 2010-10-18  Doug Evans  <dje@google.com>
774
775         * c-typeprint.c (c_type_print_base, case TYPE_CODE_TYPEDEF): Verify
776         assumptions of when this case happens.  Print "<unnamed typedef>".
777
778 2010-10-18  Tom Tromey  <tromey@redhat.com>
779
780         * valprint.c (val_print_string): Pass 'encoding' to
781         LA_PRINT_STRING.
782
783 2010-10-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
784
785         Fix the `stopped language detection' testcase for gcc-4.5.
786         * dwarf2read.c (read_partial_die): Set also LANGUAGE_OF_MAIN.
787         * symfile.c (set_initial_language): Move variable filename to a more
788         inner block.  Prefer LANGUAGE_OF_MAIN.
789         * symtab.c (language_of_main): New variable.
790         (set_main_name): Always reset LANGUAGE_OF_MAIN.
791         * symtab.h (language_of_main): New declaration.
792
793 2010-10-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
794             Pedro Alves  <pedro@codesourcery.com>
795
796         * gdbthread.h (currently_stepping): New declaration.
797         * infrun.c (currently_stepping): Remove the forward declaration.
798         (currently_stepping): Make it global.
799         * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
800         variables tp and step, initialized them.  Pass STEP to to_resume.
801         Print also possibly "PTRACE_SINGLESTEP" if STEP.  Initialize LP->STEP.
802         * remote.c (currently_stepping_callback): New.
803         (remote_vcont_resume)
804         <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
805         New variable tp.  Call currently_stepping_callback and step such
806         thread.
807
808 2010-10-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
809
810         * infrun.c (follow_exec): Replace symbol_file_add_main by
811         symbol_file_add with SYMFILE_DEFER_BP_RESET, set_initial_language and
812         breakpoint_re_set.
813         * m32r-rom.c (m32r_load, m32r_upload_command): Use parameter 0 for
814         clear_symtab_users.
815         * objfiles.c (free_all_objfiles): Likewise.
816         * remote-m32r-sdi.c (m32r_load): Likewise.
817         * solib-som.c (som_solib_create_inferior_hook): Likewise.
818         * symfile.c (new_symfile_objfile): New comment for add_flags.  Call
819         clear_symtab_users with ADD_FLAGS.
820         (reread_symbols): Use parameter 0 for clear_symtab_users.
821         (clear_symtab_users): New parameter add_flags.  Do not call
822         breakpoint_re_set if SYMFILE_DEFER_BP_RESET.
823         (clear_symtab_users_cleanup): Use parameter 0 for clear_symtab_users.
824         * symtab.h (clear_symtab_users): New parameter add_flags.
825
826 2010-10-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
827
828         Fix GCC false warning.
829         * varobj.c (value_get_print_value) <str_addr>: Initialize it.
830
831 2010-10-16  Pierre Muller  <muller@ics.u-strasbg.fr>
832
833         * p-typeprint.c (pascal_type_print_method_args): Fix problem in
834         display of type of method arguments.
835
836 2010-10-15  Tom Tromey  <tromey@redhat.com>
837
838         PR python/11948:
839         * varobj.c (value_get_print_value): Use val_print_string to print
840         lazy strings.
841         * python/py-prettyprint.c (print_string_repr): Use
842         val_print_string to print lazy strings.  Fix cleanup logic.
843         (print_children): Likewise.
844         * python/python-internal.h (gdbpy_extract_lazy_string): Update.
845         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Rewrite.
846         Change return type to 'void', add 'addr' argument.
847         * value.h (val_print_string): Update.
848         * valprint.c (val_print_string): Add 'encoding' argument.
849         * printcmd.c (print_formatted): Update.
850         * p-valprint.c (pascal_val_print): Update.
851         * m2-valprint.c (print_unpacked_pointer): Update.
852         (m2_print_array_contents): Likewise.
853         * jv-valprint.c (java_value_print): Update.
854         * f-valprint.c (f_val_print): Update.
855         * c-valprint.c (c_val_print): Update.
856         * auxv.c (fprint_target_auxv): Update.
857
858 2010-10-15  Doug Evans  <dje@google.com>
859             Jan Kratochvil  <jan.kratochvil@redhat.com>
860
861         PR exp/12117
862         * gdbtypes.c (check_typedef): Clean up function comment.
863         Keep track of instance flags as we strip typedefs and create a new
864         type to preserve them if necessary.
865         * gdbtypes.h (type) <instance_flags>: Extend the comment.
866
867 2010-10-15  Pierre Muller  <muller@ics.u-strasbg.fr>
868
869         * p-lang.c (is_pascal_string_type): Use TYPE_FIELD_NAME accessor.
870
871 2010-10-14  Sami Wagiaalla  <swagiaal@redhat.com>
872
873         * gdbtypes.h: Create BASE_PTR_CONVERSION_BADNESS.
874         * gdbtypes.c (rank_one_type): Move type comparison code out of here
875         to...
876         (types_equal): ...here. And changed it as follows:
877         Outside of typedefs type must be of the same TYPE_CODE.
878         When compairing two pointers or references they are equal if their
879         targets are equal.
880         Correct pointer conversions.
881
882 2010-10-14  Pierre Muller  <muller@ics.u-strasbg.fr>
883
884         * p-lang.c (is_pascal_string_type): Avoid crashes on structures
885         having fields without names.
886
887 2010-10-13  Tom Tromey  <tromey@redhat.com>
888
889         * language.h (LA_PRINT_ARRAY_INDEX): Fix argument name.
890
891 2010-10-13  Doug Evans  <dje@google.com>
892
893         New python module gdb.types.
894         * NEWS: Document it.
895         * data-directory/Makefile.in (PYTHON_FILES): Add gdb/types.py.
896         * python/lib/gdb/types.py: New file.
897
898         * c-typeprint.c: Whitespace cleanup.
899         (cp_type_print_method_args): Remove unnecessary forward decl.
900         (cp_type_print_derivation_info): Ditto.
901         (c_type_print_varspec_prefix): Mark as static at definition.
902         (c_type_print_modifier): Fix arg descriptions.
903
904 2010-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
905
906         * python/py-breakpoint.c (bppy_set_condition): New comment.
907         * python/py-cmd.c (cmdpy_function): Call also gdbpy_print_stack for
908         failed PyUnicode_Decode.
909         (cmdpy_completer): Skip element for failed
910         python_string_to_host_string.
911         (cmdpy_init): Return -1 on failed python_string_to_host_string.
912         * python/py-frame.c (frapy_read_var): Extend the function comment.
913         * python/py-function.c (fnpy_init): Return -1 on failed
914         python_string_to_host_string.
915         * python/py-inferior.c (infpy_read_memory, infpy_write_memory): Extend
916         the function comment.
917         (infpy_search_memory): Extend the function comment.  Remove the
918         PyErr_SetString call on already set error state.
919         * python/py-param.c (set_parameter_value): Extend the function
920         comment.  Return -1 on failed python_string_to_host_string, twice.
921         (set_attr): Extend the function comment.
922         (compute_enum_values): Extend the function comment.  New variable
923         back_to.  Protect self->enumeration by BACK_TO cleanups.  Return 0 on
924         failed python_string_to_host_string.
925         (get_doc_string): Call gdbpy_print_stack on failed
926         python_string_to_host_string.
927         (parmpy_init): Extend the function comment.
928         * python/py-prettyprint.c (pretty_print_one_value): Likewise.
929         (gdbpy_get_display_hint, print_children): Call gdbpy_print_stack on
930         failed python_string_to_host_string.
931         * python/py-value.c (valpy_new, valpy_getitem, valpy_call)
932         (valpy_binop, valpy_richcompare): Extend the function comment.
933         * python/python.c
934         (struct python_env) <error_type, error_value, error_traceback>: New
935         fields.
936         (restore_python_env): Handle PyErr_Occurred.  Call PyErr_Restore.
937         (ensure_python_env): Call PyErr_Fetch.
938         * varobj.c (update_dynamic_varobj_children): Call gdbpy_print_stack on
939         failed convert_value_from_python.
940         (value_get_print_value): Call gdbpy_print_stack on failed
941         python_string_to_target_python_string.
942
943 2010-10-12  Tom Tromey  <tromey@redhat.com>
944
945         * python/py-prettyprint.c (search_pp_list): Fix error checking.
946
947 2010-10-12  Sami Wagiaalla  <swagiaal@redhat.com>
948
949         * gdbtypes.c (do_is_ancestor): New function.
950         (is_ancestor): Use do_is_ancestor.
951         (is_public_ancestor): Use do_is_ancestor.
952
953 2010-10-12  Pierre Muller  <muller@ics.u-strasbg.fr>
954
955         * ser-go32.c (struct dos_ops): Add missing fdopen field.
956
957 2010-10-12  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
958
959         * arm-tdep.c (arm_mode_strings): Add NULL entry at end of array.
960
961 2010-10-11  Doug Evans  <dje@google.com>
962
963         * c-typeprint.c (c_type_print_modifier): Add note that this prints
964         the address space id too.
965
966 2010-10-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
967
968         Fix attaching to re-prelinked executables on ppc64.
969         * solib-svr4.c (svr4_exec_displacement): New variable plt2_asect,
970         initialize it, try to adjust FILESZ field by it.
971
972 2010-10-08  Daniel Jacobowitz  <dan@codesourcery.com>
973
974         * tracepoint.c (merge_uploaded_trace_state_variables): Only print
975         messages if info_verbose.
976
977 2010-10-08  Ken Werner  <ken.werner@de.ibm.com>
978
979         * valops.c (value_cast): Handle vector types.
980         * valarith.c (value_binop): Widen scalar to vector if appropriate.
981
982 2010-10-08  Ulrich Weigand  <uweigand@de.ibm.com>
983
984         * arm-tdep.c (thumb_expand_immediate): New function.
985         (thumb_instruction_changes_pc): Likewise.
986         (thumb2_instruction_changes_pc): Likewise.
987         (thumb_analyze_prologue): Handle 32-bit Thumb instructions during
988         prologue parsing.  Improved support for optimized code.
989         (thumb_scan_prologue): Do not reply on line-number information,
990         use same heuristics as arm_scan_prologue insead.
991         (skip_prologue_function): Accept functions
992         "__tls_get_addr" and "__aeabi_read_tp".
993
994 2010-10-08  Ulrich Weigand  <uweigand@de.ibm.com>
995             Daniel Jacobowitz  <dan@codesourcery.com>
996
997         * arm-tdep.c (thumb_in_function_epilogue_p)
998         (arm_in_function_epilogue_p): New.
999         (arm_gdbarch_init): Install arm_in_function_epilogue_p as
1000         gdbarch_in_function_epilogue_p callback.
1001
1002 2010-10-07  Doug Evans  <dje@google.com>
1003
1004         * cc-with-index.sh (output_file): Default to a.out.
1005
1006         * dwarf2read.c (mapped_index): Rename member index_table to
1007         symbol_table and index_table_slots to symbol_table_slots.
1008         All uses updated.
1009         (create_symbol_hash_table): Renamed from create_index_table.
1010         All callers updated.
1011         (add_indices_to_cpool): Rename arg index_table to symbol_hash_table.
1012         (write_hash_table): Rename local index_table to symbol_hash_table.
1013
1014         * addrmap.h (addrmap_foreach_fn): New typedef.
1015         (addrmap_foreach): Declare.
1016         * addrmap.c (struct addrmap_funcs): New member foreach.
1017         (addrmap_foreach): New function.
1018         (addrmap_fixed_foreach): New function.
1019         (addrmap_fixed_funcs): Update.
1020         (struct mutable_foreach_data): New struct.
1021         (addrmap_mutable_foreach_worker): New function.
1022         (addrmap_mutable_foreach): New function.
1023         (addrmap_mutable_funcs): Update.
1024
1025 2010-10-07  Paul Hilfinger  <hilfinger@adacore.com>
1026
1027         * dictionary.c (dict_hash): Revert to msymbol_hash_iw in
1028         more cases.
1029
1030 2010-10-07  Paul Hilfinger  <hilfinger@adacore.com>
1031
1032         * ada-lang.c (full_match): Declare.
1033         (ada_match_name): Rename to match_name (we should avoid prefixing static
1034         symbols with "ada_").
1035         (match_name): New name for ada_match_name.
1036         (struct ada_psym_data): Remove and replace with...
1037         (struct match_data): User data for map_matching_symbols.
1038         (ada_add_psyms): Remove.
1039         (aux_add_nonlocal_symbols): New function, used as callback for
1040         map_matching_symbols.
1041         (compare_names): Ordering function adopted from strcmp_iw for Ada-encoded
1042         symbols.
1043         (ada_add_non_local_symbols): Rename to add_nonlocal_symbols.
1044         (add_nonlocal_symbols): Renamed from ada_add_non_local_symbols.
1045         Rework to use map_matching_symbols instead of map_ada_symtabs.
1046         (ada_lookup_symbol_list): Use add_nonlocal_symbols.
1047         * psymtab.c: Include dependency on dictionary.h.
1048         (match_partial_symbol): New function.
1049         (ada_lookup_partial_symbol): Remove.
1050         (map_block): New function, auxiliary to map_matching_symbols_psymtab.
1051         (map_matching_symbols_psymtab): New function.
1052         (psym_functions): Replace map_ada_symtabs with map_matching_symbols_psymtab.
1053         * symfile.h: Replace map_ada_symtabs definition with map_matching_symbols.
1054
1055 2010-10-06  Paul Hilfinger  <hilfinger@adacore.com>
1056
1057         * ada-lang.c (ada_match_name): Use new API for wild_match.
1058         (wild_match): Change API to be consistent with that of strcmp_iw;
1059         return 0 for a match, and switch operand order.
1060         (full_match): New function.
1061         (ada_add_block_symbols): Use dict_iter_match_{first,next} for
1062         matching to allow use of hashing.
1063         * dictionary.c (struct dict_vector): Generalize iter_name_first,
1064         iter_name_next ot iter_match_first, iter_match_next.
1065         (iter_name_first_hashed): Replace with iter_match_first_hashed.
1066         (iter_name_next_hashed): Replace with iter_match_next_hashed.
1067         (iter_name_first_linear): Replace with iter_match_first_linear.
1068         (iter_name_next_linear): Replace with iter_match_next_linear.
1069         (dict_iter_name_first): Re-implement to use dict_iter_match_first.
1070         (dict_iter_name_next): Re-implement to use dict_iter_match_next.
1071         (dict_iter_match_first): New function.
1072         (dict_iter_match_next): New function.
1073         (dict_hash): New function.
1074         * dictionary.h (dict_iter_match_first, dict_iter_match_next): Declare.
1075         * psymtab.c (ada_lookup_partial_symbol): Use new wild_match API.
1076
1077 2010-10-06  Doug Evans  <dje@google.com>
1078
1079         * data-directory/Makefile.in: Remove @host_makefile_frag@, @frags@.
1080
1081 2010-10-06  Ken Werner  <ken.werner@de.ibm.com>
1082
1083         * dwarf2read.c (read_tag_const_type): Handle const arrays.
1084
1085 2010-10-06  Doug Evans  <dje@google.com>
1086
1087         * Makefile.in (REQUIRED_SUBDIRS): New var.
1088         (subdir_do): Verify required subdir Makefiles exist.
1089
1090         Create subdir data-directory.
1091         * Makefile.in (XML_SYSCALL_DIR, XML_SYSCALL_FILES): Moved to
1092         data-directory/Makefile.in.
1093         (SUBDIRS): Add data-directory.
1094         (all): Remove xml-syscall-copy dependency.
1095         (xml-syscall-copy): Moved to data-directory/Makefile.in as
1096         stamp-syscalls.
1097         (xml-syscall-install): Moved to data-directory/Makefile.in as
1098         install-syscalls.
1099         (install-only): Remove xml-syscall-install dependency.
1100         (all-data-directory): New rule.
1101         (data-directory/Makefile): New rule.
1102         * configure.ac (AC_OUTPUT): Add data-directory/Makefile.
1103         * configure: Regenerate.
1104         * data-directory/Makefile.in: New file.
1105         * python/lib/gdb/__init__.py: New file.
1106
1107 2010-10-06  Joel Brobecker  <brobecker@adacore.com>
1108
1109         Fix ARI warnings in advance_wild_match.
1110         * ada-lang.c (advance_wild_match): Delete local variable t2.
1111         Adjust code accordingly.  Minor reformatting.
1112
1113 2010-10-06  Ken Werner  <ken.werner@de.ibm.com>
1114
1115         * gdbtypes.h (struct main_type): Remove flag_nottext.
1116         (enum type_flag_value): Remove TYPE_FLAG_NOTTEXT.
1117         (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_NOTTEXT.
1118         (TYPE_NOTTEXT): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of flag_nottext.
1119         * gdbtypes.c (make_vector_type): Use TYPE_INSTANCE_FLAG_NOTTEXT instead
1120         of TYPE_FLAG_NOTTEXT.
1121         (init_type): Remove the initialization of the flag_nottext field.
1122         (gdbtypes_post_init): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of
1123         TYPE_FLAG_NOTTEXT.
1124         * c-valprint.c (c_val_print): Remove TYPE_VECTOR check.
1125
1126 2010-10-04  Doug Evans  <dje@google.com>
1127
1128         * cc-with-index.sh: New file.
1129
1130         * dwarf2read.c (dw2_do_instantiate_symtab): Insert blank line after
1131         function comment.
1132         (dw2_instantiate_symtab, dw2_get_cu, extract_cu_value): Ditto.
1133         (create_cus_from_index, create_addrmap_from_index): Ditto.
1134         (mapped_index_string_hash, find_slot_in_mapped_hash): Ditto.
1135         (dw2_setup, dw2_require_line_header, dw2_require_full_path): Ditto.
1136         (dw2_do_expand_symtabs_matching): Ditto.
1137         (eq_strtab_entry, create_strtab, add_string): Ditto.
1138         (hash_strtab_entry): Ditto.
1139         (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry): Ditto.
1140         (create_index_table, create_mapped_symtab, find_slot): Ditto.
1141         (hash_expand, add_index_entry, add_indices_to_cpool): Ditto.
1142         (write_hash_table, add_address_entry, write_psymbols): Ditto.
1143         (write_obstack, unlink_if_set, write_one_signatured_type): Ditto.
1144         (write_psymtabs_to_index): Ditto.
1145
1146 2010-10-04  Joel Brobecker  <brobecker@adacore.com>
1147
1148         * ada-lang.c: #include "value.h".
1149         (ensure_lval): Delete advance declaration.  Remove gdbarch and sp
1150         arguments.  Implement using value_allocate_space_in_inferior
1151         instead of allocating memory from the stack.
1152         (make_array_descriptor): Remove gdbarch and sp parameters.  Update
1153         calls to ensure_lval.
1154         (ada_convert_actual): Remove gdbarch and sp parameters.  Update
1155         calls to make_array_descriptor and ensure_lval.
1156         * ada-lang.h (ada_convert_actual): Update declaration.
1157         * infcall.c (value_arg_coerce): Update call to ada_convert_actual.
1158
1159 2010-10-04  Doug Evans  <dje@google.com>
1160
1161         * python/python.c (_initialize_python): Define new function
1162         GdbSetPythonDirectory in python.  Use it to update sys.path and
1163         gdb.__path__.
1164
1165 2010-10-03  Paul Hilfinger  <hilfinger@adacore.com>
1166
1167         * gdb/ada-typeprint.c (print_selected_record_field_types): New function,
1168         incorporating and generalizing print_record_field_types.
1169         (print_record_field_types): Change return value and update comment.
1170         Re-implement using print_selected_record_field_types.
1171         (print_choices): Print "=>" here.
1172         Handle case of unencoded variant branch.
1173         (print_variant_clauses): Reformat comment.
1174         Special-case unencoded variant branch.
1175
1176 2010-10-03  Paul Hilfinger  <hilfinger@adacore.com>
1177
1178         * ada-lang.c (wild_match): Reimplement.
1179         Change API to eliminate unused length argument, reverse arguments and
1180         make 0 the 'true' return value.
1181         (advance_wild_match): New auxiliary function for wild_match to improve
1182         readability.
1183         (ada_match_name, ada_add_block_symbols): Use new API for wild_match.
1184         * psymtab.c (ada_lookup_partial_symbol, map_ada_symtabs): Use new
1185         API for wild_match.
1186         * symfile.h (map_ada_symtabs): Modify declaration to use new API for
1187         wild_match.
1188         * dwarf2read.c (dw2_map_ada_symtabs): Ditto.
1189
1190 2010-10-01  Doug Evans  <dje@google.com>
1191
1192         * dwarf2read.c (_initialize_dwarf2_read): Add usage info to help text
1193         for `save gdb-index' command.
1194
1195 2010-10-01  Tom Tromey  <tromey@redhat.com>
1196
1197         * symfile.h (allocate_symtab): Update.
1198         * symfile.c (allocate_symtab): Make 'filename' const.
1199         * psymtab.c (add_psymbol_to_bcache): Make 'name' const.
1200         (add_psymbol_to_list): Likewise.
1201         * psympriv.h (struct partial_symtab) <filename, dirname>: Now
1202         const.
1203         (add_psymbol_to_list): Update.
1204         * mdebugread.c (new_symtab): Make 'name' const.
1205         (psymtab_to_symtab_1): Make 'filename' const.
1206         * elfread.c (elfstab_offset_sections): Update.
1207         * dwarf2read.c (dwarf_decode_lines): Make 'comp_dir' const.
1208         (dwarf2_start_subfile): Make 'dirname' and 'comp_dir' const.
1209         (psymtab_include_file_name): Update.
1210         * dbxread.c (find_stab_function_addr): Make 'filename' const.
1211         * buildsym.h (start_subfile): Update.
1212         * buildsym.c (start_subfile): Make arguments const.
1213
1214 2010-09-30  Ali Lakhia  <lakhia@alumni.utexas.net>
1215
1216         * fork-child.c (breakup_args): Fix crash if shell forking is
1217         disabled at compile time.
1218
1219 2010-10-01  Joel Brobecker  <brobecker@adacore.com>
1220
1221         * ada-lang.c (desc_bounds): Add handling of the case where
1222         the P_BOUNDS field is a pointer to a stub.
1223         (desc_data_target_type): Same for P_ARRAY field.
1224         (ada_check_typedef): Strip the typedef layers from the type
1225         found by ada_find_any_type.
1226
1227 2010-10-01  Joel Brobecker  <brobecker@adacore.com>
1228
1229         * sparc-tdep.c (sparc32_frame_align): New function.
1230         (sparc32_gdbarch_init): Set the frame_align gdbarch method.
1231         * sparc64-tdep.c (sparc64_frame_align): New function.
1232         (sparc64_gdbarch_init): Set the frame_align gdbarch method.
1233
1234 2010-09-30  H.J. Lu  <hongjiu.lu@intel.com>
1235
1236         * defs.h (MAX_REGISTER_SIZE): Set to 64.
1237
1238 2010-09-30  Tom Tromey  <tromey@redhat.com>
1239
1240         * symfile.h (struct sym_fns) <next>: Remove.
1241         (add_symtab_fns): Update.
1242         * symfile.c (sym_fns_ptr): New typedef.
1243         (symtab_fns): Now a VEC.
1244         (add_symtab_fns): Update.  Change argument type.
1245         (find_sym_fns): Update.  Change return type.
1246         (get_symfile_segment_data): Update.
1247         * objfiles.h (struct objfile) <sf>: Now const.
1248         * somread.c (som_sym_fns): Now const.  Update.
1249         * xcoffread.c (xcoff_sym_fns): Now const.  Update.
1250         * mipsread.c (ecoff_sym_fns): Now const.  Update.
1251         * machoread.c (macho_sym_fns): Now const.  Update.
1252         * elfread.c (elf_sym_fns): Now const.  Update.
1253         (elf_sym_fns_gdb_index): Likewise.
1254         * dbxread.c (aout_sym_fns): Now const.  Update.
1255         * coffread.c (coff_sym_fns): Now const.  Update.
1256
1257 2010-09-30  Tom Tromey  <tromey@redhat.com>
1258
1259         * value.c (value_primitive_field): Take 'offset' into account for
1260         packed field.
1261
1262 2010-09-30  Tom Tromey  <tromey@redhat.com>
1263
1264         * completer.c (count_struct_fields): Handle anonymous structs and
1265         unions.
1266         (add_struct_fields): Likewise.
1267
1268 2010-09-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
1269
1270         Fix printing parameters of inlined functions.
1271         * ada-lang.c (is_known_support_routine)
1272         (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter
1273         for find_frame_funname.
1274         * python/py-frame.c (frapy_name): Likewise.
1275         * stack.c (find_frame_funname): New parameter funcp.  Update the
1276         function comment.  Fill it in.
1277         (print_frame): New variable func.  Initialize it by
1278         find_frame_funname.  Print arguments only if FUNC is not NULL.  Use
1279         FUNC as the parameter of print_args_stub.
1280         * stack.h (find_frame_funname): New parameter funcp.  Remove the
1281         function declaration comment.
1282
1283 2010-09-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
1284
1285         PR corefiles/12071.
1286         * inferior.c (have_live_inferiors): New variables old_chain, inf and
1287         tp.  Iterate INFERIOR_LIST and call target_has_execution.
1288
1289 2010-09-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
1290
1291         Fix GDB crash on inferior calls with self-referencing classes.
1292         * gnu-v3-abi.c (gnuv3_pass_by_reference): Do not call itself on static
1293         member fields.
1294
1295 2010-09-29  Doug Evans  <dje@google.com>
1296
1297         Workaround for gcc/45682.
1298         * dwarf2read.c (partial_die_info): New fields fixup_called,
1299         linkage_name.
1300         (guess_partial_die_structure_name): Renamed from guess_structure_name.
1301         Move definition next to use.  Use linkage_name to determine if class
1302         is in a namespace.  All callers updated.
1303         (fixup_partial_die): Return early if already called.
1304         Set fixup_called when done.
1305         (guess_full_die_structure_name): New function.
1306         (determine_prefix): Call it for class/struct/union dies if c++ and
1307         .debug_types section is present and parent is DW_TAG_compile_unit.
1308
1309 2010-09-28  Joel Brobecker  <brobecker@adacore.com>
1310
1311         * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a.
1312         (sparc-*-rtems*): Delete. Now redundant with sparc-*-*.
1313
1314 2010-09-28  Joel Brobecker  <brobecker@adacore.com>
1315
1316         * NEWS: Announce Ravenscar Profile support.
1317
1318 2010-09-28  Joel Brobecker  <brobecker@adacore.com>
1319             Jerome Guitton  <guitton@adacore.com>
1320
1321         * ravenscar-thread.c, ravenscar-thread.h, ravenscar-sparc-thread.c:
1322         New files.
1323         * configure.tgt (sparc-*-*): Add ravenscar-thread.o and
1324         ravenscar-sparc-thread.o to gdb_target_obs.
1325
1326 2010-09-28  Joel Brobecker  <brobecker@adacore.com>
1327
1328         * ada-tasks.c (iterate_over_live_ada_tasks): New function.
1329         * ada-lang.h (iterate_over_live_ada_tasks): Declare.
1330
1331 2010-09-27  Pierre Muller  <muller@ics.u-strasbg.fr>
1332
1333         * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
1334         (amd64_windows_init_abi): Register amd64_skip_main_prologue as gdbarch
1335         skip_main_prologue method.
1336
1337 2010-09-27  Tom Tromey  <tromey@redhat.com>
1338
1339         * dwarf2read.c (dwarf2_read_index): Only allow version 3.
1340         (write_psymbols): Add 'psyms_seen' and 'is_static' arguments.
1341         Only emit a given psymbol once.
1342         (struct signatured_type_index_data) <psyms_seen>: New field.
1343         (write_one_signatured_type): Update.
1344         (cleanup_htab): New function.
1345         (write_psymtabs_to_index): Update.  Create psyms_seen hash.  Bump
1346         version to 3.
1347         (save_gdb_index_command): Update index documentation.
1348
1349 2010-09-27  Tom Tromey  <tromey@redhat.com>
1350
1351         * bcache.c (expand_hash_table): Use hash_function, not hash.
1352
1353 2010-09-27  Tom Tromey  <tromey@redhat.com>
1354
1355         * gdb_wchar.h: Change minimum libiconv to 0x108.
1356
1357 2010-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1358
1359         Fix lost siginfo_t for inferior calls.
1360         * infrun.c
1361         (struct inferior_thread_state) <siginfo_gdbarch, siginfo_data>: New.
1362         (save_inferior_thread_state): New variables regcache, gdbarch and
1363         siginfo_data.  Initialize SIGINFO_DATA if gdbarch_get_siginfo_type_p.
1364         Move INF_STATE allocation later, pre-clear it.  Initialize REGISTERS
1365         using REGCACHE.
1366         (restore_inferior_thread_state): New variables regcache and gdbarch.
1367         Restore SIGINFO_DATA for matching GDBARCH.  Restore REGISTERS using
1368         REGCACHE.  Free also SIGINFO_DATA.
1369
1370 2010-09-24  Tom Tromey  <tromey@redhat.com>
1371
1372         * dwarf2read.c (dw2_expand_symtabs_matching): Add missing
1373         MAYBE_SWAPs.
1374         (dw2_map_symbol_names): Likewise.
1375
1376 2010-09-24  Sami Wagiaalla  <swagiaal@redhat.com>
1377
1378         * valops.c (find_oload_champ_namespace_loop): replace incorrect
1379         discard_cleanups do_cleanups.
1380
1381 2010-09-24  Pedro Alves  <pedro@codesourcery.com>
1382
1383         PR gdb/11842
1384
1385         * amd64-linux-nat.c (compat_siginfo_from_siginfo)
1386         (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
1387         si_code is < 0.  Check for si_code == SI_TIMER before checking for
1388         si_code < 0.
1389
1390 2010-09-24  Pedro Alves  <pedro@codesourcery.com>
1391
1392         * objfiles.h (ALL_OBJSECTIONS): Handle breaks in the inner loop.
1393
1394 2010-09-22  Joel Brobecker  <brobecker@adacore.com>
1395
1396         * ada-tasks.c (read_atcb): Do not compute the task ptid when
1397         debugging a core file.
1398
1399 2010-09-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
1400
1401         Code cleanup.
1402         * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove.
1403         (free_objfile) <objfile->name != NULL>: Remove the conditional around
1404         xfree.
1405         * objfiles.h (struct objfile) <name>: New comment it is never NULL.
1406         * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>:
1407         Remove.
1408         * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name>
1409         Remove the conditional.
1410         * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
1411
1412 2010-09-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
1413
1414         * main.c: Include objfiles.h.
1415         (captured_main): New variable objfile.  Call
1416         load_auto_scripts_for_objfile for ALL_OBJFILES.
1417
1418 2010-09-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
1419
1420         * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
1421         DW_TAG_constant.
1422
1423 2010-09-22  Joel Brobecker  <brobecker@adacore.com>
1424
1425         * dwarf2read.c (scan_partial_symbols): Add handling of
1426         DW_TAG_constant DIEs.
1427         (add_partial_symbol, load_partial_dies, new_symbol): Likewise.
1428
1429 2010-09-22  Joel Brobecker  <brobecker@adacore.com>
1430
1431         * configure.ac: Add support for --enable-gdbserver.
1432         * configure: Regenerate.
1433
1434 2010-09-22  Sami Wagiaalla  <swagiaal@redhat.com>
1435
1436         PR C++/12028
1437         * valops.c (find_oload_champ_namespace_loop): removed incorrect
1438         'old_cleanups' reassignment.
1439
1440 2010-09-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
1441
1442         * charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
1443         characters.
1444
1445 2010-09-16  Phil Muldoon  <pmuldoon@redhat.com>
1446
1447         PR mi/11407
1448         * mi/mi-cmd-stack.c (list_args_or_locals): Catch exceptions from
1449         read_var_value and common_val_print and print a warning.
1450
1451 2010-09-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1452
1453         * MAINTAINERS (GLOBAL MAINTAINERS) <Jan Kratochvil>: Move the entry to
1454         keep the list in alphabetical order.  Use longer e-mail address.
1455
1456 2010-09-15  Tom Tromey  <tromey@redhat.com>
1457
1458         * MAINTAINERS (GLOBAL MAINTAINERS): Add Jan Kratochvil.
1459
1460 2010-09-15  Tom Tromey  <tromey@redhat.com>
1461
1462         * charset.c (iconv_open): New define.
1463         (iconv): Likewise.
1464         (iconv_close): Likewise.
1465         (phony_iconv_open): Add "phony_" prefix.
1466         (phony_iconv_close): Likewise.
1467         (phony_iconv): Likewise.
1468         * gdb_wchar.h: Check _LIBICONV_VERSION, __STDC_ISO_10646__.
1469         Change how INTERMEDIATE_ENCODING is defined.
1470
1471 2010-09-15  Doug Evans  <dje@google.com>
1472
1473         * dwarf2read.c (struct die_info): Fix comment.
1474
1475 2010-09-15  Alan Modra  <amodra@gmail.com>
1476
1477         PR 4606
1478         * gcore.c (gcore_create_callback): Clear SEC_HAS_CONTENTS rather
1479         than setting SEC_NEVER_LOAD on sections that need not be copied.
1480
1481 2010-09-14  Tom Tromey  <tromey@redhat.com>
1482
1483         * psympriv.h (add_psymbol_to_list, init_psymbol_list)
1484         (start_psymtab_common, allocate_psymtab, discard_psymtab):
1485         Declare.
1486         * symfile.h (extend_psymbol_list): Remove.
1487         (add_psymbol_to_list, init_psymbol_list, start_psymtab_common)
1488         (allocate_psymtab, discard_psymtab): Move to psympriv.h.
1489         * psymtab.c (extend_psymbol_list): Move earlier.  Now static.
1490
1491 2010-09-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
1492
1493         * dwarf2read.c (dw2_map_ada_symtabs): Remove the internal_error.
1494         Update the comment.
1495
1496 2010-09-14  Tom Tromey  <tromey@redhat.com>
1497
1498         PR symtab/8399:
1499         * dwarf2loc.c (locexpr_describe_location_piece): Don't call error
1500         for unrecognized frame base expression.
1501
1502 2010-09-14  Tom Tromey  <tromey@redhat.com>
1503
1504         PR exp/11803:
1505         * value.c (value_static_field): Use value_of_variable.
1506
1507 2010-09-14  Pierre Muller  <muller@ics.u-strasbg.fr>
1508
1509         * m32r-rom.c: Replace winsock.h with winsock2.h header.
1510         * remote-m32r-sdi.c: Replace winsock.h by winsock2.h.
1511
1512 2010-09-13  Sami Wagiaalla  <swagiaal@redhat.com>
1513
1514         PR symtab/11992:
1515         * c-exp.y (classify_name): Check is_a_member_of_this before returning
1516         UNKNOWN_CPP_NAME.
1517
1518 2010-09-13  Joel Brobecker  <brobecker@adacore.com>
1519
1520         * NEWS: Add x86-lynxos to the list of platforms supported by
1521         gdbserver.
1522
1523 2010-09-13  Joel Brobecker  <brobecker@adacore.com>
1524
1525         * NEWS: Announce GDBserver support for version 5.x of ppc-lynxos.
1526
1527 2010-09-13  Tom Tromey  <tromey@redhat.com>
1528
1529         * Makefile.in (HFILES_NO_SRCDIR): Add progspace.h.
1530
1531 2010-09-13  H.J. Lu  <hongjiu.lu@intel.com>
1532
1533         * i386-tdep.c (i386_ymm_type): Set type name to
1534         builtin_type_vec256i.
1535
1536 2010-09-12  Michael Snyder  <msnyder@vmware.com>
1537
1538         * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1539
1540 2010-09-12  H.J. Lu  <hongjiu.lu@intel.com>
1541
1542         * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1543
1544 2010-09-11  H.J. Lu  <hongjiu.lu@intel.com>
1545
1546         * amd64-tdep.c (amd64_register_name): Removed.
1547         (amd64_init_abi): Don't call set_gdbarch_register_name.
1548
1549         * i386-tdep.c (i386_ymmh_regnum_p): Make it static.
1550
1551         * i386-tdep.h (i386_ymmh_regnum_p): Removed.
1552
1553 2010-09-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
1554             Paul Bolle  <pebolle@tiscali.nl>
1555
1556         Redirect also uiout and stdtarg{,err} in execute_command_to_string.
1557         * cli-logging.c (struct saved_output_files) <targerr>: New.
1558         (set_logging_redirect, pop_output_files, handle_redirections):
1559         Redirect also gdb_stdtargerr.
1560         * defs.h (struct ui_out, make_cleanup_ui_out_redirect_pop): New
1561         declarations.
1562         * event-top.c (gdb_setup_readline, gdb_disable_readline): Redirect
1563         also gdb_stdtargerr.
1564         * top.c (execute_command_to_string): Move make_cleanup_ui_file_delete
1565         to the top.  Redirect also gdb_stdlog, gdb_stdtarg and gdb_stdtargerr.
1566         Use ui_out_redirect, register make_cleanup_ui_out_redirect_pop.
1567         * tui/tui-io.c (tui_setup_io): Redirect also gdb_stdtargerr.
1568         * utils.c (do_ui_out_redirect_pop, make_cleanup_ui_out_redirect_pop):
1569         New functions.
1570
1571 2010-09-10  Pierre Muller  <muller@ics.u-strasbg.fr>
1572
1573         * hppa-tdep.c (unwind_command): Use host_address_to_string function
1574         to display a host address.
1575         * monitor.c (monitor_read_memory): Likewise.
1576         * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
1577
1578 2010-09-10  Pierre Muller  <muller@ics.u-strasbg.fr>
1579
1580         * coffread.c (struct coff_symbol): Change c_value type from `long' to
1581         `CORE_ADDRESS' as it might contain target addresses.
1582
1583 2010-09-10  Pierre Muller  <muller@ics.u-strasbg.fr>
1584
1585         * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
1586         before cast to pointer to avoid warning.
1587
1588 2010-09-09  Kevin Buettner  <kevinb@redhat.com>
1589
1590         * v850-tdep.c (v850_gdbarch_init): Change the v850's `char'
1591         type to be signed.
1592
1593 2010-09-09  Ulrich Weigand  <uweigand@de.ibm.com>
1594
1595         * dwarf2read.c (fixup_partial_die): Do not set dummy name for
1596         anonymous class partial DIEs.
1597
1598 2010-09-08  Daniel Jacobowitz  <dan@codesourcery.com>
1599
1600         * dwarf2read.c (dwarf2_compute_name): Check that the first
1601         argument is a pointer.
1602
1603 2010-09-08  Daniel Jacobowitz  <dan@codesourcery.com>
1604
1605         * dwarf2read.c (read_func_scope, read_structure_type)
1606         (read_common_block): Check for a NULL return from new_symbol.
1607
1608 2010-09-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
1609
1610         * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
1611
1612 2010-09-08  Daniel Jacobowitz  <dan@codesourcery.com>
1613
1614         * dwarf2read.c (read_structure_type): Move processing of
1615         fields and member functions from here...
1616         (process_structure_scope): ... to here.
1617
1618 2010-09-08  Daniel Jacobowitz  <dan@codesourcery.com>
1619
1620         * gnu-v3-abi.c (gnuv3_print_method_ptr): Do not use
1621         the domain type.
1622         (gnuv3_make_method_ptr): Likewise.
1623
1624 2010-09-08  Tom Tromey  <tromey@redhat.com>
1625
1626         * breakpoint.c (create_breakpoint): Add missing _().
1627
1628 2010-09-08  Doug Evans  <dje@google.com>
1629
1630         * dwarf2-frame.h (dwarf2_frame_build_info): Delete, unused.
1631
1632 2010-09-08  Tom Tromey  <tromey@redhat.com>
1633
1634         Revert:
1635         2010-09-01  Tom Tromey  <tromey@redhat.com>
1636         * dwarf2read.c, gdbtypes.c, psymtab.c, symfile.h, symtab.c,
1637         symtab.h: Revert earlier change.
1638
1639 2010-09-09  Sami Wagiaalla  <swagiaal@redhat.com>
1640
1641         * psymtab.c (add_psymbol_to_bcache): Initialize
1642         obj_section.
1643         memset psymbol.ginfo.value to 0.
1644
1645 2010-09-06  Pedro Alves  <pedro@codesourcery.com>
1646
1647         * infrun.c (resume): Extend comment on ignoring single-step
1648         requests on vfork parents waiting for a vfork-done.
1649
1650 2010-09-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
1651             Pedro Alves  <pedro@codesourcery.com>
1652
1653         * corelow.c (core_open): Use target_signal_from_host if CORE_GDBARCH
1654         is NULL.
1655         * fork-child.c (startup_inferior) <resume_signal>: Use enum
1656         target_signal type.
1657         * linux-nat.c (linux_nat_resume): Use target_signal_to_host before
1658         calling strsignal.  Use enum target_signal type for saved_signo.
1659         (linux_handle_extended_wait) <signo>: Use enum target_signal type.
1660         (linux_nat_wait_1): Use enum target_signal type for signo.  Use
1661         target_signal_to_host before calling strsignal.
1662         * remote-m32r-sdi.c (m32r_wait, m32r_detach): Replace 0 by
1663         TARGET_SIGNAL_0.
1664
1665 2010-09-06  Pedro Alves  <pedro@codesourcery.com>
1666             Jan Kratochvil  <jan.kratochvil@redhat.com>
1667
1668         * common/signals.c (ANY): Remove.
1669         (SET): No longer use ANY.
1670
1671 2010-09-06  Yao Qi  <yao@codesourcery.com>
1672
1673         * infrunc(resume): When inferior is waiting_for_vfork_done,
1674         clear step and don't use displaced stepping.
1675
1676 2010-09-04  Daniel Jacobowitz  <dan@codesourcery.com>
1677
1678         * breakpoint.c (can_use_hardware_watchpoint): Handle the first
1679         value specially.
1680
1681 2010-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
1682
1683         Code cleanup - split print_stop_reason.
1684         * infrun.c (enum inferior_stop_reason): Remove.
1685         (print_stop_reason): Remove by splitting into ...
1686         (print_exited_reason, print_signal_exited_reason)
1687         (print_no_history_reason, print_signal_received_reason)
1688         (print_end_stepping_range_reason): ... these new functions.  Update
1689         the preceding comment.
1690         (handle_inferior_event): Change the calls to print_exited_reason,
1691         print_signal_exited_reason, print_no_history_reason,
1692         print_signal_received_reason, print_end_stepping_range_reason.
1693         (handle_step_into_function, handle_step_into_function_backward):
1694         Change the calls to print_end_stepping_range_reason.
1695
1696 2010-09-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
1697
1698         * breakpoint.c (save_breakpoints): Use RETURN_MASK_ALL.
1699         * cli-out.c: Include vec.h.
1700         (cli_field_fmt, cli_spaces, cli_text, cli_message, cli_flush): New
1701         variable stream, initialize it, use it.
1702         (cli_redirect): New function comment.  Replace the stream and
1703         original_stream fields by the new streams field.  Remove the
1704         original_stream != NULL conditional, assert error on NULL instead.
1705         (out_field_fmt, field_separator): New variable stream, initialize it, use it.
1706         (cli_out_data_ctor): Assert non-NULL stream.  Replace the stream and
1707         original_stream fields by the new streams field.
1708         (cli_out_set_stream): Replace the stream field by the new streams
1709         field.
1710         * cli-out.h: Include vec.h.
1711         (ui_filep): New typedef, call DEF_VEC_P for it.
1712         (struct cli_ui_out_data): Replace the stream and original_stream
1713         fields by the new streams field.
1714         * cli/cli-logging.c (set_logging_redirect): Call ui_out_redirect with
1715         NULL first.  Extend the comment.
1716         (handle_redirections): Call ui_out_redirect with output.
1717         * python/py-breakpoint.c (bppy_get_commands): Move ui_out_redirect
1718         calls outside of the TRY_CATCH block.
1719
1720 2010-09-03  Joel Brobecker  <brobecker@adacore.com>
1721
1722         GDB 7.2 released.
1723
1724 2010-09-02  Joel Brobecker  <brobecker@adacore.com>
1725
1726         Back out the following change:
1727         | 2010-06-29  Hui Zhu  <teawater@gmail.com>
1728         | * record.c (set_record_pic_cmdlist,
1729         | show_record_pic_cmdlist): New variables.
1730         | (set_record_pic_command,
1731         | show_record_pic_command): New functions.
1732         | (record_pic_function, record_pic_line, record_pic_enum,
1733         | set_record_pic_type, record_pic_hide_nofunction,
1734         | record_pic_hide_nosource, record_pic_hide_same): New variables.
1735         | (record_pic_fputs): New function.
1736         | (function_list, node_list, edge_list): New struct.
1737         | (function_list, node_list, edge_list): New variables.
1738         | (record_pic_cleanups, record_pic_node,
1739         | record_pic_edge, cmd_record_pic): New functions.
1740         | (_initialize_record): Add new commands for record pic.
1741
1742 2010-09-02  Daniel Jacobowitz  <dan@codesourcery.com>
1743
1744         * config.in, configure: Regenerated.
1745         * configure.ac: Check for waitpid.
1746         * ser-pipe.c (pipe_close): Wait for the program to exit.
1747
1748 2010-09-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
1749
1750         * cli/cli-logging.c: Include gdb_assert.h.
1751         (set_logging_overwrite): New function.
1752         (logging_redirect): New comment.
1753         (logging_no_redirect_file, set_logging_redirect)
1754         (pop_output_files) <logging_no_redirect_file>: New.
1755         (handle_redirections) <!logging_redirect>: New variable
1756         no_redirect_file.  Remove file autoclose for tee_file_new.  No longer
1757         discard cleanup for the close of former OUTPUT.  Set
1758         LOGGING_NO_REDIRECT_FILE.
1759         (handle_redirections) <logging_redirect>: gdb_assert
1760         LOGGING_NO_REDIRECT_FILE.
1761         (show_logging_command) <logging_redirect handling>: Adjust messages
1762         for SAVED_FILENAME not NULL.
1763         (_initialize_cli_logging): Install set_logging_overwrite and
1764         set_logging_redirect.
1765
1766 2010-09-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
1767
1768         * iq2000-tdep.c (iq2000_scan_prologue): Initialize SAL.END.
1769
1770 2010-09-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
1771
1772         * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT): Convert it to the no- form.
1773         (monitor.o): Replace $(INTERNAL_WARN_CFLAGS) by $(INTERNAL_CFLAGS) and
1774         add $(GDB_WARN_CFLAGS_NO_FORMAT).
1775         (printcmd.o): Replace $(INTERNAL_CFLAGS_BASE) by $(INTERNAL_CFLAGS).
1776
1777 2010-09-02  Yao Qi  <yao@codesourcery.com>
1778
1779         * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
1780         number from a WIFSIGNALED status.
1781
1782 2010-09-01  Tom Tromey  <tromey@redhat.com>
1783
1784         * symtab.h (lookup_type_symbol): Declare.
1785         * symtab.c (lookup_symbol_in_language_full): Rename from
1786         lookup_symbol_in_language.  Add 'for_type' argument.
1787         (lookup_symbol_in_language): New function.
1788         (lookup_type_symbol): Likewise.
1789         (lookup_symbol_aux): Add 'for_type' argument.
1790         (match_symbol_aux): New function.
1791         (lookup_symbol_aux_symtabs): Use expand_one_symtab_matching.
1792         (match_transparent_type): New function.
1793         (basic_lookup_transparent_type): Use expand_one_symtab_matching.
1794         * symfile.h (struct quick_symbol_functions)
1795         <pre_expand_symtabs_matching>: Remove.
1796         <expand_one_symtab_matching>: New field.
1797         * psymtab.c (expand_one_symtab_matching_psymtabs): New function.
1798         (pre_expand_symtabs_matching_psymtabs): Remove.
1799         (psym_functions): Update.
1800         * gdbtypes.c (lookup_typename): Use lookup_type_symbol.
1801         * dwarf2read.c (dw2_lookup_symbol): Update comment.
1802         (dw2_pre_expand_symtabs_matching): Remove.
1803         (dw2_expand_one_symtab_matching): New function.
1804         (dwarf2_gdb_index_functions): Update.
1805
1806 2010-09-01  Joel Brobecker  <brobecker@adacore.com>
1807
1808         * NEWS: Add entry announcing GDBserver support on powerpc-lynxos.
1809
1810 2010-09-01  Marc Khouzam  <marc.khouzam@ericsson.com>
1811
1812         * mi/mi-main.c (mi_cmd_list_target_features): Add `reverse'
1813         as a feature reported by -list-target-features.
1814
1815 2010-09-01  Joel Brobecker  <brobecker@adacore.com>
1816
1817         * features/Makefile (WHICH): Add rs6000/powerpc-32.
1818         (powerpc-32.o, powerpc-32.c): New rules.
1819         (clean): Also remove powerpc-32.c.
1820         * regformats/rs6000/powerpc-32.dat: Generate.
1821
1822 2010-08-31  Sami Wagiaalla  <swagiaal@redhat.com>
1823
1824         * symfile.c (reread_symbols): Use psymbol_bcache_free, and
1825         psymbol_bcache_init.
1826         * psymtab.h (psymbol_bcache_init): New function prototype.
1827         (psymbol_bcache_free): New function prototype.
1828         (psymbol_bcache_get_bcache): New function prototype.
1829         * psymtab.c (psymbol_bcache_init): New function.
1830         (psymbol_bcache_free): New function.
1831         (psymbol_bcache_full): New function.
1832         (psymbol_bcache_get_bcache): New function.
1833         (add_psymbol_to_bcache): use psymbol_bcache_full.
1834         * objfiles.h (psymbol_cache): Change type of psymbol_cache to
1835         psymbol_bcache.
1836         * symmisc.c (print_symbol_bcache_statistics): Updated.
1837         (print_objfile_statistics): Updated.
1838         * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
1839         psymbol_cache.
1840         (free_objfile): Use psymbol_bcache_free.
1841
1842 2010-08-31  Tom Tromey  <tromey@redhat.com>
1843
1844         PR c++/11961:
1845         * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
1846         Don't set TYPE_NAME on the type.
1847
1848 2010-08-31  Michael Snyder  <msnyder@msnyder-server.eng.vmware.com>
1849
1850         * infrun.c (set_exec_direction_func): Error out if target does not
1851         support reverse execution.
1852
1853 2010-08-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
1854
1855         Make linux_get_siginfo_type `type *' unique.
1856         * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
1857         (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
1858         (linux_get_siginfo_type): New variable linux_gdbarch_data.  Initialize
1859         it.  Use linux_gdbarch_data->siginfo_type as a persistent storage.
1860         (_initialize_linux_tdep): New.
1861
1862 2010-08-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
1863
1864         Code cleanup.
1865         * defs.h (find_memory_region_ftype): New typedef.
1866         (exec_set_find_memory_regions): Use it.
1867         * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
1868         * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
1869         * gcore.c (objfile_find_memory_regions): Likewise.
1870         * gnu-nat.c (gnu_find_memory_regions): Likewise.
1871         * linux-nat.c (linux_nat_find_memory_regions): Likewise.
1872         * procfs.c (iterate_over_mappings_cb_ftype): Remove.
1873         (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
1874         find_memory_region_ftype.
1875         (insert_dbx_link_bpt_in_region): Likewise.
1876         (iterate_over_mappings): Likewise.  Drop the comment part about the
1877         function prototype.
1878         (find_memory_regions_callback): Use find_memory_region_ftype.
1879         (proc_find_memory_regions): Likewise.
1880         (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
1881         find_memory_region_ftype.
1882         * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
1883         * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
1884
1885 2010-08-31  Sami Wagiaalla  <swagiaal@redhat.com>
1886
1887         * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
1888         'static partial_symbol psymbol'.
1889         (psymbol_hash): New function.
1890         (psymbol_compare): New function.
1891         * bcache.c (hash_continue): New.
1892         (hash): Use hash_continue.
1893         * bcache.c: Add hash_function and compare_function
1894         pointers to bcache struct.
1895         (bcache_full): Use bcache->hash_function, and
1896         bcache->compare_function.
1897         (bcache_compare): New function.
1898         (bcache_xmalloc): Take hash_function and
1899         compare_function arguments and initialize the
1900         bcach's pointers.
1901         Updated comment.
1902         * objfiles.c (allocate_objfile): Updated.
1903         * symfile.c (reread_symbols): Updated.
1904         * python/py-type.c (typy_richcompare): Updated.
1905
1906 2010-08-30  Andre Poenitz  <andre.poenitz@nokia.com>
1907             Tom Tromey  <tromey@redhat.com>
1908
1909         PR python/11792:
1910         * python/py-value.c (valpy_get_dynamic_type): New function.
1911         (value_object_getset): Add "dynamic_type".
1912         (valpy_get_type): Fail on error.
1913
1914 2010-08-30  Yao Qi  <yao@codesourcery.com>
1915
1916         * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
1917         (arm_linux_syscall_next_pc): New.
1918         (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead. 
1919         (arm_linux_init_abi): Initialize syscall_next_pc.
1920         * arm-tdep.c (thumb_get_next_pc_raw):  Get next pc of SWI in Thumb mode.
1921         (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
1922         * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc. 
1923         Declare arm_frame_is_thumb.
1924
1925 2010-08-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
1926
1927         Code cleanup.
1928         * breakpoint.c (bpstat_alloc): Remove unused prototype.
1929         (bpstat_alloc): Change parameters cbs to bs_link_pointer.  Adjust the
1930         code.
1931         (bpstat_stop_status): Change root_bs into bs_head and bs_link.  Adjust
1932         calls of bpstat_alloc.  Remove explicit bs chain termination.
1933
1934 2010-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
1935
1936         Code cleanup.
1937         * linux-nat.c (pull_pid_from_list): Rename status to statusp.
1938         (my_waitpid): Likewise.
1939
1940 2010-08-27  Doug Evans  <dje@google.com>
1941
1942         * dwarf2read.c (dw2_require_line_header): Read from .debug_types
1943         as appropriate.
1944
1945 2010-08-27  Tom Tromey  <tromey@redhat.com>
1946
1947         * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
1948         TYPE_FIELD_IGNORE_BITS.
1949
1950 2010-08-27  Doug Evans  <dje@google.com>
1951
1952         * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
1953         the order they're defined in.  munmap .debug_types buffer.
1954
1955 2010-08-26  Doug Evans  <dje@google.com>
1956
1957         * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
1958         (dw2_forget_cached_source_info): Rename local cu to per_cu.
1959         (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
1960         (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
1961         (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
1962         (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
1963         (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
1964         (dwarf2_free_objfile, write_one_signatured_type): Ditto.
1965         (write_psymtabs_to_index): Ditto.
1966
1967 2010-08-26  Pedro Alves  <pedro@codesourcery.com>
1968
1969         * NEWS: Mention libthread_db debugging with core files.
1970
1971 2010-08-26  Doug Evans  <dje@google.com>
1972
1973         * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
1974         forward decl.  Pass pst->dirname to dwarf_decode_lines.
1975         (psymtab_include_file_name): New function.
1976         (dwarf_decode_lines): Call it.  Update comments.
1977
1978 2010-08-25  Pedro Alves  <pedro@codesourcery.com>
1979
1980         * dwarf2read.c (inherit_abstract_dies): Handle origin die's
1981         compilation unit being different from target die's.
1982
1983 2010-08-24  Doug Evans  <dje@google.com>
1984
1985         PR symtab/11942
1986         * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
1987         debug_types_type_hash.
1988         (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
1989         All uses updated.
1990         (lookup_die_type): Renamed from tag_type_to_tag.  First look in
1991         appropriate type_hash table.  All callers updated.
1992         (allocate_signatured_type_table): Renamed from
1993         allocate_signatured_type_hash_table.  All callers updated.
1994         (create_signatured_type_table_from_index): Renamed from
1995         create_signatured_type_hash_from_index.  All callers updated.
1996         (read_die_type): Add comment.  Move actual reading to ...
1997         (read_die_type_1): ... here.  New function.
1998         (follow_die_ref_or_sig): Tweak comment.
1999         (set_die_type): Rewrite to use appropriate choice of
2000         debug_info_type_hash or debug_types_type_hash.
2001         (get_die_type_at_offset): New function.
2002         (get_die_type): Call it.
2003
2004 2010-08-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2005
2006         * python/py-type.c (typy_richcompare): Initialize worklist.
2007
2008 2010-08-24  Daniel Jacobowitz  <dan@codesourcery.com>
2009             Kazu Hirata  <kazu@codesourcery.com>
2010             Jonathan Larmour  <jifl@eCosCentric.com>
2011
2012         * arm-tdep.c: Include features/arm-with-m.c.
2013         (arm_psr_thumb_bit): New.  Update all uses of CPSR_T to
2014         call this function.
2015         (arm_pc_is_thumb): Add a gdbarch argument.  Update all callers.
2016         Check is_m after force-mode.
2017         (arm_gdbarch_init): Check the binary before the target description.
2018         Add check for M profile attribute.  If we have an M-profile device,
2019         but no target register description, use arm-with-m.  Recognize the
2020         new org.gnu.gdb.arm.m-profile feature and its xpsr register.
2021         (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
2022         * arm-tdep.h (XPSR_T): Define.
2023         (struct gdbarch_tdep): Add is_m member.
2024         * features/arm-m-profile.xml, features/arm-with-m.c,
2025         features/arm-with-m.xml: New files.
2026
2027 2010-08-23  Doug Evans  <dje@google.com>
2028
2029         * dwarf2read.c (read_structure_type): Add comment.
2030         (read_enumeration_type): Add comment.
2031         (process_enumeration_scope): Move definition of some locals
2032         closer to their use.
2033         (read_namespace_type): Add comment.
2034         (set_die_type): Fix typo in comment.
2035
2036 2010-08-23  Tom Tromey  <tromey@redhat.com>
2037
2038         PR python/11145:
2039         * python/py-value.c: Include expression.h.
2040         (valpy_do_cast): New function.
2041         (valpy_cast): Use it.
2042         (valpy_dynamic_cast): New function.
2043         (valpy_reinterpret_cast): Likewise.
2044         (value_object_methods): Add dynamic_cast, reinterpret_cast.
2045
2046 2010-08-23  Tom Tromey  <tromey@redhat.com>
2047
2048         PR python/11391:
2049         * python/py-value.c (valpy_nonzero): Don't throw error for other
2050         Value types.
2051
2052 2010-08-23  Tom Tromey  <tromey@redhat.com>
2053
2054         PR python/10676:
2055         * python/py-type.c: Include bcache.h, vec.h.
2056         (struct type_equality_entry): New.
2057         (compare_strings): New function.
2058         (check_types_equal): Likewise.
2059         (check_types_worklist): Likewise.
2060         (typy_richcompare): Likewise.
2061         (type_object_type): Set tp_richcompare field.
2062
2063 2010-08-23  Tom Tromey  <tromey@redhat.com>
2064
2065         PR python/10953:
2066         * python/py-type.c (typy_fields): Call check_typedef.
2067         (typy_template_argument): Add TRY_CATCH.
2068
2069 2010-08-23  Tom Tromey  <tromey@redhat.com>
2070
2071         PR python/11915:
2072         * python/py-type.c (typy_array): New function.
2073         (type_object_methods): Add "array".
2074
2075 2010-08-20  Pedro Alves  <pedro@codesourcery.com>
2076
2077         * python/python.c: Include "serial.h".
2078         (gdbpy_event_fds): Change type to `struct serial *' a array from
2079         int array.
2080         (gdbpy_run_events): Change parameters.  Use serial_readchar in
2081         place of read.
2082         (gdbpy_post_event): Use serial_write in place of write.
2083         (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
2084         serial_async in place of add_file_handler.
2085
2086 2010-08-20  Pedro Alves  <pedro@codesourcery.com>
2087
2088         * serial.h (gdb_pipe, serial_pipe): Declare.
2089         * serial.c (serial_interface_lookup): Take a const char pointer.
2090         (serial_fdopen): Rename to ...
2091         (serial_fdopen_ops): ... this.  Add an OPS parameter and use it.
2092         Call the OPS' fdopen function if there is one.
2093         (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
2094         (serial_pipe): New.
2095         (struct serial_ops) <fdopen>: New field.
2096
2097         * ser-mingw.c (free_pipe_state):
2098         (free_pipe_state): Close output on non-pex pipes.
2099         (pipe_windows_fdopen): New.
2100         (gdb_pipe): New.
2101         (_initialize_ser_windows): Register pipe_windows_fdopen.
2102         * ser-go32.c (gdb_pipe): New.
2103         * ser-pipe.c (pipe_close): Close file descriptor even if there's
2104         no state pointer.
2105         (pipe_ops): Delete.
2106         (gdb_pipe): New.
2107
2108 2010-08-20  Keith Seitz  <keiths@redhat.com>
2109
2110         PR symtab/11465:
2111         * dwarf2read.c (struct delayed_method_info): New struct.
2112         (struct dwarf2_cu): Add vector method_list.
2113         (scan_partial_symbols): Count methods for union, class, structure,
2114         and interface types.
2115         (add_to_method_list): New function.
2116         (free_delayed_list): New function.
2117         (compute_delayed_physnames): New function.
2118         (process_full_comp_unit): Make a cleanup for the CU's delayed
2119         physname list, compute the delayed physnames, and free the
2120         the list.
2121         (dwarf2_add_member_fn): For C++ and Java, delay the computation
2122         of the physname until after the CU is read.
2123
2124         * dwarf2read.c (read_structure_type): Check if the current
2125         DIE's type was already completed after dwarf2_full_name
2126         was called.
2127
2128 2010-08-19  Stan Shebs  <stan@codesourcery.com>
2129
2130         * NEWS: Mention some additional changes.
2131
2132 2010-08-19  Tom Tromey  <tromey@redhat.com>
2133
2134         * Makefile.in (install-python): Add DESTDIR.
2135
2136 2010-08-19  Doug Evans  <dje@google.com>
2137
2138         PR exp/11926
2139         * parser-defs.h (parse_float, parse_c_float): Declare.
2140         * parse.c (parse_float, parse_c_float): New function.
2141         * c-exp.y (parse_number): Call parse_c_float.
2142         * objc-exp.y (parse_number): Ditto.
2143         * p-exp.y (parse_number): Ditto.  Use ANSI/ISO-style definition.
2144         * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
2145
2146 2010-08-19  Joel Brobecker  <brobecker@adacore.com>
2147
2148         * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
2149         the arguments in the correct order.
2150         * symtab.c (maybe_add_partial_symtab_filename): Declare
2151         the arguments in the correct order.
2152
2153 2010-08-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2154
2155         * varobj.c (varobj_create): Replace variable old_fi with old_id,
2156         initialize it by null_frame_id, wrap its usage by get_frame_id,
2157         frame_id_p and frame_find_by_id.
2158
2159 2010-08-18  Tom Tromey  <tromey@redhat.com>
2160
2161         PR python/11900:
2162         * configure: Rebuild.
2163         * configure.ac: Add install-python to CONFIG_INSTALL.
2164         * Makefile.in (install-python): New.
2165
2166 2010-08-18  Doug Evans  <dje@google.com>
2167
2168         * gdb_assert.h (gdb_assert_not_reached): New macro.
2169         (gdb_assert_fail): Fix typo in comment.
2170         * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
2171         gdb_assert (0).
2172         * darwin-nat.c (darwin_check_new_threads): Ditto.
2173         * dwarf2read.c (dwarf2_get_section_info): Ditto.
2174         (munmap_section_buffer): Ditto.
2175         * m32c-tdep.c (make_types): Ditto.
2176         (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
2177         * macroexp.c (get_character_constant): Ditto.
2178         (get_string_literal): Ditto.
2179         * mep-tdep.c (mep_pseudo_cr_size): Ditto.
2180         (mep_pseudo_cr_index, mep_register_type): Ditto.
2181         (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
2182         (mep_get_insn, mep_analyze_prologue): Ditto.
2183         * objfiles.c (qsort_cmp): Ditto.
2184         * prologue-value.c (pv_is_identical): Ditto.
2185         * record.c (record_get_loc): Ditto.
2186         * value.c (value_static_field): Ditto.
2187         * xtensa-tdep.c (call0_track_op): Ditto.
2188
2189 2010-08-18  Tom Tromey  <tromey@redhat.com>
2190
2191         PR symtab/11919:
2192         * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
2193         * parse.c (parse_field_expression): Use RETURN_MASK_ERROR.  Move
2194         name-copying lower.  Document exception behavior.
2195         * completer.c (expression_completer): Catch exceptions from
2196         parse_field_expression.
2197
2198 2010-08-18  Pedro Alves  <pedro@codesourcery.com>
2199
2200         PR corefile/8210
2201
2202         * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
2203         workaround on core files.
2204         (try_thread_db_load_1): Don't try enabling thread event reporting
2205         on core files.
2206         (thread_db_load): Allow thread_db on core files.
2207         (attach_thread): Don't check thread signals on core files, nor try
2208         really attaching to the thread, nor enabling thread event event
2209         reporting.
2210         (thread_db_detach): Don't try disabing thread event reporting or
2211         removing thread event breakpoints when debugging a core file.
2212         (find_new_threads_callback): Don't try enabling thread event
2213         reporting on core files.
2214         (thread_db_find_new_threads_2): Don't look for a stopped lwp when
2215         debugging a core file.
2216         (thread_db_find_new_threads): Don't update thread
2217         cores (processors) when debugging a core (dump).
2218
2219 2010-08-18  Pedro Alves  <pedro@codesourcery.com>
2220
2221         PR corefile/8210
2222
2223         * corelow.c (add_to_thread_list): Don't use
2224         gdbarch_core_reg_section_encodes_pid.  Use bfd_core_file_pid.
2225         (get_core_register_section): Don't use
2226         gdbarch_core_reg_section_encodes_pid.
2227
2228         * gdbarch.sh (core_reg_section_encodes_pid): Delete.
2229         * gdbarch.h, gdbarch.c: Regenerate.
2230         * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
2231         gdbarch_core_reg_section_encodes_pid.
2232         * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
2233         * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
2234         * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
2235
2236 2010-08-18  Yao Qi  <yao@codesourcery.com>
2237
2238         * MAINTAINERS : Add myself under Write After Approval.
2239
2240 2010-08-17  Tom Tromey  <tromey@redhat.com>
2241
2242         * NEWS: Mention template parameter support.
2243
2244 2010-08-17  Pedro Alves  <pedro@codesourcery.com>
2245
2246         PR breakpoints/11371
2247
2248         * breakpoint.c (decref_bp_location): Assert the reference count is
2249         sane.
2250
2251 2010-08-17  Pedro Alves  <pedro@codesourcery.com>
2252
2253         PR breakpoints/11371
2254
2255         * breakpoint.c (breakpoint_init_inferior): Decrement the
2256         location's reference count instead of deleting right away.
2257         (bpstat_free): Decrement the location's reference count.  Make
2258         static.
2259         (bpstat_copy): Increment the location's reference count.
2260         (bpstat_find_breakpoint): Adjust.
2261         (bpstat_num): Adjust.
2262         (print_it_typical): Adjust.  Use the breakpoint pointer in the
2263         bpstat instead of the location's owner.
2264         (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
2265         Adjust to record the location's owner in the bpstat.
2266         (watchpoint_check): Use the breakpoint pointer in the bpstat
2267         instead of the location's owner.
2268         (bpstat_check_breakpoint_conditions): Don't handle
2269         bp_watchpoint_scope here.  Use the breakpoint pointer in the
2270         bpstat instead of the location's owner.
2271         (bpstat_stop_status): Defer inferior function calls to after
2272         building the bpstat list.  Handle bp_watchpoint_scope here.  Use
2273         the breakpoint pointer in the bpstat instead of the location's
2274         owner.
2275         (bpstat_what): Use the breakpoint pointer in the bpstat instead of
2276         the location's owner.
2277         (free_bp_location): Don't walk bpstats clearing locations.
2278         (incref_bp_location): New.
2279         (decref_bp_location): New.
2280         (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
2281         instead of the location's owner.
2282         (update_global_location_list): Clear the location's owner, and
2283         decrement the location's reference count instead of deleting it
2284         right away.
2285         (breakpoint_retire_moribund): Decrement the location's reference
2286         count instead of deleting it right away.
2287         (bpstat_remove_bp_location): Delete.
2288         (bpstat_remove_breakpoint): New.
2289         (bpstat_remove_bp_location_callback): Delete.
2290         (bpstat_remove_breakpoint_callback): New.
2291         (delete_breakpoint): Iterate over all threads' stop_bpstat's
2292         clearing references to the breakpoint that is being deleted.
2293
2294         * breakpoint.h (struct bp_location) <refc>: New field.
2295         <owner>: Update comments.
2296         (bpstat_free): Delete declaration.
2297         (struct bpstats): Change the type of the breakpoint_at field to
2298         struct breakpoint point, from struct bp_location pointer.  Add new
2299         field bp_location_at.
2300
2301 2010-08-16  Tom Tromey  <tromey@redhat.com>
2302
2303         * NEWS: Fix typo.
2304
2305 2010-08-16  Tom Tromey  <tromey@redhat.com>
2306
2307         * NEWS: Mention watch -location.
2308
2309 2010-08-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2310
2311         * breakpoint.c (update_watchpoint): Add source empty line.  Prefer
2312         EXP_STRING_REPARSE to EXP_STRING.
2313         (watch_command_1): Set also EXP_STRING_REPARSE.
2314         (delete_breakpoint): Free also EXP_STRING_REPARSE.
2315         * breakpoint.h (struct breakpoint): New field exp_string_reparse.
2316         Update comment for exp_string.
2317
2318 2010-08-16  Tom Tromey  <tromey@redhat.com>
2319
2320         * value.c (release_value): Clear 'next' pointer.
2321         * breakpoint.c (watch_command_1): Add 'just_location' argument.
2322         (watch_command_wrapper): Update.
2323         (watch_maybe_just_location): New function.
2324         (watch_command): Update.
2325         (rwatch_command_wrapper): Update.
2326         (rwatch_command): Update.
2327         (awatch_command_wrapper): Update.
2328         (awatch_command): Update.
2329         (check_for_argument): New function.
2330         (_initialize_breakpoint): Update help text.
2331
2332 2010-08-14  Ulrich Weigand  <uweigand@de.ibm.com>
2333
2334         * arm-tdep.c (arm_push_dummy_call): Handle pointers to
2335         typedef'ed function types correctly.
2336
2337 2010-08-13  Tom Tromey  <tromey@redhat.com>
2338
2339         * python/python-internal.h (gdbpy_get_hook_function): Don't
2340         declare.
2341
2342 2010-08-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2343
2344         * cli/cli-logging.c (logging_overwrite, logging_redirect): Make them
2345         static.
2346
2347 2010-08-13  Ken Werner  <ken.werner@de.ibm.com>
2348
2349         * python/python.c (gdbpy_solib_name): Remove the const qualifier of
2350         the format strings to be compatible with Python 2.4.
2351
2352 2010-08-13  Vladimir Prus  <vladimir@codesourcery.com>
2353
2354         Easier and more stubborn MI memory read commands.
2355
2356         * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
2357         and data-write-memory-bytes.
2358         * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
2359         (mi_cmd_data_write_memory_bytes): New.
2360         * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
2361         (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
2362         New.
2363         (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
2364         * target.c (target_read_until_error): Remove.
2365         (read_whatever_is_readable, free_memory_read_result_vector)
2366         (read_memory_robust): New.
2367         * target.h (target_read_until_error): Remove.
2368         (struct memory_read_result, free_memory_read_result_vector)
2369         (read_memory_robust): New.
2370
2371 2010-08-13  Hui Zhu  <teawater@gmail.com>
2372
2373         * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
2374         (read_comp_unit): Initialize back_to.
2375
2376 2010-08-12  Daniel Jacobowitz  <dan@codesourcery.com>
2377             Pedro Alves  <pedro@codesourcery.com>
2378
2379         * dwarf2read.c: Include "c-lang.h" and "valprint.h".
2380         (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
2381         (struct partial_die_info) <has_template_arguments>: New field.
2382         <num_attrs>: Change type to unsigned char.
2383         <building_fullname>: New field.
2384         (dwarf2_build_psymtabs_hard): Set reading_partial_symbols.  Only
2385         allocate a CU if we don't have one already.  Add a cleanup for the
2386         CU.
2387         (partial_die_full_name): Handle template arguments not in
2388         DW_AT_name.
2389         (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
2390         (load_full_comp_unit): Only allocate a CU if we don't have one
2391         already.
2392         (do_ui_file_peek_last): New.
2393         (dwarf2_compute_name): Handle template parameters not in
2394         DW_AT_name.
2395         (read_comp_unit): Read and free abbrevs if not read yet.
2396         (load_partial_dies): Handle template arguments not in DW_AT_name.
2397         (find_partial_die): If we have a CU, but no a partial dies yet,
2398         also read in the CU.
2399         (dwarf2_const_value_attr): New, abstracted out from
2400         dwarf2_const_value.
2401         (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
2402         dwarf2_const_value_attr.
2403         (determine_prefix): Detect and break loops created by RCVT's debug
2404         info.
2405         (maybe_queue_comp_unit): Bail out early if reading partial
2406         symbols.
2407         (follow_die_offset): Load full CU if we have no dies.
2408         * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
2409         * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
2410
2411 2010-08-11  Tom Tromey  <tromey@redhat.com>
2412             Phil Muldoon  <pmuldoon@redhat.com>
2413
2414         * python/python.c (gdbpy_run_events): New function.
2415         (gdbpy_post_event): Likewise.
2416         (gdbpy_initialize_events): Likewise.
2417         (_initialize_python): Call gdbpy_initialize_events.
2418
2419 2010-08-11  Ken Werner  <ken.werner@de.ibm.com>
2420
2421         * gdb/valarith.c (vector_binop): New function.
2422         (scalar_binop): Likewise.
2423         (value_binop): Call scalar_binop or vector_binop depending on the types.
2424         * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
2425         (evaluate_subexp_with_coercion): Add vector check to not convert vectors
2426         to pointers.
2427         * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
2428
2429 2010-08-11  Brad Roberts  <braddr@puremagic.com>
2430
2431         * d-lang.c (extract_identifiers): Handle multiple digits.
2432
2433 2010-08-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
2434
2435         Code cleanup.
2436         * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
2437         Rename to dummy_frame_unwind.
2438         (dummy_frame_unwind): Remove.
2439         * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
2440         * frame-unwind.c (frame_unwind_init): Use address of
2441         dummy_frame_unwind and inline_frame_unwind.
2442         * frame.c (create_sentinel_frame): Use address of
2443         sentinel_frame_unwind.
2444         * inline-frame.c (inline_frame_unwinder): Rename to
2445         inline_frame_unwind.
2446         (inline_frame_unwind): Remove.
2447         * inline-frame.h (inline_frame_unwind): Reference directly the struct.
2448         * sentinel-frame.c (sentinel_frame_unwinder): Rename to
2449         sentinel_frame_unwind.
2450         (sentinel_frame_unwind): Remove.
2451         * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
2452         struct.
2453
2454 2010-08-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
2455
2456         Code cleanup.
2457         * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
2458         and returned value.  New comment from frame-unwind.h.
2459         * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
2460         Extend the comment.
2461         * frame.c (get_frame_id, frame_unwind_register_value)
2462         (create_new_frame, get_prev_frame_1, frame_unwinder_is)
2463         (get_frame_type, frame_unwind_arch): Do not use the return value of
2464         frame_unwind_find_by_frame.
2465
2466 2010-08-11  Phil Muldoon  <pmuldoon@redhat.com>
2467             Thiago Jung Bauermann  <bauerman@br.ibm.com>
2468             Tom Tromey  <tromey@redhat.com>
2469
2470         * python/python.c (gdbpy_solib_address):  New function.
2471         (gdbpy_decode_line): Likewise.
2472
2473 2010-08-10  Tom Tromey  <tromey@redhat.com>
2474
2475         Revert gdb-add-index addition:
2476         * Makefile.in (install-only): Don't install gdb-add-index.
2477         * gdb-add-index.sh: Remove.
2478
2479 2010-08-09  Kevin Buettner  <kevinb@redhat.com>
2480
2481         * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
2482         `target_has_execution' check with `to_has_memory' check.
2483         (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
2484         (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
2485         with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
2486
2487 2010-08-09  Kevin Buettner  <kevinb@redhat.com>
2488
2489         * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
2490         (resume_siggnal, resume_step): Move these static globals...
2491         (struct sim_inferior_data): ...into this new struct.
2492         (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
2493         New static globals.
2494         (gdb_callback, callbacks_initialized): Move these globals to
2495         a point earlier in the file.
2496         (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
2497         (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
2498         (gdbsim_close_inferior, gdbsim_resume_inferior)
2499         (gdbsim_stop_inferior): New functions.
2500         (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
2501         New constants.
2502         (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
2503         (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
2504         (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
2505         (gdbsim_xfer_inferior_memory, gdbsim_files_info)
2506         (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
2507         (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
2508         new local variable `sim_data' in each of these functions.  Use
2509         `sim_data' to reference former globals `program_loaded',
2510         `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
2511         `resume_step'.
2512         (gdbsim_open): Remove local variable `argv'.  Put results of call
2513         to `gdb_buildargv' in `sim_argv' rather than in `argv'.  Don't
2514         make a cleanup for it.  Free it though when a sim instance cannot
2515         be obtained.
2516         (gdbsim_close): Free sim_argv and null it out as appropriate.
2517         Close sim instances in all inferiors.
2518         (gdbsim_cntrl_c): Stop all inferiors.
2519         (gdbsim_wait): 
2520         (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
2521
2522 2010-08-09  Sami Wagiaalla  <swagiaal@redhat.com>
2523
2524         * dwarf2read.c (new_symbol): Add symbol to variable list at end of
2525         function after symbol construction is complete.
2526         Do the same for template symbol addition to template_symbols list.
2527
2528 2010-08-09  Sami Wagiaalla  <swagiaal@redhat.com>
2529
2530         * symtab.c (symbol_get_demangled_name): Remove assertion and
2531         return NULL when language_specific.cplus_specific is not initialized.
2532         * stabsread.c (define_symbol): Set the name before calling
2533         cp_scan_for_anonymous_namespaces.
2534
2535 2010-08-09  Sami Wagiaalla  <swagiaal@redhat.com>
2536
2537         * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
2538         SYMBOL_SET_LANGUAGE.
2539         (symbol_init_language_specific): Renamed to symbol_set_language.
2540         * symtab.c (symbol_init_language_specific): Removed redundant check
2541         for language_cplus.
2542         Renamed to symbol_set_language.
2543         * stabsread.c (define_symbol): Updated.
2544         (read_enum_type): Updated
2545         * psymtab.c (add_psymbol_to_bcache): Updated.
2546         * minsyms.c (install_minimal_symbols): Updated.
2547         * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
2548         SYMBOL_LANGUAGE to set the language.
2549         * minsyms.c (prim_record_minimal_symbol_full): Ditto.
2550         * mdebugread.c (new_symbol): Ditto.
2551         * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
2552         * dwarf2read.c (new_symbol_full): Ditto.
2553         * jv-lang.c (add_class_symbol): Ditto.
2554
2555 2010-08-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
2556
2557         * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
2558         (make_cleanup_restore_page_info)
2559         (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
2560         * gdbcmd.h (execute_command_to_string): New declaration.
2561         * python/python.c (struct restore_ui_file_closure, restore_ui_file)
2562         (make_cleanup_restore_ui_file): Move to utils.c
2563         (execute_gdb_command) <to_string>: Move ...
2564         * top.c (execute_command_to_string): ... here.  Call
2565         set_batch_flag_and_make_cleanup_restore_page_info.
2566         * utils.c (make_cleanup_restore_integer): New source file blank line.
2567         (make_cleanup_restore_uinteger): New.
2568         (struct restore_ui_file_closure, do_restore_ui_file)
2569         (make_cleanup_restore_ui_file): Move here from python/python.c.
2570         (init_page_info) <batch_flag>
2571         (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
2572         (set_batch_flag_and_make_cleanup_restore_page_info): New.
2573
2574 2010-08-06  Maciej W. Rozycki  <macro@codesourcery.com>
2575
2576         * thread.c (add_thread_silent): Use null_ptid instead of
2577         minus_one_ptid while getting rid of stale inferior_ptid.
2578
2579 2010-08-06  Corinna Vinschen  <vinschen@redhat.com>
2580
2581         * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
2582         Throughout, call read_encoded_value with ptr_size rather than addr_size.
2583         (decode_frame_entry_1): Remove redundant setting of
2584         addr_size.  Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
2585         to determine addr_size in Dwarf versions < 4.  Set ptr_size dependent
2586         on examined frame section.  Add comment to explain why.
2587         * gdbarch.sh (dwarf2_addr_size): Define as variable.  Add lengthy
2588         comment to explain usage.
2589         * gdbarch.c: Regenerate.
2590         * gdbarch.h: Regenerate.
2591
2592         * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
2593
2594 2010-08-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2595
2596         Code cleanup.
2597         * varobj.c (varobj_create): Move variables fi, old_fi and block to
2598         a more inner block.
2599
2600 2010-08-05  Pedro Alves  <pedro@codesourcery.com>
2601
2602         * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
2603         (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
2604         (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
2605         (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
2606         linux-tdep.o to gdb_target_obs.
2607
2608 2010-08-05  Marc Khouzam  <marc.khouzam@ericsson.com>
2609
2610         * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
2611         argument.
2612
2613 2010-08-05  Hui Zhu  <teawater@gmail.com>
2614
2615         * mips-linux-tdep.c(regset.h): New include.
2616         (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
2617         mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
2618         mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
2619         mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
2620         mips_linux_regset_from_core_section): New functions.
2621         (fetch_core_registers, regset_core_fns): Deleted.
2622         (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
2623         Deleted regset_core_fns.
2624         * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
2625         tdep->gregset64, tdep->fpregset and tdep->fpregset64.
2626         * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
2627         and fpregset64.
2628
2629 2010-08-04  Pedro Alves  <pedro@codesourcery.com>
2630
2631         * s390-tdep.c: Include linux-tdep.h.
2632         (s390_gdbarch_init): Call linux_init_abi.
2633
2634 2010-08-04  Pedro Alves  <pedro@codesourcery.com>
2635
2636         * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
2637         instead of printing "Thread" here.
2638         * linux-tdep.c: Include inferior.h.
2639         (linux_core_pid_to_str): New.
2640         (linux_init_abi): New.
2641         * linux-tdep.h (linux_init_abi): Declare.
2642         * alpha-linux-tdep.c: Include linux-tdep.h.
2643         (alpha_linux_init_abi): Call linux_init_abi.
2644         * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
2645         * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
2646         * frv-linux-tdep.c: Include linux-tdep.h
2647         (frv_linux_init_abi): Call linux_init_abi.
2648         * hppa-linux-tdep.c: Include linux-tdep.h
2649         (hppa_linux_init_abi): Call linux_init_abi.
2650         * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
2651         * ia64-linux-tdep.c: Include linux-tdep.h.
2652         (ia64_linux_init_abi): Call linux_init_abi.
2653         * m32r-linux-tdep.c: Include linux-tdep.h.
2654         (m32r_linux_init_abi): Call linux_init_abi.
2655         * m68klinux-tdep.c: Include linux-tdep.h.
2656         (m68k_linux_init_abi): Call linux_init_abi.
2657         * microblaze-linux-tdep.c: Include linux-tdep.h.
2658         (microblaze_linux_init_abi): Call linux_init_abi.
2659         * mips-linux-tdep.c: Include linux-tdep.h.
2660         (mips_linux_init_abi): Call linux_init_abi.
2661         * mn10300-linux-tdep.c: Include linux-tdep.h.
2662         (am33_linux_init_osabi): Call linux_init_abi.  Rename the
2663         'gdbinfo' parameter to 'info'.
2664         * ppc-linux-tdep.c: Include linux-tdep.h.
2665         (ppc_linux_init_abi): Call linux_init_abi.
2666         * sh-linux-tdep.c: Include linux-tdep.h.
2667         (sh_linux_init_abi): Call linux_init_abi.
2668         * sparc-linux-tdep.c: Include linux-tdep.h.
2669         (sparc32_linux_init_abi): Call linux_init_abi.
2670         * sparc64-linux-tdep.c: Include linux-tdep.h.
2671         (sparc64_linux_init_abi): Call linux_init_abi.
2672         * xtensa-linux-tdep.c: Include linux-tdep.h.
2673         (xtensa_linux_init_abi): Call linux_init_abi.
2674         * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
2675         (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
2676         callback.
2677
2678 2010-08-03  Doug Evans  <dje@google.com>
2679
2680         * breakpoint.c (bpdisp_text): Constify bpdisps.
2681         * solib-svr4.c (solib_break_names): Constify.
2682         (bkpt_names, main_name_list): Constify.
2683         (match_main): Constify soname arg.
2684         (bfd_lookup_symbol): Remove unnecessary forward decl.
2685         Constify symname arg.
2686         (enable_break): Constify bkpt_namep.
2687         * symtab.c (search_symbols): Constify types, types2, types3, types4.
2688         (symtab_symbol_info): Constify classnames.
2689
2690 2010-08-03  Phil Muldoon  <pmuldoon@redhat.com>
2691
2692         * NEWS: Document Python value inferior function calls.
2693
2694 2010-08-02  Doug Evans  <dje@google.com>
2695
2696         * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
2697
2698 2010-07-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
2699
2700         * linux-thread-db.c (libthread_db_debug): New variable.
2701         (thread_db_find_new_threads_silently): Control verbosity with it.
2702         (try_thread_db_load_1, try_thread_db_load): Likewise.
2703         (find_new_threads_once): Likewise.
2704         (_initialize_thread_db): Set/show it.
2705
2706 2010-07-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
2707
2708         * common/signals.c (signals): Move the content to signals.def.
2709         Include it.  Remove the INDENT comments.
2710
2711 2010-07-30  Tom Tromey  <tromey@redhat.com>
2712
2713         * Makefile.in (install-only): Install gdb-add-index.
2714         * gdb-add-index.sh: New file.
2715
2716 2010-07-31  Renquan Cheng  <crq@gcc.gnu.org>
2717
2718         * MAINTAINERS: Add myself for write after approval privileges.
2719
2720 2010-07-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
2721
2722         * symfile.c (addr_section_name): New function.
2723         (addrs_section_compar): Use it.
2724         (addr_info_make_relative): Use it.  Move variable sect_name into a more
2725         inner block.  Make ".dynbss" and ".sdynbss" checks more strict.
2726
2727 2010-07-30  Tom Tromey  <tromey@redhat.com>
2728
2729         * configure: Rebuild.
2730         * configure.ac: Add missing case for Python 2.7.
2731
2732 2010-07-29  DJ Delorie  <dj@redhat.com>
2733
2734         * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
2735         conditions.
2736
2737 2010-07-29  Pedro Alves  <pedro@codesourcery.com>
2738
2739         * PROBLEMS: Remove mention of all problems.
2740
2741 2010-07-28  Pedro Alves  <pedro@codesourcery.com>
2742
2743         PR build/11848
2744         * configure.ac: Check for wresize.
2745         * configure, config.in: Regenerate.
2746         * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
2747         with HAVE_WRESIZE.
2748
2749 2010-07-28  Tom Tromey  <tromey@redhat.com>
2750
2751         PR python/11060:
2752         * python/py-type.c (typy_legacy_template_argument): New function,
2753         extracted from typy_template_argument.
2754         (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT.  Return a
2755         value when needed.
2756
2757 2010-07-28  Oleg Nesterov  <oleg@redhat.com>
2758
2759         * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
2760
2761 2010-07-27  Tom Tromey  <tromey@redhat.com>
2762
2763         * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
2764
2765 2010-07-28  Daniel Jacobowitz  <dan@codesourcery.com>
2766
2767         * dwarf2read.c (read_subroutine_type): Improve THIS detection,
2768         handling DW_AT_object_pointer, and workaround GCC PR 43053.
2769
2770 2010-07-28  Tom Tromey  <tromey@redhat.com>
2771
2772         * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
2773
2774 2010-07-28  Joel Brobecker  <brobecker@adacore.com>
2775
2776         * remote.c (remote_download_tracepoint): Add missing gettext markup.
2777         * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
2778
2779 2010-07-28  Joel Brobecker  <brobecker@adacore.com>
2780
2781         * breakpoint.c (breakpoint_re_set_one): Move call to set_language
2782         down, just before the block that parse the breakpoint addr_string.
2783
2784 2010-07-28  Tom Tromey  <tromey@redhat.com>
2785
2786         PR c++/9946:
2787         * symfile.c (reread_symbols): Clear template_symbols.
2788         * symtab.h (struct symbol) <is_cplus_template_function>: New
2789         field.
2790         (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
2791         (struct template_symbol): New.
2792         * symtab.c (lookup_symbol_aux_local): Use
2793         cp_lookup_symbol_imports_or_template.
2794         * objfiles.h (struct objfile) <template_symbols>: New field.
2795         * objfiles.c (relocate_one_symbol): New function.
2796         (objfile_relocate1): Use it.  Relocate isolated symbols.
2797         * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
2798         template_arguments>: New fields.
2799         (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
2800         (TYPE_TEMPLATE_ARGUMENTS): Likewise.
2801         (TYPE_TEMPLATE_ARGUMENT): Likewise.
2802         (lookup_typename): Update.
2803         * gdbtypes.c (lookup_typename): Constify "block" argument.
2804         * dwarf2read.c: Include vec.h.
2805         (symbolp): New typedef.
2806         (read_func_scope): Read template arguments.  Allocate a
2807         template_symbol when needed.
2808         (read_structure_type): Read template arguments.
2809         (new_symbol_full): New function, from new_symbol.  Handle
2810         DW_TAG_template_type_param and DW_TAG_template_value_param.
2811         (new_symbol): Rewrite as wrapper.
2812         * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
2813         * cp-namespace.c: Include language.h.
2814         (search_symbol_list): New function.
2815         (cp_lookup_symbol_imports_or_template): Likewise.
2816
2817 2010-07-28  Balazs Kezes  <rlblaster@gmail.com>
2818
2819         * tui/tui-win.c (make_visible_with_new_height): Resize and move
2820         the command window to the new size and position.
2821
2822 2010-07-28  Balazs Kezes  <rlblaster@gmail.com>
2823
2824         * tui/tui-win.c (tui_resize_all): Update the locator's origin's
2825         coordinates.
2826
2827 2010-07-28  Balazs Kezes  <rlblaster@gmail.com>
2828
2829         * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
2830         after a detecting a resize.
2831         * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
2832         call.
2833
2834 2010-07-28  Pedro Alves  <pedro@codesourcery.com>
2835
2836         * configure.ac: Check for resize_term.
2837         * configure, config.in: Regenerate.
2838
2839 2010-07-27  Joel Brobecker  <brobecker@adacore.com>
2840
2841         * MAINTAINERS (Write After Approval): Reorder a couple of entries.
2842
2843 2010-07-27  Daniel Jacobowitz  <dan@codesourcery.com>
2844
2845         * dwarf2read.c (read_string): Rename to ...
2846         (read_direct_string): ... this.
2847         (skip_one_die, read_attribute_value, dwarf_decode_line_header)
2848         (dwarf_decode_lines, dwarf_decode_macros): Adjust.
2849
2850 2010-07-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2851
2852         * linux-nat.c (linux_nat_lp_status_is_event): New function.
2853         (count_events_callback, select_event_lwp_callback)
2854         (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
2855
2856 2010-07-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2857
2858         * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
2859         (_initialize_ia64_linux_nat): Install it.
2860         * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
2861         (linux_nat_set_status_is_event): New.
2862         (stop_wait_callback, count_events_callback, select_event_lwp_callback)
2863         cancel_breakpoints_callback, linux_nat_filter_event)
2864         (linux_nat_wait_1): Use linux_nat_status_is_event.
2865         * linux-nat.h (linux_nat_set_status_is_event): New prototype.
2866
2867 2010-07-27  Tom Tromey  <tromey@redhat.com>
2868
2869         * NEWS: Mention labels, .gdb_index.
2870
2871 2010-07-28  CHENG Renquan  <rqcheng@smu.edu.sg>
2872
2873         * cli/cli-cmds.c (disassemble_command): Add support of disassemble
2874         "start,+length" form of arguments.
2875         * NEWS: Add "Changed commands" (disassemble) section for "Changes
2876         since GDB 7.1"; and merge two separated paragraphs of disassemble
2877         description in "Changes in GDB 7.0".
2878
2879 2010-07-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2880
2881         * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
2882         * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
2883         (fputs_maybe_filtered): Do not do filtering also on
2884         ! INPUT_FROM_TERMINAL_P.
2885
2886 2010-07-27  Joel Brobecker  <brobecker@adacore.com>
2887
2888         * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
2889         in warning message.
2890
2891 2010-07-27  Phil Muldoon  <pmuldoon@redhat.com>
2892
2893         * python/py-value.c (valpy_call): New Function.
2894
2895 2010-07-27  Ken Werner  <ken.werner@de.ibm.com>
2896
2897         * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
2898         types_list_elements variables.
2899
2900 2010-07-26  Tom Tromey  <tromey@redhat.com>
2901
2902         * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
2903         TLS with DW_OP_const4u or DW_OP_const8u.
2904
2905 2010-07-26  Thiago Jung Bauermann  <bauerman@br.ibm.com>
2906
2907         * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
2908         VSX registers contents.
2909
2910 2010-07-26  Jerome Guitton  <guitton@adacore.com>
2911
2912         * dwarf2read.c (add_partial_symbol): Do not add a global variable if
2913         its adress is null. Add comment to explain why.
2914         (new_symbol): Ditto.
2915
2916 2010-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
2917
2918         * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
2919         the host signal first.
2920
2921 2010-07-23  Tom Tromey  <tromey@redhat.com>
2922
2923         * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
2924         type_comp_units>: New fields.
2925         (dw2_get_cu): New function.
2926         (create_cus_from_index): Remove unused argument.
2927         (create_signatured_type_hash_from_index): New function.
2928         (create_addrmap_from_index): Update.
2929         (dwarf2_read_index): Handle version 2.
2930         (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
2931         (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
2932         (dw2_print_stats, dw2_expand_all_symtabs)
2933         (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
2934         (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
2935         (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
2936         (allocate_signatured_type_hash_table): New function.
2937         (add_signatured_type_cu_to_list): Likewise.
2938         (create_debug_types_hash_table): Use them.  Set type_comp_units.
2939         (read_signatured_type): Ensure section data is available.
2940         (add_address_entry): Don't record empty ranges.
2941         (struct signatured_type_index_data): New.
2942         (write_one_signatured_type): New function.
2943         (write_psymtabs_to_index): Write type CUs.
2944         (save_gdb_index_command): Update comment.
2945         (process_type_comp_unit): Move inititalization of
2946         from_debug_types...
2947         (create_debug_types_hash_table): ... here.
2948
2949 2010-07-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
2950
2951         * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
2952         cleanup and generating of gdb script to it.
2953         (gdb): Use redirection from /dev/null.  Use --nx.  Turn off pagination
2954         and terminal size.  Convert $tmpfile to a series of -ex-es.
2955
2956 2010-07-23  Keith Seitz  <keiths@redhat.com>
2957
2958         * symtab.c (basic_lookup_transparent_type): Call pre-expand
2959         hook for STATIC_BLOCK types, too.
2960
2961 2010-07-23  Keith Seitz  <keiths@redhat.com>
2962
2963         * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
2964         and vector definition.
2965
2966 2010-07-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
2967
2968         * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
2969
2970 2010-07-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
2971
2972         * dwarf2read.c: Include completer.h.
2973         (save_gdb_index_command): Use matching usage command name.
2974         (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
2975         Set filename_completer for it.
2976
2977 2010-07-22  Tom Tromey  <tromey@redhat.com>
2978
2979         * dwarf2read.c (create_debug_types_hash_table): Set objfile on
2980         type signature's per-CU data.
2981
2982 2010-07-22  Pedro Alves  <pedro@codesourcery.com>
2983
2984         * NEWS: Mention target reported shared libraries support by
2985         default.
2986
2987 2010-07-21  Pedro Alves  <pedro@codesourcery.com>
2988
2989         PR symtab/11827
2990
2991         Revert:
2992         2010-05-21  Pierre Muller  <muller@ics.u-strasbg.fr>
2993         * dwarf2read.c (process_die): Also allow DW_TAG_const_type
2994         and DW_TAG_volatile_type.
2995         (new_symbol): Likewise.
2996
2997 2010-07-21  Sami Wagiaalla  <swagiaal@redhat.com>
2998
2999         * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
3000         function symbols before overload resolution.
3001
3002 2010-07-21  Pedro Alves  <pedro@codesourcery.com>
3003
3004         * breakpoint.c (bptype_string): New, abstracted out from
3005         print_one_breakpoint_location.
3006         (print_one_breakpoint_location): Adjust.
3007         (breakpoint_1): Adjust the type column width dynamically.
3008
3009 2010-07-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3010
3011         * symfile.c (find_separate_debug_file_by_debuglink): Remove
3012         a gdb_assert call, new comment.
3013
3014 2010-07-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3015
3016         * linux-nat.c (linux_handle_extended_wait): Handle case when
3017         event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
3018
3019 2010-07-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3020
3021         Code cleanup.
3022         * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
3023         linux_nat_wait_1.  Use always LP->STATUS afterwards.
3024
3025 2010-07-20  Hui Zhu  <teawater@gmail.com>
3026
3027         * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
3028         (inf_ptrace_attach): Ditto.
3029
3030 2010-07-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3031
3032         Make core files the process_stratum.
3033         * corefile.c (core_target): New variable.
3034         (core_file_command): Remove variable t, use core_target.
3035         * corelow.c (core_ops): Make it static.
3036         (init_core_ops): Change to process_stratum.  Initialize CORE_TARGET.
3037         * defs.h (make_cleanup_unpush_target): New prototype.
3038         * gdbarch.h: Regenerate.
3039         * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
3040         * gdbcore.h (core_target): New declaration.
3041         * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
3042         variables ops_already_pushed and back_to.  Use push_target,
3043         make_cleanup_unpush_target and discard_cleanups calls.
3044         * record.c (record_open): Replace core_stratum by a core_bfd check.
3045         * target.c (target_is_pushed): New function.
3046         (find_core_target): Remove.
3047         * target.h (enum strata) <core_stratum>: Remove.
3048         (target_is_pushed): New declaration.
3049         (find_core_target): Remove declaration.
3050         * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
3051         * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
3052
3053 2010-07-19  Hui Zhu  <teawater@gmail.com>
3054
3055         * breakpoint.c (single_step_breakpoints_inserted): New
3056         function.
3057         * breakpoint.h (single_step_breakpoints_inserted): Extern.
3058         * infrun.c (maybe_software_singlestep): Add check code.
3059         * record.c (record_resume): Add code for software single step.
3060         (record_wait): Ditto.
3061
3062 2010-07-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
3063
3064         * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
3065         a more inner block.  Remove its unused declaration initializer.
3066
3067 2010-07-16  Thiago Jung Bauermann  <bauerman@br.ibm.com>
3068
3069         * NEWS: Mention support for the new ptrace interface and hardware
3070         accelerated watchpoint conditions on powerpc-linux.
3071
3072 2010-07-16  Ozkan Sezer  <sezeroz@gmail.com>
3073
3074         * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
3075         long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
3076         and host_address_to_string() and %s for pointers.
3077         (debug_to_remove_breakpoint): Likewise.
3078         (debug_to_region_ok_for_hw_watchpoint): Likewise.
3079         (debug_to_can_accel_watchpoint_condition): Likewise.
3080         (debug_to_stopped_data_address): Likewise.
3081         (debug_to_watchpoint_addr_within_range): Likewise.
3082         (debug_to_insert_hw_breakpoint): Likewise.
3083         (debug_to_remove_hw_breakpoint): Likewise.
3084         (debug_to_insert_watchpoint): Likewise.
3085         (debug_to_remove_watchpoint): Likewise.
3086
3087 2010-07-16  Sami Wagiaalla  <swagiaal@redhat.com>
3088
3089         * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
3090         argument.
3091         (cplus_specific): New struct.
3092         * symtab.c (symbol_set_demangled_name): Updated.
3093         Use cplus_specific for cplus symbols.
3094         (symbol_get_demangled_name): Retrive the name from the cplus_specific
3095         struct for cplus symbols.
3096         (symbol_init_language_specific): Set cplus_specific for cplus symbols.
3097         (symbol_set_names): Pass objfile to symbol_set_demangled_name.
3098         * symtab.c (symbol_init_cplus_specific): New function.
3099
3100 2010-07-16  Sami Wagiaalla  <swagiaal@redhat.com>
3101
3102         * symtab.h (symbol_set_demangled_name): New function.
3103         (symbol_get_demangled_name): New function.
3104         * symtab.c (symbol_set_demangled_name): New function.
3105         (symbol_get_demangled_name): New function.
3106         (symbol_init_language_specific): Use demangled_name setter and getter.
3107         (symbol_set_names): Ditto.
3108         (symbol_natural_name): Ditto.
3109         (symbol_demangled_name): Ditto.
3110         * dwarf2read.c (new_symbol): Ditto.
3111
3112 2010-07-16  Sami Wagiaalla  <swagiaal@redhat.com>
3113
3114         * symtab.h: Renamed cplus_specific to mangled_lang.
3115         * symtab.c (symbol_init_language_specific): Updated.
3116         (symbol_set_names): Updated.
3117         (symbol_natural_name): Updated.
3118         (symbol_demangled_name): Updated.
3119         * ada-lang.c (ada_decode_symbol): Updated.
3120         * dwarf2read.c (new_symbol): Updated.
3121
3122 2010-07-14  Ken Werner  <ken.werner@de.ibm.com>
3123
3124         * valops.c (value_assign): Do not call to value_coerce_to_target.
3125         (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
3126
3127 2010-07-14  Ken Werner  <ken.werner@de.ibm.com>
3128
3129         * MAINTAINERS: Add myself for write after approval privileges.
3130
3131 2010-07-13  Emmanuel Thomé  <Emmanuel.Thome@gmail.com>
3132
3133         * c-valprint.c (c_val_print): Add embedded_offset to address in
3134         call to val_print_array_elements.
3135
3136 2010-07-13  Tom Tromey  <tromey@redhat.com>
3137
3138         * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
3139
3140 2010-07-13  Tom Tromey  <tromey@redhat.com>
3141
3142         * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
3143         objfile.
3144
3145 2010-07-13  Tom Tromey  <tromey@redhat.com>
3146
3147         * symfile.c (set_initial_language): Update.
3148         (deduce_language_from_filename): Argument type now const.
3149         * symtab.h (find_main_filename): Update.
3150         (deduce_language_from_filename): Update.
3151         * symtab.c (find_main_filename): Make result const.
3152         * dwarf2read.c (dw2_find_symbol_file): Change return type.
3153         * psymtab.c (find_symbol_file_from_partial): Change return type.
3154         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
3155         Make result const.
3156
3157 2010-07-13  Tom Tromey  <tromey@redhat.com>
3158
3159         * breakpoint.c (save_cmdlist): No longer static.
3160         * gdbcmd.h (save_cmdlist): Declare.
3161         * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
3162         OBJF_READNOW on objfile if readnow_symbol_files.
3163         * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
3164         (elf_sym_fns_gdb_index): New global.
3165         * dwarf2read.c: Include exceptions.h.
3166         (offset_type): New.
3167         (struct mapped_index): New.
3168         (dwarf2_per_cu_data_ptr): New typedef.
3169         (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
3170         New fields.
3171         (GDB_INDEX_SECTION): New define.
3172         (struct dwarf2_per_cu_quick_data): New.
3173         (struct dwarf2_per_cu_data) <objfile>: New field.
3174         <psymtab>: Removed.
3175         <v>: New field.
3176         (byte_swap): New function.
3177         (MAYBE_SWAP): New macro.
3178         (INDEX_SUFFIX): New macro.
3179         (dw2_do_instantiate_symtab): New function.
3180         (dw2_instantiate_symtab): Likewise.
3181         (create_cus_from_index): Likewise.
3182         (create_addrmap_from_index): Likewise.
3183         (mapped_index_string_hash): Likewise.
3184         (find_slot_in_mapped_hash): Likewise.
3185         (dwarf2_read_index): Likewise.
3186         (dw2_setup): Likewise.
3187         (dw2_require_line_header): Likewise.
3188         (dw2_require_full_path): Likewise.
3189         (dw2_find_last_source_symtab): Likewise.
3190         (dw2_forget_cached_source_info): Likewise.
3191         (dw2_lookup_symtab): Likewise.
3192         (dw2_lookup_symbol): Likewise.
3193         (dw2_do_expand_symtabs_matching): Likewise.
3194         (dw2_pre_expand_symtabs_matching): Likewise.
3195         (dw2_print_stats): Likewise.
3196         (dw2_dump): Likewise.
3197         (dw2_relocate): Likewise.
3198         (dw2_expand_symtabs_for_function): Likewise.
3199         (dw2_expand_all_symtabs): Likewise.
3200         (dw2_expand_symtabs_with_filename): Likewise.
3201         (dw2_find_symbol_file): Likewise.
3202         (dw2_map_ada_symtabs): Likewise.
3203         (dw2_expand_symtabs_matching): Likewise.
3204         (dw2_find_pc_sect_symtab): Likewise.
3205         (dw2_map_symbol_names): Likewise.
3206         (dw2_map_symbol_filenames): Likewise.
3207         (dw2_has_symbols): Likewise.
3208         (dwarf2_gdb_index_functions): New global.
3209         (dwarf2_initialize_objfile): New function.
3210         (process_psymtab_comp_unit): Update.
3211         (add_partial_subprogram): Likewise.
3212         (dwarf2_psymtab_to_symtab): Likewise.
3213         (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
3214         (process_full_comp_unit): Update.
3215         (find_file_and_directory): New function.
3216         (read_file_scope): Use find_file_and_directory.
3217         (dwarf2_per_cu_objfile): Update.
3218         (dwarf2_per_cu_addr_size): Update.
3219         (dwarf2_per_cu_offset_size): Update.
3220         (dwarf2_free_objfile): Free the index, if needed.
3221         (dwarf2_per_objfile_free): Unmap the index, if needed.
3222         (struct strtab_entry): New.
3223         (hash_strtab_entry): New function.
3224         (eq_strtab_entry): Likewise.
3225         (create_strtab): Likewise.
3226         (add_string): Likewise.
3227         (struct symtab_index_entry): New.
3228         (struct mapped_symtab): New.
3229         (hash_symtab_entry): New function.
3230         (eq_symtab_entry): Likewise.
3231         (delete_symtab_entry): Likewise.
3232         (create_index_table): Likewise.
3233         (create_mapped_symtab): Likewise.
3234         (cleanup_mapped_symtab): Likewise.
3235         (find_slot): Likewise.
3236         (hash_expand): Likewise.
3237         (add_index_entry): Likewise.
3238         (add_indices_to_cpool): Likewise.
3239         (write_hash_table): Likewise.
3240         (add_address_entry): Likewise.
3241         (write_psymbols): Likewise.
3242         (write_obstack): Likewise.
3243         (unlink_if_set): Likewise.
3244         (write_psymtabs_to_index): Likewise.
3245         (save_gdb_index_command): Likewise.
3246         (_initialize_dwarf2_read): Install "save gdb-index"
3247         command.
3248         (create_all_comp_units): Initialize 'objfile' field of CU.
3249         (dwarf2_locate_sections): Check for .gdb_index.
3250         * psymtab.h (dwarf2_gdb_index_functions): Declare.
3251         * symfile.h (dwarf2_initialize_objfile): Declare.
3252
3253 2010-07-13  Tom Tromey  <tromey@redhat.com>
3254
3255         * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
3256         (basic_lookup_transparent_type): Likewise.
3257         * symfile.h (struct quick_symbol_functions)
3258         <pre_expand_symtabs_matching>: New field.
3259         * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
3260         (psym_functions): Update.
3261
3262 2010-07-13  Tom Tromey  <tromey@redhat.com>
3263
3264         PR breakpoints/8357:
3265         * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
3266         * linespec.c (decode_line_1): Update comment.  Call decode_label.
3267         (decode_label): New function.
3268         (symbol_found): Handle LOC_LABEL.
3269         * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
3270         domain.  Call add_symbol_to_list.
3271
3272 2010-07-13  Tom Tromey  <tromey@redhat.com>
3273
3274         * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
3275         * dwarf2loc.c (find_location_expression): Use
3276         dwarf2_per_cu_text_offset.
3277         (dwarf2_evaluate_loc_desc): Likewise.
3278         (dwarf2_loc_desc_needs_frame): Likewise.
3279         (compile_dwarf_to_ax): Likewise.
3280         (loclist_describe_location): Likewise.
3281         * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
3282         (dwarf2_per_cu_objfile): Update comment.
3283
3284 2010-07-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
3285
3286         * dwarf2read.c (read_subrange_type): Call read_subrange_type.
3287         * p-lang.c (pascal_printstr): Likewise.
3288
3289 2010-07-09  Tom Tromey  <tromey@redhat.com>
3290
3291         * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
3292         'hint' if it is NULL.
3293
3294 2010-07-09  Hui Zhu  <teawater@gmail.com>
3295
3296         * source.c (print_source_lines_base): Add check for noprint.
3297
3298 2010-07-08  Joel Brobecker  <brobecker@adacore.com>
3299
3300         * python/python-config.py: Resync with Python 2.7 version of this
3301         script.
3302
3303 2010-07-08  Joel Brobecker  <brobecker@adacore.com>
3304
3305         * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
3306
3307 2010-07-07  Joel Brobecker  <brobecker@adacore.com>
3308
3309         * NEWS: Create a new section for the next release branch.
3310         Rename the section of the current branch, now that it has
3311         been cut.
3312
3313 2010-07-07  Joel Brobecker  <brobecker@adacore.com>
3314
3315         GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
3316         * version.in: Bump version to 7.2.50.20100707-cvs.
3317
3318 2010-07-07  Tom Tromey  <tromey@redhat.com>
3319
3320         * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
3321         LOC_COMPUTED symbol.
3322         * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
3323         (dwarf2_loc_desc_needs_frame): Likewise.
3324         (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
3325         * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
3326         * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
3327         * dwarf2-frame.c (execute_stack_op): Set 'offset' field.  Add
3328         'offset' argument.
3329         (struct dwarf2_frame_cache) <text_offset>: New field.
3330         (dwarf2_frame_cache): Set new field.
3331         (dwarf2_frame_prev_register): Update.
3332         (dwarf2_frame_sniffer): Update.
3333         (dwarf2_frame_base_sniffer): Update.
3334         (dwarf2_frame_find_fde): Add 'out_offset' argument.
3335
3336 2010-07-07  Sergio Durigan Junior  <sergiodj@linux.vnet.ibm.com>
3337             Thiago Jung Bauermann  <bauerman@br.ibm.com>
3338
3339         Support for hw accelerated condition watchpoints in booke powerpc.
3340
3341         * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
3342         and move to eval.c.  Change callers.
3343         (insert_bp_location): Pass watchpoint condition in
3344         target_insert_watchpoint.
3345         (remove_breakpoint_1) Pass watchpoint condition in
3346         target_remove_watchpoint.
3347         (watchpoint_locations_match): Call
3348         target_can_accel_watchpoint_condition.
3349         * eval.c: Include wrapper.h.
3350         (fetch_subexp_value): Moved from breakpoint.c.
3351         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
3352         Formatting fix.
3353         (can_use_watchpoint_cond_accel): New function.
3354         (calculate_dvc): Likewise.
3355         (num_memory_accesses): Likewise.
3356         (check_condition): Likewise.
3357         (ppc_linux_can_accel_watchpoint_condition): Likewise
3358         (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
3359         check_condition and calculate_dvc.
3360         (ppc_linux_remove_watchpoint): Likewise.
3361         (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
3362         ppc_linux_can_accel_watchpoint_condition
3363         * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
3364         condition.
3365         (debug_to_remove_watchpoint): Likewise.
3366         (debug_to_can_accel_watchpoint_condition): New function.
3367         (update_current_target): Set to_can_accel_watchpoint_condition.
3368         (setup_target_debug): Set to_can_accel_watchpoint_condition.
3369         * target.h: Add opaque declaration for struct expression.
3370         (struct target_ops) <to_insert_watchpoint>,
3371         <to_remove_watchpoint>: Add new arguments to pass the watchpoint
3372         <to_can_accel_watchpoint_condition>: New member.
3373         condition.  Update all callers and implementations.
3374         (target_can_accel_watchpoint_condition): New macro.
3375         * value.c (free_value_chain): New function.
3376         * value.h (fetch_subexp_value): New prototype.
3377         (free_value_chain): Likewise.
3378
3379 2010-07-07  Ulrich Weigand  <uweigand@de.ibm.com>
3380
3381         * linux-nat.c (linux_nat_do_thread_registers): Use section size
3382         from gdbarch_core_regset_sections also for .reg if present.
3383
3384         * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
3385         section size for .reg.
3386         * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
3387         (ppc_linux_vmx_regset_sections): Likewise.
3388         (ppc_linux_fp_regset_sections): Likewise.
3389         (ppc64_linux_vsx_regset_sections): New variable.
3390         (ppc64_linux_vmx_regset_sections): Likewise.
3391         (ppc64_linux_fp_regset_sections): Likewise.
3392         (ppc_linux_init_abi): Install core_regset_section lists appropriate
3393         for current word size.
3394
3395 2010-07-06  Joel Brobecker  <brobecker@adacore.com>
3396
3397         * server.c (myresume): Make static.
3398
3399 2010-07-06  Tom Tromey  <tromey@redhat.com>
3400
3401         * configure, config.in: Rebuild.
3402         * configure.ac (HAVE_LIBPYTHON2_7): New define.
3403         * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
3404
3405 2010-07-06  Andreas Schwab  <schwab@linux-m68k.org>
3406
3407         * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
3408         "clear".
3409
3410 2010-07-06  Ken Werner  <ken.werner@de.ibm.com>
3411
3412         * gdbtypes.h (floatformats_ieee_half): Add declaration.
3413         * gdbtypes.c (floatformats_ieee_half): New variable.
3414         * doublest.c (floatformat_from_length): Set format to
3415         gdbarch_half_format if length matches.
3416         * gdbarch.sh (half_bit): New architecture method.
3417         (half_format): Likewise.
3418         * gdbarch.h: Regenerate.
3419         * gdbarch.c: Likewise.
3420
3421 2010-07-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3422             Joel Brobecker  <brobecker@adacore.com>
3423
3424         Fix re-run of PIE executable, PR shlibs/11776.
3425         * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
3426         the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
3427
3428 2010-07-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3429             Joel Brobecker  <brobecker@adacore.com>
3430
3431         * auxv.c (memory_xfer_auxv): Update attach comment.
3432         * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
3433         svr4_relocate_main_executable.
3434         (svr4_solib_create_inferior_hook): Make the call to
3435         svr4_relocate_main_executable unconditional.
3436
3437 2010-07-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3438             Joel Brobecker  <brobecker@adacore.com>
3439
3440         * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
3441
3442 2010-07-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3443             Joel Brobecker  <brobecker@adacore.com>
3444
3445         Fix attaching to PIEs prelinked on the disk after the process was
3446         started.
3447         * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
3448         Verify it against bfd_get_arch_size.  Try to match arbitrary
3449         displacement for the phdrs comparison.
3450
3451 2010-07-02  Tom Tromey  <tromey@redhat.com>
3452
3453         PR exp/11780:
3454         * libunwind-frame.c (libunwind_frame_prev_register): Don't set
3455         value as optimized-out.
3456
3457 2010-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
3458             Thiago Jung Bauermann  <bauerman@br.ibm.com>
3459
3460         * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
3461         represent?" question in comment.  Change comment to a proper sentence.
3462
3463 2010-07-02  Ken Werner  <ken.werner@de.ibm.com>
3464
3465         * c-valprint.c (c_val_print): Fix printing of character vectors.
3466
3467 2010-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3468
3469         * spu-tdep.c (spu_catch_start): Adjust the caller of changed
3470         create_breakpoint prototype.
3471
3472 2010-07-01  Pedro Alves  <pedro@codesourcery.com>
3473
3474         * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
3475         usefulness suggestion of multiple breakpoints at same location.
3476
3477 2010-07-01  Pedro Alves  <pedro@codesourcery.com>
3478
3479         * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
3480
3481 2010-07-01  Pedro Alves  <pedro@codesourcery.com>
3482
3483         * dwarf2loc.c (locexpr_tracepoint_var_ref)
3484         (loclist_tracepoint_var_ref): Handle optimized out values.
3485
3486 2010-07-01  Pedro Alves  <pedro@codesourcery.com>
3487
3488         * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
3489         unnecessary space in string.
3490         * filesystem.c (_initialize_filesystem): Ditto.
3491         * frame.c (_initialize_frame): Ditto.
3492         * infcmd.c (step_once): Ditto.
3493         * infrun.c (_initialize_infrun): Ditto.
3494         * linux-nat.c (linux_child_follow_fork): Ditto.
3495         * maint.c (maintenance_deprecate): Ditto.
3496         * memattr.c (_initialize_mem): Ditto.
3497         * mips-tdep.c (_initialize_mips_tdep): Ditto.
3498         * monitor.c (monitor_open): Ditto.
3499         * procfs.c (procfs_xfer_memory): Ditto.
3500         * reverse.c (bookmarks_info): Ditto.
3501         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
3502         * stack.c (_initialize_stack): Ditto.
3503         * tracepoint.c (_initialize_tracepoint): Ditto.
3504         * xtensa-tdep.c (xtensa_supply_gregset,
3505         xtensa_regset_from_core_section): Ditto.
3506
3507 2010-07-01  Tom Tromey  <tromey@redhat.com>
3508
3509         * value.h (struct lval_funcs) <check_any_valid>: Rename from
3510         check_all_valid.
3511         * value.c (value_entirely_optimized_out): Invert result.  Update
3512         for new function name.
3513
3514 2010-07-01  Pedro Alves  <pedro@codesourcery.com>
3515
3516         Static tracepoints support.
3517
3518         * NEWS: Mention new support for static tracepoints.
3519         (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
3520         qXfer:statictrace:read.
3521         (New features in the GDB remote stub, GDBserver): Mention static
3522         tracepoints support using an UST based backend.
3523         (New commands): Mention "info static-tracepoint-markers" and
3524         "strace".
3525         * breakpoint.c (is_marker_spec): New.
3526         (is_tracepoint): Handle static tracepoints.
3527         (validate_commands_for_breakpoint): Static tracepoints can't do
3528         while-stepping.
3529         (static_tracepoints_here): New.
3530         (bpstat_what): Handle static tracepoints.
3531         (print_one_breakpoint_location, allocate_bp_location, mention):
3532         Ditto.
3533         (create_breakpoint_sal): Ditto.
3534         (decode_static_tracepoint_spec): New.
3535         (create_breakpoint): Replace `hardwareflag', and `traceflag' with
3536         `type_wanted'.  Adjust.  Handle static tracepoint marker
3537         locations.
3538         (break_command_1): Adjust.
3539         (update_static_tracepoint): New.
3540         (update_breakpoint_locations): Handle static tracepoints.
3541         (breakpoint_re_set_one): Handle static tracepoint marker
3542         locations.
3543         (disable_command, enable_command): Handle static tracepoints.
3544         (trace_command, ftrace_command): Adjust.
3545         (strace_command): New.
3546         (create_tracepoint_from_upload): Adjust.
3547         (save_breakpoints): Handle static tracepoints.
3548         (_initialize_breakpoint): Install the "strace" command.
3549         * breakpoint.h (enum bptype): New bp_static_tracepoint type.
3550         (struct breakpoint): New fields static_trace_marker_id and
3551         static_trace_marker_id_idx.
3552         (breakpoints_here_p): Declare.
3553         (create_breakpoint): Adjust.
3554         (static_tracepoints_here): Declare.
3555         * remote.c (struct remote_state) <static_tracepoints>: New field.
3556         (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
3557         (remote_static_tracepoint_marker_at): New.
3558         (remote_static_tracepoint_markers_by_strid): New.
3559         (remote_static_tracepoint_feature): New.
3560         (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
3561         (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
3562         (remote_supports_static_tracepoints): New.
3563         (remote_download_tracepoint): Download static tracepoints.
3564         (init_remote_ops): Install remote_static_tracepoint_marker_at and
3565         remote_static_tracepoint_markers_by_strid.
3566         (_initialize_remote): Install set|show remote static-tracepoints,
3567         and set|show remote read-sdata-object commands.
3568         * target.c (update_current_target): Inherit and default
3569         to_static_tracepoint_marker_at, and
3570         to_static_tracepoint_markers_by_strid.
3571         * target.h (static_tracepoint_marker): Forward declare.
3572         (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
3573         (static_tracepoint_marker_p): New typedef.
3574         (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
3575         (struct target_ops): New fields to_static_tracepoint_marker_at and
3576         to_static_tracepoint_markers_by_strid.
3577         (target_static_tracepoint_marker_at)
3578         (target_static_tracepoint_markers_by_strid): New.
3579         * tracepoint.c: Include source.h.
3580         (validate_actionline): Handle $_sdata.
3581         (struct collection_list): New field strace_data.
3582         (add_static_trace_data): New.
3583         (clear_collection_list): Clear strace_data.
3584         (stringify_collection_list): Account for a possible static trace
3585         data collection.
3586         (encode_actions_1): Encode an $_sdata collection.
3587         (parse_tracepoint_definition): Handle static tracepoints.
3588         (parse_static_tracepoint_marker_definition): New.
3589         (release_static_tracepoint_marker): New.
3590         (print_one_static_tracepoint_marker): New.
3591         (info_static_tracepoint_markers_command): New.
3592         (sdata_make_value): New.
3593         (_initialize_tracepoint): Create the $_sdata convenience variable.
3594         Add the "info static-tracepoint-markers" command.
3595         Mention $_sdata in the "collect" command's help output.
3596         * tracepoint.h (struct static_tracepoint_marker): New.
3597         (parse_static_tracepoint_marker_definition)
3598         (release_static_tracepoint_marker): Declare.
3599         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
3600         * python/py-breakpoint.c (bppy_new): Adjust.
3601
3602 2010-06-30  Joel Brobecker  <brobecker@adacore.com>
3603
3604         * python/python-internal.h (_XOPEN_SOURCE): Undefine before
3605         including Python.h.
3606
3607 2010-06-29  Doug Evans  <dje@google.com>
3608
3609         PR gdb/11702
3610         * dwarf2read.c (dwarf2_add_field): Only create a symbol if
3611         DW_AT_external is present.
3612
3613         PR gdb/11702
3614         * NEWS: Add entry.
3615         * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
3616         create a symbol for the field and record the value.
3617         (new_symbol): Handle DW_TAG_member.
3618         * gdbtypes.c (field_is_static): Remove FIXME.
3619         * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
3620         only ignore LOC_CONST symbols that are enums.
3621
3622         * dwarf2read.c: Remove trailing whitespace.
3623
3624         Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
3625         * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
3626         (struct main_type, field loc): Delete dwarf_block.
3627         (FIELD_DWARF_BLOCK): Delete.
3628         (SET_FIELD_DWARF_BLOCK): Delete.
3629         (TYPE_FIELD_DWARF_BLOCK): Delete.
3630         * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
3631         Update.
3632
3633 2010-06-29  Hui Zhu  <teawater@gmail.com>
3634
3635         * record.c (set_record_pic_cmdlist,
3636         show_record_pic_cmdlist): New variables.
3637         (set_record_pic_command,
3638         show_record_pic_command): New functions.
3639         (record_pic_function, record_pic_line, record_pic_enum,
3640         set_record_pic_type, record_pic_hide_nofunction,
3641         record_pic_hide_nosource, record_pic_hide_same): New variables.
3642         (record_pic_fputs): New function.
3643         (function_list, node_list, edge_list): New struct.
3644         (function_list, node_list, edge_list): New variables.
3645         (record_pic_cleanups, record_pic_node,
3646         record_pic_edge, cmd_record_pic): New functions.
3647         (_initialize_record): Add new commands for record pic.
3648
3649 2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3650
3651         * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
3652         ALLOCATE_CPLUS_STRUCT_TYPE.
3653
3654 2010-06-28  Phil Muldoon  <pmuldoon@redhat.com>
3655             Tom Tromey  <tromey@redhat.com>
3656             Thiago Jung Bauermann  <bauerman@br.ibm.com>
3657
3658         * value.c (pack_unsigned_long): New function.
3659         (value_from_ulongest): New function.
3660         * value.h (value_from_ulongest): Declare.
3661         * python/python.c (_initialize_python): Call
3662         gdbpy_initialize_thread and gdbpy_initialize_inferior.
3663         * python/python-internal.h: Define thread_object.
3664         (gdbpy_inferiors, gdbpy_selected_thread)
3665         (frame_info_to_frame_object, create_thread_object)
3666         (find_thread_object, find_inferior_object)
3667         (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
3668         (gdbpy_is_value_object, get_addr_from_python): Declare.
3669         * python/py-value.c (builtin_type_upylong): Define.
3670         (convert_value_from_python): Add logic for ulongest.
3671         (gdbpy_is_value_object): New function.
3672         * python/py-utils.c (get_addr_from_python): New function.
3673         * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
3674         (gdbpy_selected_frame): Use PyObject over frame_info.
3675         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
3676         py-infthread.
3677         (SUBDIR_PYTHON_SRCS): Likewise.
3678         (py-inferior.o): New Rule.
3679         (py-infthread.o): New Rule.
3680         * python/py-inferior.c: New File.
3681         * python/py-infthread.c: New File.
3682
3683 2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3684
3685         * c-typeprint.c (c_type_print_base): For no fields check include also
3686         TYPE_TYPEDEF_FIELD_COUNT.  Print new typedefs section.
3687         * dwarf2read.c (struct typedef_field_list)
3688         (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
3689         (dwarf2_add_typedef): New.
3690         (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
3691         Copy also FI.TYPEDEF_FIELD_LIST.
3692         * gdbtypes.h (struct typedef_field)
3693         (struct cplus_struct_type) <typedef_field, typedef_field_count>
3694         (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
3695         (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
3696
3697 2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3698
3699         * cp-namespace.c (cp_lookup_nested_type): New variable
3700         concatenated_name.  Turn the current return condition into a reverse
3701         one.  Call also lookup_static_symbol_aux on the constructed qualified
3702         name.
3703         * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
3704         other files into a called ...
3705         (lookup_static_symbol_aux): ... new function here.
3706         * symtab.h (lookup_static_symbol_aux): New prototype.
3707         * valops.c (value_maybe_namespace_elt): Call also
3708         lookup_static_symbol_aux if we failed otherwise.
3709
3710 2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3711
3712         Fix PR c++/11703 and PR gdb/1448.
3713         * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
3714         FIRST_ITER check.
3715
3716 2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3717
3718         Fix modification of cplus_struct_default.
3719         * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
3720         Call ALLOCATE_CPLUS_STRUCT_TYPE.
3721         * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
3722
3723 2010-06-28  Joel Brobecker  <brobecker@adacore.com>
3724
3725         * NEWS: Add entry announcing the python directory.
3726
3727 2010-06-28  Tom Tromey  <tromey@redhat.com>
3728
3729         * dwarf2read.c (read_structure_type): Allocate null cleanup later.
3730
3731 2010-06-28  Doug Evans  <dje@google.com>
3732
3733         * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
3734         All callers updated.
3735
3736 2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3737
3738         * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
3739         obstack_begin after each obstack_free.
3740
3741 2010-06-27  Doug Evans  <dje@google.com>
3742
3743         * value.c (value_static_field): Use `switch' instead of `if'.
3744         Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
3745
3746         * valops.c (search_struct_field): Fix typo in error message.
3747
3748 2010-06-26  Ulrich Weigand  <uweigand@de.ibm.com>
3749
3750         * dwarf2expr.c (execute_stack_op): Place preprocessor
3751         directives at the start of the source line.
3752
3753 2010-06-25  Paul Hilfinger  <hilfinger@adacore.com>
3754
3755         * defs.h (make_command_stats_cleanup): Declare.
3756         (set_display_time): Declare.
3757         (set_display_space): Declare.
3758         * event-top.c (command_handler): Use make_command_stats_cleanup.
3759         * main.c (display_time, display_space): Move definitions to utils.c.
3760         (captured_main): Use make_command_stats_cleanup to get start-up
3761         statistics.
3762         Use set_display_time and set_display_space for processing OPT_STATISTICS
3763         case.
3764         * maint.c (maintenance_time_display): Use set_display_time.
3765         (maintenance_space_display): Use set_display_space.
3766         * top.c (execute_command): Remove obsolete 'maint time' code.
3767         (command_loop): Use make_command_stats_cleanup.
3768         * utils.c (struct cmd_stats): Structure for storing initial time
3769         and space usage.
3770         (display_time, display_space): Move definitions here from utils.c.
3771         (set_display_time): New function.
3772         (set_display_space): New function.
3773         (make_command_stats_cleanup): New function.
3774         (report_command_stats): New auxiliary function for
3775         make_command_stats_cleanup.
3776
3777 2010-06-25  Ulrich Weigand  <uweigand@de.ibm.com>
3778
3779         * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
3780         hosts where CORE_ADDR is long long.
3781
3782 2010-06-25  Tom Tromey  <tromey@redhat.com>
3783
3784         PR python/10808:
3785         * python/python.c (execute_gdb_command): Add keywords.  Accept
3786         "to_string" argument.
3787         (struct restore_ui_file_closure): New.
3788         (restore_ui_file): New function.
3789         (make_cleanup_restore_ui_file): Likewise.
3790         (GdbMethods) <execute>: Update.
3791
3792 2010-06-25  Ulrich Weigand  <uweigand@de.ibm.com>
3793
3794         * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
3795         during inferior call stack frame setup.
3796
3797 2010-06-25  Ken Werner  <ken.werner@de.ibm.com>
3798
3799         * solib-spu.c: Include "exception.h".
3800         (ocl_program_data_key): New variable.
3801         (append_ocl_sos): New function.
3802         (ocl_enable_break): Likewise.
3803         (spu_current_sos): Call append_ocl_sos.
3804         (spu_solib_loaded): Call ocl_enable_break.
3805         (_initialize_spu_solib): Register ocl_program_data_key.
3806
3807 2010-06-25  Ulrich Weigand  <uweigand@de.ibm.com>
3808
3809         * cp-support.c (reset_directive_searched): New function.
3810         (make_symbol_overload_list_using): Prevent recursive calls.
3811
3812 2010-06-25  Phil Muldoon  <pmuldoon@redhat.com>
3813
3814         * printcmd.c (print_variable_and_value): Print error message on
3815         caught exception.
3816
3817 2010-06-25  Ulrich Weigand  <uweigand@de.ibm.com>
3818
3819         * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
3820         of stack values.
3821         (struct dwarf_expr_piece): Rename "expr" member to "mem".  Add new
3822         "value" member.
3823         (dwarf_expr_push): Change input type to ULONGEST.
3824         (dwarf_expr_fetch): Change return type to ULONGEST.
3825         (dwarf_expr_fetch_address): Add prototype.
3826         (dwarf2_read_address): Remove prototype.
3827         * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
3828         Truncate stack values to ctx->addr_size bytes.
3829         (dwarf_expr_fetch): Change return value to ULONGEST.
3830         (dwarf_expr_fetch_address): New function.
3831         (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
3832         when appropriate.  Update for struct dwarf_expr_piece changes.
3833         (dwarf2_read_address): Remove.
3834         (unsigned_address_type): Remove.
3835         (signed_address_type): Remove.
3836         (execute_stack_op): Use dwarf_expr_fetch_address instead of
3837         dwarf_expr_fetch when appropriate.  Use ULONGEST as type of stack
3838         values.  Perform operations on ULONGEST instead of on GDB values,
3839         sign-extending from ctx->addr_size bytes as needed.  Read DW_OP_addr
3840         values and DW_OP_deref results as unsigned integers.
3841         * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
3842         changes.
3843         (write_pieced_value): Likewise.
3844         (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
3845         dwarf_expr_fetch when appropriate.
3846         (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
3847         * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
3848         instead of dwarf_expr_fetch when appropriate.
3849
3850 2010-06-25  Pierre Muller  <muller@ics.u-strasbg.fr>
3851
3852         * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
3853
3854 2010-06-24  Joel Brobecker  <brobecker@adacore.com>
3855
3856         * python/python.c (_initialize_python): Add new "constant"
3857         PYTHONDIR in gdb module.  Insert this path at the head of
3858         sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
3859         exec its __init__.py script if it exists in that directory.
3860
3861 2010-06-24  Kevin Buettner  <kevinb@redhat.com>
3862
3863         * rx-tdep.c (RX_ACC_REGNUM): Define.
3864         (RX_NUM_REGS): Redefine to 26.
3865         (rx_register_name): Add register "acc".  Change order of several
3866         registers.  Change name of "vct" register to "fintv" to match RX
3867         documentation.
3868         (rx_register_type): Add case for RX_ACC_REGNUM.
3869
3870 2010-06-24  Tom Tromey  <tromey@redhat.com>
3871
3872         * psymtab.c (lookup_partial_symbol): Mark definition as static.
3873
3874 2010-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3875             Tom Tromey  <tromey@redhat.com>
3876
3877         Fix GDB startup on readonly filesystem.
3878         * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
3879
3880 2010-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3881             Pedro Alves  <pedro@codesourcery.com>
3882
3883         Fix PR 9436.
3884         * breakpoint.c (handle_jit_event): New function.
3885         (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
3886         jit, err, table and bs_class.  New variables shlib_event, jit_event,
3887         this_action and bptype.  Change bs_class assignments to this_action
3888         assignments.  new unhandled bptype internal error.  Move here
3889         shlib_event and jit_event handling from handle_inferior_event.
3890         * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
3891         Reorder items.  Remove BPSTAT_WHAT_CHECK_SHLIBS and
3892         BPSTAT_WHAT_CHECK_JIT.
3893         * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
3894         * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
3895         (handle_inferior_event): Reinitialize frame and gdbarch after
3896         bpstat_what call.  Move BPSTAT_WHAT_CHECK_SHLIBS and
3897         BPSTAT_WHAT_CHECK_JIT handling to bpstat_what.  Reinitialize even
3898         gdbarch when frame gets reinitialized.
3899
3900 2010-06-24  Hui Zhu  <teawater@gmail.com>
3901
3902        * printcmd.c (ui_printf): New function.
3903        (printf_command): Call ui_printf.
3904        (_initialize_printcmd): New command "eval".
3905
3906 2010-06-23  Ulrich Weigand  <uweigand@de.ibm.com>
3907
3908         * infrun.c (handle_inferior_event): Handle presence of single-step
3909         breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
3910         Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
3911         TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
3912         * breakpoint.c (detach_single_step_breakpoints): New function.
3913         (detach_breakpoints): Call it.
3914         (cancel_single_step_breakpoints): New function.
3915         * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
3916
3917         * spu-tdep.c (spu_memory_remove_breakpoint): New function.
3918         (spu_gdbarch_init): Install it.
3919
3920 2010-06-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
3921
3922         * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
3923         * configure: Regenerate.
3924
3925 2010-06-22  Hui Zhu  <teawater@gmail.com>
3926
3927         * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
3928         (i386_process_record): Ditto.
3929         * record.c (record_memory_query): New variable.
3930         (_initialize_record): New command "set record memory-query".
3931         * record.h (record_memory_query): New extern.
3932
3933 2010-06-21  Doug Evans  <dje@google.com>
3934
3935         * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
3936         * i386-tdep.c (i386_displaced_step_copy_insn): New function.
3937         (i386_syscall_p): Change type of lengthp to int.
3938         (i386_displaced_step_fixup): Handle kernels that run one past a
3939         syscall insn.
3940         * i386-linux-tdep.c (i386_linux_init_abi): Use
3941         i386_displaced_step_copy_insn instead of
3942         simple_displaced_step_copy_insn.
3943
3944 2010-06-21  Tom Tromey  <tromey@redhat.com>
3945
3946         * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
3947         (dwarf_type_encoding_name): Likewise.
3948
3949 2010-06-21  Tom Tromey  <tromey@redhat.com>
3950
3951         * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
3952         * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
3953         * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
3954         * gdbtypes.h (TYPE_ERROR_NAME): New macro.
3955         * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
3956         * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
3957         * dwarf2read.c (tag_type_to_type): Create a new error type on
3958         failure.
3959         * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
3960         * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
3961
3962 2010-06-21  Michael Snyder  <msnyder@vmware.com>
3963
3964         * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
3965         not add_abbrev_prefix_cmd, for "enable breakpoints".
3966
3967 2010-06-21  Ulrich Weigand  <uweigand@de.ibm.com>
3968
3969         * dwarf2loc.c (find_location_expression): Add relocation offset
3970         to base-address-selection entry base addresses.  Read addresses
3971         (and offsets) as signed/unsigned integers, depending on the
3972         BFD's sign_extend_vma flag.  Do not call dwarf2_read_address.
3973         (loclist_describe_location): Likewise.
3974         (disassemble_dwarf_expression): Read DW_OP_addr operand as
3975         unsigned integer.  Do not call dwarf2_read_address.
3976         (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
3977
3978 2010-06-19  Ulrich Weigand  <uweigand@de.ibm.com>
3979
3980         * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
3981         value instead of hard-coded SPU_LS_SIZE.
3982         (spu_software_single_step): Likewise.
3983         * spu-tdep.h (SPU_LS_SIZE): Remove.
3984
3985 2010-06-19  Ulrich Weigand  <uweigand@de.ibm.com>
3986
3987         * spu-multiarch.c (spu_xfer_partial): Wrap around local store
3988         limit on local store memory accesses.
3989         * spu-linux-nat.c (spu_xfer_partial): Likewise.
3990         * spu-tdep.c (spu_lslr): Remove.
3991         (spu_pointer_to_address): Do not truncate addresses.
3992         (spu_integer_to_address): Likewise.
3993         (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
3994         * spu-tdep.h: Add comments.
3995         (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
3996         (SPU_OVERLAY_LMA): Define.
3997
3998 2010-06-18  Stan Shebs  <stan@codesourcery.com>
3999
4000         * osdata.c (get_osdata): Warn separately if target does not report
4001         type list.
4002         (info_osdata_command): Allow empty type, report error if target
4003         does not return available types of OS data.
4004         * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
4005         types if no annex supplied.
4006
4007         * thread.c (thread_id_make_value): Make a value representing the
4008         current thread.
4009         (_initialize_thread): Create $_thread.
4010
4011 2010-06-17  Joel Brobecker  <brobecker@adacore.com>
4012
4013         * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
4014         last local variable declaration.  No real code change.
4015
4016 2010-06-17  Tom Tromey  <tromey@redhat.com>
4017
4018         * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
4019         (dwarf2_build_psymtabs_hard): Use it.  Create addrmap on a
4020         temporary obstack.
4021
4022 2010-06-16  Sergio Durigan Junior  <sergiodj@redhat.com>
4023             Jan Kratochvil  <jan.kratochvil@redhat.com>
4024
4025         * breakpoint.c: Include parser-defs.h.
4026         (watchpoint_exp_is_const): New function.
4027         (watch_command_1): Call watchpoint_exp_is_const to check
4028         if the expression is constant.
4029
4030 2010-06-15  Andreas Schwab  <schwab@linux-m68k.org>
4031
4032         * configure.ac: Check for RDYNAMIC also for cross builds.
4033         * configure: Regenerate.
4034
4035 2010-06-15  Pedro Alves  <pedro@codesourcery.com>
4036
4037         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
4038         (SFILES): Remove solib-null.c, add solib-target.c.
4039         (COMMON_OBS): Remove solib-null.o, add solib-target.o.
4040         (ALLDEPFILES): Remove solib-target.c.
4041         * solib-target.c (_initialize_solib_target): Set
4042         current_target_so_ops to solib_target_so_ops if not already set.
4043         * solib-null.c: Delete.
4044
4045 2010-06-14  Pedro Alves  <pedro@codesourcery.com>
4046
4047         * NEWS: Mention GDBserver's JIT compilation of tracepoint
4048         bytecode.
4049
4050 2010-06-14  Ulrich Weigand  <uweigand@de.ibm.com>
4051
4052         * cp-valprint.c (cp_print_static_field): Members of
4053         dont_print_stat_array_obstack are of type "struct type *".
4054         (_initialize_cp_valprint): Likewise.
4055
4056 2010-06-14  Ulrich Weigand  <uweigand@de.ibm.com>
4057
4058         * frame.c (frame_register_unwind): Do not access contents
4059         of "optimized out" unwound register value.
4060
4061 2010-06-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
4062
4063         * ada-lang.h (ada_print_type): Make varstring const.
4064         * ada-typeprint.c (print_func_type): Make name const.
4065         (ada_print_type): Make varstring const.
4066         * c-lang.h (c_print_type): Make varstring const.
4067         * c-typeprint.c (c_print_type): Likewise.
4068         * f-lang.h (f_print_type): Likewise.
4069         * f-typeprint.c (f_print_type): Likewise.
4070         * jv-lang.h (java_print_type): Likewise.
4071         * jv-typeprint.c (java_print_type): Likewise.
4072         * language.c (unk_lang_print_type): Likewise.
4073         * language.h (struct language_defn) <la_print_type>: Likewise.
4074         * m2-lang.h (m2_print_type): Likewise.
4075         * m2-typeprint.c (m2_print_type): Likewise.
4076         * p-lang.h (pascal_print_type): Likewise.
4077         * p-typeprint.c (pascal_print_type): Likewise.
4078
4079 2010-06-11  Stan Shebs  <stan@codesourcery.com>
4080
4081         Add per-operation permission flags.
4082
4083         * target.h (struct target_ops): New method to_set_permissions.
4084         (target_set_permissions): New macro.
4085         (target_insert_breakpoint): Change macro to function.
4086         (target_remove_breakpoint): Ditto.
4087         (target_stop): Ditto.
4088         (may_write_registers): Declare.
4089         (may_write_memory): Declare.
4090         (may_insert_breakpoints): Declare.
4091         (may_insert_tracepoints): Declare.
4092         (may_insert_fast_tracepoints): Declare.
4093         (may_stop): Declare.
4094         * target.c (may_write_registers, may_write_registers_1): New globals.
4095         (may_write_memory, may_write_memory_1): New globals.
4096         (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
4097         (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
4098         (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
4099         globals.
4100         (may_stop, may_stop_1): New global.
4101         (target_xfer_partial): Test for write permission.
4102         (target_store_registers): Ditto.
4103         (target_insert_breakpoint): New function.
4104         (target_remove_breakpoint): New function.
4105         (target_stop): New function.
4106         (_initialize_targets): Add new set/show variables.
4107         (set_write_memory_permission): New function.
4108         (update_target_permissions): New function.
4109         (set_target_permissions): New function.
4110         (update_current_target): Default to_set_permissions.
4111         (_initialize_targets): Use new globals and setter function.
4112         * tracepoint.c (start_tracing): Test for permission.
4113         * inferior.h (update_observer_mode): Declare.
4114         * infrun.c (non_stop_1): Define earlier.
4115         (observer_mode, observer_mode_1): New globals.
4116         (set_observer_mode, show_observer_mode): New functions.
4117         (update_observer_mode): New function.
4118         (_initialize_infrun): Define "set observer" command.
4119         * remote.c (PACKET_QAllow): New optional packet.
4120         (remote_protocol_features): Add QAllow.
4121         (remote_set_permissions): New function.
4122         (remote_start_remote): Call it.
4123         (init_remote_ops): Add it to target vector.
4124         (_initialize_remote): Add config command for QAllow.
4125
4126 2010-06-11  Tom Tromey  <tromey@redhat.com>
4127
4128         * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
4129         DW_AT_vtable_elem_location even when GCC extension is seen.
4130
4131 2010-06-11  Tom Tromey  <tromey@redhat.com>
4132
4133         PR gdb/9977, PR exp/11636:
4134         * value.h (value_offset): Update.
4135         (struct lval_funcs) <check_validity>: New field.
4136         <copy_closure>: Make argument const.
4137         (value_computed_closure): Update.
4138         (value_contents_for_printing): Declare.
4139         (value_bits_valid): Likewise.
4140         (val_print): Likewise.
4141         (set_value_component_location): Update.
4142         (value_entirely_optimized_out): Declare.
4143         * value.c (value_offset): Argument now const.
4144         (require_not_optimized_out): New function.
4145         (value_contents_for_printing): New function.
4146         (value_contents_all): Call require_not_optimized_out.
4147         (value_contents): Likewise.
4148         (value_bits_valid): New function.
4149         (value_computed_closure): Argument now const.
4150         (set_value_component_location): Make 'whole' argument const.
4151         (value_entirely_optimized_out): New function.
4152         (value_bitsize): Argument now 'const'.
4153         (value_bitpos): Likewise.
4154         (value_type): Likewise.
4155         * valprint.h (val_print_array_elements): Update.
4156         * valprint.c (val_print): Add 'val' argument.  Use
4157         valprint_check_validity.
4158         (valprint_check_validity): New function.
4159         (value_check_printable): Use value_entirely_optimized_out.
4160         (common_val_print): Update.
4161         (value_print): Likewise.
4162         (val_print_array_elements): Add 'val' argument.
4163         * valops.c (value_fetch_lazy): Use value_contents_for_printing,
4164         value_bits_valid.  Reinit frame cache for lval_computed.
4165         * sh64-tdep.c (sh64_do_register): Update.
4166         * scm-valprint.c (scm_val_print): Add 'val' argument.
4167         * scm-lang.h (scm_val_print): Update.
4168         * python/python.h (apply_val_pretty_printer): Update.
4169         * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
4170         argument.  Call set_value_component_location.
4171         * printcmd.c (print_scalar_formatted): Update.
4172         * p-valprint.c (pascal_val_print): Add 'val' argument.
4173         (pascal_object_print_value_fields): Likewise.
4174         (pascal_object_print_value): Likewise.
4175         (pascal_object_print_static_field): Update.
4176         * p-lang.h (pascal_val_print): Update.
4177         (pascal_object_print_value_fields): Update.
4178         * mt-tdep.c (mt_registers_info): Update.
4179         * mi/mi-main.c (get_register): Update.
4180         (mi_cmd_data_evaluate_expression): Use common_val_print.
4181         * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
4182         (m2_print_unbounded_array): Likewise.
4183         (m2_val_print): Likewise.
4184         * m2-lang.h (m2_val_print): Update.
4185         * language.h (struct language_defn) <la_val_print>: Add 'val'
4186         argument.
4187         (LA_VAL_PRINT): Likewise.
4188         * language.c (unk_lang_val_print): Add 'val' argument.
4189         * jv-valprint.c (java_print_value_fields): Add 'val' argument.
4190         (java_val_print): Likewise.
4191         * jv-lang.h (java_val_print): Add 'val' argument.
4192         * infcmd.c (default_print_registers_info): Update.
4193         * f-valprint.c (f77_print_array_1): Add 'val' argument.
4194         (f77_print_array): Likewise.
4195         (f_val_print): Likewise.
4196         * f-lang.h (f_val_print): Add 'val' argument.
4197         * dwarf2loc.c (read_pieced_value): Use value_bitsize and
4198         value_bitpos.
4199         <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning.  Call
4200         set_value_optimized_out.
4201         (write_pieced_value): Use value_bitsize and value_bitpos.
4202         <default>: Don't exit loop.
4203         (check_pieced_value_validity): New function.
4204         (pieced_value_funcs): Reference check_pieced_value_validity,
4205         check_pieced_value_invalid.
4206         (copy_pieced_value_closure): Update.
4207         (check_pieced_value_bits): New function.
4208         (check_pieced_value_invalid): New function.
4209         * d-valprint.c (dynamic_array_type): Add 'val' argument.
4210         (d_val_print): Likewise.
4211         * d-lang.h (d_val_print): Update.
4212         * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
4213         (cp_print_value_fields_rtti): Likewise.
4214         (cp_print_value): Likewise.
4215         (cp_print_static_field): Update.
4216         * c-valprint.c (c_val_print): Add 'val' argument.
4217         (c_value_print): Update.
4218         * c-lang.h (c_val_print): Update.
4219         (cp_print_value_fields): Likewise.
4220         (cp_print_value_fields_rtti): Likewise.
4221         * ada-valprint.c (struct ada_val_print_args): Remove.
4222         (val_print_packed_array_elements): Add 'val' argument.
4223         (ada_val_print): Likewise.  Rewrite.
4224         (ada_val_print_stub): Remove.
4225         (ada_val_print_array): Add 'val' argument.
4226         (ada_val_print_1): Likewise.
4227         (print_variant_part): Likewise.
4228         (ada_value_print): Update.
4229         (print_record): Add 'val' argument.
4230         (print_field_values): Likewise.
4231         * ada-lang.h (ada_val_print): Update.
4232
4233 2010-06-11  Tom Tromey  <tromey@redhat.com>
4234
4235         * vec.h (VEC_cleanup): New macro.
4236         (DEF_VEC_ALLOC_FUNC_I): Update.
4237         (DEF_VEC_ALLOC_FUNC_P): Likewise.
4238         (DEF_VEC_ALLOC_FUNC_O): Likewise.
4239         * dwarf2loc.c (struct axs_var_loc): Remove.
4240         (unimplemented): New function.
4241         (translate_register): Likewise.
4242         (access_memory): Likewise.
4243         (compile_dwarf_to_ax): Likewise.
4244         (dwarf2_tracepoint_var_loc): Remove.
4245         (dwarf2_tracepoint_var_access): Likewise.
4246         (dwarf2_tracepoint_var_ref): Likewise.
4247         (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
4248         (loclist_tracepoint_var_ref): Likewise.
4249         * dwarf2expr.h (dwarf_expr_require_composition): Declare.
4250         * dwarf2expr.c (dwarf_expr_require_composition): Rename from
4251         require_composition.  No longer static.
4252         (execute_stack_op): Update.
4253         * ax-gdb.h (trace_kludge): Declare.
4254
4255 2010-06-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4256
4257         * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
4258         (should_be_inserted): Return zero also on NULL OWNER.
4259         (breakpoint_program_space_exit): New OWNER comment.
4260         (insert_breakpoint_locations): Extend comment for OWNER.
4261         (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
4262         (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
4263         New OWNER comment.
4264         (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
4265         (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
4266         (bpstat_check_location): New assert on OWNER.
4267         (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
4268         and B initializations to the code block.  New assert on them.
4269         (print_one_breakpoint_location): New OWNER comment.
4270         (watchpoint_locations_match): Assert on OWNER.
4271         (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
4272         initializations to the code block.  New assert on OWNER.
4273         (set_breakpoint_location_function): New assert on OWNER.
4274         (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
4275         (bp_location_compare, update_global_location_list)
4276         (update_global_location_list): New OWNER comment.
4277
4278 2010-06-09  Ulrich Weigand  <uweigand@de.ibm.com>
4279
4280         * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
4281
4282 2010-06-09  Ulrich Weigand  <uweigand@de.ibm.com>
4283
4284         * config/nm-linux.h (struct target_ops): Remove forward declaration.
4285         (lin_thread_get_thread_signals): Remove prototype.
4286         (GET_THREAD_SIGNALS): Remove.
4287         * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
4288         * linux-thread-db.c (check_thread_signals): Directly call
4289         lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
4290
4291 2010-06-09  Ulrich Weigand  <uweigand@de.ibm.com>
4292
4293         * gregset.h (GDB_FPXREGSET_T): Remove.
4294         (gdb_fpxregset_t): Likewise.
4295         (supply_fpxregset): Remove prototype.
4296         (fill_fpxregset): Likewise.
4297         * i386-linux-nat.c (supply_fpxregset): Remove.
4298         (fill_fpxregset): Likewise.
4299         (fetch_fpxregs): Inline supply_fpxregset call.
4300         (store_fpxregs): Inline fill_fpxregset call.
4301
4302         * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
4303         * config/i386/nm-linux.h: Remove file.
4304
4305 2010-06-09  Michael Snyder  <msnyder@vmware.com>
4306
4307         * target.c (update_current_target): Fix spelling error in comment.
4308         (target_mourn_inferior): Fix spelling error in error message.
4309
4310 2010-06-08  Paul Hilfinger  <hilfingr@adacore.com>
4311
4312       * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
4313       SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
4314
4315 2010-06-08  Michael Snyder  <msnyder@vmware.com>
4316
4317         * remote.c (remote_close): Set inferior_ptid to null_ptid.
4318
4319 2010-06-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
4320
4321         * configure.ac <"${have_libpython}" != no>: New workaround of
4322         python#4434.
4323         * configure: Regenerate.
4324
4325 2010-06-08  Hui Zhu  <teawater@gmail.com>
4326
4327         * record.c (record_wait): Move signal out of replay code.
4328
4329 2010-06-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4330
4331         Fix PR 10640.
4332         * dwarf2-frame.c (no_dwarf_call): New function.
4333         (execute_stack_op): Set CTX->DWARF_CALL.
4334         * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
4335         * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
4336         (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
4337         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
4338         (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
4339         (needs_frame_dwarf_call): New function.
4340         (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
4341         * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
4342         Update the comment.  Move variables die, offset and error call to ...
4343         (follow_die_ref): ... a new function.
4344         (dwarf2_fetch_die_location_block): New function.
4345         * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
4346
4347 2010-06-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4348
4349         * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
4350         (dwarf_expr_tls_address): Use per_cu instead of objfile.
4351         (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
4352         Initialize new BATON.PER_CU.  Adjust CTX->GDBARCH initialization for
4353         this change.
4354         (struct needs_frame_baton): New field per_cu.
4355         (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
4356         * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
4357
4358 2010-06-07  Sami Wagiaalla  <swagiaal@redhat.com>
4359
4360         * cp-support.c (make_symbol_overload_list_namespace): Only search
4361         static and global blocks.
4362         (make_symbol_overload_list_block): New function.
4363         (make_symbol_overload_list): Separate namespace search from block
4364         search.
4365         (make_symbol_overload_list_qualified): Use
4366         make_symbol_overload_list_block.
4367
4368 2010-06-07  Sami Wagiaalla  <swagiaal@redhat.com>
4369
4370         * value.h: Created oload_search_type enum.
4371         (find_overload_match): Use oload_search_type enum.
4372         * valops.c (find_overload_match): Support combined member and
4373         non-member search.
4374         * eval.c (evaluate_subexp_standard): Calls to
4375         find_overload_match now use oload_search_type enum.
4376         (oload_method_static): Verify index is a proper value.
4377         * valarith.c (value_user_defined_cpp_op): Search for and handle
4378         both member and non-member operators.
4379         (value_user_defined_cpp_op): New function.
4380         (value_user_defined_op): New function.
4381         (value_x_unop): Use value_user_defined_op.
4382         (value_x_binop): Ditto.
4383         * cp-support.c (make_symbol_overload_list_using): Added block
4384         iteration.
4385         Add check for namespace aliases and imported declarations.
4386
4387 2010-06-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4388
4389         * breakpoint.h (owner): Extend the comment.
4390
4391 2010-06-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4392
4393         Clear stale specific bp_location from former whole breakpoint.
4394         * breakpoint.c (delete_breakpoint): Move the stale referencing clear
4395         code ...
4396         (free_bp_location): ... here.  Rename there the called function to
4397         bpstat_remove_bp_location_callback.
4398         (bpstat_remove_breakpoint_callback): Rename to ...
4399         (bpstat_remove_bp_location_callback): ... here, change DATA resolution
4400         to struct bp_location.  Change the called function to
4401         bpstat_remove_bp_location.  Create new declaration for the function.
4402         (bpstat_remove_breakpoint): Rename to ...
4403         (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
4404         code for the new parameter type.
4405
4406 2010-06-07  Nathan Sidwell  <nathan@codesourcery.com>
4407
4408         * README: Make version-agnostic.
4409
4410 2010-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4411
4412         Fix duplicate types for single DIE.
4413         * dwarf2read.c (read_structure_type): Move set_descriptive_type after
4414         set_die_type.
4415         (read_array_type): Remove type initialization.  Recheck get_die_type
4416         after initial die_type.  Move set_die_type before set_descriptive_type.
4417         (read_set_type): New variable domain_type.  Recheck get_die_type after
4418         initial die_type.  Move attr initialization later.
4419         (read_tag_pointer_type, read_tag_reference_type): New variable
4420         target_type.  Recheck get_die_type after initial die_type.
4421         (read_tag_ptr_to_member_type): Recheck get_die_type after initial
4422         die_type and die_containing_type.
4423         (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
4424         Recheck get_die_type after initial die_type.
4425         (read_subrange_type): Recheck get_die_type after initial die_type.
4426         Move set_die_type before set_descriptive_type.
4427         (set_die_type): Extend the function comment.  Call complaint if DIE has
4428         some type already set.
4429
4430 2010-06-05  Vladimir Prus  <vladimir@codesourcery.com>
4431
4432         * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
4433         for current naming of thread groups (iN, not N).
4434
4435 2010-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
4436
4437         * ada-lang.c (ada_operator_length): Constify `struct expression'.
4438         * parse.c (operator_length): Likewise.
4439         (operator_length_standard): Likewise.
4440         * parser-defs.h (operator_length): Likewise.
4441         (operator_length_standard): Likewise.
4442         (struct exp_descriptor <operator_length>): Likewise.
4443
4444 2010-06-04  Doug Evans  <dje@google.com>
4445
4446         Add support for enabling/disabling individual pretty-printers.
4447         * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
4448         * python/python-internal.h (gdbpy_enabled_cst): Declare.
4449         * python/python.c (gdbpy_enabled_cst): Define.
4450         (_initialize_python): Initialize gdbpy_enabled_cst.
4451         * NEWS: Add entry.
4452
4453 2010-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
4454
4455         * breakpoint.c (update_global_location_list): Fix comment typo.
4456
4457 2010-06-04  Hui Zhu  <teawater@gmail.com>
4458
4459         * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
4460
4461 2010-06-03  Doug Evans  <dje@google.com>
4462
4463         * configure.ac: Don't fail if python is unusable when
4464         configured with --with-python=auto.
4465         * configure: Regenerate.
4466
4467 2010-06-03  Sami Wagiaalla  <swagiaal@redhat.com>
4468
4469         * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
4470
4471 2010-06-03  Pierre Muller  <muller@ics.u-strasbg.fr>
4472
4473         * valprint.h (get_array_bounds): Change low and high parameter types
4474         to LONGEST *.
4475         * valprint.c (get_array_bounds): Use get_discrete_bounds call to
4476         compute bounds.
4477         (val_print_array_elements): Adapt to change above.
4478         * ada-valprint.c (print_optional_low_bound): Adapt to change above.
4479         * p-valprint.c (pascal_val_print): Likewise.
4480
4481 2010-06-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4482
4483         * symfile.c (init_filename_language_table): New extensions .for, .FOR,
4484         .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
4485         .F08.
4486
4487 2010-06-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4488
4489         Support DW_TAG_module as separate namespaces.
4490         * dwarf2read.c (typename_concat): New parameter physname.
4491         (read_module_type): New function and declaration.
4492         (scan_partial_symbols): Scan also DW_TAG_module children.
4493         (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
4494         to typename_concat backward compatible physname value 0.
4495         (partial_die_full_name, read_namespace_type): Pass to typename_concat
4496         backward compatible physname value 0.
4497         (add_partial_module, read_module): Remove FIXME comment.
4498         (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
4499         (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
4500         DIEs under DW_TAG_module.
4501         (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
4502         DW_AT_MIPS_linkage_name first, extend it for language_fortran
4503         && physname and return there instead of just setting NAME.  Extend
4504         the main block for language_fortran.  Pass physname parameter to the
4505         typename_concat call.
4506         (read_import_statement, read_func_scope, get_scope_pc_bounds)
4507         (load_partial_dies, determine_prefix): Support also DW_TAG_module.
4508         (new_symbol): Fill in cplus_specific.demangled_name if it is still
4509         missing from SYMBOL_SET_NAMES in the language_fortran case.
4510         (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
4511         variables.
4512         (read_type_die) <DW_TAG_module>: New.
4513         (MAX_SEP_LEN): Increase to 7.
4514         (typename_concat): New parameter physname.  New variable lead.  Support
4515         also language_fortran.
4516         * f-exp.y (yylex): Consider : also as a symbol name character class.
4517         * f-lang.c: Include cp-support.h.
4518         (f_word_break_characters, f_make_symbol_completion_list): New functions.
4519         (f_language_defn): Use cp_lookup_symbol_nonlocal,
4520         f_word_break_characters and f_make_symbol_completion_list.
4521         * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
4522         * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
4523         * symtab.c (symbol_init_language_specific): Support language_fortran.
4524         (symbol_find_demangled_name): New comment on language_fortran.
4525         (symbol_natural_name, symbol_demangled_name): Use demangled_name even
4526         for language_fortran.
4527         (lookup_symbol_aux_local): Check imports also for language_fortran.
4528         (default_make_symbol_completion_list): Rename to ...
4529         (default_make_symbol_completion_list_break_on): ... this name.  New
4530         parameter break_on, use it.
4531         (default_make_symbol_completion_list): New stub.
4532         * symtab.h (default_make_symbol_completion_list_break_on): New
4533         prototype.
4534
4535 2010-06-02  Joel Brobecker  <brobecker@adacore.com>
4536
4537         * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
4538         to error.
4539
4540 2010-06-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4541
4542         * dwarf2read.c (typename_concat): Add const to the variable sep.
4543
4544 2010-06-02  Tom Tromey  <tromey@redhat.com>
4545
4546         * dwarf2loc.h (dwarf2_per_cu_data): Declare.
4547         * dwarf2read.c (dwarf_stack_op_name): No longer static.  Return
4548         type is const.  Add 'def' argument.  Add missing operators, remove
4549         unhandled ones.
4550         (decode_locdesc): Update.
4551         (dwarf2_always_disassemble): New global.
4552         (show_dwarf2_always_disassemble): New function.
4553         (_initialize_dwarf2_read): Add always-disassemble.
4554         (dwarf2_per_cu_offset_size): New function.
4555         * dwarf2loc.c (dwarf2_always_disassemble): Declare.
4556         (piece_end_p): New function.
4557         (locexpr_describe_location_piece): Replace 'size' argument with
4558         'end'.  Use piece_end_p.  Rewrite recognition of TLS.  Recognize
4559         some constants.  Remove errors.
4560         (disassemble_dwarf_expression): New function.
4561         (locexpr_describe_location_1): Use disassemble_dwarf_expression.
4562         Add 'offset_size' argument.
4563         (loclist_describe_location): Change output formatting.
4564         * dwarf2expr.h (dwarf_stack_op_name): Declare.
4565
4566 2010-06-02  Sami Wagiaalla  <swagiaal@redhat.com>
4567
4568         * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
4569         anonymous type case.
4570
4571 2010-06-02  Pierre Muller  <muller@ics.u-strasbg.fr>
4572
4573         * dwarf2read.c (read_subrange_type): Handle missing base type
4574         according to Dwarf-2 specifications.
4575
4576 2010-06-01  Sergio Durigan Junior  <sergiodj@redhat.com>
4577
4578         * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
4579         BINOP_EXCL.
4580         (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
4581         UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
4582         (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
4583         BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
4584         UNOP_CHMAX, UNOP_CHMIN.
4585         * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
4586         UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
4587         UNOP_CHMIN>: Remove opcodes.
4588
4589 2010-06-01  Pierre Muller  <muller@ics.u-strasbg.fr>
4590
4591         * dwarf2read.c (read_func_scope): Do not complain for
4592         external function if bounds are not found.
4593
4594 2010-06-01  Pedro Alves  <pedro@codesourcery.com>
4595
4596         * NEWS: Mention gdbserver fast tracepoints support.
4597
4598 2010-05-31  Pierre Muller  <muller@ics.u-strasbg.fr>
4599
4600         * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
4601         New macros.
4602         (windows_set_console_info): New function.
4603         (windows_create_inferior): Call windows_set_console_info
4604         if NEW_CONSOLE is true.
4605         (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
4606         (_initialize_loadable): Initialize GetConsoleFontSize and
4607         GetCurrentConsoleFont.
4608
4609 2010-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4610
4611         * Makefile.in (RDYNAMIC): New.
4612         (SFILES): Add proc-service.list.
4613         * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
4614         (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
4615         * config/arm/linux.mh: Likewise.
4616         * config/i386/linux.mh: Likewise.
4617         * config/i386/linux64.mh: Likewise.
4618         * config/ia64/linux.mh: Likewise.
4619         * config/m32r/linux.mh: Likewise.
4620         * config/m68k/linux.mh: Likewise.
4621         * config/mips/linux.mh: Likewise.
4622         * config/pa/linux.mh: Likewise.
4623         * config/powerpc/linux.mh: Likewise.
4624         * config/powerpc/ppc64-linux.mh: Likewise.
4625         * config/s390/s390.mh: Likewise.
4626         * config/sparc/linux.mh: Likewise.
4627         * config/sparc/linux64.mh: Likewise.
4628         * config/xtensa/linux.mh: Likewise.
4629         * configure.ac: New RDYNAMIC on native host and GCC.
4630         (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
4631         * configure: Regenerate.
4632         * proc-service.list: New.
4633
4634 2010-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4635
4636         * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
4637         CONTENT.
4638
4639 2010-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4640
4641         * linux-nat.c (linux_nat_wait_1): Do not call
4642         linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
4643         TARGET_WAITKIND_SIGNALLED.
4644
4645 2010-05-27  Joel Brobecker  <brobecker@adacore.com>
4646
4647         * ada-lang.c (ada_inferior_data): New struct.
4648         (ada_inferior_data): New static global.
4649         (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
4650         (ada_get_tsd_type): New functions.
4651         (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
4652         to look the tsd type up.
4653         (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
4654         event.  Set ada_inferior_data.
4655
4656 2010-05-27  Pedro Alves  <pedro@codesourcery.com>
4657
4658         * remote.c (unpack_varlen_hex): Remove forward declaration.
4659         (remote_console_output): Make static, and add forward declaration.
4660         * remote.h: Drop FIXME comment.
4661         (unpack_varlen_hex): Declare.
4662         (remote_console_output, remote_cisco_objfile_relocate)
4663         (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
4664         Delete declarations.
4665         * tracepoint.c: Include "remote.h".
4666         (unpack_varlen_hex): Delete declaration.
4667
4668 2010-05-27  Tom Tromey  <tromey@redhat.com>
4669
4670         * dwarf2loc.c (struct piece_closure) <refc>: New field.
4671         (allocate_piece_closure): Initialize refc.
4672         (copy_pieced_value_closure): Use refc.
4673         (free_pieced_value_closure): Likewise.
4674
4675 2010-05-27  Tom Tromey  <tromey@redhat.com>
4676
4677         * arm-tdep.c (push_stack_item): 'contents' now const.
4678         (arm_push_dummy_call): Make 'val' const.  Use value_contents, not
4679         value_contents_writeable.  Introduce new temporary.
4680
4681 2010-05-27  Tom Tromey  <tromey@redhat.com>
4682
4683         * findcmd.c (parse_find_args): Use value_contents, not
4684         value_contents_raw.
4685
4686 2010-05-27  Tom Tromey  <tromey@redhat.com>
4687
4688         * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
4689         const.  Use value_contents, not value_contents_writeable.
4690
4691 2010-05-27  Joel Brobecker  <brobecker@adacore.com>
4692
4693         * ada-lang.c (ensure_lval): Replace call to value_contents_raw
4694         by call to value_contents.
4695
4696 2010-05-27  Ozkan Sezer  <sezeroz@gmail.com>
4697
4698         * MAINTAINERS: Add myself for write after approval privileges.
4699
4700 2010-05-26  Doug Evans  <dje@google.com>
4701
4702         Allow python to find its files if moved from original location.
4703         * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
4704         (GDB_AC_WITH_DIR): Call it.
4705         * configure.ac: Define WITH_PYTHON_PATH if we can find the
4706         python installation directory.
4707         * config.in: Regenerate.
4708         * configure: Regenerate.
4709         * defs.h (python_libdir): Declare.
4710         * main.c (python_libdir): Define.
4711         (captured_main): Initialize python_libdir.
4712         * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
4713         call Py_SetProgramName to make sure python can find its libraries
4714         and modules.
4715
4716         * configure.ac: Try to use python's distutils to fetch compilation
4717         parameters.
4718         * configure: Regenerate.
4719         * python/python-config.py: New file.
4720
4721 2010-05-26  Ozkan Sezer  <sezeroz@gmail.com>
4722
4723         * ser-tcp.c (net_open): Check error return from socket() call by its
4724         equality to -1 not by it being negative.
4725         (net_close): Likewise.
4726
4727 2010-05-26  Pedro Alves  <pedro@codesourcery.com>
4728
4729         * NEWS: Mention the `qRelocInsn' feature.
4730         * gdbarch.sh (relocate_instruction): New.
4731         * amd64-tdep.c (rip_relative_offset): New.
4732         (append_insns): New.
4733         (amd64_relocate_instruction): New.
4734         (amd64_init_abi): Install it.
4735         * i386-tdep.c (append_insns): New.
4736         (i386_relocate_instruction): New.
4737         (i386_gdbarch_init): Install it.
4738         * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
4739         * gdbarch.h, gdbarch.c: Regenerate.
4740
4741 2010-05-26  Tom Tromey  <tromey@redhat.com>
4742
4743         * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
4744         (struct dwarf2_loclist_baton) <data>: Likewise.
4745         * dwarf2loc.c (find_location_expression): Constify return type.
4746         (dwarf2_evaluate_loc_desc): Make 'data' argument const.
4747         (dwarf2_loc_desc_needs_frame): Likewise.
4748         (loclist_read_variable): Constify.
4749         (loclist_describe_location): Likewise.
4750         (loclist_tracepoint_var_ref): Likewise.
4751
4752 2010-05-25  Tom Tromey  <tromey@redhat.com>
4753
4754         * dwarf2loc.c (dwarf_expr_frame_base): Constify.
4755         (dwarf_expr_frame_base_1): Likewise.
4756         (read_pieced_value): Update.
4757         (needs_frame_frame_base): Constify.
4758         (dwarf2_tracepoint_var_loc): Likewise.
4759         (dwarf2_tracepoint_var_access): Likewise.
4760         (locexpr_describe_location_piece): Likewise.
4761         (locexpr_describe_location_1): Likewise.
4762         * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
4763         Constify.
4764         (data): Now const.
4765         (struct dwarf_expr_piece) <v.literal.data>: Likewise.
4766         (dwarf_expr_eval, read_uleb128, read_sleb128)
4767         (dwarf2_read_address): Update.
4768         * dwarf2expr.c (dwarf_expr_eval): Constify.
4769         (read_uleb128): Likewise.
4770         (read_sleb128): Likewise.
4771         (dwarf2_read_address): Likewise.
4772         (require_composition): Likewise.
4773         (execute_stack_op): Likewise.
4774         * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
4775         "const gdb_byte *".
4776         * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
4777         Now const.
4778         (no_get_frame_base): Constify.
4779         (execute_stack_op): Likewise.
4780         (execute_cfa_program): Likewise.
4781         (read_encoded_value): Likewise.
4782
4783 2010-05-25  Doug Evans  <dje@google.com>
4784
4785         * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
4786
4787         * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
4788         * event-loop.c: ... here.
4789         * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
4790         `error' for clarity.
4791         (tui_getc): Pass correct value for `error' parameter to
4792         tui_readline_output.
4793
4794         Add python gdb.GdbError and gdb.string_to_argv.
4795         * NEWS: Document them.
4796         * python/py-cmd.c (cmdpy_function): Don't print a traceback if
4797         the exception is gdb.GdbError.  Print a second traceback if there's
4798         an error computing the error message.
4799         (gdbpy_string_to_argv): New function.
4800         * python/py-utils.c (gdbpy_obj_to_string): New function.
4801         (gdbpy_exception_to_string): New function.
4802         * python/python-internal.h (gdbpy_string_to_argv): Declare.
4803         (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
4804         (gdbpy_gdberror_exc): Declare.
4805         * python/python.c (gdbpy_gdberror_exc): New global.
4806         (_initialize_python): Initialize gdbpy_gdberror_exc and create
4807         gdb.GdbError.
4808         (GdbMethods): Add string_to_argv.
4809
4810 2010-05-21  Pierre Muller  <muller@ics.u-strasbg.fr>
4811
4812         * windows-nat.c (display_selector): Call GetLastError to give better
4813         failure explanation.
4814
4815 2010-05-24  Pedro Alves  <pedro@codesourcery.com>
4816
4817         * config.in: Regenerate.
4818
4819 2010-05-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
4820
4821         Code cleanup.
4822         * target.c (push_target): Return only void.  Remove the return value
4823         comment.
4824         * target.h (push_target): Return only void.
4825
4826 2010-05-23  Pedro Alves  <pedro@codesourcery.com>
4827
4828         Update gnulib from latest git.
4829         (250b80067c1e1d8faa0c42fb572f721975b929c5)
4830
4831         * gnulib/memcmp.c: Removed.
4832         * gnulib/memchr.valgrind: New.
4833         * gnulib/stddef.in.h: New.
4834         * gnulib/Makefile.am: Updated.
4835         * gnulib/memchr.c: Updated.
4836         * gnulib/memmem.c: Updated.
4837         * gnulib/stdint.in.h: Updated.
4838         * gnulib/str-two-way.h: Updated.
4839         * gnulib/string.in.h: Updated.
4840         * gnulib/wchar.in.h: Updated.
4841
4842         * gnulib/extra/link-warning.h: Removed.
4843         * gnulib/extra/c++defs.h: New.
4844         * gnulib/extra/warn-on-use.h: New.
4845         * gnulib/extra/arg-nonnull.h: Updated.
4846
4847         * gnulib/m4/extensions.m4: Updated.
4848         * gnulib/m4/gnulib-cache.m4: Updated.
4849         * gnulib/m4/gnulib-common.m4: Updated.
4850         * gnulib/m4/gnulib-comp.m4: Updated.
4851         * gnulib/m4/gnulib-tool.m4: Updated.
4852         * gnulib/m4/include_next.m4: Updated.
4853         * gnulib/m4/longlong.m4: Updated.
4854         * gnulib/m4/memchr.m4: Updated.
4855         * gnulib/m4/memmem.m4: Updated.
4856         * gnulib/m4/stdint.m4: Updated.
4857         * gnulib/m4/string_h.m4: Updated.
4858         * gnulib/m4/memcmp.m4: Removed.
4859         * gnulib/m4/onceonly_2_57.m4: Removed.
4860         * gnulib/m4/00gnulib.m4: New.
4861         * gnulib/m4/mmap-anon.m4: New.
4862         * gnulib/m4/multiarch.m4: New.
4863         * gnulib/m4/onceonly.m4: New.
4864         * gnulib/m4/stddef_h.m4: New.
4865         * gnulib/m4/warn-on-use.m4: New.
4866         * gnulib/m4/wchar.m4: Removed.
4867         * gnulib/m4/wchar_h.m4: New.
4868         * gnulib/m4/wchar_t.m4: New.
4869         * gnulib/m4/wint_t.m4: New.
4870
4871         * aclocal.m4: Regenerate.
4872         * config.in: Likewise.
4873         * configure: Likewise.
4874         * gnulib/Makefile.in: Likewise.
4875
4876 2010-05-21  Tom Tromey  <tromey@redhat.com>
4877
4878         * dwarf2loc.c (extract_bits_primitive): New function.
4879         (extract_bits): Likewise.
4880         (insert_bits): Likewise.
4881         (copy_bitwise): Likewise.
4882         (read_pieced_value): Do all operations in bits.
4883         (write_pieced_value): Likewise.
4884         * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
4885         * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
4886         Always use xrealloc to resize piece array.
4887         (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
4888         <DW_OP_piece>: Update.
4889         <DW_OP_bit_piece>: New case.
4890
4891 2010-05-21  Tom Tromey  <tromey@redhat.com>
4892
4893         * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
4894         <DWARF_VALUE_OPTIMIZED_OUT>: New case.
4895         * dwarf2expr.h (enum dwarf_value_location)
4896         <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
4897         * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
4898         (add_piece): Handle empty piece.
4899         (execute_stack_op) <DW_OP_piece>: Handle
4900         DWARF_VALUE_OPTIMIZED_OUT.
4901
4902 2010-05-21  Tom Tromey  <tromey@redhat.com>
4903
4904         * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
4905         evaluate_subexp, not evaluate_subexp_with_coercion.
4906
4907 2010-05-21  Pierre Muller  <muller@ics.u-strasbg.fr>
4908
4909         * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
4910         attribute.
4911
4912 2010-05-21  Tom Tromey  <tromey@redhat.com>
4913
4914         * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
4915         offset.
4916         (write_pieced_value): Likewise.
4917
4918 2010-05-21  Pierre Muller  <muller@ics.u-strasbg.fr>
4919
4920         * dwarf2read.c (process_die): Also allow DW_TAG_const_type
4921         and DW_TAG_volatile_type.
4922         (new_symbol): Likewise.
4923
4924 2010-05-20  Pierre Muller  <muller@ics.u-strasbg.fr>
4925
4926         * p-valprint.c (pascal_val_print): Call get_array_bounds
4927         to obtain the number of elements in an array.
4928
4929 2010-05-19  Doug Evans  <dje@google.com>
4930
4931         * python.c (gdbpy_print_stack): Ensure output ends with a newline.
4932
4933         * python.c (source_python_script): Add comment.
4934         (source_python_script_for_objfile): Remove unnecessary call to
4935         gdbpy_print_stack.
4936
4937 2010-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
4938             Sergio Durigan Junior  <sergiodj@redhat.com>
4939
4940         Code cleanup.
4941         * parse.c (exp_iterate): Use operator_length wrapper function.
4942
4943 2010-05-18  Michael Snyder  <msnyder@vmware.com>
4944
4945         * ada-lang.c: White space.
4946         * ada-typeprint.c: White space.
4947         * ada-valprint.c: White space.
4948         * addrmap.c: White space.
4949         * auxv.c: White space.
4950         * ax-gdb.c: White space.
4951
4952 2010-05-18  Hui Zhu  <teawater@gmail.com>
4953
4954         * linux-fork.c (inferior_call_waitpid_cleanup): Add check
4955         for oldfp.
4956         (inferior_call_waitpid): Move make_cleanup out of check.
4957         Check the return of waitpid.
4958         (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
4959
4960 2010-05-17  Michael Snyder  <msnyder@vmware.com>
4961
4962         * tui/tui.c: White space.
4963         * tui/tui-data.c: White space.
4964         * tui/tui-disasm.c: White space.
4965         * tui/tui-file.c: White space.
4966         * tui/tui-interp.c: White space.
4967         * tui/tui-main.c: White space.
4968         * tui/tui-out.c: White space.
4969         * tui/tui-regs.c: White space.
4970         * tui/tui-source.c: White space.
4971         * tui/tui-stack.c: White space.
4972         * tui/tui-win.c: White space.
4973         * tui/tui-winsource.c: White space.
4974
4975         * procfs.c: White space.
4976
4977         * python/py-auto-load.c: White space.
4978         * python/py-block.c: White space.
4979         * python/py-breakpoint.c: White space.
4980         * python/py-cmd.c: White space.
4981         * python/py-function.c: White space.
4982         * python/py-lazy-string.c: White space.
4983         * python/py-objfile.c: White space.
4984         * python/py-param.c: White space.
4985         * python/py-prettyprint.c: White space.
4986         * python/py-progspace.c: White space.
4987         * python/py-symtab.c: White space.
4988         * python/python.c: White space.
4989         * python/py-type.c: White space.
4990         * python/py-utils.c: White space.
4991         * python/py-value.c: White space.
4992
4993         * mi/mi-cmd-break.c: White space.
4994         * mi/mi-cmd-env.c: White space.
4995         * mi/mi-cmds.c: White space.
4996         * mi/mi-cmd-stack.c: White space.
4997         * mi/mi-cmd-var.c: White space.
4998         * mi/mi-console.c: White space.
4999         * mi/mi-getopt.c: White space.
5000         * mi/mi-interp.c: White space.
5001         * mi/mi-main.c: White space.
5002         * mi/mi-out.c: White space.
5003         * mi/mi-parse.c: White space.
5004
5005         * cli/cli-cmds.c: White space.
5006         * cli/cli-decode.c: White space.
5007         * cli/cli-dump.c: White space.
5008         * cli/cli-interp.c: White space.
5009         * cli/cli-logging.c: White space.
5010         * cli/cli-script.c: White space.
5011         * cli/cli-setshow.c: White space.
5012
5013         * valarith.c: White space.
5014         * valops.c: White space.
5015         * valprint.c: White space.
5016         * value.c: White space.
5017         * varobj.c: White space.
5018         * xcoffread.c: White space.
5019         * xml-support.c: White space.
5020         * xml-tdesc.c: White space.
5021
5022 2010-05-17  Andreas Schwab  <schwab@redhat.com>
5023
5024         PR gdb/11092
5025         * c-lang.c (c_printstr): Compute real length of NUL terminated
5026         string at first.
5027
5028 2010-05-17  Joel Brobecker  <brobecker@adacore.com>
5029
5030         * parse.c (parse_exp_in_context): When block is not NULL, use
5031         its associated language to parse the expression instead of
5032         the current_language.
5033
5034 2010-05-17  Joel Brobecker  <brobecker@adacore.com>
5035
5036         * jv-lang.c (java_lookup_class): Remove commented out code.
5037         (type_from_class): Likewise.
5038         (java_op_print_tab): Remove commented-out elements.
5039
5040 2010-05-17  Joel Brobecker  <brobecker@adacore.com>
5041
5042         * ada-lang.c (to_fixed_range_type): The the raw index type as
5043         argument instead of the raw type name.  Remove orig_type parameter.
5044         Update calls throughout.
5045         (ada_fixup_array_indexes_type): New function.
5046         (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
5047         * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
5048         * ada-typeprint.c (print_range_type): Renames print_range_type_named.
5049         Remove name parameter.
5050         (print_array_type): Add call to ada_fixup_array_indexes_type.
5051         Update calls to print_range_type.
5052         (ada_print_type): Update calls to print_range_type.
5053
5054 2010-05-17  Pierre Muller  <muller@ics.u-strasbg.fr>
5055
5056         * dwarf2read.c (read_set_type): Set type length if
5057         DW_AT_byte_size attribute is present.
5058
5059 2010-05-17  Pierre Muller  <muller@ics.u-strasbg.fr>
5060
5061         * p-valprint.c (pascal_val_print): Handle set type if range limits
5062         are undefined but size is known.
5063
5064 2010-05-17  Pedro Alves  <pedro@codesourcery.com>
5065
5066         * procfs.c: Reformat.
5067
5068 2010-05-16  Michael Snyder  <msnyder@vmware.com>
5069
5070         * target.c: White space.
5071         * target-descriptions.c: White space.
5072         * target-memory.c: White space.
5073         * thread.c: White space.
5074         * top.c: White space.
5075         * tracepoint.c: White space.
5076         * trad-frame.c: White space.
5077         * tramp-frame.c: White space.
5078         * ui-file.c: White space.
5079         * ui-out.c: White space.
5080         * user-regs.c: White space.
5081         * utils.c: White space.
5082
5083         * scm-exp.c: White space.
5084         * scm-lang.c: White space.
5085         * scm-valprint.c: White space.
5086         * sentinel-frame.c: White space.
5087         * ser-base.c: White space.
5088         * ser-go32.c: White space.
5089         * serial.c: White space.
5090         * ser-mingw.c: White space.
5091         * ser-pipe.c: White space.
5092         * ser-tcp.c: White space.
5093         * ser-unix.c: White space.
5094         * solib.c: White space.
5095         * solib-darwin.c: White space.
5096         * solib-frv.c: White space.
5097         * solib-irix.c: White space.
5098         * solib-osf.c: White space.
5099         * solib-pa64.c: White space.
5100         * solib-som.c: White space.
5101         * solib-spu.c: White space.
5102         * solib-svr4.c: White space.
5103         * solib-target.c: White space.
5104         * source.c: White space.
5105         * stabsread.c: White space.
5106         * stack.c: White space.
5107         * std-regs.c: White space.
5108         * symfile.c: White space.
5109         * symmisc.c: White space.
5110         * symtab.c: White space.
5111
5112 2010-05-16  Michael Snyder  <msnyder@vmware.com>
5113
5114         * source.c (_initialize_source): Add "rev" as an abbreviation
5115         for the "reverse-search" command.
5116
5117 2010-05-16  Michael Snyder  <msnyder@vmware.com>
5118
5119         * record.c: White space.
5120         * regcache.c: White space.
5121         * reggroups.c: White space.
5122         * remote-fileio.c: White space.
5123         * remote-m32r-sdi.c: White space.
5124         * remote-mips.c: White space.
5125         * remote-sim.c: White space.
5126         * remote.c: White space.
5127         (process_g_packet): Remove orphan braces.
5128
5129 2010-05-15  Michael Snyder  <msnyder@vmware.com>
5130
5131         * parse.c: White space.
5132         * p-lang.c: White space.
5133         * posix-hdep.c: White space.
5134         * printcmd.c: White space.
5135         * progspace.c: White space.
5136         * prologue-value.c: White space.
5137         * psymtab.c: White space.
5138         * p-typeprint.c: White space.
5139         * p-valprint.c: White space.
5140
5141         * objc-lang.c: White space.
5142         * objfiles.c: White space.
5143         * observer.c: White space.
5144         * osabi.c: White space.
5145         * osdata.c: White space.
5146
5147         * m2-lang.c: White space.
5148         * m2-valprint.c: White space.
5149         * macrocmd.c: White space.
5150         * macroexp.c: White space.
5151         * macroscope.c: White space.
5152         * macrotab.c: White space.
5153         * main.c: White space.
5154         * maint.c: White space.
5155         * mdebugread.c: White space.
5156         * memattr.c: White space.
5157         * minsyms.c: White space.
5158         * monitor.c: White space.
5159
5160 2010-05-14  Michael Snyder  <msnyder@vmware.com>
5161
5162         * jv-lang.c: White space.
5163         * jv-typeprint.c: White space.
5164         * jv-valprint.c: White space.
5165         * language.c: White space.
5166         * libunwind-frame.c: White space.
5167         * linespec.c: White space.
5168         * linux-nat.c: White space.
5169         * linux-record.c: White space.
5170         * linux-thread-db.c: White space.
5171
5172         * infcall.c: White space.
5173         * inf-child.c: White space.
5174         * infcmd.c: White space.
5175         * inferior.c: White space.
5176         * inf-loop.c: White space.
5177         * inflow.c: White space.
5178         * inline-frame.c: White space.
5179         * interps.c: White space.
5180
5181         * gcore.c: White space.
5182         * gdb.c: White space.
5183         * gdbtypes.c: White space.
5184         * gnu-nat.c: White space.
5185         * gnu-v2-abi.c: White space.
5186         * gnu-v3-abi.c: White space.
5187
5188         * findcmd.c: White space.
5189         * findvar.c: White space.
5190         * fork-child.c: White space.
5191         * frame-base.c: White space.
5192         * frame.c: White space.
5193         * frame-unwind.c: White space.
5194         * f-valprint.c: White space.
5195
5196         * elfread.c: White space.
5197         * environ.c: White space.
5198         * eval.c: White space.
5199         * event-loop.c: White space.
5200         * event-top.c: White space.
5201         * exceptions.c: White space.
5202         * exec.c: White space.
5203         * expprint.c: White space.
5204
5205         * dbxread.c: White space.
5206         * dcache.c: White space.
5207         * disasm.c: White space.
5208         * doublest.c: White space.
5209         * dsrec.c: White space.
5210         * dummy-frame.c: White space.
5211         * dwarf2expr.c: White space.
5212         * dwarf2-frame.c: White space.
5213         * dwarf2loc.c: White space.
5214         * dwarf2read.c: White space.
5215
5216 2010-05-14  Phil Muldoon  <pmuldoon@redhat.com>
5217
5218         PR python/11482
5219
5220         * python/py-value.c (valpy_hash): New function.
5221         (value_object_type): Register valpy_hash.
5222
5223 2010-05-14  Hui Zhu  <teawater@gmail.com>
5224             Michael Snyder  <msnyder@vmware.com>
5225
5226         * linux-fork.c (gdbthread.h): New include.
5227         (fork_info): Add parent_ptid.
5228         (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
5229         functions.
5230         (delete_checkpoint_command): Call inferior_call_waitpid.
5231         (checkpoint_command): Set parent_ptid.
5232
5233 2010-05-13  Michael Snyder  <msnyder@vmware.com>
5234
5235         * dictionary.c: Re-indent to GNU coding standard.
5236
5237         * charset.c: White space.
5238         * c-lang.c: White space.
5239         * cli-out.c: White space.
5240         * coffread.c: White space.
5241         * complaints.c: White space.
5242         * completer.c: White space.
5243         * corefile.c: White space.
5244         * corelow.c: White space.
5245         * cp-abi.c: White space.
5246         * cp-namespace.c: White space.
5247         * cp-support.c: White space.
5248         * cp-valprint.c: White space.
5249         * c-typeprint.c: White space.
5250         * c-valprint.c: White space.
5251         * blockframe.c: White space.
5252         * breakpoint.c: White space.
5253         * buildsym.c: White space.
5254         * blockframe.c: White space.
5255         * bcache.c: White space.
5256         * gdbarch.sh: White space, add blank lines.
5257         * arch-utils.c: Ditto.
5258         * gdbarch.c: Regenerate.
5259         * frame.c: White space, add blank lines.
5260         * stack.c: White space, add blank lines.
5261         (initialize_stack): Remove long-dead code.
5262
5263 2010-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5264
5265         Code cleanup.
5266         * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
5267         (locexpr_read_variable, loclist_read_variable): Update the callers.
5268
5269 2010-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5270
5271         Code cleanup.
5272         * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
5273         Remove check of NULL returned by tag_type_to_type.
5274         (die_containing_type): Remove variable type.  Remove type_die variable
5275         initialization.  Remove check of NULL returned by tag_type_to_type.
5276
5277 2010-05-11  Pierre Muller  <muller@ics.u-strasbg.fr>
5278
5279         PR exp/11530.
5280         * gdbtypes.c (lookup_struct_elt_type): Also lookup
5281         names of unnamed structures or unions.
5282
5283 2010-05-11  Pierre Muller  <muller@ics.u-strasbg.fr>
5284
5285         * procfs.c (proc_watchpoint_address): New function.
5286         (procfs_stopped_by_watchpoint): Remove useless check after
5287         find_procinfo_or_die call.
5288         (procfs_stopped_data_address): New function.
5289         (procfs_use_watchpoints): Register new watchpoint related function.
5290
5291 2010-05-11  Tom Tromey  <tromey@redhat.com>
5292
5293         * eval.c (evaluate_subexp_standard): Revert inadvertent change.
5294
5295 2010-05-10  Michael Snyder  <msnyder@vmware.com>
5296
5297         * utils.c: White space cleanup.
5298
5299 2010-05-10  Tom Tromey  <tromey@redhat.com>
5300
5301         * eval.c (ptrmath_type_p): Add 'lang' argument.
5302         (evaluate_subexp_standard): Update.
5303         (evaluate_subexp_with_coercion): Update.
5304         * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
5305
5306 2010-05-10  Michael Snyder  <msnyder@vmware.com>
5307
5308         * utils.c (do_fclose_cleanup) Restore local variable.
5309
5310 2010-05-09  Doug Evans  <dje@google.com>
5311
5312         * record.c (init_record_core_ops): Rename record_core to record-core.
5313
5314 2010-05-08  Joel Brobecker  <brobecker@adacore.com>
5315
5316         Implement task switching on pa-hpux.
5317         * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
5318         (inf_ttrace_target): Set t->to_get_ada_task_ptid.
5319
5320 2010-05-08  Pierre Muller  <muller@ics.u-strasbg.fr>
5321
5322         * valops.c (find_overload_match): Add missing i18n markup.
5323
5324 2010-05-08  Pierre Muller  <muller@ics.u-strasbg.fr>
5325
5326         * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
5327
5328 2010-05-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
5329
5330         * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
5331         list for the obconcat call.
5332         * mdebugread.c (parse_symbol): Likewise.
5333         * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
5334         Likewise.
5335         * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
5336         New variable ap.  Remove variables len and val.
5337         * symfile.h (obconcat): Likewise for the prototype.
5338
5339 2010-05-07  Michael Snyder  <msnyder@vmware.com>
5340
5341         * python/python.c (execute_gdb_command): Remove unused variables.
5342         * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
5343         * python/py-breakpoint.c (gdbpy_breakpoint_created):
5344         Remove unused variable.
5345         * python/py-cmd.c (cmdpy_function): Remove unused variable.
5346         (cmdpy_completer): Remove unused variable.
5347         * python/py-frame.c (frapy_find_sal): Remove unused variable.
5348         * python/py-function.c (fnpy_call): Remove unused variable.
5349         * python/py-objfile.c (objfile_to_objfile_object):
5350         Remove unused variable.
5351         * python/py-param.c (parmpy_init): Remove unused variable.
5352         * python/py-prettyprint.c (apply_varobj_pretty_printer):
5353         Remove unused variable.
5354         (gdbpy_default_visualizer): Remove unused variable.
5355         * python/py-progspace.c (pspace_to_pspace_object):
5356         Remove unused variable.
5357         * python/py-symtab.c (symtab_and_line_to_sal_object):
5358         Remove unused variable.
5359         * python/py-type.c (typy_template_argument):
5360         Remove unused variable.
5361         * python/py-value.c (valpy_string): Remove unused variable.
5362         (convert_value_from_python): Remove unused variables.
5363
5364 2010-05-07  Michael Snyder  <msnyder@vmware.com>
5365
5366         * valops.c (value_cast_pointers): Restore unused variable 'type1',
5367         and use it to compute variable 't1'.
5368
5369 2010-05-07  Joel Brobecker  <brobecker@adacore.com>
5370
5371         * ada-lang.c (assign_aggregate): Remove unused variable.
5372
5373 2010-05-07  Sami Wagiaalla  <swagiaal@redhat.com>
5374
5375         PR C++/7943:
5376         * valops.c (find_overload_match): Handle fsym == NULL case.
5377         Add int no_adl argument.
5378         (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
5379         when appropriate.
5380         Add int no_adl argument.
5381         (find_oload_champ_namespace):   Add int no_adl argument.
5382         * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
5383         expression.
5384         * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
5385         * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
5386         Evaluate arguments and use them to perform ADL lookup.
5387         Pass no_adl argument to find_overload_match.
5388         Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
5389         * cp-support.h: Added prototype for
5390         make_symbol_overload_list_namespace.
5391         * cp-support.c (make_symbol_overload_list_namespace): New function.
5392         (make_symbol_overload_list_adl_namespace): New function.
5393         (make_symbol_overload_list_adl): New function.
5394         (make_symbol_overload_list_using): Moved code to add function to
5395         overload set to make_symbol_overload_list_namespace.
5396         * c-exp.y: create UNKNOWN_CPP_NAME token.
5397         Add parse rule for ADL functions.
5398         (classify_name): Recognize an UNKNOWN_CPP_NAME.
5399
5400 2010-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
5401
5402         * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
5403         sentinel.
5404
5405 2010-05-07  Joel Brobecker  <brobecker@adacore.com>
5406
5407         Implement task switching on solaris targets.
5408         * sol-thread.c (thread_db_find_thread_from_tid)
5409         (sol_get_ada_task_ptid): New functions.
5410         (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
5411
5412 2010-05-07  Pedro Alves  <pedro@codesourcery.com>
5413
5414         * remote.c (remote_query_supported_append): Use reconcat.
5415         (remote_query_supported): Install a cleanup.  Use reconcat.
5416
5417 2010-05-07  Pedro Alves  <pedro@codesourcery.com>
5418
5419         * gdbarch.sh (qsupported): Delete.
5420         * gdbarch.h, gdbarch.c: Regenerate.
5421         * remote.c (remote_query_supported): Remove use of
5422         gdbarch_qsupported.
5423
5424 2010-05-06  Sergio Durigan Junior  <sergiodj@redhat.com>
5425
5426         * xml-syscall.c (syscall_start_syscalls_info): Remove unused
5427         function.
5428
5429 2010-05-06  Michael Snyder  <msnyder@vmware.com>
5430
5431         * xml-support.c (xinclude_start_include): Delete unused variable.
5432         (xml_process_xincludes): Delete unused variable.
5433         * xml-syscall.c (syscall_parse_xml): Delete unused variable.
5434         * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
5435         (tdesc_find_arch_register): Delete unused variable.
5436         (tdesc_use_registers): Delete unused variable.
5437         * xml-tdesc.c (tdesc_start_target): Delete unused variable.
5438         * inferior.c (print_inferior): Delete unused variable.
5439         * record.c (record_open_1): Delete unused variable.
5440         (record_restore): Delete unused variable.
5441         (cmd_record_save): Delete unused variable.
5442         * gcore.c (derive_heap_segment): Delete unused variable.
5443         (objfile_find_memory_regions): Use unused variable.
5444         * jit.c (jit_inferior_init): Delete unused variable.
5445         * progspace.c (clone_program_space): Delete unused variable.
5446         (pspace_empty_p): Delete unused variable.
5447
5448         * frame-unwind.c (frame_unwind_find_by_frame):
5449         Delete unused variable.
5450         * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
5451         * cp-support.c (mangled_name_to_comp): Delete unused variable.
5452         (method_name_from_physname): Delete unused variable.
5453         (cp_func_name): Delete unused variable.
5454         (cp_validate_operator): Delete unused variable.
5455         * cp-namespace.c (cp_scan_for_anonymous_namespaces):
5456         Delete unused variable.
5457         * trad-frame.c (trad_frame_get_prev_register):
5458         Delete unused variable.
5459         * tramp-frame.c (tramp_frame_cache): Delete unused variable.
5460
5461         * serial.c (serial_for_fd): Delete unused variable.
5462         * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
5463         * top.c (execute_command): Delete unused variable.
5464         (init_main): Delete unused variable.
5465         * utils.c (do_fclose_cleanup): Delete unused variable.
5466         (do_all_inferior_continuations): Delete unused variable.
5467         (initialize_utils): Delete unused variable.
5468         (internal_problem_mode): Delete unused global.
5469         * frame.c (get_prev_frame): Delete unused global.
5470         (get_frame_locals_address): Delete unused global.
5471         (get_frame_args_address): Delete unused global.
5472
5473         * p-typeprint.c (pascal_type_print_base): Delete unused variable.
5474         (pascal_type_print_varspec_prefix): Delete unused variable.
5475         * f-typeprint.c (f_type_print_base): Delete unused variable.
5476         (f_type_print_varspec_suffix): Delete unused variable.
5477         * m2-typeprint.c (m2_print_type): Delete unused variable.
5478         (m2_long_set): Delete unused variable.
5479         * ada-valprint.c (ada_val_print_1): Delete unused variable.
5480         * d-valprint.c (dynamic_array_type): Delete unused variable.
5481         * f-valprint.c (f77_get_dynamic_length_of_aggregate):
5482         Delete unused variable.
5483         (f77_create_arrayprint_offset_tbl): Delete unused variable.
5484         * m2-valprint.c (m2_val_print): Delete unused variable.
5485
5486         * ui-out.c (ui_out_field_int): Delete unused variable.
5487         (ui_out_field_fmt_int): Delete unused variable.
5488         * varobj.c (varobj_list_children): Delete unused variable.
5489         (varobj_set_value): Delete unused variable.
5490         (install_new_value_visualizer): Delete unused variable.
5491         (varobj_set_visualizer): Delete unused variable.
5492         (varobj_update): Delete unused variable.
5493         (varobj_editable_p): Delete unused variable.
5494         (c_value_of_root): Delete unused variable.
5495         (cplus_describe_child): Delete unused variable.
5496
5497         * ada-lang.c (add_defn_to_vec): Delete unused variable.
5498         (decode_constrained_packed_array_type): Delete unused variable.
5499         (add_defn_to_vec): Delete unused variable.
5500         (symbol_completion_match): Delete unused variable.
5501         (value_tag_from_contents_and_address): Delete unused variable.
5502         (ada_evaluate_subexp): Delete unused variable.
5503         * c-lang.c (classify_type): Delete unused variable.
5504         * f-lang.c (f_printstr): Delete unused variable.
5505         * objc-lang.c (objc_printstr): Delete unused variable.
5506         * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
5507         * jv-lang.c (type_from_class): ifdef unused variable.
5508         (java_class_name_from_physname): Delete unused variable.
5509         * m2-lang.c (m2_printstr): Delete unused variable.
5510
5511         * objfiles.c (objfile_relocate): Delete unused variable.
5512         * maint.c (_initialize_maint_cmds): Delete unused variable.
5513         * demangle.c (_initialize_demangler): Delete unused variable.
5514         * corefile.c (reopen_exec_file): Delete unused variable.
5515         * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
5516         * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
5517
5518         * osabi.c (_initialize_gdb_osabi): Delete unused variable.
5519         * memattr.c (mem_delete): Delete unused variable.
5520         (invalidate_target_mem_regions): Delete unused variable.
5521         * mem-break.c (default_memory_insert_breakpoint):
5522         Delete unused variable.
5523         * target.c (target_get_osdata): Delete unused variable.
5524         * parse.c (length_of_subexp): Delete unused variable.
5525         (prefixify_subexp): Delete unused variable.
5526         (exp_iterate): Delete unused variable.
5527         * reverse.c (delete_bookmark_command): Delete unused variable.
5528
5529         * macrocmd.c (_initialize_macrocmd): Delete unused variable.
5530         * macroexp.c (gather_arguments): Delete unused variable.
5531         (substitute_args): Delete unused variable.
5532         * completer.c (gdb_completer_loc_break_characters): Unused, delete.
5533         * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
5534         (_initialize_gdbarch): Delete unused variable.
5535         * gdbarch.c, gdbarch.h: Regenerate.
5536         * arch-utils.c (initialize_current_architecture):
5537         Delete unused variable.
5538         (_initialize_gdbarch_utils): Delete unused variable.
5539         * gdbtypes.c (make_cv_type): Delete unused variable.
5540         (make_type_with_address_space): Delete unused variable.
5541
5542         * linespec.c (decode_compound): Delete unused variable.
5543         * dictionary.c (iterator_next_hashed): Delete unused variable.
5544         * infcall.c (call_function_by_hand): Delete unused variable.
5545         * infcmd.c (step_1): Delete unused variable.
5546         (registers_info): Delete unused variable.
5547         (attach_command): Delete unused variable.
5548         * infrun.c (follow_exec): Delete unused variable.
5549         (handle_step_into_function_backwards): Delete unused variable.
5550         (_initialize_infrun): Delete unused variable.
5551         * stack.c (parse_frame_specification_1): Delete unused variable.
5552         (frame_info): Delete unused variable.
5553         (backtrace_command_1): Delete unused variable.
5554         (catch_info): Delete unused variable.
5555
5556         * eval.c (evaluate_subexp_standard): Delete unused variable.
5557         * valops.c (value_cast_pointers): Delete unused variable.
5558         (value_dynamic_cast): Delete unused variable.
5559         (value_array): Delete unused variable.
5560         (find_overload_match): Delete unused variable.
5561         * valarith.c (value_subscript): Delete unused variable.
5562         (value_binop): Delete unused variable.
5563         * valprint.c (_initialize_valprint): Delete unused variable.
5564         * printcmd.c (print_command_1): Delete unused variable.
5565         (address_info): Delete unused variable.
5566         (printf_command): Delete unused variable.
5567
5568         * auxv.c (target_auxv_search): Delete unused variable.
5569         * blockframe.c (get_frame_block): Delete unused variable.
5570         * regcache.c (regcache_cpy): Delete unused variable.
5571         (regcache_cpy_no_passthrough): Delete unused variable.
5572         * charset.c (wchar_iterate): Delete unused variable.
5573         (find_charset_names): Delete unused variable.
5574         (_initialize_charset): Delete unused variable.
5575         * disasm.c (do_mixed_source_and_assembly):
5576         Delete unused variable.
5577         * source.c (set_default_source_symtab_and_line):
5578         Delete unused variable.
5579         (set_substitute_path_command): Delete unused variable.
5580         * value.c (preserve_values): Delete unused variable.
5581         (value_from_double): Delete unused variable.
5582
5583 2010-05-05  Michael Snyder  <msnyder@vmware.com>
5584
5585         * psymtab.c (lookup_partial_symbol): Delete unused variable.
5586         (find_last_source_symtab_from_partial): Delete unused variable.
5587         * symfile.c (place_section): Delete unused variable.
5588         (default_symfile_offsets): Delete unused variable.
5589         (get_debug_link_info): Delete unused variable.
5590         (find_separate_debug_file_by_debuglink): Delete unused variable.
5591         (add_symbol_file_command): Delete unused variable.
5592         (symfile_find_segment_sections): Delete unused variable.
5593         * symmisc.c (free_symtab): Delete unused variable.
5594         (dump_symtab_1): Delete unused variable.
5595         * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
5596         (find_pc_sect_symtab): Delete unused variable.
5597         (skip_prologue_using_lineinfo): Delete unused variable.
5598         (sources_info): Delete unused variable.
5599         (completion_list_add_name): Delete unused variable.
5600         (expand_line_sal): Delete unused variable.
5601
5602         * breakpoint.c (validate_commands_for_breakpoint):
5603         Delete unused variables.
5604         (insert_catchpoint): Delete unused variable.
5605         (update_watchpoint): Delete unused variable.
5606         (insert_bp_location): Delete unused variable.
5607         (insert_breakpoint_locations): Delete unused variable.
5608         (remove_breakpoint_1): Delete unused variable.
5609         (software_breakpoint_inserted_here_p): Delete unused variable.
5610         (watchpoints_triggered): Delete unused variable.
5611         (bpstat_check_watchpoint): Delete unused variable.
5612         (bpstat_stop_status): Delete unused variable.
5613         (print_one_breakpoint_location): Delete unused variable.
5614         (allocate_bp_location): Delete unused variable.
5615         (create_breakpoint): Delete unused variable.
5616         (watch_command_1): Delete unused variable.
5617         (catch_exception_command_1): Delete unused variable.
5618         (catch_ada_exception_command): Delete unused variable.
5619         (delete_breakpoint): Delete unused variable.
5620         (breakpoint_re_set_one): Delete unused variable.
5621         (do_enable_breakpoint): Delete unused variable.
5622
5623 2010-05-06  Pedro Alves  <pedro@codesourcery.com>
5624
5625         * amd64-tdep.c: Include disasm.h.
5626         (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
5627         (amd64_insn_length): Moved to disasm.c and renamed.
5628         (fixup_riprel): Adjust.
5629         * disasm.c (do_ui_file_delete): New.
5630         (gdb_insn_length): New.
5631         (gdb_buffered_insn_length_fprintf)
5632         (gdb_buffered_insn_length_init_dis)
5633         (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
5634         renamed.
5635         * disasm.h (gdb_insn_length): Declare.
5636         (gdb_buffered_insn_length): Declare.
5637
5638 2010-05-06  Pedro Alves  <pedro@codesourcery.com>
5639
5640         * remote.c (clear_threads_parsing_context): New.
5641         (remote_threads_info): Delete unused null_cleanup.  Install a
5642         cleanup to clear the threads_parsing_context in case parsing
5643         throws.
5644
5645 2010-05-05  Michael Snyder  <msnyder@vmware.com>
5646
5647         * c-exp.y (parse_string_or_char): Delete unused variable.
5648         (c_lex): Delete unused variable.
5649         * cp-name-parser.y (cpname_lex): Delete unused variable.
5650         * ada-exp.y (find_primitive_type): Delete unused variable.
5651         (write_var_or_type): Delete unused variable.
5652         * jv-exp.y (java_parse): Delete unused variable.
5653         (push_expression_name): Delete unused variable.
5654         * p-exp.y (pascal_lex): Delete unused variable.
5655
5656 2010-05-05  Pedro Alves  <pedro@codesourcery.com>
5657
5658         * remote.c (remote_threads_info): Really revert previous previous
5659         change.
5660
5661 2010-05-05  Michael Snyder  <msnyder@vmware.com>
5662
5663         * elfread.c (elf_symtab_read): Delete unused variable.
5664         (find_separate_debug_file_by_buildid): Delete unused variables.
5665         (elf_symfile_read): Delete unused variable.
5666
5667         * coffread.c (coff_symfile_read): Delete unused variables.
5668
5669         * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
5670         (read_pe_exported_syms): Delete unused variable.
5671
5672         * stabsread.c (define_symbol): Delete unused variable.
5673
5674         * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
5675         (process_psymtab_comp_unit): Delete unused variable.
5676         (dwarf2_build_psymtabs_hard): Delete unused variable.
5677         (load_partial_comp_unit): Delete unused variable.
5678         (create_all_comp_units): Delete unused variable.
5679         (scan_partial_symbols): Delete unused variable.
5680         (add_partial_symbol): Delete unused variable.
5681         (add_partial_namespace): Delete unused variable.
5682         (add_partial_enumeration): Delete unused variable.
5683         (load_full_comp_unit): Delete unused variable.
5684         (process_full_comp_unit): Delete unused variable.
5685         (read_file_scope): Delete unused variable.
5686         (read_type_unit_scope): Delete unused variable.
5687         (process_structure_scope): Delete unused variable.
5688         (process_enumeration_scope): Delete unused variable.
5689         (read_tag_ptr_to_member_type): Delete unused variable.
5690         (read_typedef): Delete unused variable.
5691         (read_partial_die): Delete unused variable.
5692         (decode_locdesc): Delete unused variable.
5693         (zeroed_partial_die): Delete unused global variable.
5694
5695         * tui/tui-interp.c (_initialize_tui_interp):
5696         Delete unused variable.
5697         * tui/tui-regs.c tui_display_registers_from):
5698         Delete unused variable.
5699         (tui_check_register_values): Delete unused variable.
5700         (tui_register_format): Delete unused variable.
5701         * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
5702         * tui/tui-windata.c (tui_display_data_from_line):
5703         Delete unused variables.
5704         (tui_vertical_data_scroll): Delete unused variables.
5705
5706 2010-05-05  Michael Snyder  <msnyder@vmware.com>
5707
5708         * remote.c (remote_threads_info): Revert questionable part of
5709         the previous change.
5710
5711 2010-05-05  Michael Snyder  <msnyder@vmware.com>
5712
5713         * mi/mi-out.c (mi_table_begin): Delete unused variable.
5714         * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
5715         (mi_cmd_var_list_children): Delete unused variable.
5716         (varobj_update_one): Delete unused variable.
5717         * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
5718         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
5719         Delete unused variable.
5720         (mi_cmd_stack_list_variables): Delete unused variable.
5721         (list_args_or_locals): Delete unused variable.
5722         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
5723         Delete unused variables.
5724         (mi_cmd_file_list_exec_source_files): Delete unused variable.
5725         * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
5726         Delete unused variable.
5727         * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
5728         (mi_cmd_interpreter_exec): Delete unused variable.
5729         (mi_on_normal_stop): Delete unused variable.
5730         * mi/mi-main.c (run_one_inferior): Delete unused variable.
5731         (print_one_inferior): Delete unused variables.
5732         (mi_execute_command): Delete unused variable.
5733         (mi_cmd_execute): Delete unused variable.
5734         (timestamp): Delete unused variable.
5735
5736         * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
5737         (restore_binary_file): Delete unused variable.
5738         * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
5739         * cli/cli-script.c (define_command): Delete unused variables.
5740         (recurse_read_control_structure): Delete unused variable.
5741         (script_from_file): Delete unused variable.
5742         * cli/cli-cmds.c (complete_command): Delete unused variable.
5743         (disassemble_command): Delete unused variable.
5744
5745         * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
5746         * tracepoint.c (delete_trace_variable_command):
5747         Delete unused variables.
5748         (encode_actions_1): Delete unused variables.
5749         (start_tracing): Delete unused variable.
5750         (trace_status_mi): Delete unused variable.
5751         (tfind_1): Delete unused variable.
5752         (trace_find_pc_command): Delete unused variable.
5753         (trace_find_line_command): Delete unused variables.
5754         (trace_find_range_command): Delete unused variables.
5755         (trace_find_outside_command): Delete unused variables.
5756         (parse_tracepoint_definition): Delete unused variables.
5757         (tfile_fetch_registers): Delete unused variable.
5758
5759         * dcache.c (dcache_init): Delete unused variable.
5760         (dcache_info): Delete unused variable.
5761
5762         * remote.c (remote_threads_info): Delete unused variable.
5763         (process_stop_reply) :Delete unused variable.
5764         (remote_get_trace_status): Delete unused variables.
5765
5766         * linux-thread-db.c (add_thread_db_info): Delete unused variable.
5767         (thread_from_lwp): Delete unused variable.
5768         (enable_thread_event_reporting): Delete unused variable.
5769         (check_for_thread_db): Delete unused variables.
5770         (thread_db_find_new_threads_2): Delete unused variable.
5771
5772         * linux-fork.c (info_checkpoints_command): Delete unused variables.
5773         (checkpoint_command): Delete unused variable.
5774         (linux_fork_context): Delete unused variables.
5775
5776         * linux-nat.c (linux_parent_pid): Delete unused global variable.
5777         (linux_tracefork_child): Delete unused variable.
5778         (linux_child_follow_fork): Delete unused variable.
5779         (linux_nat_detach): Delete unused variable.
5780         (linux_handle_extended_wait): Delete unused variable.
5781         (linux_nat_has_pending_sigint): Delete unused variable.
5782         (linux_nat_find_memory_regions): Delete unused variable.
5783         (linux_nat_make_corefile_notes): Delete unused variables.
5784         (linux_nat_info_proc_cmd): Delete unused variable.
5785         (linux_proc_pending_signals): Delete unused variable.
5786         (linux_nat_stop_lwp): Delete unused variables.
5787         (_initialize_linux_nat): Delete unused variable.
5788
5789         * ser-pipe.c (pipe_ops): Delete unused global variable.
5790
5791         * linux-record.c (record_linux_system_call):
5792         Delete unused variables.
5793
5794         * corelow.c (core_xfer_partial): Delete unused variables.
5795
5796         * solib-svr4.c (find_program_interpreter): Delete unused variable.
5797         (svr4_solib_create_inferior_hook): Add ifdef around
5798         conditionally-used variable declarations.
5799
5800         * solib.c (solib_find): Delete unused variable.
5801         (free_so_symbols): Delete unused variable.
5802         (info_sharedlibrary_command): Delete unused variable.
5803         (reload_shared_libraries_1): Delete unused variable.
5804         (_initialize_solib): Delete unused variable.
5805
5806         * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
5807         (i386_collect_xstateregset): Delete unused variable.
5808         * i387-tdep.c (i387_print_float_info): Delete unused variable.
5809
5810         * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
5811         Delete unused variable 'type'.
5812
5813 2010-05-05  Joel Brobecker  <brobecker@adacore.com>
5814
5815         * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros.  *
5816         ada-lang.c: Remove comment mentioning these macros.
5817         * m2-exp.y: Delete commented out code.
5818
5819 2010-05-05  Joel Brobecker  <brobecker@adacore.com>
5820
5821         * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
5822         for array types.
5823         * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
5824
5825 2010-05-04  Pierre Muller  <muller@ics.u-strasbg.fr>
5826
5827         ARI fix: Remove ATTRIBUTE_UNUSED throughout.
5828         * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
5829         ATTRIBUTE_UNUSED.
5830         (cleanup_kernel_helper_return): Likewise.
5831         * arm-tdep.c (copy_unmodified): Likewise.
5832         (copy_preload): Likewise.
5833         (copy_copro_load_store): Likewise.
5834         (cleanup_branch): Likewise.
5835         (copy_b_bl_blx): Likewise.
5836         (copy_bx_blx_reg): Likewise.
5837         (copy_alu_imm): Likewise.
5838         (copy_alu_reg): Likewise.
5839         (copy_alu_shifted_reg): Likewise.
5840         (cleanup_load): Likewise.
5841         (cleanup_store): Likewise.
5842         (cleanup_block_load_pc): Likewise.
5843         (cleanup_svc): Likewise.
5844         (copy_undef): Likewise.
5845         (copy_unpred): Likewise.
5846         * remote.c (register_remote_support_xml): Likewise.
5847
5848 2010-05-05  Hui Zhu  <teawater@gmail.com>
5849
5850         * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
5851
5852 2010-05-04  Mark Kettenis  <kettenis@gnu.org>
5853
5854         * remote.c (register_remote_support_xml)
5855         (remote_query_supported_append, remote_query_supported): Add cast
5856         to NULL used as sentinel.
5857         * tracepoint.c (tvariables_info_1): Likewise.
5858         * utils.c (add_internal_problem_command): Likewise.
5859
5860 2010-05-04  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
5861
5862         * dwarf2loc.c (read_pieced_value, write_pieced_value,
5863         dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
5864         registers gracefully.
5865
5866 2010-05-04  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
5867
5868         * exec.c (print_section_info): Display entry point without arch
5869         specific parts.
5870
5871 2010-05-04  Pierre Muller  <muller@ics.u-strasbg.fr>
5872
5873         PR exp/11349.
5874         * printcmd.c (x_command): Only dereference once implicitly for
5875         TYPE_CODE_REF.
5876
5877 2010-05-03  Doug Evans  <dje@google.com>
5878
5879         * event-loop.c (gdb_timer): Delete unused global.
5880         (create_timer): Update.
5881
5882 2010-05-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
5883
5884         * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
5885         CURRENT->DECLARATION case.
5886         * cp-support.h (struct using_direct): Provide extended comment.
5887
5888 2010-05-03  Mark Kettenis  <kettenis@gnu.org>
5889
5890         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
5891         HPPABSD_SIZEOF_GREGS.
5892         (HPPAOBSD_SIZEOF_FPREGS): New define.
5893         (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
5894         (hppaobsd_supply_fpregset): New function.
5895         (hppaobsd_gregset): Renamed from hppabsd_gregset.
5896         (hppaobsd_fpregset): New variable.
5897         (hppaobsd_regset_from_core_section): Handle floating-point registers.
5898         (_initialize_hppabsd_tdep): Remove spurious blank line.
5899
5900 2010-05-03  Pierre Muller  <muller@ics.u-strasbg.fr>
5901
5902         PR pascal/11349.
5903         * p-valprint.c (pascal_value_print): Always dereference a value with
5904         type code TYPE_CODE_REF.
5905
5906 2010-05-03  Pedro Alves  <pedro@codesourcery.com>
5907
5908         * remote.c (remote_notice_signals): New.
5909         (remote_start_remote): In non-stop mode, update the remote end on
5910         which signals it can silently pass.
5911         (init_remote_ops): Install remote_notice_signals.
5912
5913 2010-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5914
5915         * cli/cli-cmds.h (error_no_arg): Remove.  Move the comment ...
5916         * command.h (error_no_arg): ... here.  Remove NORETURN, change
5917         ATTR_NORETURN to ATTRIBUTE_NORETURN.
5918         * defs.h (NORETURN, ATTR_NORETURN): Remove.
5919         (perror_with_name, verror, error, error_stream, vfatal, fatal)
5920         (internal_verror, internal_error, nomem): Remove NORETURN, change
5921         ATTR_NORETURN to ATTRIBUTE_NORETURN.
5922         * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
5923         (throw_vfatal, throw_error): Remove NORETURN.
5924         (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
5925         * exceptions.h (throw_exception, throw_verror, throw_vfatal)
5926         (throw_error, deprecated_throw_reason): Remove NORETURN, change
5927         ATTR_NORETURN to ATTRIBUTE_NORETURN.
5928         * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
5929         to ATTRIBUTE_NORETURN for prototype, for the definition only remove
5930         NORETURN.
5931         * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
5932         * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
5933         ATTRIBUTE_NORETURN.
5934         * target.c (tcomplain): Likewise.
5935         * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
5936         ATTRIBUTE_NORETURN.
5937         * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
5938         (internal_error, perror_with_name, nomem): Remove NORETURN.
5939         * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
5940         ATTRIBUTE_NORETURN.
5941
5942 2010-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5943
5944         * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5945         * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
5946         * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
5947         (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5948         * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
5949         (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5950         * complaints.h (complaint, internal_complaint): Likewise.
5951         * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
5952         (ATTR_FORMAT): Remove.
5953         (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
5954         (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
5955         (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
5956         (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
5957         (xsnprintf, verror, error, vfatal, fatal, internal_verror)
5958         (internal_error, internal_vwarning, internal_warning, warning)
5959         (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5960         * disasm.c (fprintf_disasm): Likewise.
5961         * exceptions.c (throw_it): Likewise.
5962         * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
5963         (throw_error): Likewise.
5964         * language.h (type_error, range_error): Likewise.
5965         * linespec.c (cplusplus_error): Likewise.
5966         * mi/mi-interp.c (mi_interp_query_hook): Likewise.
5967         * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
5968         * monitor.c (monitor_debug): Likewise.
5969         * parser-defs.h (parser_fprintf): Likewise.
5970         * serial.h (serial_printf): Likewise.
5971         * tui/tui-hooks.c (tui_query_hook): Likewise.
5972         * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
5973         (uo_message): Likewise.
5974         * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
5975         * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
5976         Likewise.
5977         * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
5978
5979 2010-05-02  Pedro Alves  <pedro@codesourcery.com>
5980
5981         * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
5982         (cli_table_header, cli_begin, cli_end, cli_field_int)
5983         (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
5984         (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
5985         Delete forward declarations.
5986         (cli_ui_out_impl): Move below the callbacks.
5987         (_initialize_cli_out): Delete.
5988
5989 2010-05-02  Pedro Alves  <pedro@codesourcery.com>
5990
5991         * README: Use consistent `GDB' and `GDBserver' spellings.
5992
5993 2010-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5994
5995         * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
5996
5997 2010-05-01  Pedro Alves  <pedro@codesourcery.com>
5998
5999         * infrun.c (prepare_for_detach): In non-stop, context switch to
6000         the thread that got the event before handling the event.
6001
6002 2010-04-30  Tom Tromey  <tromey@redhat.com>
6003
6004         * symtab.c (symbol_set_names): Fix typo.
6005
6006 2010-04-30  Pierre Muller  <muller@ics.u-strasbg.fr>
6007
6008         * python/py-param.c (parm_constants): Avoid ARI warning
6009         by adding ARI comment.
6010         (parmpy_init): Likewise.
6011
6012 2010-04-30  Pierre Muller  <muller@ics.u-strasbg.fr>
6013
6014         * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
6015         and created type for re-use.
6016
6017 2010-04-30  Pierre Muller  <muller@ics.u-strasbg.fr>
6018
6019         * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
6020
6021 2010-04-29  Doug Evans  <dje@google.com>
6022
6023         * ser-base.h (reschedule): Delete prototype.
6024         * ser-base.c (reschedule): Make static.
6025
6026 2010-04-29  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
6027
6028         * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
6029         (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
6030         (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
6031         EABI.
6032         (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
6033         use.
6034
6035 2010-04-29  Pedro Alves  <pedro@codesourcery.com>
6036
6037         PR gdb/11557
6038
6039         * regcache.c (registers_changed): Rename to ...
6040         (registers_changed_ptid): ... this, and only delete register cache
6041         entries matching the ptid filter argument.
6042         (registers_changed): Reimplement on top of registers_changed_ptid.
6043         * regcache.h (registers_changed_ptid): Declare.
6044         * target.c (target_resume): Flush register caches.
6045
6046 2010-04-29  Phil Muldoon  <pmuldoon@redhat.com>
6047             Tom Tromey  <tromey@redhat.com>
6048             Thiago Jung Bauermann  <bauerman@br.ibm.com>
6049
6050         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
6051         (SUBDIR_PYTHON_SRCS): Likewise.
6052         (py-parameter.o): New rule.
6053         * python/py-parameter.c: New file.
6054         * python/python-internal.h (gdbpy_initialize_parameter)
6055         (gdbpy_parameter, gdbpy_parameter_value)
6056         (gdbpy_parse_command_name): Declare.
6057         * python/py-cmd.c (parse_command_name): Rename to
6058         gdbpy_parse_command_name.
6059         (gdbpy_parse_command_name): Accept a starting list parameter and
6060         use over cmdlist.
6061         (cmdpy_init): Use gdbpy_parse_command_name.
6062         * python/python.c (parameter_to_python): Rename to
6063         gdbpy_parameter_to_python.  Accept enum var_types and value.
6064         (gdbpy_parameter): Use gdbpy_parameter_value.
6065         (_initialize_python): Call gdbpy_initialize_parameters.
6066
6067 2010-04-29  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
6068
6069         * MAINTAINERS: Add myself for write after approval privileges.
6070
6071 2010-04-29  Mihail Zenkov  <mihail.zenkov@gmail.com>
6072
6073         D language support.
6074         * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
6075         (COMMON_OBS): Add d-lang.o d-valprint.o.
6076         (HFILES_NO_SRCDIR): Add d-lang.h.
6077         * NEWS: Mention D language support.
6078         * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
6079         * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
6080         * d-lang.c: New file.
6081         * d-lang.h: New file.
6082         * d-valprint.c: New file.
6083         * defs.h (enum language): Add language_d.
6084         * dwarf2read.c (set_cu_language): Add DW_LANG_D.
6085         * language.c (binop_result_type, integral_type, character_type)
6086         (string_type, boolean_type, structured_type): Add language_d.
6087         * symfile.c (init_filename_language_table): Add language_d.
6088         * symtab.c: Include d-lang.h.
6089         (symbol_init_language_specific, symbol_find_demangled_name)
6090         (symbol_natural_name, lookup_symbol_in_language)
6091         (symbol_demangled_name, symbol_matches_domain): Add language_d.
6092
6093 2010-04-27  Joel Brobecker  <brobecker@adacore.com>
6094
6095         * solib-svr4.c (solib_svr4_r_map): Expand function description.
6096
6097 2010-04-27  Joel Brobecker  <brobecker@adacore.com>
6098
6099         * symfile.c (init_filename_language_table): Register .dg files
6100         with language_ada.
6101
6102 2010-04-27  Joel Brobecker  <brobecker@adacore.com>
6103
6104         * gdbtypes.h (struct main_type): Expand comment about target_type
6105         field.
6106
6107 2010-04-27  Pedro Alves  <pedro@codesourcery.com>
6108             Tristan Gingold  <gingold@adacore.com>
6109
6110         * symfile.c (reread_symbols): Also search for file in libraries.
6111         Update comment.
6112
6113 2010-04-27  Joel Brobecker  <brobecker@adacore.com>
6114
6115         * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
6116         in terms of configuration.
6117
6118 2010-04-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
6119
6120         * objfiles.c: Include solist.h.
6121         (free_all_objfiles): New variable so.  Check stale solist objfiles.
6122         * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
6123         and no_shared_libraries.
6124
6125 2010-04-27  Joel Brobecker  <brobecker@adacore.com>
6126
6127         ARI warning fix.
6128         * python/py-auto-load.c (source_section_scripts): Remove trailing
6129         new-line in i18n string.
6130
6131 2010-04-26  Doug Evans  <dje@google.com>
6132
6133         * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
6134
6135 2010-04-26  Tom Tromey  <tromey@redhat.com>
6136
6137         * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
6138         command list.
6139
6140 2010-04-26  Pierre Muller  <muller@ics.u-strasbg.fr>
6141
6142         Removal of config/i386/nm-i386sol2.h native configuration file.
6143         * config/i386/nm-i386sol2.h: Remove file.
6144         * config/i386/i386sol2.mh: Remove NAT_FILE definition.
6145         * config/i386/sol2-64.mh: Idem.
6146         * config/djgpp/fnchange.lst: Remove reference to that file.
6147         * Makefile.in (HFILES_NO_SRCDIR): Idem.
6148
6149 2010-04-26  Pierre Muller  <muller@ics.u-strasbg.fr>
6150
6151         PR breakpoints/11531.
6152         * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
6153         macro definition and related comment.
6154         * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
6155         (resume): Remove code and comment related to this macro.
6156
6157 2010-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6158
6159         * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
6160         Fix whitespace.
6161
6162 2010-04-24  Pedro Alves  <pedro@codesourcery.com>
6163
6164         * defs.h: Adjust comment.
6165         * filesystem.h, filesystem.c: New files.
6166         * Makefile.in (SFILES): Add filesystem.c.
6167         (COMMON_OBS): Add filesystem.o.
6168         * solib.c (solib_find): Handle DOS-based filesystems.  Handle
6169         different target and host path flavours.
6170         * arm-symbian-tdep.c (arm_symbian_init_abi): Set
6171         has_dos_based_file_system on the gdbarch.
6172         * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
6173         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
6174         * i386-tdep.c (i386_go32_init_abi): Ditto.
6175         * gdbarch.sh (has_dos_based_file_system): New.
6176         * gdbarch.h, gdbarch.c: Regenerate.
6177         * NEWS: Mention improved support for remote targets with DOS-based
6178         filesystems.  Mention new `set/show target-file-system-kind'
6179         commands.
6180
6181 2010-04-23  Stan Shebs  <stan@codesourcery.com>
6182
6183         * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
6184         comments.
6185         (struct agent_reqs): Remove.
6186         (ax_reg_mask): Declare.
6187         * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
6188         (free_agent_expr): Free reg_mask.
6189         (ax_print): Add scope and register mask info.
6190         (ax_reqs): Remove agent_reqs argument, use agent expression
6191         fields, and move part of register mask computation to...
6192         (ax_reg_mask): New function.
6193         * ax-gdb.c (gen_trace_static_fields): Call it.
6194         (gen_traced_pop): Ditto.
6195         (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
6196         (gen_trace_for_var): Pass gdbarch to new_agent_expr.
6197         (gen_trace_for_expr): Ditto, and clear optimized_out flag.
6198         (gen_eval_for_expr): Ditto, and require an rvalue.
6199         (agent_command): Call ax_reqs.
6200         (agent_eval_command): Ditto.
6201         * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
6202         (validate_action_line): Ditto.
6203         (collect_symbol): Ditto.
6204         (encode_actions_1): Ditto.
6205
6206 2010-04-23  Daniel Jacobowitz  <dan@codesourcery.com>
6207             Paul Pluzhnikov  <ppluzhnikov@google.com>
6208             Jan Kratochvil  <jan.kratochvil@redhat.com>
6209
6210         Fix deadlock on looped list of loaded shared objects.
6211         * solib-svr4.c (LM_PREV): New function.
6212         (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
6213         (svr4_current_sos): Check for correct l_prev.  New variables prev_lm
6214         and next_lm.  Clear prev_lm for solib_svr4_r_ldsomap.
6215         * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
6216
6217 2010-04-23  Doug Evans  <dje@google.com>
6218
6219         * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
6220         python.
6221         * configure: Regenerate.
6222         * main.c: #include "python/python.h".
6223         (captured_main): Defer loading auto-loaded scripts until after
6224         local_gdbinit has been sourced.
6225         * python/py-auto-load.c (gdbpy_global_auto_load): New global.
6226         (load_auto_scripts_for_objfile): New function.
6227         (auto_load_new_objfile): Call it.
6228         * python/python.h (gdbpy_global_auto_load): Declare.
6229         (load_auto_scripts_for_objfile): Declare.
6230
6231         Add support for auto-loading scripts from .debug_gdb_scripts section.
6232         * NEWS: Add entry for .debug_gdb_scripts.
6233         * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
6234         (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
6235         (py-auto-load.o): New rule.
6236         * cli/cli-cmds.c (find_and_open_script): Make externally visible.
6237         * cli/cli-cmds.h (find_and_open_script): Update prototype.
6238         * python/py-auto-load.c: New file.
6239         * python/python-internal.h: #include <stdio.h>.
6240         (set_python_list, show_python_list): Declare.
6241         (gdbpy_initialize_auto_load): Declare.
6242         (source_python_script_for_objfile): Declare.
6243         * python/python.c: Remove #include of observer.h.
6244         (gdbpy_auto_load): Moved to py-auto-load.c.
6245         (GDBPY_AUTO_FILENAME): Ditto.
6246         (gdbpy_new_objfile): Delete.
6247         (source_python_script_for_objfile): New function.
6248         (set_python_list, show_python_list): Make externally visible.
6249         (_initialize_python): Move "auto-load" command to py-auto-load.c
6250         and observer_attach_new_objfile to py-auto-load.c.
6251
6252 2010-04-23  Jerome Guitton  <guitton@adacore.com>
6253
6254         * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
6255         (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
6256         (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
6257         New constants.
6258         (alpha_heuristic_analyze_probing_loop): New function.
6259         (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
6260         and handle cases when a stack probe loop is generated.
6261         * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
6262         (alpha_mdebug_max_frame_size_exceeded): New function.
6263         (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
6264         (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
6265         Return 0 when the maximum debuggable frame size has been exceeded.
6266
6267 2010-04-23  Joel Brobecker  <brobecker@adacore.com>
6268
6269         Fix ARI warning.
6270         * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
6271
6272 2010-04-20  Chris Moller  <cmoller@redhat.com>
6273
6274         PR 10179
6275
6276         * symtab.c (rbreak_command): Added code to include a filename
6277         specification in the rbreak argument.
6278         * NEWS: Added a brief description of filename-qualified rbreak.
6279
6280 2010-04-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
6281
6282         Fix crashes on dangling display expressions.
6283         * ada-lang.c (ada_operator_check): New function.
6284         (ada_exp_descriptor): Fill-in the field operator_check.
6285         * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
6286         * jv-lang.c (exp_descriptor_java): Likewise.
6287         * m2-lang.c (exp_descriptor_modula2): Likewise.
6288         * scm-lang.c (exp_descriptor_scm): Likewise.
6289         * parse.c (exp_descriptor_standard): Likewise.
6290         (operator_check_standard): New function.
6291         (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
6292         * parser-defs.h (struct exp_descriptor): New field operator_check.
6293         (operator_check_standard, exp_uses_objfile): New declarations.
6294         * printcmd.c: Remove the inclusion of solib.h.
6295         (display_uses_solib_p): Remove the function.
6296         (clear_dangling_display_expressions): Call lookup_objfile_from_block
6297         and exp_uses_objfile instead of display_uses_solib_p.
6298         * solist.h (struct so_list) <objfile>: New comment.
6299         * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
6300         * symtab.h (lookup_objfile_from_block): New declaration.
6301         (struct general_symbol_info) <obj_section>: Extend the comment.
6302
6303 2010-04-22  Sergio Durigan Junior  <sergiodj@linux.vnet.ibm.com>
6304             Thiago Jung Bauermann  <bauerman@br.ibm.com>
6305
6306         * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
6307         (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
6308         ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
6309         PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
6310         PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
6311         PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
6312         PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
6313         PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
6314         PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
6315         PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
6316         PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
6317         PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
6318         PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
6319         Define, in case <ptrace.h> doesn't provide it.
6320         (booke_debug_info): New variable.
6321         (max_slots_number): Ditto.
6322         (hw_break_tuple): New struct.
6323         (thread_points): Ditto.
6324         (ppc_threads): New variable.
6325         (PPC_DEBUG_CURRENT_VERSION): New define.
6326         (have_ptrace_new_debug_booke): New function.
6327         (ppc_linux_check_watch_resources): Renamed to ...
6328         (ppc_linux_can_use_hw_breakpoint): ... this.  Handle BookE processors.
6329         (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
6330         (booke_cmp_hw_point): New function.
6331         (booke_find_thread_points_by_tid): Ditto.
6332         (booke_insert_point): Ditto.
6333         (booke_remove_point): Ditto.
6334         (ppc_linux_insert_hw_breakpoint): Ditto.
6335         (ppc_linux_remove_hw_breakpoint): Ditto.
6336         (get_trigger_type): Ditto.
6337         (ppc_linux_insert_watchpoint): Handle BookE processors.
6338         (ppc_linux_remove_watchpoint): Ditto.
6339         (ppc_linux_new_thread): Ditto.
6340         (ppc_linux_thread_exit): New function..
6341         (ppc_linux_stopped_data_address): Handle BookE processors.
6342         (ppc_linux_watchpoint_addr_within_range): Ditto.
6343         (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
6344         to_remove_hw_breakpoint fields of the target operations struct.
6345         Add observe for the thread_exit event.
6346
6347 2010-04-22  H.J. Lu  <hongjiu.lu@intel.com>
6348
6349         * i386-linux-nat.c (regmap): Removed.
6350         (fetch_register): Replace regmap with
6351         i386_linux_gregset_reg_offset.
6352         (store_register): Likewise.
6353         (supply_gregset): Likewise.
6354         (fill_gregset): Likewise.
6355
6356         * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
6357         global.
6358
6359         * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
6360
6361 2010-04-22  Chris Moller  <cmoller@redhat.com>
6362
6363         * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
6364         method of popping recursion-detection stack with a method based on
6365         obstack_object_size().  (Similar to the PR9167 patch below, but for
6366         the static array obstack rather than the static member obstack.)
6367
6368 2010-04-22  H.J. Lu  <hongjiu.lu@intel.com>
6369
6370         * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
6371         (_initialize_amd64_linux_nat): Replace
6372         amd64_linux_gregset64_reg_offset with
6373         amd64_linux_gregset_reg_offset.
6374
6375         * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
6376         global.
6377
6378         * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
6379
6380 2010-04-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6381
6382         PR stabs/11479.
6383         * stabsread.c (set_length_in_type_chain): New function.
6384         (read_struct_type): Call set_length_in_type_chain function.
6385         (read_enum_type): Idem.
6386
6387 2010-04-21  Stan Shebs  <stan@codesourcery.com>
6388             Nathan Sidwell  <nathan@codesourcery.com>
6389
6390         * tracepoint.c (trace_save): Open in binary mode.
6391
6392 2010-04-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6393
6394         * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
6395         fields.
6396         * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
6397         builtin_char32 fields.
6398         * printcmd.c (decode_format): Set char size to '\0'
6399         for strings unless explicit size is given.
6400         (print_formatted): Correct calculation of NEXT_ADDRESS
6401         for 16 or 32 bit strings.
6402         (do_examine): Do not force byte size for strings.
6403         Use builtin_char16 and builtin_char32 types to display
6404         16 or 32 bit-wide strings.
6405         (x_command): Set LAST_SIZE to 'b' for string type.
6406
6407 2010-04-21  H.J. Lu  <hongjiu.lu@intel.com>
6408
6409         PR corefiles/11523
6410         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6411         XCR0 first.
6412
6413         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
6414         there is no .reg-xstate section.
6415         (i386_linux_core_read_description): Check XCR0 first.
6416
6417 2010-04-21  Mike Frysinger  <vapier@gentoo.org>
6418
6419         * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
6420         for len <= 8.
6421
6422 2010-04-21  Chris Moller  <cmoller@redhat.com>
6423
6424         PR 9167
6425         * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
6426         method of popping recursion-detection stack with a method based on
6427         obstack_object_size().
6428
6429 2010-04-21  Pierre Muller  <muller@ics.u-strasbg.fr>
6430
6431         PR pascal/11492.
6432         * p-valprint.c (pascal_val_print): Fix default printing of integer
6433         arrays.
6434
6435 2010-04-21  Pierre Muller  <muller@ics.u-strasbg.fr>
6436
6437         Fix compilation warning on gcc-4.1.2.
6438         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
6439         local variable`pc' to zero.
6440
6441 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6442
6443         Implement thread support with core files on alpha-tru64.
6444         * dec-thread.c (dec_thread_find_new_threads): New function,
6445         extracted from resync_thread_list.
6446         (resync_thread_list): Add OPS parameter.  Replace extracted-out
6447         code by call to dec_thread_find_new_threads.
6448         (dec_thread_wait): Update call to resync_thread_list.
6449         (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
6450
6451 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6452
6453         * ada-lang.c (value_pointer): New function.
6454         (make_array_descriptor): Call value_pointer to convert addresses to
6455         pointers.
6456
6457 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6458
6459         * rs6000-aix-tdep.c: #include exceptions.h.
6460         (rs6000_convert_from_func_ptr_addr): If an exception is thrown
6461         while reading the memory at ADDR, then ADDR cannot be a function
6462         descriptor.
6463
6464 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6465
6466         * ada-typeprint.c (ada_print_typedef): New function.
6467         * ada-lang.h (ada_print_typedef): Add declaration.
6468         * ada-lang.c (ada_language_defn): set la_print_typdef field
6469         to ada_print_typedef.
6470
6471 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6472
6473         * procfs.c (procfs_address_to_host_pointer): Only define when used.
6474
6475 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6476
6477         * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
6478         (iterate_over_mappings): Adjust function profile. Add declaration.
6479         (insert_dbx_link_bpt_in_region, info_mappings_callback):
6480         Adjust accordingly.
6481
6482 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6483
6484         * procfs.c (solib_mappings_callback): Move function up to avoid
6485         a compiler warning.
6486
6487 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6488
6489         * procfs.c (find_signalled_thread, find_stop_signal): Move
6490         these functions down to define them only when used.
6491
6492 2010-04-20  Joel Brobecker  <brobecker@adacore.com>
6493
6494         * valprint.c (common_val_print): Fix the value before extracting
6495         its contents.
6496         * ada-lang.c (ada_to_fixed_value): Make this function extern.
6497         * ada-lang.h (ada_to_fixed_value): New function declaration.
6498         * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
6499         to avoid code duplication and fix a bug in the handling of
6500         fixed types contents.
6501
6502 2010-04-20  Tom Tromey  <tromey@redhat.com>
6503
6504         * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
6505         (read_partial_die): Likewise.
6506         (dwarf_attr_name): Likewise.
6507
6508 2010-04-20  Chris Moller  <cmoller@redhat.com>
6509
6510         PR 10867
6511
6512         * cp-valprint.c (global): Adding new static array recursion
6513         detection obstack.
6514         (cp_print_value_fields, cp_print_static_field): Added new static
6515         array recursion detection code.
6516
6517 2010-04-20  Mark Kettenis  <kettenis@gnu.org>
6518
6519         * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
6520         general-purpose register set should be 68 instead of 144.
6521         (i386_linux_sse_regset_sections): Likewise.
6522         (i386_linux_avx_regset_sections): Likewise.
6523
6524 2010-04-20  Stan Shebs  <stan@codesourcery.com>
6525             Nathan Sidwell  <nathan@codesourcery.com>
6526
6527         * dwarf2loc.c (struct axs_var_loc): New struct.
6528         (dwarf2_tracepoint_var_loc): New function.
6529         (dwarf2_tracepoint_var_access): New function.
6530         (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
6531         with DW_OP_piece.
6532         (locexpr_describe_location_piece): New function.
6533         (locexpr_describe_location_1): New function.
6534         (locexpr_describe_location): Call it, update signature.
6535         (loclist_describe_location): Rewrite to loop over locations,
6536         update signature.
6537         * symtab.h (struct symbol_computed_ops): Add address to
6538         describe_location arguments, return void.
6539         * printcmd.c (address_info): Get context PC, pass to computed
6540         location description.
6541         * tracepoint.c (scope_info): Ditto.
6542         * ax-gdb.c (trace_kludge): Export.
6543
6544 2010-04-20  Tom Tromey  <tromey@redhat.com>
6545
6546         * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
6547         (struct dwarf2_cie) <segment_size>: New field.
6548         * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
6549         (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
6550         DW_FORM_exprloc.
6551         (read_attribute_value): Handle DW_FORM_flag_present,
6552         DW_FORM_sec_offset, DW_FORM_exprloc.
6553         (dump_die_shallow): Likewise.
6554         (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
6555         (dwarf2_const_value): Handle DW_FORM_exprloc.
6556         (attr_form_is_block): Likewise.
6557         (struct line_header) <maximum_ops_per_instruction>: New field.
6558         (dwarf_decode_line_header): Set new field.
6559         (dwarf_decode_lines): Handle new field.
6560
6561 2010-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
6562
6563         * f-exp.y: Add new production to recognize the `logical*8' type.
6564         (LOGICAL_S8_KEYWORD): New token.
6565         * f-lang.c (enum f_primitive_types)
6566         <f_primitive_type_logical_s8>: New field.
6567         (f_language_arch_info): Handling `logical*8' type.
6568         (build_fortran_types): Building `logical*8' type.
6569         * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
6570
6571 2010-04-19  Doug Evans  <dje@google.com>
6572
6573         * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
6574         * ser-pipe.c (pipe_open): Fix file descriptor leaks.
6575         (pipe_close): Ditto.
6576
6577 2010-04-19  Pierre Muller  <muller@ics.u-strasbg.fr>
6578
6579         * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
6580
6581 2010-04-19  Pierre Muller  <muller@ics.u-strasbg.fr>
6582
6583         * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
6584         type to void function.
6585
6586 2010-04-19  Stan Shebs  <stan@codesourcery.com>
6587             Vladimir Prus  <vladimir@codesourcery.com>
6588
6589         * tracepoint.c (tfind_1): Add missing newline, report exit from
6590         tfind mode as such.
6591         * target.c (update_current_target): Make default
6592         to_trace_find return -1.
6593
6594 2010-04-19  Mike Frysinger  <vapier@gentoo.org>
6595
6596         * objc-lang.c (find_methods): Move symname check up.
6597
6598 2010-04-19  Pedro Alves  <pedro@codesourcery.com>
6599
6600         * ada-lang.c (print_recreate_exception)
6601         <ex_catch_exception_unhandled>: It's "catch exception unhandled",
6602         not "catch unhandled".
6603
6604 2010-04-19  Pedro Alves  <pedro@codesourcery.com>
6605
6606         PR breakpoints/8554.
6607
6608         Implement `save-breakpoints'.
6609
6610         * breakpoint.c (save_cmdlist): New.
6611         (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
6612         to save_cmdlist.
6613         (print_recreate_catch_fork): New.
6614         (catch_fork_breakpoint_ops): Install it.
6615         (print_recreate_catch_vfork): New.
6616         (catch_vfork_breakpoint_ops): Install it.
6617         (print_recreate_catch_syscall): New.
6618         (catch_syscall_breakpoint_ops): Install it.
6619         (print_recreate_catch_exec): New.
6620         (catch_exec_breakpoint_ops): Install it.
6621         (print_recreate_exception_catchpoint): New.
6622         (gnu_v3_exception_catchpoint_ops): Install it.
6623         (save_breakpoints): New, based on tracepoint_save_command, but
6624         handle all breakpoint types.
6625         (save_breakpoints_command): New.
6626         (tracepoint_save_command): Rename to...
6627         (save_tracepoints_command): ... this, and reimplement using
6628         save_breakpoints.
6629         (save_command): New.
6630         (_initialize_breakpoints): Install the "save" command prefix.
6631         Install the "save breakpoints" command.  Make "save-tracepoints" a
6632         deprecated alias for "save tracepoints".
6633         * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
6634         * ada-lang.c (print_recreate_exception): New.
6635         (print_recreate_catch_exception): New.
6636         (catch_exception_breakpoint_ops): Install it.
6637         (print_recreate_catch_exception_unhandled): New.
6638         (catch_exception_unhandled_breakpoint_ops): Install it.
6639         (print_recreate_catch_assert): New.
6640         (catch_assert_breakpoint_ops): Install it.
6641
6642         * NEWS: Mention the new `save breakpoints' command.  Mention the
6643         new `save tracepoints' alias and that `save-tracepoints' is now
6644         deprecated.
6645
6646 2010-04-18  Pedro Alves  <pedro@codesourcery.com>
6647
6648         PR tui/9217
6649
6650         * tui/tui-out.c: Include cli-out.h.
6651         (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6652         (tui_begin, tui_end, tui_field_int, tui_field_skip)
6653         (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
6654         (tui_message, tui_wrap_hint, tui_flush): Delete forward
6655         declarations.
6656         (struct ui_out_data): Rename to...
6657         (struct tui_ui_out_data): ... this.  Remove `stream' and
6658         `suppress_output' fields, and inherit cli_ui_out_data.
6659         (tui_out_data): New typedef.
6660         (tui_ui_out_impl): Don't initialize fields staticaly.
6661         (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6662         (tui_begin, tui_end): Delete.
6663         (tui_field_int): Adjust to delegate most work to the base type.
6664         (tui_field_skip): Delete.
6665         (tui_field_string, tui_field_fmt): Adjust comment.  Adjust to
6666         delegate most work to the base type.
6667         (tui_spaces): Delete.
6668         (tui_text): Adjust to delegate most work to the base type.
6669         (tui_message): Delete.
6670         (tui_wrap_hint): Delete.
6671         (tui_flush): Delete.
6672         (out_field_fmt): Delete.
6673         (field_separator): Delete.
6674         (tui_out_new): Adjust to initialize the base type.
6675         (_initialize_tui_out): Initialize tui_ui_out_impl.
6676         * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
6677         cli_ui_out_data.
6678         (cli_out_data): Adjust.
6679         (cli_ui_out_impl): Make extern.
6680         (cli_table_header, cli_field_int, cli_field_skip): Use
6681         uo_field_string instead of cli_field_string.
6682         (cli_redirect): Adjust to use cli_out_data.
6683         (cli_out_data_ctor): New.
6684         (cli_out_new): Use it.
6685         * cli-out.h (struct ui_file): Remove forward declaration.
6686         (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
6687         (cli_ui_out_impl): Declare.
6688         (cli_out_data_ctor): Declare.
6689         * ui-out.c (struct ui_out) <data>: Change type to void pointer.
6690         (uo_field_string): No longer static.
6691         (ui_out_data): Change return type to void pointer.
6692         (ui_out_new): Change `data' parameter type to void pointer.
6693         * ui-out.h (struct ui_out_data): Don't forward declare.
6694         (ui_out_data): Change return type to void pointer.
6695         (ui_out_new): Change `data' parameter type to void pointer.
6696         (uo_field_string): Declare.
6697
6698 2010-04-17  Pedro Alves  <pedro@codesourcery.com>
6699
6700         * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
6701         instead of always false.
6702
6703 2010-04-17  H.J. Lu  <hongjiu.lu@intel.com>
6704
6705         PR corefiles/11511
6706         * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
6707         orig_rax.
6708
6709 2010-04-17  Pedro Alves  <pedro@codesourcery.com>
6710
6711         * breakpoint.c (watchpoints_triggered): Use
6712         is_hardware_watchpoint.
6713         (watchpoints_triggered): Ditto.
6714         (bpstat_check_location): Use is_watchpoint and
6715         is_hardware_watchpoint.
6716         (bpstat_check_watchpoint): Use is_watchpoint and
6717         is_hardware_watchpoint.
6718         (bpstat_stop_status): Fix comment.
6719         (user_settable_breakpoint): Use is_watchpoint.
6720         (hw_watchpoint_used_count): Use is_hardware_watchpoint.
6721         (disable_watchpoints_before_interactive_call_start): Use
6722         is_watchpoint.
6723         (enable_watchpoints_after_interactive_call_stop): Use
6724         is_watchpoint.
6725         (clear_command): Use is_watchpoint.
6726         (do_enable_breakpoint): Use is_watchpoint.
6727
6728 2010-04-16  Mike Frysinger  <vapier@gentoo.org>
6729
6730         * solib-frv.c (enable_break1_done): Delete.
6731         (enable_break2): Do not check enable_break1_done.  Move the
6732         enable_break2_done setting and call to
6733         remove_solib_event_breakpoints() to the end.  Return without
6734         warning when the contents of _dl_debug_addr are 0.
6735         (enable_break): Do not set enable_break1_done.
6736         (frv_clear_solib): Likewise.
6737
6738 2010-04-16  Kevin Buettner  <kevinb@redhat.com>
6739
6740         * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
6741         instead of an error if no PLT entry is found.  Return a
6742         potentially useful result.
6743         (m32c_m16c_pointer_to_address): Add code to search for function
6744         address when no .plt entry is found.
6745
6746 2010-04-16  Stan Shebs  <stan@codesourcery.com>
6747
6748         * tracepoint.c (trace_variable_command): Run a cleanup.
6749
6750 2010-04-16  Pierre Muller  <muller@ics.u-strasbg.fr>
6751
6752         * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
6753
6754 2010-04-16  Pierre Muller  <muller@ics.u-strasbg.fr>
6755
6756         Support for Windows OS Thread Information Block.
6757         * NEWS: Document new feature.
6758         * remote.c (PACKET_qGetTIBAddr): New enum element.
6759         (remote_get_tib_address): New function.
6760         (init_remote_ops): Set to_get_tib_address field
6761         to remote_get_tib_address.
6762         (_initialize_remote): Add add_packet_config_cmd
6763         for PACKET_qGetTIBAddr.
6764         * target.c (update_current_target): Set default value for
6765         new to_get_tib_address field.
6766         * target.h (target_ops): New field to_get_tib_address.
6767         (target_get_tib_address): New macro.
6768         * windows-nat.c (thread_info): Add thread_local_base field.
6769         (windows_add_thread): Add tlb argument of type 'void *'.
6770         (fake_create_process): Adapt windows_add_thread call.
6771         (get_windows_debug_event): Idem.
6772         (windows_get_tib_address): New function.
6773         (init_windows_ops): Set to_get_tib_address field
6774         to remote_get_tib_address.
6775         (_initialize_windows_nat): Replace info_w32_cmdlist
6776         initialization by a call to init_w32_command_list.
6777         (info_w32_command, info_w32_cmdlist): Removed from here...
6778         to windows-tdep.c file.
6779         * windows-tdep.h (info_w32_cmdlist): Declare.
6780         (init_w32_command_list): New external function
6781         declaration.
6782         * windows-tdep.c: Add several headers.
6783         (info_w32_cmdlist): to here, made global.
6784         (thread_information_32): New struct.
6785         (thread_information_64): New struct.
6786         (TIB_NAME): New char array.
6787         (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
6788         (maint_display_all_tib): New static variable.
6789         (windows_get_tlb_type): New function.
6790         (tlb_value_read, tlb_value_write): New functions.
6791         (tlb_value_funcs): New static struct.
6792         (tlb_make_value): New function.
6793         (display_one_tib): New function.
6794         (display_tib): New function.
6795         (show_maint_show_all_tib):New function.
6796         (info_w32_command): Moved from windows-nat.c.
6797         (init_w32_command_list): New function.
6798         (_initialize_windows_tdep): New function.
6799         New "maint set/show show-all-tib" command
6800         New "$_tlb" internal variable.
6801
6802 2010-04-16  Joel Brobecker  <brobecker@adacore.com>
6803
6804         * tui/tui-regs.c (tui_display_register): Add comment about
6805         a couple of casts.
6806         * tui/tui-stack.c (tui_show_locator_content): Ditto.
6807
6808 2010-04-15  Stan Shebs  <stan@codesourcery.com>
6809
6810         * frame.c: Include tracepoint.h.
6811         (get_current_frame): Allow a trace frame to be an alternate source
6812         of stack frame data.
6813         * tracepoint.c (tfind_1): Don't try to get current stack frame if
6814         it won't succeed.
6815
6816 2010-04-15  Pedro Alves  <pedro@codesourcery.com>
6817
6818         * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
6819         flags.
6820         * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
6821
6822 2010-04-15  Doug Evans  <dje@google.com>
6823
6824         * NEWS: Add entry for python program space support.
6825         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
6826         (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
6827         (py-progspace.o): New rule.
6828         * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
6829         function.
6830         (find_pretty_printer_from_progspace): New function.
6831         (find_pretty_printer_from_gdb): New function.
6832         (find_pretty_printer): Rewrite.
6833         * python/py-progspace.c: New file.
6834         * python/python-internal.h (program_space): Add forward decl.
6835         (pspace_to_pspace_object, pspy_get_printers): Declare.
6836         (gdbpy_initialize_pspace): Declare.
6837         * python/python.c: #include "progspace.h".
6838         (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
6839         (_initialize_python): Call gdbpy_initialize_pspace.
6840         (GdbMethods): Add current_progspace, progspaces.
6841
6842         Add -s option to source command.
6843         * NEWS: Document new option.
6844         * cli/cli-cmds.c (find_and_open_script): Add function comment.
6845         Delete from_tty and cleanupp args.  Split filep arg into file and
6846         full_pathp.  New arg search_path.
6847         (source_script_from_stream): New function.
6848         (source_script_with_search): New function.
6849         (source_script): Rewrite.
6850         (source_command): Parse "-s" option.
6851         (init_cli_cmds): Add "-s" docs to source command help, and reformat.
6852         * python/python.c (source_python_script): Make file arg a const char *.
6853         Don't call fclose, leave for caller.
6854         * python/python.h (source_python_script): Update.
6855
6856 2010-04-14  Daniel Jacobowitz  <dan@codesourcery.com>
6857             Pedro Alves  <pedro@codesourcery.com>
6858
6859         Avoid rereading shared libraries that haven't changed.
6860
6861         * solib.c (free_so_symbols): New function, from ...
6862         (free_so): ... here.  Call it.
6863         (solib_read_symbols): Don't warn here if symbols have already been
6864         loaded.
6865         (solib_add): Warn here instead, if a pattern was specified.
6866         (reload_shared_libraries_1): New.
6867         (reload_shared_libraries): Rewrite to not fetch the library list.
6868
6869 2010-04-14  Doug Evans  <dje@google.com>
6870
6871         * source.c (openp): Strip DOS drive letter if present before
6872         concatenating string to search path.
6873
6874 2010-04-14  Pedro Alves  <pedro@codesourcery.com>
6875
6876         * objfiles.h (gdb_bfd_close_or_warn): Declare.
6877         * objfiles.c (gdb_bfd_close_or_warn): New.
6878         * corelow.c: Include objfiles.h
6879         (core_close): Use gdb_bfd_close_or_warn.
6880         * elfread.c (build_id_verify): Ditto.
6881         * exec.c (exec_close, exec_close_1): Ditto.
6882
6883 2010-04-14  Daniel Jacobowitz  <dan@codesourcery.com>
6884             Pedro Alves  <pedro@codesourcery.com>
6885
6886         Group errors for many missing shared libraries.
6887
6888         * solist.h (struct so_list): Remove from_tty.
6889         * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
6890         (solib_map_sections): Take so_list argument.  Return 0 if we
6891         failed to open a BFD.  Add target sections here.
6892         (symbol_add_stub): Delete.
6893         (solib_read_symbols): Inline symbol_add_stub.  Use current flags,
6894         not from_tty copied from the so_list.  Don't warn a second time
6895         for a missing library.
6896         (update_solib_list): Don't save from_tty.  Use TRY_CATCH.  Do not
6897         add to the section table here.  Print out a single warning for all
6898         missing libraries.
6899         * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
6900         flags.
6901
6902 2010-04-14  Phil Muldoon  <pmuldoon@redhat.com>
6903
6904         * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
6905         error/warning messages.  Capitalize and use complete sentences.
6906         (blpy_block_syms_iternext): Likewise.
6907         * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
6908         * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
6909         (frame_info_to_frame_object, frapy_read_var)
6910         (gdbpy_frame_stop_reason_string): Likewise.
6911         * python/py-lazy-string.c (stpy_convert_to_value)
6912         (gdbpy_create_lazy_string_object): Likewise.
6913         * python/py-objfile.c (objfpy_set_printers): Likewise.
6914         * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
6915         * python/python.c (parameter_to_python): Likewise.
6916         * python/py-type.c (typy_range, typy_target): Likewise.
6917         * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
6918         (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
6919
6920
6921 2010-04-14  Phil Muldoon  <pmuldoon@redhat.com>
6922
6923         PR python/11381
6924
6925         * python/py-prettyprint.c (pretty_print_one_value): Test for
6926         Py_None.
6927         (print_string_repr): Test for Py_None.  Set flags accordingly.
6928         Return value depending on return type.
6929         (print_children): Take a value indicating whether data was printed
6930         before this function was called.  Alter output accordingly.
6931         (apply_val_pretty_printer): Capture return value from
6932         print_string_repr and pass to print_children.
6933
6934 2010-04-13  Mark Kettenis  <kettenis@gnu.org>
6935
6936         PR corefiles/11481
6937         * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
6938         register note sections.
6939         (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
6940         New variables.
6941         (i386_linux_init_abi): Install list of supported register note
6942         sections that matches the target description.
6943
6944 2010-04-13  Pedro Alves  <pedro@codesourcery.com>
6945
6946         * remote.c (remote_get_noisy_reply): Don't error out on empty
6947         replies.
6948         (remote_start_remote): Update and merge tracepoints and trace
6949         state variables as long as the target supports tracepoints.
6950         (remote_trace_init): Fix prototype.
6951         (remote_download_trace_state_variable): Validate reply.
6952         (remote_trace_set_readonly_regions): Fix prototype.
6953         (remote_trace_start): Fix prototype.  Check for empty reply.
6954         (remote_get_trace_status): Small cleanup.
6955         (remote_trace_stop): Fix prototype.  Check for empty reply.
6956         (remote_trace_find): Check for empty reply.
6957         (remote_save_trace_data): Validate reply.
6958         (remote_set_disconnected_tracing): Check for empty reply, and
6959         validate reply.
6960         (remote_set_circular_trace_buffer): Ditto.
6961
6962 2010-04-13  Pierre Muller  <muller@ics.u-strasbg.fr>
6963
6964         Suppress unused value warning during compilation.
6965         * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
6966         calls to void.
6967         * tui/tui-stack.c (tui_show_locator_content): Likewise.
6968
6969 2010-04-12  Stan Shebs  <stan@codesourcery.com>
6970
6971         * tracepoint.c (tfile_xfer_partial): Check read result.
6972
6973 2010-04-12  Mike Frysinger  <vapier@gentoo.org>
6974
6975         * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
6976         * remote-sim.c (gdbsim_files_info): Likewise.
6977
6978 2010-04-12  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
6979
6980         * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
6981         * arm-linux-nat.c (arm_linux_vfp_register_count): New
6982         variable.
6983         (fetch_vfp_registers): New function to fetch VFP registers.
6984         (store_vfp_registers): New function to store VFP registers.
6985         (arm_linux_fetch_inferior_registers): Add support for VFP
6986         registers.
6987         (arm_linux_store_inferior_registers): Likewise.
6988         (arm_linux_read_description): Likewise.
6989         (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
6990         until we need it.
6991
6992 2010-04-11  H.J. Lu  <hongjiu.lu@intel.com>
6993
6994         * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
6995         tdep.
6996         (amd64_collect_xstateregset): Likewise.
6997
6998 2010-04-09  Stan Shebs  <stan@codesourcery.com>
6999
7000         * tracepoint.c (trace_status_mi): Report frames created.
7001
7002         * tracepoint.c (trace_dump_command): Include default-collect
7003         expressions.
7004
7005 2010-04-09  Ulrich Weigand  <uweigand@de.ibm.com>
7006
7007         * symtab.c (find_function_start_sal): Never return SAL pointing
7008         before function start address, even if line info is missing.
7009
7010 2010-04-09  Pedro Alves  <pedro@codesourcery.com>
7011
7012         * NEWS: Mention tracepoints support.
7013
7014 2010-04-09  Pedro Alves  <pedro@codesourcery.com>
7015
7016         * tracepoint.c (trace_status_mi): Report disconnected tracing and
7017         circular trace buffer statuses.
7018
7019 2010-04-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
7020
7021         * config/djgpp/fnchange.lst: Fix typo in translations for
7022         symbol-without-target_section.exp and symbol-without-target_section.c.
7023
7024 2010-04-09  Pedro Alves  <pedro@codesourcery.com>
7025
7026         * breakpoint.c (condition_command): Pass condition expression to
7027         set_breakpoint_condition stripped from breakpoint number.
7028
7029 2010-04-09  Phil Muldoon  <pmuldoon@redhat.com>
7030             Thiago Jung Bauermann  <bauerman@br.ibm.com>
7031             Tom Tromey  <tromey@redhat.com>
7032
7033         * breakpoint.c (condition_command): Simplify.  Move condition
7034         setting code to ...
7035         (set_breakpoint_condition): ... here.  New function.
7036         * breakpoint.h  (set_breakpoint_condition): Declare.
7037         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
7038         (SUBDIR_PYTHON_SRCS): Likewise.
7039         (py-breakpoint.o): New rule.
7040         * python/py-breakpoint.c: New file.
7041         * python/python-internal.h (gdbpy_breakpoints)
7042         (gdbpy_initialize_breakpoints): Declare.
7043         (GDB_PY_SET_HANDLE_EXCEPTION) Define.
7044
7045 2010-04-09  Pedro Alves  <pedro@codesourcery.com>
7046
7047         * regformats/regdat.sh: Include server.h.  Don't include
7048         regcache.h.
7049
7050 2010-04-08  Stan Shebs  <stan@codesourcery.com>
7051             Pedro Alves  <pedro@codesourcery.com>
7052
7053         * tracepoint.h (struct trace_status): New fields disconnected_tracing
7054         and circular_buffer.
7055         (disconnect_tracing): Rename from disconnect_or_stop_tracing.
7056         * tracepoint.c (trace_status_command): Display target's status for
7057         disconnected tracing and circular buffer.
7058         (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
7059         query for non-disconnected-tracing case, remove the stop_tracing
7060         call.
7061         (tfile_open): Clear disconnected and circular buffer status.
7062         (trace_save): Save disconnected and circular buffer status.
7063         (parse_trace_status): Parse disconnected and circular buffer status,
7064         also recognize disconnected as a stop reason.
7065         * remote.c (remote_set_disconnected_tracing): Only set
7066         QTDisconnected if the remote end supports disconnected tracing.
7067         Warn otherwise, if trying to enable disconnected tracing.
7068         * infcmd.c (detach_command): Update disconnect_tracing call.
7069         * cli/cli-cmds.c (quit_command): Ditto.
7070
7071 2010-04-08  H.J. Lu  <hongjiu.lu@intel.com>
7072
7073         * i387-tdep.c (i387_collect_xsave): Replace abort with
7074         internal_error.
7075
7076 2010-04-08  Stan Shebs  <stan@codesourcery.com>
7077
7078         * breakpoint.c (default_collect_info): New function.
7079         (breakpoints_info): Call it.
7080         (maintenance_info_breakpoints): Ditto.
7081         (tracepoints_info): Ditto.
7082
7083 2010-04-08  H.J. Lu  <hongjiu.lu@intel.com>
7084
7085         * i387-tdep.c (i387_collect_xsave): Re-indent.
7086
7087 2010-04-08  H.J. Lu  <hongjiu.lu@intel.com>
7088
7089         * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
7090         if HAVE_PTRACE_GETFPXREGS is defined.
7091         (i386_linux_read_description): Set have_ptrace_getfpxregs and
7092         have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
7093
7094         * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
7095         (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
7096         if .reg-xfp section doesn't exist.
7097         (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
7098
7099         * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
7100
7101         * i386-tdep.c: Include "features/i386/i386-mmx.c".
7102         (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
7103         (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional.  Set
7104         xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
7105         (i386_gdbarch_init): Update comments.
7106         (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
7107
7108         * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
7109
7110         * config/djgpp/fnchange.lst: Add i386 MMX XML files.
7111
7112         * features/Makefile (i386/i386-mmx-expedite): New.
7113         (i386/i386-mmx-linux-expedite): Likewise.
7114         ($(outdir)/i386/i386-mmx.dat): Likewise.
7115         ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
7116
7117         * features/i386/i386-mmx-linux.c: New.
7118         * features/i386/i386-mmx-linux.xml: Likewise.
7119         * features/i386/i386-mmx.c: Likewise.
7120         * features/i386/i386-mmx.xml: Likewise.
7121         * regformats/i386/i386-mmx-linux.dat: Likewise.
7122         * regformats/i386/i386-mmx.dat: Likewise.
7123
7124         * features/Makefile (WHICH): Add i386/i386-mmx and
7125         i386/i386-mmx-linux.
7126
7127 2010-04-08  Doug Evans  <dje@google.com>
7128
7129         * source.c (openp): Skip $cdir in PATH.
7130
7131 2010-04-08  Phil Muldoon  <pmuldoon@redhat.com>
7132
7133         PR python/11417
7134         * python/py-lazy-string.c (stpy_convert_to_value): Check for
7135         a NULL address.
7136         (gdbpy_create_lazy_string_object): Allow strings with a NULL
7137         address and a zero length.
7138
7139 2010-04-08  Hui Zhu  <teawater@gmail.com>
7140
7141         * i386-tdep.c (i386_process_record): Add support for insn
7142         rdtsc.
7143
7144 2010-04-07  Doug Evans  <dje@google.com>
7145
7146         * python/python.c (source_python_script): Use ensure_python_env
7147         to prepare environment for script.
7148
7149 2010-04-07  H.J. Lu  <hongjiu.lu@intel.com>
7150
7151         * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
7152         <sys/uio.h> and "i386-xstate.h".
7153         (PTRACE_GETREGSET): New.
7154         (PTRACE_SETREGSET): Likewise.
7155         (have_ptrace_getregset): Likewise.
7156         (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
7157         registers.
7158         (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
7159         registers.
7160         (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
7161         (amd64_linux_store_inferior_registers): Likewise.
7162         (amd64_linux_read_description): Check and enable AVX target
7163         descriptions.
7164
7165         * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
7166         and "features/i386/amd64-avx-linux.c".
7167         (amd64_linux_regset_sections): New.
7168         (amd64_linux_core_read_description): Check and enable AVX
7169         target description.
7170         (amd64_linux_init_abi): Set xsave_xcr0_offset.  Call
7171         set_gdbarch_core_regset_sections.
7172         (_initialize_amd64_linux_tdep): Call
7173         initialize_tdesc_amd64_avx_linux.
7174
7175         * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
7176         AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
7177         (tdesc_amd64_avx_linux): New.
7178         (amd64_linux_update_xstateregset): Likewise.
7179
7180         * amd64-tdep.c: Include "features/i386/amd64-avx.c".
7181         (amd64_ymm_names): New.
7182         (amd64_ymmh_names): Likewise.
7183         (amd64_register_name): Likewise.
7184         (amd64_supply_xstateregset): Likewise.
7185         (amd64_collect_xstateregset): Likewise.
7186         (amd64_supply_xsave): Likewise.
7187         (amd64_collect_xsave): Likewise.
7188         (AMD64_NUM_REGS): Removed.
7189         (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
7190         %xmmN if AVX is available.
7191         (amd64_pseudo_register_name): Support pseudo YMM registers.
7192         (amd64_regset_from_core_section): Support .reg-xstate section.
7193         (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
7194         and ymm0h_regnum.  Call set_gdbarch_register_name.
7195         (amd64_init_abi): Call initialize_tdesc_amd64_avx.
7196
7197         * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
7198         AMD64_YMM15H_REGNUM.
7199         (AMD64_NUM_REGS): New.
7200         (amd64_supply_xsave): Likewise.
7201         (amd64_collect_xsave): Likewise.
7202         (amd64_register_name): Removed.
7203         (amd64_register_type): Likewise.
7204
7205 2010-04-07  H.J. Lu  <hongjiu.lu@intel.com>
7206
7207         * i387-tdep.c: Include "i386-xstate.h".
7208         (XSAVE_XSTATE_BV_ADDR): New.
7209         (xsave_avxh_offset): Likewise.
7210         (XSAVE_AVXH_ADDR): Likewise.
7211         (i387_supply_xsave): Likewise.
7212         (i387_collect_xsave): Likewise.
7213
7214         * i387-tdep.h (I387_NUM_YMM_REGS): New.
7215         (I387_YMM0H_REGNUM): Likewise.
7216         (I387_YMMENDH_REGNUM): Likewise.
7217         (i387_supply_xsave): Likewise.
7218         (i387_collect_xsave): Likewise.
7219
7220 2010-04-07  H.J. Lu  <hongjiu.lu@intel.com>
7221
7222         * i386-linux-nat.c: Include "regset.h", "elf/common.h",
7223         <sys/uio.h> and "i386-xstate.h".
7224         (PTRACE_GETREGSET): New.
7225         (PTRACE_SETREGSET): Likewise.
7226         (fetch_xstateregs): Likewise.
7227         (store_xstateregs): Likewise.
7228         (GETXSTATEREGS_SUPPLIES): Likewise.
7229         (regmap): Include 8 upper YMM registers.
7230         (i386_linux_fetch_inferior_registers): Support XSAVE extended
7231         state.
7232         (i386_linux_store_inferior_registers): Likewise.
7233         (i386_linux_read_description): Check and enable AVX target
7234         descriptions.
7235
7236         * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
7237         "i386-xstate.h" and "features/i386/i386-avx-linux.c".
7238         (i386_linux_regset_sections): Add ".reg-xstate".
7239         (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
7240         (i386_linux_core_read_xcr0): New.
7241         (i386_linux_core_read_description): Check and enable AVX target
7242         description.
7243         (i386_linux_init_abi): Set xsave_xcr0_offset.
7244         (_initialize_i386_linux_tdep): Call
7245         initialize_tdesc_i386_avx_linux.
7246
7247         * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
7248         I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
7249         (i386_linux_core_read_xcr0): New.
7250         (tdesc_i386_avx_linux): Likewise.
7251         (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
7252
7253         * i386-tdep.c: Include "i386-xstate.h" and
7254         "features/i386/i386-avx.c".
7255         (i386_ymm_names): New.
7256         (i386_ymmh_names): Likewise.
7257         (i386_ymmh_regnum_p): Likewise.
7258         (i386_ymm_regnum_p): Likewise.
7259         (i386_xmm_regnum_p): Likewise.
7260         (i386_register_name): Likewise.
7261         (i386_ymm_type): Likewise.
7262         (i386_supply_xstateregset): Likewise.
7263         (i386_collect_xstateregset): Likewise.
7264         (i386_sse_regnum_p): Removed.
7265         (i386_pseudo_register_name): Support pseudo YMM registers.
7266         (i386_pseudo_register_type): Likewise.
7267         (i386_pseudo_register_read): Likewise.
7268         (i386_pseudo_register_write): Likewise.
7269         (i386_dbx_reg_to_regnum): Return %ymmN register number for
7270         %xmmN if AVX is available.
7271         (i386_regset_from_core_section): Support .reg-xstate section.
7272         (i386_register_reggroup_p): Supper upper YMM and YMM registers.
7273         (i386_process_record): Replace i386_sse_regnum_p with
7274         i386_xmm_regnum_p.
7275         (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
7276         Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
7277         (i386_gdbarch_init): Set xstateregset.  Set xsave_xcr0_offset.
7278         Call set_gdbarch_register_name.  Replace I386_SSE_NUM_REGS with
7279         I386_AVX_NUM_REGS.  Set ymmh_register_names, ymm0h_regnum and
7280         num_ymm_regs.  Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
7281         Set ymm0_regnum.
7282         (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
7283
7284         * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
7285         xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
7286         i386_ymm_type.
7287         (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
7288         (I386_AVX_NUM_REGS): New.
7289         (i386_xmm_regnum_p): Likewise.
7290         (i386_ymm_regnum_p): Likewise.
7291         (i386_ymmh_regnum_p): Likewise.
7292
7293         * common/i386-xstate.h: New.
7294
7295 2010-04-07  H.J. Lu  <hongjiu.lu@intel.com>
7296
7297         * config/djgpp/fnchange.lst: Add x86 AVX XML files.
7298
7299         * features/Makefile (WHICH): Add i386/i386-avx,
7300         i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
7301         (i386/i386-avx-expedite): New.
7302         (i386/i386-avx-linux-expedite): Likewise.
7303         (i386/x86-64-avx-expedite):Likewise.
7304         (i386/x86-64-avx-linux-expedite): Likewise.
7305         ($(outdir)/i386/i386-avx.dat): New dependency.
7306         ($(outdir)/i386/i386-avx-linux.dat): Likewise.
7307         ($(outdir)/i386/x86-avx-64.dat): Likewise.
7308         ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
7309
7310         * features/i386/32bit-avx.xml: New.
7311         * features/i386/64bit-avx.xml: Likewise.
7312         * features/i386/i386-avx-linux.c: Likewise.
7313         * features/i386/i386-avx-linux.xml: Likewise.
7314         * features/i386/i386-avx.c: Likewise.
7315         * features/i386/i386-avx.xml: Likewise.
7316         * features/i386/x86-64-avx-linux.c: Likewise.
7317         * features/i386/x86-64-avx-linux.xml: Likewise.
7318         * features/i386/x86-64-avx.c: Likewise.
7319         * features/i386/x86-64-avx.xml: Likewise.
7320         * regformats/i386/i386-avx-linux.dat: Likewise.
7321         * regformats/i386/i386-avx.dat: Likewise.
7322         * regformats/i386/x86-64-avx-linux.dat: Likewise.
7323         * regformats/i386/x86-64-avx.dat: Likewise.
7324
7325 2010-04-07  Doug Evans  <dje@google.com>
7326
7327         * top.c (source_file_name): Make const char *.
7328         * top.h (source_file_name): Update.
7329         * cli/cli-script.c (source_cleanup_lines_args): Make old_file
7330         const char *.
7331         (script_from_file): Change `file' arg to const char *.
7332         * cli/cli-script.h (script_from_file): Update.
7333
7334 2010-04-06  Doug Evans  <dje@google.com>
7335
7336         * cli/cli-cmds.c (source_command): Run cleanups.
7337
7338 2010-04-06  Stan Shebs  <stan@codesourcery.com>
7339
7340         * defs.h (char_ptr): Move typedef here from...
7341         * ada-lang.c (char_ptr): Remove.
7342         * charset.c (char_ptr): Remove.
7343         * tracepoint.h (struct uploaded_string): Remove.
7344         (struct uploaded_tp): Use vectors for string arrays.
7345         * tracepoint.c (trace_save): Use vectors of actions.
7346         (parse_tracepoint_definition): Ditto.
7347         (get_uploaded_tp): Clear vectors.
7348         * breakpoint.c (create_tracepoint_from_upload): Use vectors.
7349         (next_cmd): Change to an int.
7350         (read_next_cmd): Use vector of command strings.
7351
7352 2010-04-06  Doug Evans  <dje@google.com>
7353
7354         * top.h (source_script, cd_command): Delete.
7355         * main.c: #include "cli/cli-cmds.h"
7356
7357 2010-04-06  Kevin Buettner  <kevinb@redhat.com>
7358
7359         * m32c-tdep.c (make_types): When calling `arch_type', pass size of
7360         type in bytes, not bits.
7361
7362 2010-04-06  Pierre Muller  <muller@ics.u-strasbg.fr>
7363
7364         * stabsread.c (define_symbol): Add support for char
7365         and string constants.
7366
7367 2010-04-06  Pierre Muller  <muller@ics.u-strasbg.fr>
7368
7369         Remove remaining "%ll" uses.
7370         * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
7371         hex_string call.
7372         * rs6000-nat.c (rs6000_ptrace64): Idem.
7373         * solib-pa64.c (pa64_current_sos): Idem.
7374         * solib-spu.c (spu_current_sos): Idem.
7375         * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
7376         plongest call.
7377         * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
7378         phex (VAR, 8) call.
7379         * sh64-tdep.c (sh64_show_media_regs): Idem.
7380
7381 2010-04-05  Stan Shebs  <stan@codesourcery.com>
7382
7383         * tracepoint.c: Include gdbcore.h.
7384         (tfile_xfer_partial): Return partial results, also try reading
7385         from executable.
7386         (tfile_has_all_memory): New function.
7387         (init_tfile_ops): Use it.
7388
7389 2010-04-05  Sergio Durigan Junior  <sergiodj@redhat.com>
7390
7391         PR gdb/10736:
7392         * xml-syscall.c (my_gdb_datadir): New variable to keep track of
7393         the changes in data-directory.
7394         (init_sysinfo): Reload the syscall XML file if the data-directory
7395         has changed.
7396
7397 2010-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7398
7399         Code cleanup.
7400         * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
7401
7402 2010-04-04  Stan Shebs  <stan@codesourcery.com>
7403             Nathan Sidwell  <nathan@codesourcery.com>
7404
7405         * breakpoint.c (breakpoint_1): Add filter argument, return number of
7406         breakpoints printed.
7407         (is_hardware_watchpoint): Make argument const.
7408         (is_watchpoint): Ditto.
7409         (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
7410         use it everywhere.
7411         (breakpoints_info): Pass NULL to breakpoint_1.
7412         (maintenance_info_breakpoints): Ditto.
7413         (watchpoints_info): New function.
7414         (tracepoints_info): Use breakpoint_1 filter.
7415         (set_ignore_count): Warn that tracepoint ignore count will be ignored.
7416         (_initialize_breakpoint): Make "info watchpoints" its own command.
7417         * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
7418         * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
7419
7420 2010-04-04  Stan Shebs  <stan@codesourcery.com>
7421
7422         * tracepoint.c (tfile_fetch_registers): Add fallback case.
7423
7424 2010-04-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
7425
7426         * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
7427         * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
7428
7429 2010-04-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
7430
7431         * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
7432         * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
7433
7434 2010-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7435
7436         * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
7437         code form.
7438
7439 2010-04-02  Hui Zhu  <teawater@gmail.com>
7440
7441         * i386-tdep.c (OT_DQUAD): New enum.
7442         (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
7443         SSE3, SSSE3 and SSE4.
7444
7445 2010-04-02  Hui Zhu  <teawater@gmail.com>
7446
7447         * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
7448         "*addr = 0".
7449
7450 2010-04-02  Pedro Alves  <pedro@codesourcery.com>
7451
7452         * tracepoint.c (trace_dump_actions): New, factored out from
7453         trace_dump_command, and adjusted to recurse into while-stepping's
7454         action list.
7455         (trace_dump_command): Use it.
7456
7457 2010-04-02  Pedro Alves  <pedro@codesourcery.com>
7458
7459         * breakpoint.h (struct counted_command_line): Moved definition to
7460         breakpoint.c, and forward declare.
7461         (breakpoint_commands): Declare.
7462         * breakpoint.c (struct counted_command_line): Moved here.
7463         (breakpoint_commands): New.
7464         * tracepoint.c (encode_actions): Use breakpoint_commands.
7465         * remote.c (remote_download_tracepoint): Ditto.
7466
7467 2010-04-01  H.J. Lu  <hongjiu.lu@intel.com>
7468
7469         * remote.c (remote_parse_stop_reply): Use hex_string instead
7470         of phex_nz for error.
7471
7472 2010-04-01  Stan Shebs  <stan@codesourcery.com>
7473             Nathan Sidwell  <nathan@codesourcery.com>
7474
7475         * tracepoint.h (enum actionline_type): Remove.
7476         (validate_actionline): Change return to void.
7477         * tracepoint.c (report_agent_reqs_errors): New function.
7478         (validate_actionline): Call it, change return to void, report errors
7479         more consistently.
7480         (collect_symbol): Call report_agent_reqs_errors.
7481         (encode_actions_1): Ditto.
7482         (encode_actions): Don't expect a result from validate_actionline.
7483
7484 2010-04-01  Stan Shebs  <stan@codesourcery.com>
7485
7486         * tracepoint.c (trace_start_command): Confirm if trace is running.
7487         (trace_stop_command): Error if trace not running.
7488
7489 2010-04-01  H.J. Lu  <hongjiu.lu@intel.com>
7490
7491         * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
7492         (AMD64_NUM_LOWER_BYTE_REGS): New.
7493         (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
7494         (amd64_pseudo_register_write): Likewise.
7495         (amd64_init_abi): Set num_byte_regs to 20.
7496
7497 2010-04-01  Pedro Alves  <pedro@codesourcery.com>
7498
7499         * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
7500         (prev_breakpoint_count): New.
7501         (set_breakpoint_count): Adjust.
7502         (rbreak_start_breakpoint_count): New.
7503         (start_rbreak_breakpoints): Adjust.
7504         (end_rbreak_breakpoints): Adjust.
7505         (struct commands_info) <arg>: New field.
7506         (do_map_commands_command): Tweak output to include breakpoint spec
7507         range.
7508         (commands_command_1): Adjust.  Avoid setting an xfree cleanup if
7509         ARG was empty on entry.  Set INFO's arg.
7510         (create_breakpoint): Adjust.
7511
7512         * NEWS: Clarify `commands' changes.
7513
7514 2010-04-01  Pedro Alves  <pedro@codesourcery.com>
7515
7516         * tracepoint.c: Include stack.h.
7517         (struct add_local_symbols_data): New.
7518         (do_collect_symbol): New.
7519         (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
7520         iterate_over_block_local_vars.
7521         * stack.c (print_block_frame_locals): Rewrite as ...
7522         (iterate_over_block_locals): ... this.  Take a callback function
7523         pointer and generic data pointer, and call that instead of
7524         print_variable_and_value.
7525         (struct print_variable_and_value_data): New.
7526         (do_print_variable_and_value): New.
7527         (iterate_over_block_local_vars): New, abstracted out from
7528         print_frame_local_vars.
7529         (print_frame_local_vars): Rewrite using
7530         iterate_over_block_local_vars.
7531         (iterate_over_block_arg_vars): New, abstracted out from
7532         print_frame_arg_vars.
7533         (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
7534         * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
7535         (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
7536
7537 2010-03-31  Richard Earnshaw  <rearnsha@arm.com>
7538
7539         * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
7540         instructions.  Use the PC+4 if the base of the TBB or TBH is the
7541         PC register.
7542
7543 2010-03-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
7544
7545         Fix crash on reading wrong function declaration DWARF.
7546         * dwarf2read.c (read_subroutine_type): New variable void_type.
7547         Pre-fill all TYPE_FIELD_TYPEs.  Move nparams and iparams initialization
7548         more close to their use.
7549
7550 2010-03-31  Stan Shebs  <stan@codesourcery.com>
7551
7552         * breakpoint.c (tracepoint_save_command): Include variables,
7553         conditionals, tracepoint types, and default-collect.
7554         * tracepoint.c (save_trace_state_variables): New function.
7555         * tracepoint.h (save_trace_state_variables): Declare it.
7556
7557 2010-03-31  Pierre Muller  <muller@ics.u-strasbg.fr>
7558
7559         * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
7560
7561 2010-03-30  Keith Seitz  <keiths@redhat.com>
7562
7563         * c-typeprint.c (c_type_print_args): Don't print "void"
7564         for java, regardless of whether it is TYPE_PROTOTYPED.
7565         Use the passed-in language instead of current_language.
7566         (c_type_print_varspec_suffix): Use current_language instead
7567         of assuming language_c.
7568         * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
7569         any return type specifier from the physname.
7570
7571 2010-03-30  Pedro Alves  <pedro@codesourcery.com>
7572
7573         * tui/tui-interp.c (tui_is_toplevel): New.
7574         (tui_init): Set it.
7575         (tui_allowed_p): New.
7576         * tui/tui.c (tui_enable): Check if the TUI is allowed before
7577         enabling it.
7578         * tui/tui.h (tui_allowed_p): Declare.
7579
7580 2010-03-30  Ozkan Sezer  <sezeroz@gmail.com>
7581
7582         * serial.h: Include winsock2.h before windows.h.
7583
7584 2010-03-30  H.J. Lu  <hongjiu.lu@intel.com>
7585
7586         * NEWS: Mention xmlRegisters= in qSupported packet.
7587
7588         * i386-tdep.c: Include "remote.h".
7589         (_initialize_i386_tdep): Call register_remote_support_xml.
7590
7591         * remote.c (remote_support_xml): New.
7592         (register_remote_support_xml): Likewise.
7593         (remote_query_supported_append): Likewise.
7594         (remote_query_supported): Support remote_support_xml.
7595
7596         * remote.h (register_remote_support_xml): New.
7597
7598 2010-03-29  Stan Shebs  <stan@codesourcery.com>
7599
7600         * tracepoint.c (trace_find_line_command): Remove dead code.
7601
7602         * tracepoint.h (struct uploaded_string): New struct.
7603         (struct uploaded_tp): New fields for source strings.
7604         * breakpoint.c (this_utp, next_cmd): New globals.
7605         (read_uploaded_action): New function.
7606         (create_tracepoint_from_upload): Fill in more parts
7607         of a tracepoint.
7608         * tracepoint.c (encode_source_string): New function.
7609         (trace_save): Write out source strings, fix error checks.
7610         (parse_tracepoint_definition): Add source string parsing.
7611         * remote.c (PACKET_TracepointSource): New packet type.
7612         (remote_download_command_source): New function.
7613         (remote_download_tracepoint): Download source pieces also.
7614         (_initialize_remote): Add packet config command.
7615
7616         * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
7617         expression handler.
7618
7619         * tracepoint.c (start_tracing): Check tracepoints before sending
7620         commands to target, don't start if all tracepoints disabled.
7621
7622 2010-03-28  Pedro Alves  <pedro@codesourcery.com>
7623
7624         * cli/cli-script.c (process_next_line): Handle 'stepping'.
7625
7626 2010-03-26  Stan Shebs  <stan@codesourcery.com>
7627
7628         * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
7629
7630 2010-03-26  Tom Tromey  <tromey@redhat.com>
7631
7632         * breakpoint.c (commands_command_1): Duplicate 'arg'.
7633
7634 2010-03-26  Ulrich Weigand  <uweigand@de.ibm.com>
7635
7636         * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
7637         (skip_prologue_sal): Remove local definition.
7638         (resolve_sal_pc): Remove now unnecessary code.
7639         * linespec.c (minsym_found): Call skip_prologue_sal.
7640         * symtab.c (find_function_start_pc): Remove.
7641         (find_function_start_sal): Extract prologue skipping into ...
7642         (skip_prologue_sal): ... this new function.  Handle code both
7643         with and without debug info.  Respect SAL's explicit_pc and
7644         explicit_line flags.  Inline old find_function_start_pc.
7645         * symtab.h (find_function_start_pc): Remove.
7646         (skip_prologue_sal): Add prototype.
7647
7648 2010-03-26  Ulrich Weigand  <uweigand@de.ibm.com>
7649
7650         * dwarf2read.c (read_func_scope): Also scan specification DIEs
7651         for DW_TAG_imported_module children.
7652
7653 2010-03-26  Ulrich Weigand  <uweigand@de.ibm.com>
7654
7655         * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
7656         ignoring spurious DW_AT_name attributes for unnamed structs or unions.
7657         * completer.c (add_struct_fields): Fix inverted logic.
7658
7659 2010-03-26  Ulrich Weigand  <uweigand@de.ibm.com>
7660
7661         * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
7662
7663 2010-03-26  Pedro Alves  <pedro@codesourcery.com>
7664
7665         * tracepoint.c (current_trace_status): Don't make sure error_desc
7666         is non-NULL here.
7667         (parse_trace_status): Release a previous error_desc string, and
7668         set it to NULL by default.  If stop reason is tracepoint_error,
7669         make sure error_desc is not left NULL.
7670
7671 2010-03-26  Pedro Alves  <pedro@codesourcery.com>
7672
7673         * tracepoint.c (trace_save): Remove X from tracepoint error
7674         description.
7675
7676 2010-03-26  Pedro Alves  <pedro@codesourcery.com>
7677
7678         * tracepoint.c (parse_trace_status): Don't allow plain strings in
7679         the terror description.  Don't expect an X prefix.
7680
7681 2010-03-25  Stan Shebs  <stan@codesourcery.com>
7682
7683         * tracepoint.h (trace_stop_reason): Add tracepoint_error.
7684         (struct trace_status): New field error_desc.
7685         * tracepoint.c (stop_reason_names): Add terror.
7686         (current_trace_status): Ensure non-NULL error description.
7687         (trace_status_command): Add error report.
7688         (trace_status_mi): Ditto.
7689         (trace_save): Add special case for error description.
7690         (parse_trace_status): Add case for errors.
7691
7692 2010-03-25  Keith Seitz  <keiths@redhat.com>
7693
7694         * dwarf2read.c (read_subroutine_type): If the compilation unit
7695         language is Java, mark any formal parameter named "this" as
7696         artificial (GCC/43521).
7697         (dwarf2_name): Add special handling for Java constructors.
7698
7699 2010-03-25  Tom Tromey  <tromey@redhat.com>
7700
7701         PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
7702         * infrun.c (handle_inferior_event): Change initialization of
7703         stop_stack_dummy.
7704         (handle_inferior_event): Change assignment to stop_stack_dummy.
7705         (normal_stop): Update use of stop_stack_dummy.
7706         (struct inferior_status) <stop_stack_dummy>: Change type.
7707         * inferior.h (stop_stack_dummy): Update.
7708         * infcmd.c (stop_stack_dummy): Change type.
7709         * infcall.c (cleanup_delete_std_terminate_breakpoint): New
7710         function.
7711         (call_function_by_hand): Call set_std_terminate_breakpoint.
7712         Rewrite std::terminate handling.
7713         * breakpoint.h (enum bptype) <bp_std_terminate,
7714         bp_std_terminate_master>: New.
7715         (enum stop_stack_kind): New.
7716         (struct bpstat_what) <call_dummy>: Change type.
7717         (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
7718         Declare.
7719         * breakpoint.c (create_std_terminate_master_breakpoint): New
7720         function.
7721         (update_breakpoints_after_exec): Handle bp_std_terminate_master.
7722         Call create_std_terminate_master_breakpoint.
7723         (print_it_typical): Handle new breakpoint kinds.
7724         (bpstat_stop_status): Handle bp_std_terminate_master.
7725         (bpstat_what): Correctly set call_dummy field.  Handle
7726         bp_std_terminate_master and bp_std_terminate.
7727         (print_one_breakpoint_location): Update.
7728         (allocate_bp_location): Update.
7729         (set_std_terminate_breakpoint): New function.
7730         (delete_std_terminate_breakpoint): Likewise.
7731         (create_thread_event_breakpoint): Update.
7732         (delete_command): Update.
7733         (breakpoint_re_set_one): Update.
7734         (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
7735
7736 2010-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
7737
7738         * symfile.c (build_section_addr_info_from_bfd): New.
7739         (build_section_addr_info_from_objfile): Base it on
7740         build_section_addr_info_from_bfd.
7741         (addrs_section_compar, addrs_section_sort): New.
7742         (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
7743         addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs.  Build
7744         addrs_to_abfd_addrs.  Use it for recalculating ADDRS.
7745
7746 2010-03-24  Michael Snyder  <msnyder@localhost.localdomain>
7747
7748         * elfread.c (find_separate_debug_file_by_buildid):
7749         Remove unused local variable.
7750
7751 2010-03-24  Tom Tromey  <tromey@redhat.com>
7752
7753         PR breakpoints/9352:
7754         * NEWS: Mention changes to `commands' and `rbreak'.
7755         * symtab.c (do_end_rbreak_breakpoints): New function.
7756         (rbreak_command): Call start_rbreak_breakpoints; arrange to call
7757         end_rbreak_breakpoints.
7758         * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
7759         (set_breakpoint_count): Likewise.  Clear last_was_multi.
7760         (multi_start, multi_end, last_was_multi): New globals.
7761         (start_rbreak_breakpoints, end_rbreak_breakpoints): New
7762         functions.
7763         (struct commands_info): New
7764         (do_map_commands_command): New function.
7765         (commands_command_1): New function.
7766         (commands_command): Use it.
7767         (commands_from_control_command): Likewise.
7768         (do_delete_breakpoint): New function.
7769         (delete_command): Use it.
7770         (map_breakpoint_numbers): Add 'data' argument.  Pass to callback.
7771         (do_map_disable_breakpoint): New function.
7772         (disable_command): Use it.
7773         (do_map_enable_breakpoint): New function.
7774         (enable_command): Use it.
7775         (enable_once_breakpoint): Add argument.
7776         (enable_once_command): Update.
7777         (enable_delete_breakpoint): Add argument.
7778         (enable_delete_command): Update.
7779         (break_command_really): Set last_was_multi when needed.
7780         (check_tracepoint_command): Fix formatting.
7781         (validate_commands_for_breakpoint): New function.
7782         (breakpoint_set_commands): Use it.
7783         (tracepoint_save_command): Update.
7784         * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
7785         Declare.
7786
7787 2010-03-24  Tom Tromey  <tromey@redhat.com>
7788
7789         * breakpoint.h (struct counted_command_line): New struct.
7790         (struct breakpoint) <commands>: Change type.
7791         (struct bpstats) <commands>: Change type.
7792         <commands_left>: New field.
7793         * breakpoint.c (alloc_counted_command_line): New function.
7794         (incref_counted_command_line): Likewise.
7795         (decref_counted_command_line): Likewise.
7796         (do_cleanup_counted_command_line): Likewise.
7797         (make_cleanup_decref_counted_command_line): Likewise.
7798         (breakpoint_set_commands): Use decref_counted_command_line and
7799         alloc_counted_command_line.
7800         (commands_command): Don't error if breakpoint commands are
7801         executing.
7802         (commands_from_control_command): Likewise.
7803         (bpstat_free): Update.
7804         (bpstat_copy): Likewise.
7805         (bpstat_clear_actions): Likewise.
7806         (bpstat_do_actions_1): Likewise.
7807         (bpstat_stop_status): Likewise.
7808         (print_one_breakpoint_location): Likewise.
7809         (delete_breakpoint): Likewise.
7810         (bpstat_alloc): Initialize new field.
7811         (tracepoint_save_command): Update.
7812         * tracepoint.c (encode_actions): Update.
7813         (trace_dump_command): Update.
7814
7815 2010-03-24  Daniel Jacobowitz  <dan@codesourcery.com>
7816
7817         * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
7818         * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
7819         (read_structure_type): For RealView, set TYPE_STUB on structures with
7820         no byte size and no children.
7821         (read_subroutine_type): Mark functions as prototyped by default.
7822         * symtab.c (producer_is_realview): New function.
7823         * symtab.h (expand_line_sal): Fix declaration formatting.
7824         (producer_is_realview): Declare.
7825
7826 2010-03-24  Daniel Jacobowitz  <dan@codesourcery.com>
7827
7828         * arm-tdep.c (skip_prologue_function): New function.
7829         (submask, bit, bits, sbits, BranchDest): Move higher in the file.
7830         (thumb_analyze_prologue): Document return value.  Recognize more
7831         Thumb instructions, skippable calls, and some Thumb-2 instructions.
7832         Add debug output.
7833         (arm_skip_prologue): Remove call dummy check.  Check the prologue
7834         for non-GNU compilers.
7835         (arm_instruction_changes_pc): New function.
7836         (arm_analyze_prologue): New function, broken out from
7837         arm_scan_prologue.  Recognize more ARM instructions and skippable
7838         calls.  Update comments.  Handle NULL cache.  Return the address
7839         of the first unrecognized instruction.  Do not skip past other
7840         instructions which change control flow.  Add debug output.
7841         (arm_scan_prologue): Use arm_analyze_prologue.
7842         (ARM_PC_32): Delete.
7843         (shifted_reg_val): Simplify ARM_PC_32 check.
7844
7845 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7846
7847         * tracepoint.c (tvariables_info_1): Actually compute
7848         the number of rows in the result.
7849
7850 2010-03-24  Pedro Alves  <pedro@codesourcery.com>
7851
7852         * remote.c (crc32): Constify `buf' parameter.
7853         (remote_verify_memory): New, abstracted out from...
7854         (compare_sections_command): ... this.  Remove hardcoded target
7855         checks.
7856         (init_remote_ops): Install remote_verify_memory.
7857         * target.c (target_verify_memory): New.
7858         * target.h (struct target_ops) <to_verify_memory>: New field.
7859         (target_verify_memory): Declare.
7860
7861 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7862
7863         Implement -trace-save.
7864
7865         * mi-cmds.h (mi_cmds_trace_save): Declare.
7866         * mi-cmds.c (mi_cmds): Register -trace-save.
7867         * mi/mi-main.c (mi_cmd_trace_save): New.
7868         * remote.c (remote_save_trace_data): Take const parameter.
7869         * target.h (struct target_ops::to_save_trace_data): Take
7870         const parameter.
7871         * target.c (update_current_target): Adjust to the above.
7872         * tracepoint.c (trave_save): New, extracted from
7873         (trace_save_command): ...this.
7874         (tfile_trace_find): Remove message that is unnecessary now
7875         that 'tfind' reports found frame.
7876         * tracepoint.h (trace_save): Declare.
7877
7878 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7879
7880         Implement -trace-find.
7881
7882         * mi/mi-cmds.c (mi_cmds): Register -trace-find.
7883         * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
7884         * mi/mi-main.c (mi_cmd_trace_find): New.
7885         * target.h (struct target_ops): Document to_trace_find.
7886         * tracepoint.h (tfind_1): Declare.
7887         * tracepoint.c (finish_tfind_command): Rename to...
7888         (tfind_1): ...this.
7889         * remote.c (remote_trace_find): Return -1 if target say
7890         there's no frame.  Improve error diagnostics.
7891
7892 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7893
7894         -trace-define-variable and -trace-list-variables.
7895
7896         * tracepoint.c (create_trace_state_variable): Make
7897         private copy of name, as opposed to assuming the
7898         pointer lives forever.
7899         (tvariables_info_1): New.
7900         (tvariables_info): Use the above.
7901         * tracepoint.h (create_trace_state_variable, tvariables_info_1):
7902         Declare.
7903         * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
7904         and -trace-list-variables.
7905         * mi/mi-cmds.h (mi_cmd_trace_define_variable)
7906         (mi_cmd_trace_list_variables): New.
7907         * mi/mi-main.c (mi_cmd_trace_define_variable)
7908         (mi_cmd_trace_list_variables): New.
7909
7910 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7911
7912         Implement -break-passcount.
7913
7914         * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
7915         * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
7916         * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
7917
7918 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7919
7920         -trace-start/-trace-end/-trace-status.
7921
7922         * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
7923         and -trace-stop.
7924         * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
7925         (mi_cmd_trace_stop): Declare.
7926         * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
7927         (mi_cmd_trace_stop): New.
7928         * tracepoint.c (start_tracing): New, extracted from...
7929         (trace_start_command): ...this.
7930         (trace_status_mi): New.
7931         * tracepoint.h (struct trace_status): Document
7932         stopping_tracepoint.
7933         (start_tracing, stop_tracing, trace_status_mi): Declare.
7934
7935 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7936
7937         Implement creating tracepoints with -break-insert.
7938
7939         * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
7940         to mean that tracepoint should be created.
7941
7942 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7943
7944         * breakpoint.c (check_no_tracepoint_commands): Use
7945         current spelling of 'teval'.
7946
7947 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
7948
7949         Unify actions and commands
7950
7951         * defs.h (read_command_lines, read_command_lines_1): New
7952         parameters validator and closure.
7953         * tracepoint.h (struct action_line): Remove.
7954         * breakpoint.h (struct breakpoint): Remove the 'actions'
7955         field.
7956         * defs.h (enum command_control_type): New value
7957         while_stepping_control.
7958         (struct command_line): Add comments.
7959         * breakpoint.c (breakoint_is_tracepoint): New.
7960         (breakpoint_set_commands): For tracepoints,
7961         verify the commands are permissible.
7962         (check_tracepoint_commands): New.
7963         (commands_command): Require that each new line is validated using
7964         check_tracepoint_command, if we set commands for a tracepoint.
7965         (create_tracepoint_from_upload): Likewise.
7966         (print_one_breakpoint_location): Remove the code to print
7967         actions specifically.
7968         (tracepoint_save_command): Relay to print_command_lines.
7969         * cli/cli-script.c (process_next_line): New parameters validator
7970         and closure. Handle 'while-stepping'. Call validator if not null.
7971         (read_command_lines, read_command_lines1): Likewise.
7972         (recurse_read_control_structure): New parameters validator and
7973         closure. Handle while_stepping_control.
7974         (print_command_lines): Handle while-stepping.
7975         (get_command_line, define_command, document_command): Adjust.
7976         * remote.c (remote_download_tracepoint): Adjust.
7977         * tracepoint.c (make_cleanup_free_actions, read_actions)
7978         (free_actions, do_free_actions_cleanup): Remove.
7979         (trace_actions_command): Use read_command_lines.
7980         (validate_actionline): Use error in one place.
7981         (encode_actions_1): New, extracted from...
7982         (encode_actions): ...this. Also use cleanups for exception
7983         safety.
7984         (trace_dump_command): Adjust.
7985         * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
7986         it's tracepoint.
7987
7988 2010-03-23  Mike Frysinger  <vapier@gentoo.org>
7989
7990         * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
7991
7992 2010-03-22  Stan Shebs  <stan@codesourcery.com>
7993
7994         * value.c (value_static_field): Be lazy about the field's value.
7995
7996 2010-03-22  Reid Kleckner  <reid@kleckner.net>
7997
7998         PR gdb/11094
7999         * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
8000         bp_jit_event.
8001         (disable_breakpoints_in_shlibs): Likewise.
8002
8003 2010-03-22  Ulrich Weigand  <uweigand@de.ibm.com>
8004
8005         * dwarf2read.c (partial_die_parent_scope): Work around buggy
8006         GCC 4.1 debug info generation (GCC PR c++/28460).
8007         (determine_prefix): Likewise.
8008
8009 2010-03-20  Daniel Jacobowitz  <dan@codesourcery.com>
8010
8011         * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
8012         get_current_arch.
8013         * tui/tui-layout.c (extract_display_start_addr): Likewise.
8014
8015 2010-03-19  Stan Shebs  <stan@codesourcery.com>
8016
8017         * ax-gdb.c (gen_fetch): Handle bool.
8018         (gen_usual_unary): Ditto.
8019         (gen_cast): Ditto.
8020         (gen_equal): New function.
8021         (gen_less): New function.
8022         (gen_expr_binop_rest): Call them, also return integer type from
8023         logical operations.
8024         (gen_expr): Ditto.
8025
8026 2010-03-19  Tom Tromey  <tromey@redhat.com>
8027
8028         * jv-lang.c (jv_dynamics_objfile_data_key)
8029         (jv_type_objfile_data_key): New globals.
8030         (class_symtab): Move earlier.
8031         (jv_per_objfile_free): New function.
8032         (get_dynamics_objfile): Call set_objfile_data.  Add 'gdbarch'
8033         parameter.
8034         Remove ancient #if 1.
8035         (add_class_symbol): Remove redundant declaration.
8036         (java_lookup_class): Use alloc_type, not alloc_type_arch.
8037         (java_link_class_type): Mark as static.  Update.
8038         (jv_clear_object_type): New function.
8039         (set_java_object_type): Likewise.
8040         (get_java_object_type): Use set_java_object_type.
8041         (is_object_type): Likewise.
8042         (_initialize_java_language): Register new objfile keys.
8043         (get_java_class_symtab): Add 'gdbarch' parameter.
8044         (add_class_symtab_symbol): Update.
8045         (type_from_class): Update.
8046
8047 2010-03-19  Stan Shebs  <stan@codesourcery.com>
8048
8049         * ax-general.c (ax_const_l): Fix a sizing bug.
8050
8051 2010-03-18  Joel Brobecker  <brobecker@adacore.com>
8052
8053         GDB 7.1 released.
8054
8055 2010-03-18  Stan Shebs  <stan@codesourcery.com>
8056             Pedro Alves  <pedro@codesourcery.com>
8057
8058         * target.h (struct target_ops): New method
8059         to_set_circular_trace_buffer.
8060         (target_set_circular_trace_buffer): New macro.
8061         * target.c (update_current_target): Add
8062         to_set_circular_trace_buffer, fix to_set_disconnected_tracing
8063         default behavior.
8064         * remote.c (remote_set_circular_trace_buffer): New function.
8065         (init_remote_ops): Add it to vector.
8066         * tracepoint.h (struct trace_status): New field traceframes_created,
8067         change buffer_size and buffer_free to int.
8068         * tracepoint.c (circular_trace_buffer): New global.
8069         (start_tracing): Send values of disconnected tracing and circular
8070         trace buffer settings.
8071         (set_circular_trace_buffer): New function.
8072         (parse_trace_state): Handle total space and frames created.
8073         (trace_status_command): Display total space and total frames
8074         created.
8075         (trace_save): Write out new status values.
8076         (parse_trace_status): Set traceframe_count, traceframes_created,
8077         buffer_free and buffer_size to -1 by default.
8078         (_initialize_tracepoint): New setshow for circular-trace-buffer.
8079         * NEWS: Mention the circular trace buffer option.
8080
8081 2010-03-18  Tom Tromey  <tromey@redhat.com>
8082
8083         * infcmd.c (finish_command_continuation): Wrap print_return_value
8084         in TRY_CATCH.
8085
8086 2010-03-18  Joel Brobecker  <brobecker@adacore.com>
8087
8088         * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
8089         DIE has a name before creating the associated partial symbol.
8090         (read_func_scope): Emit a complaint if the subprogram does not
8091         have a name or when we can't extract the subprogram PC bounds.
8092
8093 2010-03-18  Ulrich Weigand  <uweigand@de.ibm.com>
8094
8095         * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
8096         instead of selected frame architecture.
8097
8098 2010-03-18  Pedro Alves  <pedro@codesourcery.com>
8099
8100         * infcmd.c (until_command): Use ERROR_NO_INFERIOR.  Ensure there's
8101         a valid selected thread, and that it is not running.
8102         (advance_command): Ditto.
8103         (finish_command): Ditto.
8104
8105 2010-03-17 Stan Shebs  <stan@codesourcery.com>
8106
8107         * ax-gdb.c (require_rvalue): Disallow non-scalars.
8108
8109         * infcall.c: Include tracepoint.h.
8110         (call_function_by_hand): Disallow calls in tfind mode.
8111         * infcmd.c: Include tracepoint.h.
8112         (ensure_not_tfind_mode): New function.
8113         (continue_1): Call it.
8114         (step_1) Ditto.
8115         (jump_command): Ditto.
8116         (signal_command): Ditto.
8117         (advance_command): Ditto.
8118         (until_command): Ditto.
8119         (finish_command): Ditto.
8120         * tracepoint.h (disconnect_or_stop_tracing): Declare.
8121
8122         * ax-gdb.h (struct axs_value): New field optimized_out.
8123         (gen_trace_for_var): Add gdbarch argument.
8124         * ax-gdb.c (gen_trace_static_fields): New function.
8125         (gen_traced_pop): Call it, add gdbarch argument.
8126         (gen_trace_for_expr): Update call to it.
8127         (gen_trace_for_var): Ditto, and report optimized-out variables.
8128         (gen_struct_ref_recursive): Check for optimized-out value.
8129         (gen_struct_elt_for_reference): Ditto.
8130         (gen_static_field): Pass gdbarch instead of expression, assume
8131         optimization if field not found.
8132         (gen_var_ref): Set the optimized_out flag.
8133         (gen_expr): Error on optimized-out variable.
8134         * tracepoint.c (collect_symbol): Handle struct-valued vars as
8135         expressions, skip optimized-out variables with computed locations.
8136         * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
8137         erroring out if location expression missing.
8138         (loclist_tracepoint_var_ref): Don't error out here.
8139
8140 2010-03-17  Tom Tromey  <tromey@redhat.com>
8141
8142         * dwarf2read.c (dwarf2_get_section_info): Handle case where no
8143         DWARF data is available.
8144
8145 2010-03-17  Daniel Jacobowitz  <dan@codesourcery.com>
8146
8147         * symfile.c (generic_load): Reset breakpoints after loading.
8148
8149 2010-03-17  Tom Tromey  <tromey@redhat.com>
8150
8151         * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
8152
8153 2010-03-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8154
8155         * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
8156         create_breakpoint call, adjust the parameters.
8157
8158 2010-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8159             Chandru <chandru@in.ibm.com>
8160
8161         * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
8162         * valarith.c (value_subscripted_rvalue): Suppress error if
8163         TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
8164
8165 2010-03-16  Holger Hans Peter Freyther  <zecke@selfish.org>
8166
8167         * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
8168
8169 2010-03-16  Joel Brobecker  <brobecker@adacore.com>
8170
8171         * ada-tasks.c (task_command_1): Check that the task ptid is valid
8172         before doing the associated thread switch.
8173
8174 2010-03-16  Daniel Jacobowitz  <dan@codesourcery.com>
8175
8176         * MAINTAINERS: Update my email address.
8177
8178 2010-03-16  Vladimir Prus  <vladimir@codesourcery.com>
8179
8180         Simplify MI breakpoint setting.
8181
8182         * breakpoint.c (break_command_really): Make nonstatic and
8183         rename to...
8184         (create_breakpoint): ...this. Rename prior function by this name
8185         to...
8186         (create_breakpoint_sal): ...this.
8187         (create_breakpoints): Rename to...
8188         (create_breakpoints_sal): ...this.
8189         (set_breakpoint): Remove.
8190         * breakpoint.h: Adjust to above changes.
8191         * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
8192
8193 2010-03-15 Stan Shebs  <stan@codesourcery.com>
8194
8195         * ax-gdb.c: Include cp-support.h.
8196         (find_field): Remove.
8197         (gen_primitive_field): New function.
8198         (gen_struct_ref_recursive): New function.
8199         (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
8200         of find_field.
8201         (gen_static_field): New function.
8202         (gen_struct_elt_for_reference): New.
8203         (gen_namespace_elt): New.
8204         (gen_maybe_namespace_elt): New.
8205         (gen_aggregate_elt_ref): New.
8206         (gen_expr): Add OP_SCOPE, display opcode name in error message.
8207
8208 2010-03-15  Tom Tromey  <tromey@redhat.com>
8209
8210         * dwarf2read.c (die_needs_namespace): Also return 0 for
8211         DW_TAG_subprogram.
8212
8213 2010-03-15  Sami Wagiaalla  <swagiaal@redhat.com>
8214
8215         PR c++/7936:
8216         * cp-support.h: Added char *declaration element to using_direct
8217         data struct.
8218         (cp_add_using): Added char *declaration argument.
8219         (cp_add_using_directive): Ditto.
8220         (cp_lookup_symbol_imports): made extern.
8221         * cp-namespace.c: Updated with the above changes.
8222         * dwarf2read.c (read_import_statement): Ditto.
8223         (read_namespace): Ditto.
8224         (read_import_statement): Support import declarations.
8225         * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
8226         declarations.
8227         Added support for 'declaration_only' search.
8228         (cp_lookup_symbol_namespace): Attempt to search for the name as
8229         is before consideration of imports.
8230         * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
8231         search at every block level search.
8232         Now takes language argument.
8233         (lookup_symbol_aux): Updated.
8234
8235 2010-03-15  Tom Tromey  <tromey@redhat.com>
8236
8237         * c-exp.y (name_not_typename): Add 'operator' clause.
8238
8239 2010-03-15  Ralf Corsepius  <ralf.corsepius@rtems.org>  (tiny change)
8240
8241         * configure.ac: Exit if ${gdb_target_obs}" is not set.
8242         * configure: Regenerate.
8243
8244 2010-03-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
8245
8246         * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
8247         and ".sdynbss".  Update the comment.
8248
8249 2010-03-15  Jie Zhang  <jie@codesourcery.com>
8250
8251         * MAINTAINERS: Update my email address.
8252
8253 2010-03-14  Daniel Jacobowitz  <dan@codesourcery.com>
8254
8255         * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
8256
8257 2010-03-14  Daniel Jacobowitz  <dan@codesourcery.com>
8258
8259         * charset.c [USE_WIN32API]: Include <windows.h>.
8260          (_initialize_charset): Correct type of w32_host_default_charset.
8261
8262 2010-03-14  Pedro Alves  <pedro@codesourcery.com>
8263
8264         * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
8265
8266 2010-03-12  Tom Tromey  <tromey@redhat.com>
8267
8268         PR c++/9708:
8269         * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
8270         in a lexical block does not need a namespace.
8271         (new_symbol) <DW_TAG_variable>: Put extern variables on
8272         list_in_scope in all cases.
8273
8274 2010-03-12 Stan Shebs  <stan@codesourcery.com>
8275
8276         * ax-gdb.c (gen_expr): Add shift expressions.
8277         (gen_expr_binop_rest): Ditto.
8278
8279 2010-03-12  Sami Wagiaalla  <swagiaal@redhat.com>
8280
8281         * buildsym.c (finish_block): Reset using_directives pointer
8282         after block initialization.
8283
8284 2010-03-12  H.J. Lu  <hongjiu.lu@intel.com>
8285
8286         * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
8287         * i386-tdep.c (i386_word_names): Likewise.
8288
8289 2010-03-12  Pedro Alves  <pedro@codesourcery.com>
8290
8291         * target.c (memory_xfer_partial): Don't use the stack cache if
8292         inspecting trace frames.
8293         * tracepoint.c (finish_tfind_command): Invalidate the target
8294         dcache.
8295
8296 2010-03-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8297
8298         * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
8299         for the PIC displacement, print also the displacement value.
8300         (svr4_exec_displacement):  Print DISPLACEMENT if INFO_VERBOSE.
8301
8302 2010-03-10  Kevin Buettner  <kevinb@redhat.com>
8303
8304         * remote-mips.c (close_ports, mips_initialize_cleanups)
8305         (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
8306         (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
8307         (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
8308         (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
8309         (pmon_check_entry_address, pmon_check_total, pmon_end_download)
8310         (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
8311         comments describing each of these functions.
8312         (mips_enter_debug, mips_exit_debug, common_open)
8313         (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
8314         blank line after the comment describing the function.
8315
8316 2010-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8317
8318         * solib-svr4.c (svr4_exec_displacement): Return now success, new
8319         parameter displacementp.  Update comment.
8320         (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
8321         element exists.  Return if svr4_exec_displacement was not successful.
8322         Update comment.
8323
8324 2010-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8325             Daniel Jacobowitz  <dan@codesourcery.com>
8326
8327         * solib-svr4.c (read_program_header): Support type == -1 to read
8328         all program headers.
8329         (read_program_headers_from_bfd): New function.
8330         (svr4_static_exec_displacement): Remove and move the comment ...
8331         (svr4_exec_displacement): ... here.  Remove variable found.  New
8332         variable displacement.  Check also DYNAMIC.  Verify DISPLACEMENT
8333         alignment for ELF targets.  Compare target vs. exec_bfd PHDRs for ELF
8334         targets using read_program_headers_from_bfd.  Remove the call of
8335         svr4_static_exec_displacement.
8336
8337 2010-03-10  Tom Tromey  <tromey@redhat.com>
8338
8339         * dwarf2read.c (struct pubnames_header): Remove.
8340         (_PUBNAMES_HEADER): Remove.
8341         (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
8342         (struct aranges_header): Remove.
8343         (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
8344         (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
8345         (PUBNAMES_SECTION): Remove.
8346         (ARANGES_SECTION): Remove.
8347         (dwarf2_locate_sections): Don't handle pubnames or aranges.
8348         (dwarf2_build_psymtabs): Remove dead code.
8349         (dwarf2_build_psymtabs_easy): Remove.
8350
8351 2010-03-10  Tom Tromey  <tromey@redhat.com>
8352
8353         * elfread.c (elf_symfile_read): Don't call
8354         dwarf2_build_frame_info.
8355         * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
8356         (struct dwarf2_per_objfile) <objfile>: New field.
8357         (dwarf2_has_info): Now idempotent.  Set objfile field.
8358         (dwarf2_read_section): Check and set readin field.  Call
8359         posix_madvise.
8360         (dwarf2_build_psymtabs): Don't read all sections.
8361         (read_type_comp_unit_head): Read types section.
8362         (create_debug_types_hash_table): Likewise.
8363         (init_cu_die_reader): Add asserts.
8364         (process_type_comp_unit): Add assert.
8365         (dwarf2_build_psymtabs_hard): Read info section.
8366         (load_partial_comp_unit): Add assert.
8367         (create_all_comp_units): Read info section.
8368         (load_full_comp_unit): Likewise.
8369         (dwarf2_ranges_read): Read ranges section.
8370         (dwarf2_record_block_ranges): Add assert.
8371         (dwarf2_read_abbrevs): Read abbrev section.
8372         (read_indirect_string): Read str section.
8373         (dwarf_decode_line_header): Read line section.
8374         (read_signatured_type_at_offset): Read types section.
8375         (dwarf_decode_macros): Read macinfo section.
8376         (dwarf2_symbol_mark_computed): Read loc section.
8377         * dwarf2-frame.c (dwarf2_frame_find_fde): Call
8378         dwarf2_build_frame_info.
8379         (dwarf2_build_frame_info): Unconditionally set
8380         dwarf2_frame_objfile_data on the objfile.
8381         * configure.ac: Check for posix_madvise.
8382         * config.in, configure: Rebuild.
8383
8384 2010-03-10  Tom Tromey  <tromey@redhat.com>
8385
8386         * xcoffread.c (xcoff_start_psymtab): Update.
8387         (xcoff_end_psymtab): Update.
8388         * psymtab.c (allocate_psymtab): Remove dead code.
8389         * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
8390         void*.
8391         * mdebugread.c (parse_partial_symbols): Update.
8392         (new_psymtab): Likewise.
8393         * dwarf2read.c (process_psymtab_comp_unit): Update.
8394         (psymtab_to_symtab_1): Update.
8395         * dbxread.c (start_psymtab): Update.
8396         (end_psymtab): Likewise.
8397
8398 2010-03-10  Tom Tromey  <tromey@redhat.com>
8399
8400         * xcoffread.c: Include psymtab.h.
8401         (xcoff_sym_fns): Update.
8402         * symtab.h (struct partial_symbol): Remove.
8403         (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
8404         (struct partial_symtab): Remove.
8405         (PSYMTAB_TO_SYMTAB): Remove.
8406         (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
8407         (find_pc_sect_psymtab): Remove.
8408         (find_pc_sect_symtab_via_partial): Declare.
8409         (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
8410         (find_main_psymtab): Remove.
8411         (find_main_filename): Declare.
8412         (fixup_psymbol_section): Remove.
8413         (fixup_section): Declare.
8414         * symtab.c: Include psymtab.h.
8415         (lookup_symtab): Use lookup_symtab method.
8416         (lookup_partial_symtab): Remove.
8417         (find_pc_sect_psymtab_closer): Remove.
8418         (find_pc_sect_psymtab): Remove.
8419         (find_pc_sect_symtab_via_partial): New function.
8420         (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
8421         (fixup_section): No longer static.
8422         (fixup_psymbol_section): Remove.
8423         (lookup_symbol_aux): Use lookup_symbol_aux_quick.
8424         (lookup_global_symbol_from_objfile): Likewise.
8425         (lookup_symbol_aux_psymtabs): Remove.
8426         (lookup_symbol_aux_quick): New function.
8427         (lookup_symbol_global): Use lookup_symbol_aux_quick.
8428         (lookup_partial_symbol): Remove.
8429         (basic_lookup_transparent_type_quick): New function.
8430         (basic_lookup_transparent_type): Use it.
8431         (find_main_psymtab): Remove.
8432         (find_main_filename): New function.
8433         (find_pc_sect_symtab): Use find_pc_sect_symtab method.
8434         (find_line_symtab): Use expand_symtabs_with_filename method.
8435         (output_partial_symbol_filename): New function.
8436         (sources_info): Use map_partial_symbol_filenames.
8437         (struct search_symbols_data): New type.
8438         (search_symbols_file_matches): New function.
8439         (search_symbols_name_matches): Likewise.
8440         (search_symbols): Use expand_symtabs_matching method.
8441         (struct add_name_data): Rename from add_macro_name_data.
8442         (add_macro_name): Update.
8443         (add_partial_symbol_name): New function.
8444         (default_make_symbol_completion_list): Use
8445         map_partial_symbol_names.
8446         (struct add_partial_symbol_name): New type.
8447         (maybe_add_partial_symtab_filename): New function.
8448         (make_source_files_completion_list): Use
8449         map_partial_symbol_filenames.
8450         (expand_line_sal): Use expand_symtabs_with_filename method.
8451         * symmisc.c: Include psymtab.h.
8452         (print_objfile_statistics): Use print_stats method.
8453         (dump_objfile): Use dump method.
8454         (dump_psymtab, maintenance_print_psymbols)
8455         (maintenance_info_psymtabs, maintenance_check_symtabs)
8456         (extend_psymbol_list): Remove.
8457         * symfile.h (struct quick_symbol_functions): New struct.
8458         (struct sym_fns) <qf>: New field.
8459         (sort_pst_symbols): Remove.
8460         (increment_reading_symtab): Declare.
8461         * symfile.c: Include psymtab.h.
8462         (compare_psymbols, sort_pst_symbols): Remove.
8463         (psymtab_to_symtab): Remove.
8464         (increment_reading_symtab): New function.
8465         (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
8466         method.
8467         (set_initial_language): Use find_main_filename.
8468         (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
8469         (free_named_symtabs): Remove unused code.
8470         (start_psymtab_common, add_psymbol_to_bcache)
8471         (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
8472         Remove.
8473         * stack.c: Include psymtab.h, symfile.h.
8474         (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
8475         * source.h (psymtab_to_fullname): Don't declare.
8476         * source.c: Include psymtab.h.
8477         (select_source_symtab): Use find_last_source_symtab method.
8478         (forget_cached_source_info): Use forget_cached_source_info
8479         method.
8480         (find_and_open_source): No longer static.
8481         (psymtab_to_fullname): Remove.
8482         * somread.c: Include psymtab.h.
8483         (som_sym_fns): Update.
8484         * psympriv.h: New file.
8485         * psymtab.h: New file.
8486         * psymtab.c: New file.
8487         * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
8488         (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
8489         * objfiles.c: Include psymtab.h.
8490         (objfile_relocate1): Use relocate method.
8491         (objfile_has_partial_symbols): Use has_symbols method.
8492         * mipsread.c: Include psymtab.h.
8493         (ecoff_sym_fns): Update.
8494         * mi/mi-cmd-file.c: Include psymtab.h.
8495         (print_partial_file_name): New function.
8496         (mi_cmd_file_list_exec_source_files): Use
8497         map_partial_symbol_filenames.
8498         * mdebugread.c: Include psympriv.h.
8499         * machoread.c: Include psympriv.h.
8500         (macho_sym_fns): Update.
8501         * m2-exp.y (yylex): Use lookup_symtab.
8502         * elfread.c: Include psympriv.h.
8503         (elf_sym_fns): Update.
8504         * dwarf2read.c: Include psympriv.h.
8505         * dbxread.c: Include psympriv.h.
8506         (aout_sym_fns): Update.
8507         * cp-support.c: Include psymtab.h.
8508         (read_in_psymtabs): Remove.
8509         (make_symbol_overload_list_qualified): Use
8510         expand_symtabs_for_function method.
8511         * coffread.c: Include psympriv.h.
8512         (coff_sym_fns): Update.
8513         * blockframe.c: Include psymtab.h.
8514         (find_pc_partial_function): Use find_pc_sect_symtab method.
8515         * ada-lang.h (ada_update_initial_language): Update.
8516         * ada-lang.c: Include psymtab.h.
8517         (ada_update_initial_language): Remove 'main_pst' argument.
8518         (ada_lookup_partial_symbol): Remove.
8519         (struct ada_psym_data): New type.
8520         (ada_add_psyms): New function.
8521         (ada_add_non_local_symbols): Use map_ada_symtabs method.
8522         (struct add_partial_datum): New type.
8523         (ada_add_partial_symbol_completions): New function.
8524         (ada_make_symbol_completion_list): Use map_partial_symbol_names.
8525         (ada_exception_support_info_sniffer): Update.
8526         * Makefile.in (SFILES): Add psymtab.c.
8527         (COMMON_OBS): Add psymtab.o.
8528         (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
8529
8530 2010-03-10  Pierre Muller  <muller@ics.u-strasbg.fr>
8531
8532         * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
8533
8534 2010-03-10  Sami Wagiaalla  <swagiaal@redhat.com>
8535
8536         PR C++/11236:
8537         * cp-namespace.c (cp_add_using): Deleted.
8538         (cp_add_using_directive): Use obstack allocations.
8539         Merged the function cp_add_using into this one.
8540         Added 'struct obstack *' argument.
8541         (cp_scan_for_anonymous_namespaces): Updated.
8542         * cp-support.h: Updated.
8543         * dwarf2read.c (read_import_statement): Updated.
8544         (read_namespace): Updated.
8545
8546 2010-03-10  Pierre Muller  <muller@ics.u-strasbg.fr>
8547
8548         * windows-nat.c (cygwin_conv_path): Remove old macro.
8549
8550 2010-03-10  Pedro Alves  <pedro@codesourcery.com>
8551
8552         * breakpoint.c (condition_command): Handle watchpoint conditions.
8553         (is_hardware_watchpoint): Add comment.
8554         (is_watchpoint): New.
8555         (update_watchpoint): Don't reparse the watchpoint's condition
8556         unless necessary.
8557         (WP_IGNORE): New.
8558         (watchpoint_check): Use it.
8559         (bpstat_check_watchpoint): Handle it.
8560         (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
8561         conditions in a frame where it makes sense.
8562         (watch_command_1): Store the innermost block of the condition
8563         expression.
8564         (delete_breakpoint): Delete the watchpoint condition expression.
8565         * breakpoint.h (struct bp_location) <cond>: Update comment.
8566         (struct breakpoint): New field `cond_exp_valid_block'.
8567
8568 2010-03-09  Joel Brobecker  <brobecker@adacore.com>
8569
8570         Adjust handling of Ada DIEs after dwarf2_physname patch.
8571         * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
8572
8573 2010-03-09  Christopher Faylor  <me+cygwin@cgf.cx>
8574             Pierre Muller  <muller@ics.u-strasbg.fr>
8575
8576         * windows-nat.c (cygwin_conv_path): Redefine to properly convert
8577         from/to posix/win32.
8578         (windows_make_so): Use non-Cygwin 1.7 specific function.
8579         (windows_create_inferior): Make sure that cygallargs points to
8580         original args in non Cygwin 1.7. case.
8581
8582 2010-03-09  Michael Snyder  <msnyder@vmware.com>
8583
8584         * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
8585         after target_read_memory to get host byte order.
8586         (i386_process_record): Ditto.
8587
8588 2010-03-09  Keith Seitz  <keiths@redhat.com>
8589
8590         Based on work from Daniel Jacobowitz  <dan@codesourcery.com>
8591         * c-typeprint.c (cp_type_print_method_args): For non-static methods,
8592         print out const or volatile qualifiers, too.
8593         (c_type_print_args): Add parameters show_artificial and language.
8594         Skip artificial parameters when requested.
8595         Use the appropriate language printer.
8596         (c_type_print_varspec): Tell c_type_print_args to skip artificial
8597         parameters and pass language_c.
8598         * dwarf2read.c (die_list): New file global.
8599         (struct partial_die_info): Update comments for name field.
8600         (pdi_needs_namespace): Renamed to ...
8601         (die_needs_namespace): ... this. Rewrite.
8602         (dwarf2_linkage_name): Remove.
8603         (add_partial_symbol): Do not predicate the call to
8604         partial_die_full_name based on pdi_needs_namespace.
8605         Remove call to cp_check_possible_namespace_symbols and associated
8606         outdated comments.
8607         (guess_structure_name): Do not inspect child subprogram DIEs.
8608         (dwarf2_fullname): Update comments.
8609         Use die_needs_namespace to assist in computing the name.
8610         (read_func_scope): Use dwarf2_name to get the DIE's name.
8611         Use dwarf2_physname to get the "linkage name" of the DIE.
8612         (dwarf2_add_member_field): Use dwarf2_physname instead of
8613         dwarf2_linkage_name.
8614         (read_structure_type): For structs and classes, set TYPE_NAME, too.
8615         (determine_class): Remove.
8616         (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
8617         except Ada.
8618         (new_symbol): Unconditionally call dwarf2_name.
8619         Compute the "linkage name" using dwarf2_physname.
8620         Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
8621         When determining to scan for anonymous C++ namespaces, ignore
8622         the linkage name.
8623         (dwarf2_physname): New function.
8624         (dwarf2_full_name): Move content to new function and call
8625         that.
8626         (dwarf2_compute_name): "New" function.
8627         (_initialize_dwarf2_read): Initialize die_list.
8628         * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
8629         physname.
8630         (gnu_v3_print_method_ptr): Use the physname for virtual methods
8631         without a demangled name.
8632         Print out type information for non-virtual methods.
8633         * linespec.c (decode_line_1): Force ANY string using "::" (or
8634         "." for java) to use decode_compound, and clean up any stray quoting.
8635         If we found a file symtab, re-evaluate whether the remainder is_quoted.
8636         (decode_compound): Stop consuming at an open parenthesis.
8637         Keep template parameters.
8638         Keep any overload information.
8639         Keep keywords like "const".
8640         Remove paren_pointer.
8641         Move is_quoted check from set_flags to here.
8642         Remove #if 0 code from 2000. Ten years is long enough.
8643         (find_method): Before comparing symbol names, canonicalize the string
8644         from the user.
8645         If a specific overload is requested, find it. Otherwise throw an error.
8646         (find_method_overload_end): New function.
8647         (set_flags): Remove.
8648         (decode_compound): Assume that parentheses are matched.
8649         It's a lot easier.
8650         * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
8651         to cplus_demangle.
8652         * linespec.c (decode_line_1): Keep important keywords like
8653         "const" and "volatile".
8654         * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
8655         * typeprint.h (c_type_print_args): Add declaration.
8656         * ui-file.c (do_ui_file_obsavestring): New function.
8657         (ui_file_obsavestring): New function.
8658         * ui-file.h (ui_file_obsavestring): Add declaration.
8659         * valops.c (find_overload_match): Resolve the object to
8660         a non-pointer type.
8661         If the object is a data member, search the object for the member
8662         and return with staticp set.
8663         Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
8664         Do not attempt to extract a function name from non-function types.
8665         If the extracted function name and the original name are the same,
8666         we don't have a C++ method.
8667
8668         From Jan Kratochvil  <jan.kratochvil@redhat.com>:
8669         * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
8670
8671         * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
8672         and arguments from symbol lookups.
8673         * ax-gdb.c (gen_expr): Likewise.
8674         * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
8675         cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
8676         lookup_possible_namespace_symbol): Likewise.
8677         * cp-support.c (read_in_psymtabs): Likewise.
8678         * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
8679         * language.h (la_lookup_symbol_nonlocal): Likewise.
8680         * scm-valprint.c (scm_inferior_print): Likewise.
8681         * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
8682         * solib-svr.c (elf_lookup_lib): Likewise.
8683         * solib.c (show_auto_solib_add): Likewise.
8684         * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
8685         * symmisc.c (maintenance_check_symtabs): Likewise.
8686         * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
8687         lookup_symbol_aux_local, lookup_symbol_aux_block,
8688         lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
8689         lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
8690         lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
8691         basic_lookup_transparent_type, find_main_psymtab,
8692         lookup_block_symbol): Likewise.
8693         * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
8694         lookup_symbol_global, lookup_symbol_aux_block,
8695         lookup_symbol_partial_symbol, lookup_block_symbol,
8696         lookup_global_symbol, value_maybe_namespace_elt): Likewise.
8697
8698 2010-03-09  Pierre Muller  <muller@ics.u-strasbg.fr>
8699
8700         * python/python-internal.h: Include symtab.h.
8701
8702 2010-03-09  Joel Brobecker  <brobecker@adacore.com>
8703             Pierre Muller  <muller@ics.u-strasbg.fr>
8704
8705         * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
8706         * p-valprint.c (pascal_val_print): Remove undeed block and fix
8707         indentation.
8708
8709 2010-03-08  Tom Tromey  <tromey@redhat.com>
8710
8711         * breakpoint.c (breakpoint_1): Add "QUIT".
8712
8713 2010-03-08  Daniel Jacobowitz  <dan@codesourcery.com>
8714             Pedro Alves  <pedro@codesourcery.com>
8715
8716         * solib.c (solib_find): Replace extension if
8717         solib_symbols_extension is set in the target gdbarch.
8718         * arm-symbian-tdep.c (arm_symbian_init_abi): Set
8719         solib_symbols_extension to "sym".
8720         * gdbarch.sh (solib_symbols_extension): New variable.
8721         (pstring): New function.
8722         * gdbarch.h, gdbarch.c: Regenerate.
8723
8724 2010-03-08  Tom Tromey  <tromey@redhat.com>
8725
8726         PR cli/9591:
8727         * NEWS: Update.
8728         * utils.c: Include main.h.
8729         (fputs_maybe_filtered): Don't paginate if `batch_flag'.
8730         (defaulted_query): Use default answer if `batch_flag'.
8731         * main.h (batch_flag): Declare.
8732         * main.c (batch_flag): New global.
8733         (captured_main): Remove 'batch'.  Update.
8734
8735 2010-03-08  Kevin Buettner  <kevinb@redhat.com>
8736
8737         From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
8738         and Kevin Buettner:
8739
8740         * remote-mips.c (rockhopper_ops): New target_ops struct.
8741         (MON_ROCKHOPPER): New mips_monitor_type.
8742         (read_hex_value): New function.
8743         (mips_request): Send 8-byte values with a 'T' packet.  Read the
8744         packet argument as a string and use read_hex_value to parse it.
8745         (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
8746         (rockhopper_open): New function.
8747         (mips_wait): Read the PC, FP and SP fields as strings.  Use
8748         read_hex_value to parse them and mips_set_register to commit them.
8749         (mips_set_register): New function.
8750         (mips_fetch_registers): Do not cast register value to "unsigned"
8751         when reading a MON_ROCKHOPPER 't' packet.  Use mips_set_register.
8752         (mips_store_registers): Use a 'T' packet to set registers when
8753         using MON_ROCKHOPPER.
8754         (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
8755         and expect the total to be printed before the entry address.
8756         (_initialize_remote_mips): Initialize and add rockhopper_ops.
8757
8758 2010-03-08  Kevin Buettner  <kevinb@redhat.com>
8759
8760         * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
8761         Change return value to int.  Store value fetched in location
8762         addressed by `val'.  Use function's return value as success
8763         or failure indicator.  Adjust all callers.
8764
8765 2010-03-08  Pierre Muller  <muller@ics.u-strasbg.fr>
8766
8767         * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
8768
8769 2010-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8770             Hui Zhu  <teawater@gmail.com>
8771
8772         * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
8773         tmp_to_stopped_data_address.
8774         (record_open): Reset tmp_to_stopped_by_watchpoint and
8775         tmp_to_stopped_data_address.
8776         * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
8777         to_stopped_data_address.
8778
8779 2010-03-08  Hui Zhu  <teawater@gmail.com>
8780
8781         * i386-tdep.c (i386_process_record): Initialize regnum.
8782
8783 2010-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8784
8785         * symfile.c (addr_info_make_relative): New variable sect_name, use it.
8786         Do not warn on ".gnu.liblist" and ".gnu.conflict".
8787
8788 2010-03-08  Joel Brobecker  <brobecker@adacore.com>
8789
8790         Memory error when reading wrong core file.
8791         * solib-svr4.c (solib_svr4_r_map): catch and print all exception
8792         errors while reading the inferior memory, and return zero if
8793         an exception was raised.
8794
8795 2010-03-07  Michael Snyder  <msnyder@vmware.com>
8796
8797         * record.c (record_restore): Rename tmpu8 to rectype.
8798
8799         * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
8800         tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
8801
8802         (i386_record_push): Rename local tmpulongest to addr.
8803
8804         (i386_process_record): Rename local tmpulongest to addr.
8805
8806         Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
8807         addr64.
8808
8809         Rename local variable tmpu8 to opcode8 and regnum.
8810
8811 2010-03-07  Joel Brobecker  <brobecker@adacore.com>
8812
8813         * remote.c (remote_get_ada_task_ptid): New function.
8814         (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
8815
8816 2010-03-06  Christopher Faylor  <me+cygwin@cgf.cx>
8817
8818         * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
8819         block.  Define helper macros to reduce ifdefs in code.
8820         (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
8821         size.  Call unadorned GetModuleFileNameEx rather than
8822         GetModuleFileNameEx*.
8823         (windows_make_so): Use __PMAX to denote maximum buffer size and
8824         cygwin_buf_t for buffer type.  Use GetSystemDirectory{W,A} as
8825         appropriate.
8826         (get_image_name): Use __PMAX to denote maximum buffer size.
8827         (handle_load_dll): Likewise.
8828         (windows_pid_to_exec_file): Likewise.
8829         (windows_create_inferior): Add many accommodations for older Cygwin and
8830         non-Cygwin.
8831         (bad_GetModuleFileNameExW): Control inclusion of this function based on
8832         __USEWIDE conditional.
8833         (bad_GetModuleFileNameExA): Likewise.
8834         (_initialize_loadable): Just use real function names without the dyn_
8835         part since they are defined earlier.
8836
8837 2010-03-05  Corinna Vinschen  <vinschen@redhat.com>
8838             Tom Tromey  <tromey@redhat.com>
8839
8840         * utils.c (host_char_to_target): Add 'gdbarch' argument.
8841         (parse_escape): Likewise.
8842         * python/py-utils.c (unicode_to_target_string): Update.
8843         (unicode_to_target_python_string): Update.
8844         (target_string_to_unicode): Update.
8845         * printcmd.c (printf_command): Update.
8846         * p-exp.y (yylex): Update.
8847         * objc-exp.y (yylex): Update.
8848         * mi/mi-parse.c: Include charset.h.
8849         (mi_parse_escape): New function.
8850         (mi_parse_argv): Use it.
8851         * jv-exp.y (yylex): Update.
8852         * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
8853         function.
8854         (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
8855         * gdbarch.sh (auto_charset, auto_wide_charset): New.
8856         * gdbarch.c: Rebuild.
8857         * gdbarch.h: Rebuild.
8858         * defs.h (parse_escape): Update.
8859         * cli/cli-setshow.c: Include arch-utils.h.
8860         (do_setshow_command): Update.
8861         * cli/cli-cmds.c (echo_command): Update.
8862         * charset.h (target_charset, target_wide_charset): Update.
8863         * charset.c: Include arch-utils.h.
8864         (target_charset_name): Default to "auto".
8865         (target_wide_charset_name): Likewise.
8866         (show_target_charset_name): Handle "auto".
8867         (show_target_wide_charset_name): Likewise.
8868         (be_le_arch): New global.
8869         (set_be_le_names): Add 'gdbarch' argument.
8870         (validate): Likewise.  Don't call set_be_le_names.
8871         (set_charset_sfunc, set_host_charset_sfunc)
8872         (set_target_charset_sfunc, set_target_wide_charset_sfunc):
8873         Update.
8874         (target_charset): Add 'gdbarch' argument.
8875         (target_wide_charset): Likewise.  Remove 'byte_order' argument.
8876         (auto_target_charset_name): New global.
8877         (default_auto_charset, default_auto_wide_charset): New functions.
8878         (_initialize_charset): Set auto_target_charset_name.  Allow "auto"
8879         for target charsets.  Copy result of nl_langinfo.  Use GetACP if
8880         USE_WIN32API.
8881         * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
8882         remove 'byte_order' argument.  Update.
8883         (classify_type): Likewise.
8884         (c_emit_char): Update.
8885         (c_printchar): Update.
8886         (c_printstr): Update.
8887         (c_get_string): Update.
8888         (evaluate_subexp_c): Update.
8889         * arch-utils.h (default_auto_charset, default_auto_wide_charset):
8890         Declare.
8891         * python/python.c (gdbpy_target_charset): New function.
8892         (gdbpy_target_wide_charset): Likewise.
8893         (GdbMethods): Update.
8894         * NEWS: Update.
8895
8896 2010-03-05  Ulrich Weigand  <uweigand@de.ibm.com>
8897
8898         * symfile.c (build_section_addr_info_from_objfile): Do not mask
8899         off high address bits.
8900
8901 2010-03-05  Ulrich Weigand  <uweigand@de.ibm.com>
8902
8903         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
8904         address as UnsignedLongLong, not LongLong.
8905
8906 2010-03-05  Kevin Buettner  <kevinb@redhat.com>
8907             Pedro Alves  <pedro@codesourcery.com>
8908
8909         * remote-mips.c (gdbthread.h): Include.
8910         (remote_mips_ptid): Declare.
8911         (mips_error): Only mourn the inferior when inferior_ptid is non-null.
8912         (common_open): Set inferior_ptid, add it as an inferior, and
8913         as a thread too.  Delete FIXME comment regarding start_remote().
8914         (mips_close): Invoke generic_mourn_inferior().
8915         (mips_kill): Make sure that target_mourn_inferior is invoked.
8916         (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
8917         it's now invoked from mips_close().
8918         (mips_load): Don't null out inferior_ptid.  Don't call
8919         clear_symtab_users().
8920         (mips_thread_alive, mips_pid_to_str): New functions.
8921         (_initialize_remote_mips): Initialize remote_mips_ptid.  Initialize
8922         to_thread_alive and to_pid_to_str operations.
8923
8924 2010-03-04  Tom Tromey  <tromey@redhat.com>
8925
8926         * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
8927         in DWARF 3 and later.
8928         (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
8929
8930 2010-03-04  Keith Seitz  <keiths@redhat.com>
8931
8932         * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
8933         If the filename portion of the linespec was quoted, recheck the
8934         remainder for additional quoting.
8935         (locate_first_half): Skip over completer chars, too.
8936
8937 2010-03-04  Tom Tromey  <tromey@redhat.com>
8938
8939         * printcmd.c (printf_command): Pass dummy argument to
8940         printf_filtered.
8941
8942 2010-03-04  Doug Evans  <dje@google.com>
8943
8944         * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
8945         unwound_fp.
8946
8947         * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
8948
8949 2010-03-04  Pedro Alves  <pedro@codesourcery.com>
8950
8951         * breakpoint.c (update_watchpoint): Create a sentinel location if
8952         the software watchpoint isn't watching any memory.
8953         (breakpoint_address_bits): Skip dummy software watchpoint locations.
8954
8955 2010-03-04  Pedro Alves  <pedro@codesourcery.com>
8956
8957         * utils.c (fputs_maybe_filtered): Check if there's already a top
8958         level interpreter before dereferencing it.  If there isn't one,
8959         don't paginate either.
8960
8961 2010-03-04  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
8962
8963         * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
8964         the state right when single stepping.
8965         (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
8966         Get the next PC along with the instruction state.
8967         (thumb_get_next_pc): Remove.
8968         (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
8969
8970 2010-03-04  Hui Zhu  <teawater@gmail.com>
8971
8972         * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
8973
8974 2010-03-03  Pedro Alves  <pedro@codesourcery.com>
8975
8976         * utils.c (fputs_maybe_filtered): Always disable pagination if the
8977         top level interpreter is MI.
8978
8979 2010-03-03 Stan Shebs  <stan@codesourcery.com>
8980
8981         * remote.c (remote_download_tracepoint): Iterate over locations.
8982         * tracepoint.c (validate_actionline): Ditto.
8983         (encode_actions): Add location argument.
8984         (trace_dump_command): Check all locations to see if stepping
8985         frame.
8986
8987 2010-03-03  H.J. Lu  <hongjiu.lu@intel.com>
8988             Eli Zaretskii  <eliz@gnu.org>
8989
8990         * NEWS: Add X86 general purpose registers section.
8991
8992 2010-03-03  Tom Tromey  <tromey@redhat.com>
8993
8994         PR mi/11098:
8995         * varobj.c (install_new_value): Handle case where new print_value
8996         is NULL.
8997
8998 2010-03-03  Dainis Jonitis  <jonitis@gmail.com>
8999
9000         PR gdb/11345:
9001         * printcmd.c (printf_command): Print end of format string using
9002         printf_filtered.
9003
9004 2010-03-02  Tom Tromey  <tromey@redhat.com>
9005
9006         * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
9007         * defs.h (read_command_lines_1): Add missing 'void'.
9008         * cli/cli-script.c (recurse_read_control_structure): Add missing
9009         'void'.
9010         (read_next_line): Likewise.
9011         (read_command_lines_1): Likewise.
9012
9013 2010-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
9014
9015         * spu-tdep.c (spu_analyze_prologue): Track instruction to
9016         store backchain as part of prologue.
9017
9018 2010-03-02  Daniel Jacobowitz  <dan@codesourcery.com>
9019
9020         * progspace.c (update_address_spaces): Update inferior address spaces
9021         also.
9022
9023 2010-03-02  Doug Evans  <dje@google.com>
9024
9025         * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
9026         lowpc,highpc args to addrmap_set_empty.
9027
9028 2010-03-02  H.J. Lu  <hongjiu.lu@intel.com>
9029
9030         * amd64-tdep.c (amd64_byte_names): New.
9031         (amd64_word_names): Likewise.
9032         (amd64_dword_names): Likewise.
9033         (amd64_pseudo_register_name): Likewise.
9034         (amd64_pseudo_register_read): Likewise.
9035         (amd64_pseudo_register_write): Likewise.
9036         (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
9037         and num_mmx_regs.  Call set_gdbarch_pseudo_register_read,
9038         set_gdbarch_pseudo_register_write and
9039         set_tdesc_pseudo_register_name.  Don't call
9040         set_gdbarch_num_pseudo_regs.  Don't set mm0_regnum.
9041
9042         * i386-tdep.c (i386_num_mmx_regs): Removed.
9043         (i386_num_pseudo_regs): Likewise.
9044         (i386_byte_names): New.
9045         (i386_word_names): Likewise.
9046         (i386_byte_regnum_p): Likewise.
9047         (i386_word_regnum_p): Likewise.
9048         (i386_mmx_regnum_p): Updated.
9049         (i386_pseudo_register_name): Make it global.  Handle byte and
9050         word pseudo-registers.
9051         (i386_pseudo_register_read): Likewise.
9052         (i386_pseudo_register_write): Likewise.
9053         (i386_pseudo_register_type): Handle byte, word and dword
9054         pseudo-registers
9055         (i386_register_reggroup_p): Don't include pseudo
9056         registers, except for MXX, in any register groups.  Don't
9057         include pseudo byte, word, dword registers in general_reggroup.
9058         (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
9059         num_dword_regs, al_regnum, ax_regnum and eax_regnum.  Put MMX
9060         pseudo-registers after word pseudo-registers.  Call
9061         set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
9062
9063         * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
9064         al_regnum, num_word_regs, ax_regnum, num_dword_regs and
9065         eax_regnum.
9066         (i386_byte_regnum_p): New.
9067         (i386_word_regnum_p): Likewise.
9068         (i386_dword_regnum_p): Likewise.
9069         (i386_pseudo_register_name): Likewise.
9070         (i386_pseudo_register_read): Likewise.
9071         (i386_pseudo_register_write): Likewise.
9072
9073 2010-03-01  H.J. Lu  <hongjiu.lu@intel.com>
9074
9075         * target-descriptions.c (tdesc_type): Remove
9076         TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9077         (tdesc_predefined_types): Likewise.
9078         (tdesc_gdb_type): Likewise.  Pass NULL to append_flags_type_flag
9079         if flag name is empty.
9080         (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
9081
9082         * features/i386/32bit-core.xml: Define i386_eflags.
9083         * features/i386/64bit-core.xml: Likewise.
9084
9085         * features/i386/32bit-sse.xml: Define i386_mxcsr.
9086         * features/i386/64bit-sse.xml: Likewise.
9087
9088         * features/i386/amd64-linux.c: Regenerated.
9089         * features/i386/amd64.c: Likewise.
9090         * features/i386/i386-linux.c: Likewise.
9091         * features/i386/i386.c: Likewise.
9092
9093 2010-03-01  Daniel Jacobowitz  <dan@codesourcery.com>
9094
9095         * gdbtypes.c (append_composite_type_field_raw): New.
9096         (append_composite_type_field_aligned): Use the new function.
9097         * gdbtypes.h (append_composite_type_field_raw): Declare.
9098         * target-descriptions.c (struct tdesc_type_field): Add start and end.
9099         (struct tdesc_type_flag): New type.
9100         (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
9101         kind.  Add size to u.u.  Add u.f for flags.
9102         (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
9103         (tdesc_free_type): Likewise.
9104         (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
9105         (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
9106         (tdesc_add_bitfield, tdesc_add_flag): New.
9107         * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
9108         (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
9109         * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
9110         current_type.  Add current_type_size and current_type_is_flags.
9111         (tdesc_start_union): Clear the new fields.
9112         (tdesc_start_struct, tdesc_start_flags): New.
9113         (tdesc_start_field): Handle struct fields, including bitfields.
9114         (field_attributes): Make type optional.  Add start and end.
9115         (union_children): Rename to struct_union_children.
9116         (union_attributes): Rename to struct_union_attributes.  Add optional
9117         size.
9118         (flags_attributes): New.
9119         (feature_children): Add struct and flags.
9120         * features/gdb-target.dtd: Add flags and struct to features.
9121         Make field type optional.  Add field start and end.
9122
9123 2010-03-01  H.J. Lu  <hongjiu.lu@intel.com>
9124
9125         * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
9126         (amd64_linux_read_description): Likewise.
9127         (_initialize_amd64_linux_nat): Set to_read_description to
9128         amd64_linux_read_description.
9129
9130         * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
9131         (amd64_linux_register_name): Removed.
9132         (amd64_linux_register_type): Likewise.
9133         (amd64_linux_core_read_description): New.
9134         (amd64_linux_init_abi): Set target description to
9135         tdesc_amd64_linux if needed.  Support orig_rax in target
9136         description.  Don't call set_gdbarch_register_name nor
9137         set_gdbarch_register_type.  Call
9138         set_gdbarch_core_read_description.
9139         (_initialize_amd64_linux_tdep): Call
9140         initialize_tdesc_amd64_linux.
9141
9142         * amd64-linux-tdep.h (tdesc_amd64_linux): New.
9143
9144         * amd64-tdep.c:  Include "features/i386/amd64.c".
9145         (amd64_register_names): Removed.
9146         (amd64_register_name): Likewise.
9147         (amd64_register_type): Likewise.
9148         (amd64_init_abi):  Set num_core_regs and register_names.  Set
9149         target description to tdesc_amd64 if needed.  Don't call
9150         set_gdbarch_register_name nor set_gdbarch_register_type.
9151         (_initialize_amd64_tdep): New.
9152
9153         * i386-linux-nat.c (i386_linux_read_description): New.
9154         (_initialize_i386_linux_nat): Set to_read_description to
9155         i386_linux_read_description.
9156
9157         * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
9158         (i386_linux_register_name): Removed.
9159         (i386_linux_core_read_description): New.
9160         (i386_linux_read_description): Likewise.
9161         (i386_linux_init_abi): Don't call set_gdbarch_register_name.
9162         Set target description to tdesc_i386_linux if needed.  Support
9163         orig_eax.  Set register_reggroup_p.  Call
9164         set_gdbarch_core_read_description.
9165         (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
9166
9167         * i386-linux-tdep.h (tdesc_i386_linux): New.
9168
9169         * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
9170         with I387_NUM_REGS.
9171
9172         * i386-tdep.c: Include "features/i386/i386.c".
9173         (i386_register_names): Make it const.
9174         (i386_mmx_names): Likewise.
9175         (i386_num_register_names): Removed.
9176         (i386_register_name): Likewise.
9177         (i386_eflags_type): Likewise.
9178         (i386_mxcsr_type): Likewise.
9179         (i386_sse_type): Likewise.
9180         (i386_register_type): Likewise.
9181         (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
9182         (i386_pseudo_register_name): New.
9183         (i386_pseudo_register_type): Likewise.
9184         (i386_mmx_type): Make it static.
9185         (i386_gdbarch_init): Check arch.  Replace I386_NUM_FREGS with
9186         I387_NUM_REGS.  Set num_core_regs and register_names.  Don't
9187         call set_gdbarch_register_name nor set_gdbarch_register_type.
9188         Set register_reggroup_p.  Set target description to tdesc_i386
9189         if needed.  Call set_tdesc_pseudo_register_type,
9190         set_tdesc_pseudo_register_name and tdesc_use_registers.
9191         (_initialize_i386_tdep): Call initialize_tdesc_i386.
9192         initialize_tdesc_x86_64.
9193
9194         * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
9195         i386_mxcsr_type and i386_sse_type.  Add num_core_regs,
9196         register_names, tdesc and register_reggroup_p.
9197         (I386_NUM_FREGS): Removed.
9198         (i386_eflags_type): Likewise.
9199         (i386_mxcsr_type): Likewise.
9200         (i386_mmx_type): Likewise.
9201         (i386_sse_type): Likewise.
9202         (i386_register_name): Likewise.
9203         (i386_regnum): Add I386_MXCSR_REGNUM.
9204         (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
9205
9206         * i387-tdep.h (I387_NUM_REGS): New.
9207
9208         * regformats/i386/i386-linux.dat: Generated.
9209         * regformats/i386/i386.dat: Likewise.
9210         * regformats/i386/amd64-linux.dat: Likewise.
9211         * regformats/i386/amd64.dat: Likewise.
9212
9213         * regformats/reg-i386-linux.dat: Removed.
9214         * regformats/reg-i386.dat: Likewise.
9215         * regformats/reg-x86-64-linux.dat: Likewise.
9216         * regformats/reg-x86-64.dat: Likewise.
9217
9218 2010-03-01  Corinna Vinschen  <vinschen@redhat.com>
9219
9220         * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
9221         cygwin_conv_path API rather than the deprecated
9222         cygwin_conv_to_full_posix_path.
9223         * windows-nat.c:
9224         (GetModuleFileNameExA): Undefine for Cygwin.
9225         (GetModuleFileNameExW): Define for Cygwin.
9226         (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
9227         Call GetModuleFileNameExW and convert path to POSIX using
9228         cygwin_conv_path.
9229         (windows_make_so): Always define p.  Drop unused variable m.
9230         Don't use Win32 functions to check file existance, rather use
9231         access on Cygwin.  Fetch system directory using GetSystemDirectoryW.
9232         Use canonicalize_file_name to get full path.
9233         (get_image_name): Use wcstombs, rather than WideCharToMultiByte
9234         to convert Unicode pathname to multibyte on Cygwin.  Otherwise,
9235         use correct target buffer size in call to WideCharToMultiByte.
9236         (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
9237         (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
9238         (windows_create_inferior): Convert all paths and arguments to wchar_t
9239         and use CreateProcessW on Cygwin.
9240         (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
9241         (bad_GetModuleFileNameExA): Undefine for Cygwin.
9242         (bad_GetModuleFileNameExW): Define for Cygwin.
9243         (_initialize_loadable): Load GetModuleFileNameExW into
9244         dyn_GetModuleFileNameExW on Cygwin.  Don't load ANSI function on Cygwin.
9245
9246 2010-02-28  Phil Muldoon  <pmuldoon@redhat.com>
9247
9248         PR python/11036
9249         * python/py-frame.c (frapy_read_var): Add block argument and logic
9250         to cope with user provided blocks.
9251
9252 2010-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
9253
9254         * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
9255         New comment.
9256
9257 2010-02-28  Corinna Vinschen  <vinschen@redhat.com>
9258
9259         * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
9260         (COMMON_OBS): ... to here since it's used unconditionally.
9261         (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
9262         (SFILES): To here.
9263
9264 2010-02-26  David Daney  <ddaney@caviumnetworks.com>
9265
9266         * mips-linux-tdep.c: Update struct sigframe comments.
9267         (SIGFRAME_CODE_OFFSET): Delete macro.
9268         (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
9269         this_frame's sp.
9270         (mips_linux_n32n64_sigframe_init): Same.
9271
9272 2010-02-26  Kevin Buettner  <kevinb@redhat.com>
9273
9274         * remote-mips.c (mips_load): Don't use pseudo-register when
9275         invalidating regcache.
9276
9277 2010-02-26  Daniel Jacobowitz  <dan@codesourcery.com>
9278
9279         * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
9280
9281 2010-02-26  Pedro Alves  <pedro@codesourcery.com>
9282
9283         * NEWS: Add "New targets" section, and mention ARM Symbian
9284         support.
9285
9286 2010-02-26  Ulrich Weigand  <uweigand@de.ibm.com>
9287
9288         * dwarf2loc.c (struct piece_closure): Remove ARCH member,
9289         add ADDR_SIZE member.
9290         (allocate_piece_closure): Update.
9291         (copy_pieced_value_closure): Likewise.
9292         (dwarf2_evaluate_loc_desc): Likewise.
9293         (read_pieced_value): Use DWARF address size instead of
9294         GDB's gdbarch_addr_bit as size of values on the DWARF stack.
9295
9296 2010-02-26  Phil Muldoon  <pmuldoon@redhat.com>
9297             Tom Tromey  <tromey@redhat.com>
9298
9299         * python/py-type.c (typy_lookup_typename): Add in block argument.
9300         If provided restrict lookup to specified blocks.
9301         (gdbpy_lookup_type): Likewise.
9302         (typy_lookup_type): Likewise.
9303
9304 2010-02-25  Daniel Jacobowitz  <dan@codesourcery.com>
9305
9306         Symbian config
9307
9308         gdb/
9309         * arm-symbian-tdep.c: New.
9310         * configure.tgt (arm*-*-symbianelf*): New target.
9311         (*-*-symbianelf*): New OS.
9312         * osabi.c (gdb_osabi_names): Add Symbian.
9313         * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
9314         * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
9315         (ALLDEPFILES): Add arm-symbian-tdep.c.
9316
9317 2010-02-25  Daniel Jacobowitz  <dan@codesourcery.com>
9318
9319         * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
9320
9321 2010-02-24  Pedro Alves  <pedro@codesourcery.com>
9322
9323         * mi/mi-main.c (mi_cmd_execute): Fix typo.
9324
9325 2010-02-24  Phil Muldoon  <pmuldoon@redhat.com>
9326             Tom Tromey  <tromey@redhat.com>
9327             Thiago Jung Bauermann  <bauerman@br.ibm.com>
9328
9329         * python/python.c (_initialize_python): Call
9330         gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
9331         gdbpy_initialize_blocks.
9332         * python/python-internal.h: Declare struct symbol, block and
9333         symtab_and_line.  Declare block_object_type and
9334         symbol_object_type
9335         (gdbpy_lookup_symbol gdbpy_block_for_pc)
9336         (symtab_and_line_to_sal_object, symtab_to_symtab_object)
9337         (symbol_to_symbol_object,  block_to_block_object)
9338         (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
9339         (gdbpy_initialize_blocks ): Declare.
9340         * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
9341         (frapy_select): Add methods.
9342         (frapy_read_var): Add symbol branch.
9343         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
9344         py-block.
9345         (SUBDIR_PYTHON_SRCS): Likewise.
9346         (py-symbol.o): New rule.
9347         (py-symtab.o): Likewise.
9348         (py-block.o): Likewise.
9349         * python/py-symbol.c: New file.
9350         * python/py-symtab.c: Likewise.
9351         * python/py-block.c: Likewise.
9352
9353 2010-02-24  Pedro Alves  <pedro@codesourcery.com>
9354
9355         PR gdb/11321
9356
9357         * inferior.h (prepare_for_detach): Declare.
9358         (struct inferior) <detaching>: New field.
9359         * infrun.c (prepare_for_detach): New.
9360         (handle_inferior_event) <random signal>: Don't stop if detaching.
9361         * target.c (target_detach): Call prepare_for_detach.
9362
9363 2010-02-24  Pedro Alves  <pedro@codesourcery.com>
9364
9365         Per-process displaced stepping queue.
9366
9367         * infrun.c (displaced_step_ptid, displaced_step_request_queue)
9368         (displaced_step_gdbarch, displaced_step_closure,
9369         (displaced_step_original, displaced_step_copy): Move globals to
9370         this...
9371         (struct displaced_step_inferior_state): ... new structure.
9372         (displaced_step_inferior_states): New global.
9373         (get_displaced_stepping_state, add_displaced_stepping_state)
9374         (remove_displaced_stepping_state, infrun_inferior_exit): New
9375         functions.
9376         (displaced_step_clear): Add displaced_step_inferior_state
9377         parameter, and adjust to handle it.
9378         (displaced_step_clear_cleanup): Parameter is now a
9379         displaced_step_inferior_state.  Adjust.
9380         (displaced_step_prepare): Adjust.
9381         (displaced_step_fixup, displaced_step_fixup)
9382         (infrun_thread_ptid_changed, resume): Adjust.
9383         (init_wait_for_inferior): Don't call displaced_step_clear.
9384         (infrun_thread_stop_requested): Rewrite.
9385         (_initialize_infrun): Install infrun_inferior_exit as
9386         inferior_exit observer.
9387
9388 2010-02-24  Pedro Alves  <pedro@codesourcery.com>
9389
9390         * inferior.h (ptid_match): Declare.
9391         * infrun.c (ptid_match): New.
9392         * remote.c (queued_stop_reply): Rewrite and use ptid_match.
9393         (handle_notification): Add debug output.
9394         * linux-nat.c (ptid_match): Delete.
9395
9396 2010-02-24  David S. Miller  <davem@davemloft.net>
9397
9398         * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
9399         * syscalls/sparc-linux.xml: New.
9400         * syscalls/sparc64-linux.xml: New.
9401         * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
9402         * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
9403         (sparc32_linux_get_syscall_number): New function.
9404         (sparc32_linux_init_abi): Set syscall XML file name and hook up
9405         syscall number fetcher.
9406         * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
9407         (sparc64_linux_get_syscall_number): New function.
9408         (sparc64_linux_init_abi): Set syscall XML file name and hook up
9409         syscall number fetcher.
9410
9411 2010-02-24  Vladimir Prus  <vladimir@codesourcery.com>
9412
9413         Multiexec MI
9414
9415         * breakpoint.c (clear_syscall_counts): Take struct inferior*.
9416         * inferior.c (add_inferior_silent): Notify inferior_added
9417         observer.
9418         (delete_inferior_1): Notify inferior_removed observer.
9419         (exit_inferior_1): Pass inferior, not pid, to observer.
9420         (inferior_appeared): Likewise.
9421         (add_inferior_with_spaces): New.
9422         (add_inferior_command): Use the above.
9423         * inferior.h (delete_inferior_1, add_inferior_with_spaces):
9424         Declare.
9425
9426         * inflow.c (inflow_inferior_exit): Likewise.
9427         * jit.c (jit_inferior_exit_hook): Likewise.
9428
9429         * mi/mi-cmds.c (mi_cmds): Register add-inferior and
9430         remove-inferior.
9431         * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9432         * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
9433         (report_initial_inferior): New.
9434         (mi_inferior_removed): Register the above. Make sure
9435         inferior_added observer is called on the first inferior.
9436         (mi_new_thread, mi_thread_exit): Thread group is now identified by
9437         inferior number, not pid.
9438         (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
9439         affected.
9440         * mi/mi-main.c (current_context): New.
9441         (proceed_thread_callback): Use typed closure.
9442         Proceed everything if pid is 0. Most implementation split into
9443         (proceed_thread): ... this.
9444         (run_one_inferior): New.
9445         (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
9446         Adjust for multiexec behaviour.
9447         (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9448         (mi_cmd_execute): Handle the 'thread-group' option here.
9449         Do some extra checks.
9450         * mi-parse.c (mi_parse): Handle the --all and --thread-group
9451         options.
9452         * mi-parse.h (struct mi_parse): New fields all and thread_group.
9453
9454 2010-02-24  Vladimir Prus  <vladimir@codesourcery.com>
9455
9456         Make -exec-run a proper MI commands.
9457
9458         * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
9459         * mi/mi-cmds.c (mi_cmds): Adjust.
9460         * mi/mi-main.c (mi_cmd_exec_run): New.
9461
9462 2010-02-24  Pedro Alves  <pedro@codesourcery.com>
9463             Stan Shebs  <stan@codesourcery.com>
9464
9465         * tracepoint.h (set_traceframe_number)
9466         (cleanup_restore_current_traceframe): Declare.
9467         * tracepoint.c (set_traceframe_number): New.
9468         (struct current_traceframe_cleanup): New.
9469         (do_restore_current_traceframe_cleanup)
9470         (restore_current_traceframe_cleanup_dtor)
9471         (make_cleanup_restore_current_traceframe): New.
9472         * infrun.c: Include tracepoint.h.
9473         (fetch_inferior_event): Switch out and in of tfind mode.
9474
9475 2010-02-24  Pedro Alves  <pedro@codesourcery.com>
9476
9477         * breakpoint.c (breakpoint_init_inferior): Also delete
9478         bp_shlib_event breakpoints.
9479         * solib-frv.c (enable_break): Remove call to
9480         remove_solib_event_breakpoints.
9481         * solib-svr4.c (enable_break): Ditto.
9482         * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
9483         * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
9484         * solib-som.c (som_solib_create_inferior_hook): Ditto.
9485         * solib-spu.c (spu_enable_break): Ditto.
9486
9487 2010-02-23  Harald Koenig  <H.Koenig@science-computing.de>
9488
9489         * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
9490
9491 2010-02-23  Harald Koenig  <H.Koenig@science-computing.de>
9492
9493         * varobj.c (varobj_update): Avoid non-constants in initializers.
9494
9495 2010-02-23  Tom Tromey  <tromey@redhat.com>
9496
9497         * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
9498         handle big-endian values.
9499         (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
9500
9501 2010-02-22  Pedro Alves  <pedro@codesourcery.com>
9502
9503         PR9605
9504
9505         gdb/
9506         * breakpoint.c (insert_bp_location): If inserting the read
9507         watchpoint failed, fallback to an access watchpoint.
9508         (bpstat_check_watchpoint): Stop for read watchpoint triggers even
9509         if the value changed, if not watching the same memory for writes.
9510         (watchpoint_locations_match): Add comment.
9511         (update_global_location_list): Copy the location's watchpoint type.
9512         * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
9513         handle read watchpoints here.
9514         (i386_insert_watchpoint): Read watchpoints aren't supported.
9515         * remote.c (remote_insert_watchpoint): Return 1 for unsupported
9516         packets.
9517         * target.h (target_insert_watchpoint): Update description.
9518
9519 2010-02-19  Tom Tromey  <tromey@redhat.com>
9520
9521         * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
9522         * m2-typeprint.c (m2_print_type): Update.
9523         * gdbtypes.c (recursive_dump_type): Update.
9524         (copy_type_recursive): Update.
9525         * c-typeprint.c (c_type_print_varspec_prefix): Update.
9526         (c_type_print_base): Update.
9527         * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
9528         Remove.
9529         (struct cplus_struct_type) <ntemplate_args>: Remove.
9530         <struct template_arg>: Remove.
9531         <is_dynamic>: Move earlier.
9532         (TYPE_TEMPLATE_ARGS): Remove.
9533         (TYPE_NTEMPLATE_ARGS): Remove.
9534         (TYPE_TEMPLATE_ARG): Remove.
9535
9536 2010-02-19  Tom Tromey  <tromey@redhat.com>
9537
9538         PR c++/8693, PR c++/9496:
9539         * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
9540         * c-exp.y (lex_one_token): Rename from yylex.  Don't call
9541         write_dollar_variable.  Don't try to classify NAME tokens.
9542         (token_and_value): New type.
9543         (token_fifo, popping, name_obstack): New globals.
9544         (classify_name): New function.
9545         (classify_inner_name): Likewise.
9546         (yylex): Likewise.
9547         (VARIABLE): Now has type sval.
9548         (exp : VARIABLE): Call write_dollar_variable.
9549         (qualified_name): Use TYPENAME, not typebase.  Add production for
9550         multiple "::" instances.
9551         (variable): Use name_not_typename.
9552         (qualified_type): Remove.
9553         (typebase): Update.
9554
9555 2010-02-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9556
9557         * symfile.c (addr_info_make_relative): Extend comment.  Move SECT to
9558         a more inner block.  Initialize ADDR by LOWER_OFFSET only if it was
9559         found by bfd_get_section_by_name.
9560         * symfile.h (struct section_addr_info) <sectindex>: New comment.
9561
9562 2010-02-19  Joel Brobecker  <brobecker@adacore.com>
9563
9564         * NEWS: Add new "[...] since 7.1" section.  Rename the "[...] since
9565         7.0 section" into "Changes in 7.1".
9566
9567 2010-02-19  Joel Brobecker  <brobecker@adacore.com>
9568
9569         GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
9570         * version.in: Bump version to 7.1.50.20100219-cvs.
9571
9572 2010-02-18  Harald Koenig  <H.Koenig@science-computing.de>
9573
9574         * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
9575         * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
9576
9577 2010-02-17  Tom Tromey  <tromey@redhat.com>
9578
9579         * NEWS: Add Python API Improvements section.
9580
9581 2010-02-18  Daniel Jacobowitz  <dan@codesourcery.com>
9582
9583         * NEWS: Correct typo.
9584
9585 2010-02-17  Tom Tromey  <tromey@redhat.com>
9586
9587         * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
9588
9589 2010-02-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
9590
9591         * symfile.c (build_section_addr_info_from_objfile): Include sections
9592         only if they are SEC_ALLOC or SEC_LOAD.
9593
9594 2010-02-17  H.J. Lu  <hongjiu.lu@intel.com>
9595
9596         PR shlibs/11293
9597         * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
9598         of ULONGEST for address size.
9599
9600 2010-02-17  Tom Tromey  <tromey@redhat.com>
9601
9602         * NEWS: Add C++ improvements section.
9603
9604 2010-02-17  Ulrich Weigand  <uweigand@de.ibm.com>
9605
9606         * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
9607         PyThreadState_Swap): Avoid "statement with no effect" warning.
9608
9609 2010-02-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
9610
9611         * solib-svr4.c (enable_break <target_auxv_search>): New variable
9612         addr_bit.  Adjust LOAD_ADDR sign for cross-arch inferiors.
9613
9614 2010-02-17  Tristan Gingold  <gingold@adacore.com>
9615             Petr Hluzin  <petr.hluzin@gmail.com>
9616
9617         * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
9618         gdb_assert.  Fix info->size for SIG prologue.
9619
9620 2010-02-16  Daniel Jacobowitz  <dan@codesourcery.com>
9621
9622         * infcmd.c (show_inferior_tty_command): Check for NULL.
9623         Correct output message.
9624
9625 2010-02-16  Daniel Jacobowitz  <dan@codesourcery.com>
9626
9627         * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
9628         FUNCTION contains parentheses.  Improve removal of a trailing
9629         single quote.
9630
9631 2010-02-16  Daniel Jacobowitz  <dan@codesourcery.com>
9632
9633         * gcore.c (do_bfd_delete_cleanup): New function.
9634         (gcore_command): Use it.  Discard the cleanup after success.
9635         (gcore_copy_callback): Delete dead code.
9636
9637 2010-02-16  Daniel Jacobowitz  <dan@codesourcery.com>
9638
9639         * symfile.c (addr_info_make_relative): Always use
9640         find_lowest_section.
9641
9642 2010-02-16  Sami Wagiaalla <swagiaal@redhat.com>
9643
9644         * NEWS: Added entry for namespace fixes.
9645
9646 2010-02-15  Tom Tromey  <tromey@redhat.com>
9647
9648         * dwarf2read.c (guess_structure_name): Allocate name on the
9649         objfile obstack.
9650
9651 2010-02-15  Tom Tromey  <tromey@redhat.com>
9652
9653         * c-typeprint.c (c_type_print_base): Reverse order of test.
9654
9655 2010-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
9656
9657         * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize.  Optionally
9658         initialize it from ELF BFD.  Extend the prelink condition by it.
9659
9660 2010-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
9661
9662         * defs.h (parse_pid_to_attach): New.
9663         * utils.c (parse_pid_to_attach): New.
9664         * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
9665         * gnu-nat.c (gnu_attach): Likewise.
9666         * nto-procfs.c (procfs_attach): Likewise.
9667         * procfs.c (procfs_attach): Likewise.
9668         * windows-nat.c (windows_attach): Likewise.
9669         * inf-ptrace.c (inf_ptrace_attach): Likewise.  Remove variable dummy.
9670         * inf-ttrace.c (inf_ttrace_attach): Likewise.
9671         * remote.c (extended_remote_attach_1): Likewise.  New comment on getpid
9672         check.
9673
9674 2010-02-14  Masaki Muranaka  <monaka@monami-software.com>
9675
9676         * MAINTAINERS: Add myself for write after approval privileges.
9677
9678 2010-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9679
9680         * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
9681         block.
9682
9683 2010-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9684
9685         * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
9686         only if INFO_VERBOSE.
9687
9688 2010-02-12  Tomas Holmberg <th@virtutech.com>
9689
9690         * mi/mi-main.c: Added the --reverse flag to the following MI
9691         commands: exec-continue, exec-finish, exec-next, exec-step,
9692         exec-next-instruction, exec-step-instruction. This is to
9693         support reverse execution over the MI interface to gdb.
9694
9695 2010-02-12  Pedro Alves  <pedro@codesourcery.com>
9696
9697         * tracepoint.c (_initialize_tracepoint): Specify that the address
9698         range of `tfind outsize' is exclusive, and that the address range
9699         of `tfind range' is inclusive, in the commands' help strings.
9700
9701 2010-02-12  Joel Brobecker  <brobecker@adacore.com>
9702
9703         Spurious "dll not found" error messages on x64-windows.
9704         * windows-nat.c: Add include of complaints.h.
9705         (handle_unload_dll): Change dll-not-found error into a complaint.
9706
9707 2010-02-12  Pedro Alves  <pedro@codesourcery.com>
9708
9709         * breakpoint.c (allocate_bp_location): Use bp_loc_other for
9710         bp_tracepoint and bp_fast_tracepoint, not
9711         bp_loc_software_breakpoint.
9712         (update_global_location_list): Tracepoints are never duplicates of
9713         anything.
9714
9715 2010-02-12  Pedro Alves  <pedro@codesourcery.com>
9716
9717         * breakpoint.c (break_command_really): Change return type to int.
9718         Return false if no breakpoint was created, true otherwise.
9719         (trace_command): Don't set the tracepoint count if no tracepoint
9720         was created.
9721         (ftrace_command): Ditto.
9722         (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
9723         created in the breakpoints table.
9724
9725 2010-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
9726             Ulrich Weigand  <uweigand@de.ibm.com>
9727
9728         * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
9729
9730 2010-02-11  Pedro Alves  <pedro@codesourcery.com>
9731
9732         * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
9733         the offset value isn't of integral type.
9734
9735 2010-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
9736
9737         * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
9738         New.
9739
9740 2010-02-11  Pedro Alves  <pedro@codesourcery.com>
9741
9742         * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
9743         non-subscriptable types.
9744         * valarith.c (binop_types_user_defined_p): New, abstracted out
9745         from ...
9746         (binop_user_defined_p): ... this.
9747         * value.h (binop_types_user_defined_p): Declare.
9748
9749 2010-02-11  Pedro Alves  <pedro@codesourcery.com>
9750
9751         * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
9752         Merge uploaded TSVs before merging uploaded tracepoints.
9753
9754 2010-02-11  Pedro Alves  <pedro@codesourcery.com>
9755
9756         * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
9757
9758 2010-02-11  Vladimir Prus  <vladimir@codesourcery.com>
9759
9760         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
9761         whitespace character after a dot in comment.
9762         (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
9763         Likewise.
9764         (list_args_or_locals): For the 'all' (that is
9765         -stack-list-variables) case, always output list of tuples.
9766         Output 'arg' field if variable is argument.
9767
9768 2010-02-10  Tom Tromey  <tromey@redhat.com>
9769
9770         * parser-defs.h (parser_debug): Declare.
9771         * parse.c (_initialize_parse): Install "debug parser" set/show
9772         command.
9773         (parser_debug): New global.
9774         (show_parserdebug): New function.
9775         * c-exp.y (c_parse): Set yydebug.
9776
9777 2010-02-10  H.J. Lu  <hongjiu.lu@intel.com>
9778
9779         * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
9780         TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9781         (tdesc_predefined_types): Add i387_ext, i386_eflags and
9782         i386_mxcsr.
9783         (tdesc_find_type): New.
9784         (tdesc_gdb_type): Use tdesc_find_type.  Handle TDESC_TYPE_I387_EXT,
9785         TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9786
9787         * target-descriptions.h (tdesc_find_type): New.
9788
9789 2010-02-10  Michael Snyder  <msnyder@vmware.com>
9790
9791         * gdb-gdb.py: Comment fix.
9792
9793 2010-02-09  Tristan Gingold  <gingold@adacore.com>
9794
9795         * machoread.c (macho_symfile_relocate): New function.
9796         (macho_sym_fns): Use macho_symfile_relocate instead of
9797         default_symfile_relocate.
9798         (macho_oso_data): New type.
9799         (current_oso): New variable.
9800         (macho_add_oso_symfile): Do not compute section_addr_info, but
9801         instead set vma of sections.
9802         Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
9803         Set and clear current_oso.
9804
9805 2010-02-09  Joel Brobecker  <brobecker@adacore.com>
9806
9807         Wrong type description for tagged type parameter.
9808         * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
9809         EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
9810         reference to a tagged type.
9811
9812 2010-02-09  Tristan Gingold  <gingold@adacore.com>
9813
9814         * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
9815         brothers of the parent.
9816
9817 2010-02-08  Tom Tromey  <tromey@redhat.com>
9818
9819         PR c++/8017:
9820         * value.h: Update.
9821         * valops.c (search_struct_field): Make 'name' const.
9822         (search_struct_method): Likewise.
9823         (find_method_list): Make 'method' const.
9824         (value_struct_elt): Make 'name' and 'err' const.
9825         (value_find_oload_method_list): Make 'method' const.
9826         (find_overload_match): Make 'name' const.
9827         * eval.c (evaluate_subexp_standard): New locals function,
9828         function_name.
9829         <OP_FUNCALL>: Handle OP_SCOPE specially.
9830
9831 2010-02-08  Ulrich Weigand  <uweigand@de.ibm.com>
9832
9833         * infrun.c (handle_inferior_event): Do not look up regcache
9834         for exited processes.
9835
9836 2010-02-08  Chris Moller  <moller@mollerware.com>
9837
9838         PR gdb/10728
9839         * valarith.c (value_ptrdiff): Added a test for a zero type length,
9840         warn if found, and assume length = 1.
9841
9842 2010-02-08  Chris Moller  <cmoller@redhat.com>
9843
9844         PR gdb/9067
9845         * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
9846         (cp_print_static_field)  Fix use of obstacks.
9847
9848 2010-02-08  Pedro Alves  <pedro@codesourcery.com>
9849
9850         * linux-nat.c (linux_nat_resume): In non-stop, also only tag
9851         resumed LWPs as resumed.
9852         (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
9853         we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
9854         of throwing an internal error.  If an LWP of a process we're not
9855         waiting for reports a signal, don't force collecting a SIGSTOP,
9856         and if it was breakpoint hit in non-stop mode, cancel it.  Don't
9857         go through all LWPs cancelling breakpoints in non-stop mode.
9858         (resume_stopped_resumed_lwps): New.
9859         (linux_nat_wait): Use it.
9860
9861 2010-02-07  H.J. Lu  <hongjiu.lu@intel.com>
9862
9863         * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
9864         i386/amd64 and i386/amd64-linux.
9865         (i386/i386-expedite): New.
9866         (i386/i386-linux-expedite): Likewise.
9867         (i386/amd64-expedite):Likewise.
9868         (i386/amd64-linux-expedite): Likewise.
9869         ($(outdir)/i386/i386-linux.dat): Likewise.
9870         ($(outdir)/i386/amd64.dat): Likewise.
9871         ($(outdir)/i386/amd64-linux.dat): Likewise.
9872
9873         * features/i386/32bit-core.xml: New.
9874         * features/i386/32bit-linux.xml: Likewise.
9875         * features/i386/32bit-sse.xml: Likewise.
9876         * features/i386/64bit-core.xml: Likewise.
9877         * features/i386/64bit-linux.xml: Likewise.
9878         * features/i386/64bit-sse.xml: Likewise.
9879         * features/i386/i386-linux.xml: Likewise.
9880         * features/i386/i386.xml: Likewise.
9881         * features/i386/amd64-linux.xml: Likewise.
9882         * features/i386/amd64.xml: Likewise.
9883         * features/i386/i386-linux.c: Likewise.
9884         * features/i386/i386.c: Likewise.
9885         * features/i386/amd64-linux.c: Likewise.
9886         * features/i386/amd64.c: Likewise.
9887
9888 2010-02-05  Sami Wagiaalla  <swagiaal@redhat.com>
9889
9890         PR c++/7935:
9891         * cp-support.h: Added char* alias element to using_direct data
9892         struct.
9893         (cp_add_using): Added char* alias argument.
9894         (cp_add_using_directive): Ditto.
9895         * cp-namespace.c: Updated with the above changes.
9896         (cp_lookup_symbol_imports): Check for aliases.
9897         * dwarf2read.c (read_import_statement): Figure out local alias
9898         for the import and pass it on to cp_add_using.
9899         (read_namespace): Pass alias argument to cp_add_using.
9900
9901 2010-02-05  Hui Zhu  <teawater@gmail.com>
9902
9903         * defs.h (gdb_bfd_errmsg): New extern.
9904         * exec.c (exec_file_attach): Change bfd_errmsg to
9905         gdb_bfd_errmsg.
9906         * utils.c (AMBIGUOUS_MESS1): New macro.
9907         (AMBIGUOUS_MESS2): New macro.
9908         (gdb_bfd_errmsg): New function.
9909
9910 2010-02-04  Doug Evans  <dje@google.com>
9911
9912         * solib-svr4.c (enable_break): Add comment.
9913
9914 2010-02-04  Anthony Green  <green@moxielogic.com>
9915
9916         * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
9917         gracefully.
9918
9919 2010-02-04  Tom Tromey  <tromey@redhat.com>
9920
9921         * valops.c (search_struct_field): Account for
9922         value_embedded_offset.  Fix check for virtual base past the end of
9923         the object.  Use value_copy when making a slice of the value.
9924
9925 2010-02-04  H.J. Lu  <hongjiu.lu@intel.com>
9926
9927         PR tui/9622
9928         * tui/tui-interp.c (tui_init): Call tui_initialize_readline
9929         only if gdb_stdout is a tty.
9930
9931 2010-02-04  H.J. Lu  <hongjiu.lu@intel.com>
9932
9933         * target-descriptions.c: Include "osabi.h".
9934         (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
9935         OSABI.
9936
9937 2010-02-04  Tristan Gingold  <gingold@adacore.com>
9938
9939         * machoread.c (macho_add_oso): Renamed to macho_register_oso.
9940         (macho_symtab_read): Adjust calls to macho_add_oso.
9941         (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
9942         (macho_symfile_read): Adjust call to macho_oso_symfile.
9943         (macho_new_init): Move this function after declarations.
9944         (macho_symfile_init): Ditto.
9945         * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
9946         * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
9947
9948 2010-02-04  Vladimir Prus  <vladimir@codesourcery.com>
9949
9950         Include MI command in remotelog.
9951
9952         * mi/mi-main.c (mi_execute_command): Call target_log_command.
9953
9954 2010-02-03  H.J. Lu  <hongjiu.lu@intel.com>
9955
9956         * remote.c (remote_state): Remove gdbarch.
9957         (init_remote_state): Don't set gdbarch.
9958         (remote_query_supported): Pass target_gdbarch instead of
9959         rs->gdbarch to gdbarch_qsupported.
9960
9961 2010-02-03  H.J. Lu  <hongjiu.lu@intel.com>
9962
9963         * gdbarch.sh: Add qsupported.
9964
9965         * gdbarch.c: Regenerated.
9966         * gdbarch.h: Likewise.
9967
9968         * remote.c (remote_state): Add gdbarch.
9969         (init_remote_state): Set gdbarch.
9970         (remote_query_supported): Support gdbarch_qsupported.
9971
9972 2010-02-03  Daniel Jacobowitz  <dan@codesourcery.com>
9973
9974         * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
9975         __FreeBSD_kernel_version.
9976
9977 2010-02-03  Tristan Gingold  <gingold@adacore.com>
9978
9979         * symfile.h (struct sym_fns): Add sym_relocate field.
9980         (default_symfile_relocate): New prototype.
9981         (symfile_relocate_debug_section): First argument is now an objfile.
9982         * symfile.c (default_symfile_relocate): Rename from
9983         symfile_relocate_debug_section, first argument is now an objfile.
9984         (symfile_relocate_debug_section): New function.
9985         * coffread.c (coff_sym_fns): Set sym_relocate field.
9986         * somread.c (som_sym_fns): Ditto.
9987         * mipsread.c (ecoff_sym_fns): Ditto.
9988         * machoread.c (macho_sym_fns): Ditto.
9989         * elfread.c (elf_sym_fns): Ditto.
9990         * dwarf2read.c (dwarf2_read_section): Ditto.
9991         * xcoffread.c (xcoff_sym_fns): Ditto.
9992         * dbxread.c (aout_sym_fns): Ditto.
9993         (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
9994         (elfstab_build_psymtabs): Ditto.
9995
9996 2010-02-03  H.J. Lu  <hongjiu.lu@intel.com>
9997
9998         * defs.h (MAX_REGISTER_SIZE): Increase to 32.
9999
10000 2010-02-02  Tom Tromey  <tromey@redhat.com>
10001
10002         * valops.c (value_cast_structs): Try downcasting using the RTTI
10003         type.
10004
10005 2010-02-02  Tom Tromey  <tromey@redhat.com>
10006
10007         * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
10008         (gnuv2_baseclass_offset): Now static.
10009         * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
10010         * gnu-v2-abi.h: Remove.
10011
10012 2010-02-02  Tom Tromey  <tromey@redhat.com>
10013
10014         * m2-typeprint.c (m2_record_fields): Don't use
10015         TYPE_DECLARED_TYPE.
10016         * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
10017         (struct main_type) <flag_declared_class>: New field.
10018         (struct cplus_struct_type) <declared_type>: Remove.
10019         <ntemplate_args>: Move earlier.
10020         (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
10021         (DECLARED_TYPE_TEMPLATE): Remove.
10022         (TYPE_DECLARED_TYPE): Remove.
10023         * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
10024         * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
10025         * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
10026         TYPE_DECLARED_TYPE.
10027
10028 2010-02-02  Tom Tromey  <tromey@redhat.com>
10029
10030         PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
10031         * valops.c (search_struct_field): Compute nbases after calling
10032         CHECK_TYPEDEF.
10033         (check_field): Call CHECK_TYPEDEF.
10034         * cp-valprint.c (cp_print_value): Pass correct address to
10035         baseclass_offset.  Fix check for virtual base past the end of the
10036         object.  Don't offset address passed to cp_print_value_fields or
10037         apply_val_pretty_printer.
10038         (cp_print_value_fields): Fix call to val_print.
10039         (cp_print_value_fields_rtti): New function.
10040         * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
10041         * p-valprint.c (pascal_object_print_value_fields): Fix call to
10042         val_print.
10043         * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
10044         offset to address.
10045         * language.h (struct language_defn) <la_val_print>: Document.
10046         * c-lang.h (cp_print_value_fields_rtti): Declare.
10047
10048 2010-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10049
10050         PR libc/11214:
10051         * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10052         (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
10053         (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10054
10055 2010-02-01  Michael Matz  <matz@suse.de>
10056             Daniel Jacobowitz  <dan@codesourcery.com>
10057
10058         * i386-tdep.c (i386_frame_cache): Assume valid anonymous
10059         functions use a frame pointer.
10060
10061 2010-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10062
10063         * solib-svr4.c (scan_dyntag): New variable dyn_addr.  Replace gdb_assert
10064         by a conditional setting DYN_ADDR.  Use DYN_ADDR.
10065         * config/djgpp/fnchange.lst: Add translations for
10066         symbol-without-target_section.exp and symbol-without-target_section.c.
10067
10068 2010-02-01  Daniel Jacobowitz  <dan@codesourcery.com>
10069
10070         * gdbarch.sh: Set LANG and LC_ALL to C, not c.
10071         (remote_breakpoint_for_pc): Correct invalid_p check.
10072         * gdbarch.c: Regenerated.
10073
10074 2010-02-01  Daniel Jacobowitz  <dan@codesourcery.com>
10075
10076         * arm-tdep.c (arm_find_mapping_symbol): New function, from
10077         arm_pc_is_thumb.
10078         (arm_pc_is_thumb): Use arm_find_mapping_symbol.
10079         (extend_buffer_earlier): New function.
10080         (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
10081         (arm_adjust_breakpoint_address): New function.
10082         (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
10083
10084 2010-02-01  Daniel Jacobowitz  <dan@codesourcery.com>
10085
10086         * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
10087         (arm_linux_thumb2_le_breakpoint): New constants.
10088         (arm_linux_init_abi): Set thumb2_breakpoint and
10089         thumb2_breakpoint_size.
10090         * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
10091         (thumb_get_next_pc): Add a comment.  Rename IT to ITSTATE.
10092         Implement support for single stepping through IT blocks if
10093         a 32-bit Thumb breakpoint instruction is available.
10094         (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
10095         is available, use it when needed.
10096         (arm_remote_breakpoint_from_pc): New function.
10097         (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
10098         * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
10099         comment.  Add thumb2_breakpoint and thumb2_breakpoint_size.
10100
10101 2010-02-01  Daniel Jacobowitz  <dan@codesourcery.com>
10102
10103         * arch-utils.c (default_remote_breakpoint_from_pc): New function.
10104         * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
10105         * gdbarch.c, gdbarch.h: Regenerated.
10106         * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
10107         * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
10108         gdbarch_remote_breakpoint_from_pc.
10109
10110 2010-01-29  Daniel Jacobowitz  <dan@codesourcery.com>
10111
10112         * infrun.c (prepare_to_proceed): Handle other signals which might
10113         match a breakpoint.
10114         (handle_inferior_event): Move the check for unusual breakpoint
10115         signals earlier.
10116
10117 2010-01-29  Paul Hilfinger  <hilfinger@adacore.com>
10118
10119         amd64 - function returning record with field straddling 2 registers.
10120         * amd64-tdep.c (amd_classify_aggregate): Handle the case of
10121         a record of length <= 16 in which a field straddles the two
10122         eightbytes.
10123
10124 2010-01-29  Joel Brobecker  <brobecker@adacore.com>
10125
10126         Implement return values on amd64-windows.
10127         * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
10128         (amd64_windows_return_value): New function.
10129         (amd64_windows_init_abi): Call set_gdbarch_return_value with
10130         amd64_windows_return_value.
10131
10132 2010-01-29  Joel Brobecker  <brobecker@adacore.com>
10133
10134         amd64-windows: 32 bytes allocated on stack by caller for integer
10135         parameter registers.
10136         * i386-tdep.h (struct gdbarch_tdep): Add new field
10137         integer_param_regs_saved_in_caller_frame.
10138         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10139         tdep->integer_param_regs_saved_in_caller_frame to 1.
10140         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
10141         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
10142
10143 2010-01-29  Joel Brobecker  <brobecker@adacore.com>
10144
10145         amd64-windows: memory args passed by pointer during function calls.
10146         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
10147         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
10148         where tdep->memory_args_by_pointer is non-zero.
10149         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10150         tdep->memory_args_by_pointer to 1.
10151
10152 2010-01-29  Joel Brobecker  <brobecker@adacore.com>
10153
10154         amd64-windows: Integer parameters in function calls.
10155         * i386-tdep.h (enum amd64_reg_class): New, moved here from
10156         amd64-tdep.c.
10157         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
10158         call_dummy_integer_regs, and classify.
10159         * amd64-tdep.h (amd64_classify): Add declaration.
10160         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
10161         (amd64_reg_class): Delete, moved to i386-tdep.h.
10162         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
10163         Replace call to amd64_classify by call to tdep->classify.
10164         (amd64_push_arguments): Get the list of registers to use for
10165         passing integer parameters from the gdbarch tdep structure,
10166         rather than using a hardcoded one.  Replace calls to amd64_classify
10167         by calls to tdep->classify.
10168         (amd64_push_dummy_call): Get the register number used for
10169         the "hidden" argument from tdep->call_dummy_integer_regs.
10170         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
10171         and tdep->call_dummy_integer_regs.  Set tdep->classify.
10172         * amd64-windows-tdep.c: Add include of gdbtypes.h.
10173         (amd64_windows_dummy_call_integer_regs): New static global.
10174         (amd64_windows_classify): New function.
10175         (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
10176         tdep->call_dummy_integer_regs and tdep->classify.
10177
10178 2010-01-28  Daniel Jacobowitz  <dan@codesourcery.com>
10179
10180         * regcache.c (regcache_xmalloc): Add aspace argument.  Use it
10181         for the new regcache.  All callers updated.
10182         (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
10183         (get_thread_arch_regcache): Do not set aspace here.
10184         * regcache.h (regcache_xmalloc): Update declaration.
10185
10186         * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
10187         regcache_xmalloc updated.
10188
10189 2010-01-28  Joel Brobecker  <brobecker@adacore.com>
10190
10191         Another -Wunused-function error in procfs.c (sparc-solaris)
10192         * procfs.c (insert_dbx_link_breakpoint): Delete declaration.  Move up.
10193         Only define if SYS_syssgi is defined.
10194         (remove_dbx_link_breakpoint): Delete declaration.  Move up.
10195         (dbx_link_addr, insert_dbx_link_bpt_in_file)
10196         (insert_dbx_link_bpt_in_region): Move up.  Only define if SYS_syssgi
10197         is itself defined.
10198
10199 2010-01-27  Christopher Faylor  <me+cygwin@cgf.cx>
10200
10201         * windows-nat.c (windows_initialization_done): New variable.
10202         (get_windows_debug_event): Issue error when process dies before
10203         completely initializing.
10204         (do_initial_windows_stuff): Set flag to indicate when we are done with
10205         the initial steps of attaching to the child.
10206
10207 2010-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
10208
10209         * symtab.h (struct symbol <symtab>): New comment on NULL values.
10210
10211 2010-01-27  Doug Evans  <dje@google.com>
10212
10213         * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
10214
10215         * breakpoint.c (bpstat_stop_status): Delete useless code.
10216
10217 2010-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
10218
10219         * printcmd.c (display_uses_solib_p): Remove variable section.  Access
10220         objfile via SYMBOL_SYMTAB.
10221
10222 2010-01-26  Tom Tromey  <tromey@redhat.com>
10223
10224         PR exp/7643:
10225         * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
10226         coerce_array on result.
10227
10228 2010-01-26  Sami Wagiaalla  <swagiaal@redhat.com>
10229
10230         * cp-namespace.c (cp_lookup_symbol_namespace): Added
10231         search_parent argument.
10232         (cp_add_using): Initialize 'searched' field.
10233         (reset_directive_searched): New function.
10234         * cp-support.h: Add 'searched' field to using_direct struct.
10235         (cp_lookup_symbol_imports): Ditto.
10236         * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
10237         Perform recursive search.
10238         Implement non parent search.
10239         * valops.c (value_maybe_namespace_elt): Updated.
10240
10241 2010-01-26  Sami Wagiaalla  <swagiaal@redhat.com>
10242
10243         PR gdb/10929:
10244         * dwarf2read.c (read_lexical_block_scope): Create blocks for
10245         scopes which contain using directives even if they contain no
10246         declarations.
10247         * symtab.c (lookup_symbol_aux): Pass lowest level block to
10248         la_lookup_symbol_nonlocal.
10249         * cp-namespace.c (cp_lookup_symbol_nonlocal): call
10250         cp_lookup_symbol_namespace.
10251         (cp_lookup_symbol_namespace): Perform an import lookup at every
10252         block level.
10253         (cp_lookup_symbol_imports): New function.
10254         (cp_lookup_symbol_in_namespace): New function.
10255
10256 2010-01-25  Tom Tromey  <tromey@redhat.com>
10257
10258         PR gdb/11049:
10259         * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
10260         result.
10261
10262 2010-01-25  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10263
10264         * configure.ac: Only use host_os part when disabling TUI on osf.
10265         Use test to check variables, prefix strings with x.
10266         * configure: Regenerate.
10267
10268         * solib-osf.c (osf_current_sos): Initialize tail.
10269
10270 2010-01-25  gingold  <gingold@adacore.com>
10271
10272         * windows-nat.c (windows_continue): Use %x to print thread id.
10273         (get_windows_debug_event): Ditto.
10274
10275 2010-01-22  Tom Tromey  <tromey@redhat.com>
10276
10277         PR symtab/11199:
10278         * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
10279         type and arguments.  Use smash_to_methodptr_type.
10280         (read_structure_type): Call quirk_gcc_member_function_pointer
10281         later.
10282         * gdbtypes.h (smash_to_methodptr_type): Declare.
10283         * gdbtypes.c (smash_to_methodptr_type): New function.
10284         (lookup_methodptr_type): Use it.
10285
10286 2010-01-21  Tom Tromey  <tromey@redhat.com>
10287
10288         PR symtab/11198:
10289         * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
10290         * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
10291         * glibc-tdep.c (find_minsym_and_objfile): Remove.
10292         (glibc_skip_solib_resolver): Use
10293         lookup_minimal_symbol_and_objfile.
10294
10295 2010-01-21  Kai Tietz  <kai.tietz@onevision.com>
10296
10297         * inflow.c (check_syscall): Guard by #if clause for GO32 and
10298         WIN32 targets.
10299
10300 2010-01-20  Tom Tromey  <tromey@redhat.com>
10301
10302         PR backtrace/10770:
10303         * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
10304         BINOP_GEQ.  Handle BINOP_NOTEQUAL in the signed case.
10305         * dwarf2expr.c (new_dwarf_expr_context): Allocate
10306         dwarf_stack_values, not CORE_ADDRs.
10307         (execute_stack_op): Change DW_OP_div and comparison operators to
10308         use signed operands.
10309
10310 2010-01-20  Vladimir Prus  <vladimir@codesourcery.com>
10311
10312         Per-inferior args and tty and environment.
10313
10314         * infcmd.c (inferior_args): Rename to ...
10315         (inferior_args_scratch): ... this.
10316         (inferior_io_terminal): Rename to ...
10317         (inferior_io_terminal_scratch): ... this.
10318         (inferior_argc, inferior_argv): Remove.
10319         (set_inferior_io_terminal, get_inferior_io_terminal): Store
10320         inside current_inferior().
10321         (set_inferior_tty_command, show_inferior_tty_command): New.
10322         (get_inferior_args, set_inferior_args): Store inside
10323         current_inferior().
10324         (notice_args_set): Likewise and rename to...
10325         (set_args_command): ... this.
10326         (set_inferior_args_vector): Likewise.
10327         (notice_args_read): Rename to...
10328         (show_args_command): ...new.
10329         (tty_command): Remove.
10330         (run_command_1): Don't free old args, as they are freed by
10331         set_inferior_arg now.
10332         (run_no_args_command): Likewise.
10333         (inferior_environ): Remove.
10334         (run_command_1): Use environment of the current inferior.
10335         (environment_info, set_environment_command)
10336         (unset_environment_command, path_info, path_command): Likewise.
10337         (_initialize_infcmd): Adjust for function and variable renames.
10338         Do not init inferior_environ.
10339         * inferior.h (set_inferior_arg): Adjust prototype.
10340         (struct inferior): New fields args, argc, argv, terminal, environment.
10341         (inferior_environ): Remove declaration.
10342         * inferior.c (free_inferior): Free new fields.
10343         (add_inferior_silent): Initialize 'environment' field.
10344         * main.c (captured_main): Set arguments only after the initial
10345         inferior has been created.  Set set_inferior_io_terminal,
10346         not tty_command.
10347         * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
10348         inferior.
10349         (_initialize_mi_cmd_env): Adjust for disappearance of global
10350         inferior_environ.
10351         * solib.c (solib_find): Use environment of the current inferior.
10352
10353 2010-01-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
10354
10355         * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
10356         HAVE_PYTHON.
10357         (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
10358
10359 2010-01-20  Joel Brobecker  <brobecker@adacore.com>
10360
10361         Get rid of ada-lang.c:function_name_from_pc.
10362         * ada-lang.c: Add "stack.h" #include.
10363         (function_name_from_pc): Delete.
10364         (is_known_support_routine): Replace call to function_name_from_pc
10365         by call to find_frame_funname.
10366         (ada_unhandled_exception_name_addr_from_raise): Likewise.
10367
10368 2010-01-19  Tom Tromey  <tromey@redhat.com>
10369
10370         PR c++/11026:
10371         * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
10372         objfile obstack.
10373
10374 2010-01-19  Tom Tromey  <tromey@redhat.com>
10375
10376         * top.c (stop_sig, float_handler, do_nothing): Remove.
10377
10378 2010-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
10379
10380         * breakpoint.c (watchpoint_check): Check the call
10381         gdbarch_in_function_epilogue_p before calling frame_find_by_id.
10382         Extend the comment.
10383         * config/djgpp/fnchange.lst: Add translations for
10384         watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
10385         watchpoint-cond-gone-stripped.c.
10386
10387 2010-01-19  Tom Tromey  <tromey@redhat.com>
10388
10389         PR c++/8000:
10390         * dwarf2read.c (partial_die_parent_scope): Put enumeration type
10391         into parent scope, and enumerator into grandparent scope.
10392
10393 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10394
10395         * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
10396
10397 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10398
10399         * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
10400         i[34567]86-*-solaris2.1[0-9]*.
10401         * configure.tgt: Likewise.
10402
10403 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10404
10405         * NEWS: Document the source command enhancement allowing it
10406         to load Python scripts. Document the "set/show script-extension"
10407         commands.
10408
10409 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10410
10411         Add -Wunused-function to compile flags.
10412         * configure.ac: Add -Wunused-function to build_warnings.
10413         * configure: Regenerate.
10414
10415 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10416
10417         "delete" ada-lex.c:input function, not used.
10418         * ada-lex.l: #define YY_NO_INPUT.
10419
10420 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10421
10422         Delete free_named_symtabs and associated cleanup.
10423         * symfile.h (free_named_symtabs): Delete declaration.
10424         * symfile.c: Remove some commented out code (clear_symtab_users_once).
10425         (cashier_psymtab): Comment function out.
10426         Delete declaration.
10427         (free_named_symtabs): Delete.
10428         * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
10429         * dbxread.c (end_psymtab): Likewise.
10430         * dwarf2read.c (process_psymtab_comp_unit): Ditto.
10431         * exec.c (exec_close_1): Ditto.
10432         * xcoffread.c (xcoff_end_psymtab): Likewise.
10433
10434 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10435
10436         * stack.c (print_block_frame_labels): Comment function out.
10437
10438 2010-01-19  Joel Brobecker  <brobecker@adacore.com>
10439
10440         Delete unused or undefined functions.
10441         * breakpoint.c (ep_parse_optional_filename): Delete.
10442         * dcache.c (dcache_write_line): Remove declaration.
10443         * infrun.c (build_infrun): Remove declaration.
10444         * tracepoint.c (tracepoint_save_command): Remove declaration.
10445         * linux-nat.c (init_lwp_list): Delete. No longer used.
10446         * event-loop.c (check_async_signal_handlers): Delete declaration.
10447         * infrun.c (init_execution_control_state): Delete.
10448         (proceed): Update comment to avoid mentioning
10449         init_execution_control_state.
10450         * target.c (kill_or_be_killed, nosupport_runtime): Delete.
10451         * ada-lang.c (ada_to_static_fixed_value): Delete.
10452         * scm-lang.c (evaluate_subexp_scm): Delete declaration.
10453         * cp-namespace.c (cp_copy_usings): Delete.
10454         * xml-syscall.c (xml_number_of_syscalls): Delete.
10455         * progspace.c (find_program_space_by_num): Delete.
10456         * inflow.c (handle_sigio): Delete declaration.
10457         * hppa-tdep.c (hppa_alignof): Delete.
10458         * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
10459         (mipsnbsd_core_osabi_sniffer): Delete.
10460
10461 2010-01-18  Tom Tromey  <tromey@redhat.com>
10462
10463         PR c++/9680:
10464         * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
10465         (CONST_CAST): New tokens.
10466         (exp): Add new productions.
10467         (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
10468         reinterpret_cast.
10469         (is_cast_operator): New function.
10470         (yylex): Handle cast operators specially.
10471         * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
10472         UNOP_REINTERPRET_CAST>: New cases.
10473         * expprint.c (print_subexp_standard): Likewise.
10474         (op_name_standard): Likewise.
10475         (dump_subexp_body_standard): Likewise.
10476         * parse.c (operator_length_standard): Likewise.
10477         * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
10478         UNOP_REINTERPRET_CAST.
10479         * gdbtypes.c (class_types_same_p): New function.
10480         (is_ancestor): Use it.
10481         (is_public_ancestor): New function.
10482         (is_unique_ancestor_worker): Likewise.
10483         (is_unique_ancestor): Likewise.
10484         * gdbtypes.h (class_types_same_p, is_public_ancestor)
10485         (is_unique_ancestor): Declare.
10486         * valops.c (value_reinterpret_cast): New function.
10487         (dynamic_cast_check_1): Likewise.
10488         (dynamic_cast_check_2): Likewise.
10489         (value_dynamic_cast): Likewise.
10490         * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
10491
10492 2010-01-18  Joel Brobecker  <brobecker@adacore.com>
10493
10494         Fix build failure when building without Python support.
10495         * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
10496         is not defined.
10497
10498 2010-01-18  Joel Brobecker  <brobecker@adacore.com>
10499
10500         Use XVS field type instead of doing a parallel lookup.
10501         * ada-lang.c (ada_get_base_type): Follow the XVS field type
10502         if it is a reference type instead of doing a type lookup using
10503         the XVS field name.
10504
10505 2010-01-18  Joel Brobecker  <brobecker@adacore.com>
10506
10507         Trust PAD types instead of using PAD___XVS.
10508         * ada-lang.c (trust_pad_over_xvs): New static variable.
10509         (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
10510         parallel XVS type, follow the XVS type instead of the PAD type.
10511         (unwrap_value): Make sure that there is no parallel XVE type
10512         before returning the value as is.
10513         (set_ada_list, show_ada_list): New static variables.
10514         (set_ada_command, show_ada_command): New functions.
10515         (_initialize_ada_language): Add new "set/show ada" prefix commands.
10516         Add new "set/show ada trust-PAD-over-XVS" setting.
10517
10518 2010-01-18  Tom Tromey  <tromey@redhat.com>
10519             Thiago Jung Bauermann  <bauerman@br.ibm.com>
10520
10521         Allow "source" to load python scripts.
10522         * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
10523         * python/python.c (source_python_script): New function.
10524         * python/python.h (source_python_script): Add declaration.
10525         * cli/cli-cmds.c: #include exceptions.h and python/python.h.
10526         (script_ext_off, script_ext_soft, script_ext_strict)
10527         (script_ext_enums, script_ext_mode): New static constants.
10528         (show_script_ext_mode, find_and_open_script): New functions.
10529         (source_script): Enhance to handle Python scripts.
10530         (init_cli_cmds): Add set/show script-extension commands.
10531
10532 2010-01-16  Stan Shebs  <stan@codesourcery.com>
10533
10534         * tracepoint.h (struct trace_status): Use unsigned long long
10535         instead of size_t.
10536         * tracepoint.c (trace_status_command): Fix printf directive.
10537         (trace_save_command): Check fwrite returns, fix printf directive.
10538         (trace_filename): New global.
10539         (tfile_open): Set it, check read returns.
10540         (tfile_close): Free trace_filename.
10541         (tfile_get_traceframe_address): Check read returns.
10542         (tfile_trace_find): Ditto.
10543         (tfile_fetch_registers): Ditto.
10544         (tfile_xfer_partial): Ditto.
10545         (tfile_get_trace_state_variable_value): Ditto.
10546
10547 2010-01-15  Stan Shebs  <stan@codesourcery.com>
10548
10549         Add trace file support.
10550         * tracepoint.h (enum trace_stop_reason): New enum.
10551         (struct trace_status): New struct.
10552         (parse_trace_status): Declare.
10553         (struct uploaded_tp): Move here from remote.c,
10554         add fields for actions.
10555         (struct uploaded_tsv): New struct.
10556         * tracepoint.c (tfile_ops): New target vector.
10557         (trace_fd): New global.
10558         (tfile_open): New function.
10559         (tfile_close): New function.
10560         (tfile_files_info): New function.
10561         (tfile_get_trace_status): New function.
10562         (tfile_get_traceframe_address): New function.
10563         (tfile_trace_find): New function.
10564         (tfile_fetch_registers): New function.
10565         (tfile_xfer_partial): New function.
10566         (tfile_get_trace_state_variable_value): New function.
10567         (init_tfile_ops): New function.
10568         (_initialize_tracepoint): Call it, add tfile target.
10569         (trace_status): New global.
10570         (current_trace_status): New function.
10571         (trace_running_p): Remove, change all users to get from
10572         current_trace_status()->running.
10573         (get_trace_status): Remove.
10574         (trace_status_command): Call target_get_trace_status directly,
10575         report more detail including tracing stop reasons.
10576         (trace_find_command): Always allow tfind on a file.
10577         (trace_find_pc_command): Ditto.
10578         (trace_find_tracepoint_command): Ditto.
10579         (trace_find_line_command): Ditto.
10580         (trace_find_range_command): Ditto.
10581         (trace_find_outside_command): Ditto.
10582         (trace_frames_offset, cur_offset): Declare as off_t.
10583         (trace_regblock_size): Rename from reg_size, update users.
10584         (parse_trace_status): New function.
10585         (tfile_interp_line): New function.
10586         (disconnect_or_stop_tracing): Ensure current trace
10587         status before asking what to do.
10588         (stop_reason_names): New global.
10589         (trace_save_command): New command.
10590         (get_uploaded_tp): Move here from remote.c.
10591         (find_matching_tracepoint): Ditto.
10592         (merge_uploaded_tracepoints): New function.
10593         (parse_trace_status): Use stop_reason_names.
10594         (_initialize_tracepoint): Define tsave command.
10595         * target.h (target_ops): New fields to_save_trace_data,
10596         to_upload_tracepoints, to_upload_trace_state_variables,
10597         to_get_raw_trace_data, change to_get_trace_status
10598         to take a pointer to a status struct.
10599         (target_save_trace_data): New macro.
10600         (target_upload_tracepoints): New macro.
10601         (target_upload_trace_state_variables): New macro.
10602         (target_get_raw_trace_data): New macro.
10603         * target.c (update_current_target): Add new methods, change
10604         signature of to_get_trace_status.
10605         * remote.c (hex2bin): Make globally visible.
10606         (bin2hex): Ditto.
10607         (remote_download_trace_state_variable): Download name also.
10608         (remote_get_trace_status): Update parameter, use
10609         parse_trace_status.
10610         (remote_save_trace_data): New function.
10611         (remote_upload_tracepoints): New function.
10612         (remote_upload_trace_state_variables): New function.
10613         (remote_get_raw_trace_data): New function.
10614         (remote_start_remote): Use them.
10615         (_initialize_remote_ops): Add operations.
10616         * ax-gdb.c: Include breakpoint.h.
10617         * breakpoint.c (create_tracepoint_from_upload): Use
10618         break_command_really, return tracepoint, warn about unimplemented
10619         parts.
10620         * NEWS: Mention trace file addition.
10621
10622 2010-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
10623
10624         Fix compilation warning on gcc-3.4.
10625         * exec.c (print_section_info): Move the `displacement' variable
10626         initialization to its declaration.
10627
10628 2010-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
10629
10630         * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
10631         comparison.
10632
10633 2010-01-15  Eric Botcazou  <botcazou@adacore.com>
10634
10635         "info tasks" broken by typedefs in ATCB type definitions.
10636         * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
10637         ada_check_typedef before retrieving the length of the type for
10638         regular fields.
10639
10640 2010-01-15  Joel Brobecker  <brobecker@adacore.com>
10641
10642         Do not use name-based lookup for unconstrained packed arrays.
10643         * ada-lang.c (find_parallel_type_by_descriptive_type):
10644         Limit the fallback to name-based lookups to the case where
10645         the type is a constrained packed array.
10646
10647 2010-01-15  Joel Brobecker  <brobecker@adacore.com>
10648
10649         Enhance gdb-gdb.py to handle main_type.type_specific.
10650         * gdb-gdb.py: Print the type-specific part of struct main_type.
10651
10652 2010-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
10653
10654         * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
10655         * configure: Regenerate.
10656         * config.in: Regenerate.
10657         * utils.c: Include sys/resource.h.
10658         (dump_core, can_dump_core): New.
10659         (internal_vproblem): Update the comment.  Check can_dump_core while
10660         setting dump_core_p.  Replace two abort calls by dump_core calls.
10661
10662 2010-01-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10663             Eli Zaretskii  <eliz@gnu.org>
10664
10665         * NEWS: Document the PIE support.
10666
10667 2010-01-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10668
10669         * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
10670         (check_is_pie_binary, _initialize_linux_tdep): Remove.
10671
10672 2010-01-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10673
10674         * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
10675         Replace exec_entry_point call by bfd_get_start_address.
10676
10677 2010-01-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10678
10679         Support Valgrind attachments broken by the PIE support.
10680         * auxv.c: Include gdbcore.h.
10681         (procfs_xfer_auxv): Make static.  Reduce its comment.  Drop its
10682         parameters ops, object and annex.  Remove their assertions.
10683         (ld_so_xfer_auxv, memory_xfer_auxv): New function.
10684         * auxv.h (procfs_xfer_auxv): Remove comment.  Rename to ...
10685         (memory_xfer_auxv): ... here.
10686         * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
10687         memory_xfer_auxv.
10688         * procfs.c (procfs_xfer_partial): Likewise.
10689         * solib-svr4.c (svr4_relocate_main_executable): New prototype.
10690         (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
10691         (svr4_solib_create_inferior_hook): Conditionalize the
10692         svr4_relocate_main_executable call.
10693
10694 2010-01-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10695
10696         * solib-svr4.c (scan_dyntag): Remove variable dyn_addr.  New variable
10697         target_section.  Find SECT in current_target_sections, gdb_assert it.
10698         (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
10699         New variable abfd.
10700         * symtab.c (lookup_objfile_from_block): Return the binary file instead
10701         of separate debug info file.
10702
10703 2010-01-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10704
10705         Support PIEs with no symfile_objfile.
10706         * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
10707         * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
10708
10709 2010-01-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10710
10711         * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
10712         code part to ...
10713         (svr4_static_exec_displacement): ... a new function.
10714         (svr4_exec_displacement): New function.
10715         (svr4_relocate_main_executable): Call svr4_exec_displacement.  Allocate
10716         new_offsets using alloca now.  Remove variable old_chain and changed.
10717         Call objfile_relocate unconditionally now.
10718
10719 2010-01-14  Doug Evans  <dje@google.com>
10720
10721         * gdbtypes.c (arch_flags_type): Fix comment.
10722         * gdbtypes.h (arch_composite_type): Fix comment.
10723
10724 2009-01-14  Tristan Gingold  <gingold@adacore.com>
10725
10726         * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
10727         Call xstrdup for abfd->filename.  Pass symfile_flags and objfile flags
10728         to symbol_file_add_from_bfd.  Add OSO as separate objfile.
10729         (macho_oso_symfile): Add symfile_flags parameter.  Pass it to
10730         macho_add_oso_symfile.
10731         (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
10732
10733 2010-01-14  Joel Brobecker  <brobecker@adacore.com>
10734
10735         Tru64: Dead threads are never deleted.
10736         * dec-thread.c (dec_thread_ptid_is_alive): New function.
10737         (dec_thread_count_gdb_threads): Fix counter increment.
10738         (dec_thread_add_gdb_thread): Fix *listp increment.
10739         (resync_thread_list): Fix bug in deletion of dead threads that
10740         caused all threads to be deleted, instead of just the dead ones.
10741
10742 2010-01-13  Phil Muldoon  <pmuldoon@redhat.com>
10743
10744         PR python/10705
10745
10746         * python/python-internal.h: Add lazy_string_object_type
10747         definition.
10748         (create_lazy_string_object, gdbpy_initialize_lazy_string)
10749         (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
10750         * python/py-value.c (valpy_lazy_string): New function.
10751         (convert_value_from_python): Add lazy string conversion.
10752         * python/py-prettyprint.c (pretty_print_one_value): Check if
10753         return is also a lazy string.
10754         (print_string_repr): Add lazy string printing branch.
10755         (print_children): Likewise.
10756         * python/py-lazy-string.c: New file. Implement lazy strings.
10757         * python/python.c (_initialize_python): Call
10758         gdbpy_initialize_lazy_string.
10759         * varobj.c (value_get_print_value): Add lazy string printing
10760         branch.  Account for encoding.
10761         * c-lang.c (c_printstr): Account for new encoding argument.  If
10762         encoding is NULL, find encoding suited for type, otherwise use
10763         user encoding.
10764         * language.h (language_defn): Add encoding argument.
10765         (LA_PRINT_STRING): Likewise.
10766         * language.c (unk_lang_printstr): Update to reflect new encoding
10767         argument to language_defn.
10768         * ada-lang.h (ada_printstr): Likewise.
10769         * c-lang.h (c_printstr): Likewise.
10770         * p-lang.h (pascal_printstr);
10771         * f-lang.c (f_printstr): Likewise.
10772         * m2-lang.c (m2_printstr): Likewise.
10773         * objc-lang.c (objc_printstr): Likewise.
10774         * p-lang.c (pascal_printstr): Likewise.
10775         * scm-lang.c (scm_printstr): Likewise.
10776         * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
10777         encoding argument.
10778         * ada-valprint.c (ada_printstr): Likewise.
10779         * f-valprint.c (f_val_print): Likewise
10780         * m2-valprint.c (m2_val_print): Likewise.
10781         * p-valprint.c (pascal_val_print): Likewise.
10782         * expprint.c (print_subexp_standard): Likewise.
10783         * valprint.c (val_print_string): Likewise.
10784         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
10785         (SUBDIR_PYTHON_SRCS): Likewise.
10786         (py-lazy-string.o): New rule.
10787
10788 2010-01-13  Doug Evans  <dje@google.com>
10789
10790         * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
10791         uninitialized" warning from gcc on local `tree'.
10792
10793 2010-01-13  Vladimir Prus  <vladimir@codesourcery.com>
10794
10795         Implement core awareness.
10796
10797         * bcache.c (compare_ints): Remove
10798         (print_percentage): Use compare_positive_ints.
10799         * defs.h (compare_positive_ints): Declare.
10800         * linux-nat.h (struct lin_lwp): New field core.
10801         (linux_nat_core_of_thread_1): Declare.
10802         * linux-nat.c (add_lwp): Init the 'core' field.
10803         (linux_nat_wait_1): Record the core.
10804         (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
10805         (linux_nat_add_target): Register the above.
10806         * linux-thread-db.c (update_thread_core): New.
10807         (thread_db_find_new_threads): Update core information for
10808         every thread.
10809         * remote.c (struct private_thread_info): New.
10810         (free_private_thread_info, demand_private_info): New.
10811         (PACKET_qXfer_threads, use_osdata_threads): New.
10812         (struct thread_item, threads_parsing_context
10813         (start_thread, end_thread, thread_attributes)
10814         (thread_children, threads_children, threads_elements): New.
10815         (remote_threads_info): Try qXfer:threads before anything
10816         else.
10817         (remote_protocol_packets): Register qXfer:threads.
10818         (remote_open_1): Init use_osdata_threads.
10819         (struct stop_reply): New field 'core'.
10820         (remote_parse_stop_reply): Parse core number.
10821         (process_stop_reply): Record core number.
10822         (remote_xfer_partial): Handle qXfer:threads.
10823         (remote_core_of_thread): New.
10824         (init_remote_ops): Register remote_core_of_thread.
10825         (_initialize_remote): Register qXfer:read.
10826         * target.c (target_core_of_thread): New
10827         * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
10828         (struct target_ops): New field to_core_of_threads.
10829         (target_core_of_thread): Declare.
10830         * gdbthread.h (struct thread_info): New field private_dtor.
10831         * thread.c (print_thread_info): Report the core.
10832         * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
10833         * utils.c (compare_positive_ints): New.
10834         * features/threads.dtd: New.
10835         * mi/mi-interp.c (mi_on_normal_stop): Report the core.
10836         * mi/mi-main.c (struct collect_cores_data, collect_cores)
10837         (do_nothing, free_vector_of_osdata_items)
10838         (splay_tree_int_comparator, free_splay_tree): New.
10839         (print_one_inferior_data): Implemented printing of selected
10840         inferiors.  Collect and print cores.
10841         (output_cores): New.
10842         (mi_cmd_list_thread_groups): Support --recurse.  Permit specifying
10843         thread groups together with --available.
10844
10845 2010-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
10846
10847         * configure: Regenerate (for _STRUCTURED_PROC).
10848
10849 2010-01-12  Joel Brobecker  <brobecker@adacore.com>
10850
10851         Delete dead function.
10852         * ada-lang.c (extract_string): Delete.  No longer used.
10853
10854 2010-01-12  Joel Brobecker  <brobecker@adacore.com>
10855
10856         Fix -Wunused warning in dec-thread.c.
10857         * dec-thread.c (dec_thread_count_gdb_threads)
10858         (dec_thread_add_gdb_thread): Prevent -Wunused warning.
10859
10860 2010-01-12  Joel Brobecker  <brobecker@adacore.com>
10861
10862         * ada-valprint.c (ada_print_floating): Remove trailing space.
10863
10864 2010-01-12  Joel Brobecker  <brobecker@adacore.com>
10865
10866         Add support for DW_AT_GNAT_descriptive_type.
10867         * gdbtypes.h (enum type_specific_kind): New enum.
10868         (struct main_type) [type_specific_field]: New component.
10869         [type_specific]: Add new component "gnat_stuff".
10870         (struct gnat_aux_type): New type.
10871         (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
10872         (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
10873         (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
10874         (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
10875         (TYPE_SPECIFIC_FIELD): New macros.
10876         (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
10877         type does not hold any cplus-specific data.
10878         (TYPE_RAW_CPLUS_SPECIFIC): New macro.
10879         (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
10880         (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
10881         cplus-specific data.
10882         * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
10883         Set new component TYPE_SPECIFIC_FIELD (type).
10884         (gnat_aux_default): New constant.
10885         (allocate_gnat_aux_type): New function.
10886         (init_type): Add initialization the type-specific stuff for
10887         TYPE_CODE_FLT and TYPE_CODE_FUNC types.
10888         (print_gnat_stuff): New function.
10889         (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
10890         specific data.  Adjust code that prints the contents of the
10891         type-specific union using the TYPE_SPECIFIC_FIELD value.
10892         * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
10893         the type cplus stuff for Ada types.
10894         (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
10895         Error out if these routines are called with an Ada type.
10896         (read_structure_type, read_array_type, read_subrange_type):
10897         Add call to set_descriptive_type.
10898         (set_die_type): Initialize the gnat-specific data if necessary.
10899         (need_gnat_info, die_descriptive_type, set_descriptive_type):
10900         New functions.
10901         * ada-lang.c (decode_constrained_packed_array_type): Use
10902         decode_constrained_packed_array_type instead of doing a standard
10903         lookup to locate a parallel type.
10904         (find_parallel_type_by_descriptive_type): New function.
10905         (ada_find_parallel_type_with_name): New function.
10906         (ada_find_parallel_type): Reimplement using
10907         ada_find_parallel_type_with_name.
10908         * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
10909         to check if type has a cplus stuff.
10910         * linespec.c (total_number_of_methods): Likewise.
10911         * mdebugread.c (new_type): Likewise.
10912
10913 2010-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
10914
10915         * NEWS: Document the 0b binary number prefix parsing.
10916
10917 2010-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
10918
10919         * objfiles.c (objfile_relocate1): Change the return type to int.
10920         Describe the new return value.  Return non-zero if data changed.
10921         (objfile_relocate): New variable changed.  Set it.  Call
10922         breakpoint_re_set depending on CHANGED.
10923
10924 2010-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
10925
10926         Implement binary numbers parsing.
10927         * c-exp.y (parse_number): New case 'b' and 'B'.
10928
10929 2010-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
10930             Tristan Gingold  <gingold@adacore.com>
10931
10932         * solib.c (info_sharedlibrary_command): Replace
10933         objfile_has_partial_symbols and objfile_has_full_symbols calls by
10934         objfile_has_symbols.
10935
10936 2010-01-10  Joel Brobecker  <brobecker@adacore.com>
10937
10938         * NEWS: Document the improvements made to the mips-irix port.
10939
10940 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
10941
10942         Fix the documentation of valprint.c:value_print.
10943         * valprint.c (value_print): Update the function description to
10944         mention that the syntax of the output follows the current_language,
10945         not necessarily C.
10946
10947 2010-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
10948
10949         Fix displacement of separate debug info files.
10950         * objfiles.c (objfile_relocate): Rename to ...
10951         (objfile_relocate1): ... here and make it static.  Extend the comment.
10952         (objfile_relocate): New function.
10953         * solib-spu.c (spu_relocate_main_executable): Explicitly check if
10954         SYMFILE_OBJFILE is NULL.  Remove variables objfile and old_chain.
10955         Remove following of SEPARATE_DEBUG_OBJFILE.  new_offsets is now
10956         allocated using alloca.
10957         * symfile.c (copy_section_addr_info): Remove.
10958         (build_section_addr_info_from_objfile): Make it global.  New variables
10959         addr_bit and mask, use them.
10960         * symfile.h (build_section_addr_info_from_objfile): New prototype.
10961         (copy_section_addr_info): Remove.
10962
10963 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
10964
10965         Signal unwinder for mips-irix N32.
10966         * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
10967         tramp-frame.h.
10968         (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
10969         (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
10970         (SIGCONTEXT_LO_OFF): New macros.
10971         (mips_irix_n32_tramp_frame_init): New function.
10972         (mips_irix_n32_tramp_frame): New static constant.
10973         (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
10974
10975 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
10976
10977         Breakpoint in shared library does not work on mips-irix.
10978         * procfs.c: #include "observer.h".
10979         (procfs_inferior_created): New function, moving here the code
10980         which unsets the syssgi syscall-exit notifications.
10981         (procfs_create_inferior): Remove the code which unsets the syssgi
10982         syscall-exit notifications. It is too early to do this here.
10983         (_initialize_procfs): Attach the procfs_inferior_created observer.
10984
10985 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
10986
10987         Wrong return convention for arrays (mips-irix).
10988         * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
10989         128 bits or smaller are returned the same way as structs
10990         and unions of the the same size.
10991
10992 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
10993
10994         Cannot set the PC on mips-irix.
10995         * irix5-nat.c (fill_gregset): Check regno against the raw PC
10996         register number, no the cooked one.
10997
10998 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
10999
11000         Error while loading core file on mips-irix.
11001         * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
11002         if debugging from a core file.
11003
11004 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
11005
11006         GDB hangs when attaching to process on mips-irix.
11007         * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
11008         attaching to a process.
11009
11010 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
11011
11012         Use the correct breakpoint instruction on mips-irix.
11013         * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
11014         containing the correct breakpoint instruction to use on mips-irix.
11015         Use it when the osabi is GDB_OSABI_IRIX.
11016
11017 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
11018
11019         -Wunused warning in procfs.c (mips-irix only).
11020         * procfs.c (gdb_praddset, gdb_prdelset): New macros.  Use them
11021         throughout instead of using praddset and prdelset respectively.
11022
11023 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
11024
11025         GDB crash while stepping into function.
11026         * infrun.c (handle_inferior_event): Refetch the current frame
11027         after handling what.main_action, in case that pointer became
11028         dangling.
11029
11030 2010-01-09  Joel Brobecker  <brobecker@adacore.com>
11031
11032         Fix build failure of solaris-hosted cross debuggers.
11033         * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
11034
11035 2010-01-09  Daniel Gutson  <dgutson@codesourcery.com>
11036
11037         Fix build failure on sparc-solaris.
11038         * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
11039
11040 2010-01-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
11041
11042         Move some symfile code into subroutines.
11043         * symfile.h (relative_addr_info_to_section_offsets)
11044         (addr_info_make_relative): New prototypes.
11045         * symfile.c (default_symfile_offsets): Move a part to ...
11046         (relative_addr_info_to_section_offsets): ... this new function.
11047         (default_symfile_offsets): Call it.
11048         (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
11049         this part to ...
11050         (addr_info_make_relative): ... this new function.
11051
11052 2010-01-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
11053
11054         Add from_tty to solib_create_inferior_hook.
11055         * infcmd.c (post_create_inferior): Move solib_add after
11056         solib_create_inferior_hook.  Pass from_tty to
11057         solib_create_inferior_hook.  Call solib_add and SOLIB_ADD with
11058         0 from_tty and comment why.
11059         * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
11060         * linux-nat.c (linux_child_follow_fork): Likewise.
11061         * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
11062         * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
11063         from_tty.
11064         * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
11065         * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
11066         * solib-null.c (null_solib_create_inferior_hook): Likewise.
11067         * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
11068         * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
11069         * solib-som.c (som_solib_create_inferior_hook): Likewise.
11070         * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
11071         Pass it to svr4_so_ops.solib_create_inferior_hook.
11072         * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
11073         from_tty.
11074         * solib-svr4.c (enable_break): New parameter from_tty.  Pass it to
11075         solib_add.
11076         (svr4_solib_create_inferior_hook): New parameter from_tty.  Pass it to
11077         enable_break.
11078         * solib-target.c (solib_target_solib_create_inferior_hook): New
11079         parameter from_tty.
11080         * solib.c (solib_create_inferior_hook): New parameter from_tty.  Pass
11081         it to ops->solib_create_inferior_hook.
11082         (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
11083         Move solib_add after solib_create_inferior_hook, call it now with
11084         from_tty as 0.  New comment there.
11085         * solib.h (solib_create_inferior_hook): New parameter from_tty.
11086         * solist.h (struct target_so_ops <solib_create_inferior_hook>):
11087         Likewise.
11088
11089 2010-01-08  Vladimir Prus  <vladimir@codesourcery.com>
11090
11091         Fix multiexec race.
11092         * infrun.c (handle_inferior_event): Use get_thread_regcache
11093         with events ptid, not get_current_regcache.
11094
11095 2009-01-08  Joel Brobecker  <brobecker@adacore.com>
11096
11097         GDB crash with empty executable name (MinGW).
11098         * source.c (openp): Add assert that parameter string is not NULL.
11099         if parameter string is an empty string, then return with a failure
11100         immediately.
11101
11102 2009-01-08  Joel Brobecker  <brobecker@adacore.com>
11103
11104         Get rid of support for VAX Floats.
11105         * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11106         (ada_vax_float_print_function): Delete.
11107         * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11108         (ada_vax_float_print_function): Delete.
11109         * ada-typeprint.c (print_vax_floating_point_type): Delete.
11110         (ada_print_type): Remove support for VAX floats.
11111         * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
11112
11113 2010-01-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
11114
11115         * stabsread.c (read_args): Handle zero arguments.
11116
11117 2009-01-08  Joel Brobecker  <brobecker@adacore.com>
11118
11119         Cannot find in-tree libiconv.a after reconfigure.
11120         * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
11121         that we can use, then cache the path to this archive.
11122         * configure: Regenerate.
11123
11124 2010-01-07  Stan Shebs  <stan@codesourcery.com>
11125
11126         Make tracepoint operations go through target vector.
11127         * target.h (enum trace_find_type): New enum.
11128         (struct target_ops): New fields to_trace_init,
11129         to_download_tracepoint, to_download_trace_state_variable,
11130         to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
11131         to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
11132         to_set_disconnected_tracing.
11133         (target_trace_init): New macro.
11134         (target_download_tracepoint): New macro.
11135         (target_download_trace_state_variable): New macro.
11136         (target_trace_start): New macro.
11137         (target_trace_set_readonly_regions): New macro.
11138         (target_get_trace_status): New macro.
11139         (target_trace_stop): New macro.
11140         (target_trace_find): New macro.
11141         (target_get_trace_state_variable_value): New macro.
11142         (target_set_disconnected_tracing): New macro.
11143         * target.c (update_current_target): Inherit and set defaults for
11144         tracepoint operations.
11145         * tracepoint.c (default_collect): Make globally visible.
11146         (target_is_remote): Remove, along with all calls.
11147         (tvariables_info): Call target_get_trace_state_variable_value.
11148         (remote_set_transparent_ranges): Remove.
11149         (trace_start_command): Call target_trace_init,
11150         target_download_tracepoint, etc.
11151         (download_tracepoint): Remove.
11152         (trace_stop_command): Simplify.
11153         (stop_tracing): Call target_trace_stop.
11154         (get_trace_status): Call target_get_trace_status.
11155         (trace_status_command): Add case for targets that cannot trace.
11156         (finish_tfind_command): Change to take numerical arguments, call
11157         target_trace_find.
11158         (trace_find_command): Update call to finish_tfind_command.
11159         (trace_find_pc_command): Ditto.
11160         (trace_find_tracepoint_command): Ditto.
11161         (trace_find_line_command): Ditto.
11162         (trace_find_range_command): Ditto.
11163         (trace_find_outside_command): Ditto.
11164         (set_disconnected_tracing_value): Call
11165         target_set_disconnected_tracing.
11166         * remote.c: Add protocol encoding bits from tracepoint.c.
11167         (trace_error): Move from tracepoint.c.
11168         (remote_get_noisy_reply): Ditto.
11169         (free_actions_list_cleanup_wrapper): Ditto.
11170         (free_actions_list): Ditto.
11171         (remote_trace_init): New function.
11172         (remote_download_tracepoint): New function.
11173         (remote_download_trace_state_variable): New function.
11174         (remote_trace_set_readonly_regions): New function.
11175         (remote_trace_start): New function.
11176         (remote_get_trace_status): New function.
11177         (remote_trace_stop): New function.
11178         (remote_trace_find): New function.
11179         (remote_download_trace_state_variable): New function.
11180         (remote_set_disconnected_tracing): New function.
11181         (init_remote_ops): Add tracepoint operations.
11182
11183         * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
11184
11185 2010-01-07  Tristan Gingold  <gingold@adacore.com>
11186
11187         * symfile.c (build_section_addr_info_from_objfile): New function.
11188         (symbol_file_add_separate): Don't use offsets from objfile but
11189         built an addr info.
11190
11191 2010-01-06  Stan Shebs  <stan@codesourcery.com>
11192
11193         Support disconnected tracing.
11194         * infcmd.c (detach_command): Ask whether to stop tracing.
11195         * cli/cli-cmds.c (quit_command): Ditto.
11196         * breakpoint.h (struct breakpoint): New field number_on_target.
11197         * breakpoint.c (create_tracepoint_from_upload): New function.
11198         (get_tracepoint_by_number_on_target): New function.
11199         * remote.c (struct remote): New field disconnected_tracing.
11200         (remote_disconnected_tracing_feature): New function.
11201         (remote_protocol_features): Add DisconnectedTracing.
11202         (struct uploaded_tp): New struct.
11203         (uploaded_tps): New global.
11204         (get_uploaded_tp): New function.
11205         (find_matching_tracepoint): New function.
11206         (remote_get_tracing_state): New function.
11207         (remote_start_remote): Call it.
11208         * tracepoint.c (disconnected_tracing): New global.
11209         (trace_start_command): Initialize number_on_target.
11210         (stop_tracing): New function, split out from...
11211         (trace_stop_command): Call stop_tracing.
11212         (get_trace_status): New function, split out from...
11213         (trace_status_command): Call get_trace_status, add info on
11214         disconnection behavior.
11215         (disconnect_or_stop_tracing): New function.
11216         (finish_tfind_command): Translate from number on target.
11217         (trace_find_tracepoint_command): Translate to number on target.
11218         (send_disconnected_tracing_value): New function.
11219         (set_disconnected_tracing): New function.
11220         (_initialize_tracepoint): Add disconnected-tracing variable.
11221         * NEWS: Mention disconnected tracing.
11222
11223 2010-01-06  Tristan Gingold  <gingold@adacore.com>
11224
11225         * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
11226         parameter to main_objfile.  Iterate on all separate debug objfiles.
11227         * symfile.h (symbol_file_add_separate)
11228         (find_separate_debug_file_by_debuglink): Remove parameter names.
11229         * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
11230         (reread_symbols): Use free_objfile_separate_debug.
11231         * objfiles.h (struct objfile): Add separate_debug_objfile_link.
11232         Adjust comment.
11233         (objfile_separate_debug_iterate, add_separate_debug_objfile)
11234         (free_objfile_separate_debug): New prototypes.
11235         * objfiles.c (objfile_separate_debug_iterate): New function.
11236         (add_separate_debug_objfile, free_objfile_separate_debug): New
11237         functions.
11238         (free_objfile): Use free_objfile_separate_debug.  Adjust for
11239         multiple separate debug objfile.
11240         (objfile_has_symbols): Adjust comment.  Iterate on all separate
11241         debug objfiles.
11242         * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
11243         debug objfile.
11244         (lookup_minimal_symbol_text): Ditto.
11245         (lookup_minimal_symbol_by_pc_name): Ditto.
11246         (lookup_minimal_symbol_solib_trampoline): Ditto.
11247         (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
11248         debug objfiles.
11249
11250 2010-01-05  Stan Shebs  <stan@codesourcery.com>
11251
11252         Add fast tracepoints.
11253         * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
11254         * arch-utils.c (default_fast_tracepoint_valid_at): New function.
11255         * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
11256         * breakpoint.c (tracepoint_type): New function.
11257         (ALL_TRACEPOINTS): Use it.
11258         (should_be_inserted): Ditto.
11259         (bpstat_check_location): Ditto.
11260         (print_one_breakpoint_location): Ditto.
11261         (user_settable_breakpoint): Ditto.
11262         (set_breakpoint_location_function): Ditto.
11263         (disable_breakpoints_in_shlibs): Ditto.
11264         (delete_trace_command): Ditto.
11265         (print_it_typical): Add bp_fast_tracepoint case.
11266         (bpstat_what): Ditto.
11267         (print_one_breakpoint_location): Ditto.
11268         (allocate_bp_location): Ditto.
11269         (mention): Ditto.
11270         (breakpoint_re_set_one): Ditto.
11271         (disable_command): Ditto.
11272         (enable_command): Ditto.
11273         (check_fast_tracepoint_sals): New function.
11274         (break_command_really): Call it.
11275         (ftrace_command): New function.
11276         (_initialize_breakpoint): Add ftrace command.
11277         * gdbarch.sh (fast_tracepoint_valid_at): New.
11278         * gdbarch.h, gdbarch.c: Regenerate.
11279         * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
11280         (i386_gdbarch_init): Use it.
11281         * remote.c (struct remote_state): New field fast_tracepoints.
11282         (PACKET_FastTracepoints): New packet config type.
11283         (remote_fast_tracepoint_feature): New function.
11284         (remote_protocol_features): Add FastTracepoints.
11285         (remote_supports_fast_tracepoints): New function.
11286         (_initialize_remote): Add FastTracepoints.
11287         * tracepoint.c (download_tracepoint): Add fast tracepoint option.
11288         * NEWS: Mention fast tracepoints.
11289
11290 2010-01-06  Joel Brobecker  <brobecker@adacore.com>
11291
11292         * gdb-gdb.py: New file.
11293
11294 2010-01-05  Michael Snyder  <msnyder@vmware.com>
11295
11296         * infrun.c (handle_inferior_event): Fix typo in comment.
11297
11298 2010-01-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
11299
11300         * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
11301
11302 2010-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
11303
11304         * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
11305         and s390x-linux64.
11306         (s390-linux32-expedite): Define.
11307         (s390-linux64-expedite): Define.
11308         (s390x-linux64-expedite): Define.
11309         * features/s390-acr.xml: New file.
11310         * features/s390-fpr.xml: New file.
11311         * features/s390-core32.xml: New file.
11312         * features/s390-core64.xml: New file.
11313         * features/s390x-core64.xml: New file.
11314         * features/s390-linux32.xml: New file.
11315         * features/s390-linux64.xml: New file.
11316         * features/s390x-linux64.xml: New file.
11317         * features/s390-linux32.c: New generated file.
11318         * features/s390-linux64.c: New generated file.
11319         * features/s390x-linux64.c: New generated file.
11320
11321         * regformats/s390-linux32.dat: New generated file.
11322         * regformats/s390-linux64.dat: New generated file.
11323         * regformats/s390x-linux64.dat: New generated file.
11324         * regformats/reg-s390.dat: Remove.
11325         * regformats/reg-s390x.dat: Remove.
11326
11327         * s390-nat.c: Include "auxv.h" and <elf.h>.
11328         (HWCAP_S390_HIGH_GPRS): Define if undefined.
11329         (s390_target_wordsize): New function.
11330         (s390_auxv_parse): Likewise.
11331         (s390_get_hwcap): Likewise.
11332         (s390_read_description): Likewise.
11333         (_initialize_s390_nat): Install s390_auxv_parse and
11334         s390_read_description.
11335
11336         * s390-tdep.c: Include "features/s390-linux32.c",
11337         "features/s390-linux64.c", and "features/s390x-linux64.c".
11338         (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
11339         (s390_register_call_saved): New function.
11340         (s390_register_name): Remove.
11341         (s390_register_type): Remove.
11342         (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
11343         (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
11344         (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
11345         (s390_pseudo_register_name): New function.
11346         (s390_pseudo_register_type): New function.
11347         (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
11348         Handle full GPR pesudos and varying pseudo register numbers.
11349         (s390_pseudo_register_write): Likewise
11350         (s390x_pseudo_register_read): Remove.
11351         (s390x_pseudo_register_write): Likewise.
11352         (s390_register_group): Remove.
11353         (s390_pseudo_register_group): New function.
11354         (s390_regmap_gregset): Add GPR upper halves.
11355         (s390x_regmap_gregset): Likewise.
11356         (s390_regmap_fpregset): Likewise.
11357         (s390_regmap_upper): New global variable.
11358         (s390_upper_regset): New global variable.
11359         (s390_upper_regset_sections): New global variable.
11360         (s390_regset_from_core_section): Handle GPR upper halves.
11361         (s390_core_read_description): New function.
11362         (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
11363         register information.  Handle varying pseudo register numbers.
11364         (s390_backchain_frame_unwind_cache): Likewise.
11365         (s390_frame_prev_register): Unwind full GPRs to show lower halves.
11366         (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
11367         (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
11368         PC and CC pseudos.  Unwind upper halves and full GPRs as appropriate.
11369         Handle varying pseudo register numbers.
11370         (s390_unwind_pc): Handle varying pseudo register numbers.
11371         (s390_dwarf2_prev_register): New function.
11372         (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
11373         register information.  Handle varying pseudo register numbers.
11374         Install s390_dwarf2_prev_register to unwind full GPRs.
11375         (s390_gdbarch_init): Handle target descriptions.  Assign varying
11376         pseudo register numbers.  Install s390_adjust_frame_regnum.
11377         (_initialize_s390_tdep): Initialize target descriptions.
11378
11379         * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
11380         (S390_NUM_REGS): Redefine to include upper half registers.
11381         (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
11382         (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
11383         (tdesc_s390_linux32): Add declaration.
11384         (tdesc_s390_linux64): Likewise.
11385         (tdesc_s390x_linux64): Likewise.
11386
11387 2010-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
11388
11389         * regset.h (struct core_regset_section): Add HUMAN_NAME.
11390         * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
11391         * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
11392         (ppc_linux_vmx_regset_sections): Likewise.
11393         (ppc_linux_fp_regset_sections): Likewise.
11394
11395         * corelow.c (get_core_register_section): Constify arguments.
11396         (get_core_registers): Use gdbarch_core_regset_sections instead
11397         of hard-coded platform-specific register section names.
11398
11399 2010-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
11400
11401         * dwarf2loc.c (read_pieced_value): If a piece occupies part of
11402         a register, assume the least-significant part is used.
11403         (write_pieced_value): Likewise.
11404
11405 2010-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
11406
11407         * printcmd.c: Include "arch-utils.h".
11408         (do_one_display): Re-parse expression if current architecture changed.
11409
11410 2010-01-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11411             Joel Brobecker  <brobecker@adacore.com>
11412
11413         * gdbtypes.c (check_typedef): New comment on type length.
11414         * value.c (allocate_value_lazy): Remove the unused atype variable.  New
11415         comment on type length.
11416         (value_primitive_field): Keep the original TYPE value, new comment.
11417
11418 2010-01-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11419
11420         * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
11421         p_start.  Change != comparisons to > and < comparisons.
11422
11423 2010-01-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11424
11425         * cli/cli-script.c (process_next_line): Check P2 overrun.
11426
11427 2009-01-01  Joel Brobecker  <brobecker@adacore.com>
11428
11429         Update the copyright hearder to add year 2010 for most GDB files.
11430
11431 2009-01-01  Joel Brobecker  <brobecker@adacore.com>
11432
11433         Fix build failure in inf-ptrace.c.
11434         * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
11435
11436 2010-01-01  Joel Brobecker  <brobecker@adacore.com>
11437
11438         * top.c (print_gdb_version): Update copyright year.
11439
11440 2010-01-01, 10  Joel Brobecker  <brobecker@adacore.com>
11441
11442         Fix break *FUN'address thread NUM.
11443         * ada-lex.l (task): Expand rule to also match the thread keyword.
11444
11445 2010-01-01  Joel Brobecker  <brobecker@adacore.com>
11446
11447         Fix break *FUN'address task NUM.
11448         * ada-lex.l (task): New rule.
11449         * ada-lang.c (valid_task_id): Make sure the Ada task list has
11450         been built before using it.
11451
11452 For older changes see ChangeLog-2009.
11453 \f
11454 Local Variables:
11455 mode: change-log
11456 left-margin: 8
11457 fill-column: 74
11458 version-control: never
11459 coding: utf-8
11460 End: