]> Git Repo - binutils.git/blob - gdb/ChangeLog
PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
[binutils.git] / gdb / ChangeLog
1 2010-03-25  Tom Tromey  <[email protected]>
2
3         PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
4         * infrun.c (handle_inferior_event): Change initialization of
5         stop_stack_dummy.
6         (handle_inferior_event): Change assignment to stop_stack_dummy.
7         (normal_stop): Update use of stop_stack_dummy.
8         (struct inferior_status) <stop_stack_dummy>: Change type.
9         * inferior.h (stop_stack_dummy): Update.
10         * infcmd.c (stop_stack_dummy): Change type.
11         * infcall.c (cleanup_delete_std_terminate_breakpoint): New
12         function.
13         (call_function_by_hand): Call set_std_terminate_breakpoint.
14         Rewrite std::terminate handling.
15         * breakpoint.h (enum bptype) <bp_std_terminate,
16         bp_std_terminate_master>: New.
17         (enum stop_stack_kind): New.
18         (struct bpstat_what) <call_dummy>: Change type.
19         (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
20         Declare.
21         * breakpoint.c (create_std_terminate_master_breakpoint): New
22         function.
23         (update_breakpoints_after_exec): Handle bp_std_terminate_master.
24         Call create_std_terminate_master_breakpoint.
25         (print_it_typical): Handle new breakpoint kinds.
26         (bpstat_stop_status): Handle bp_std_terminate_master.
27         (bpstat_what): Correctly set call_dummy field.  Handle
28         bp_std_terminate_master and bp_std_terminate.
29         (print_one_breakpoint_location): Update.
30         (allocate_bp_location): Update.
31         (set_std_terminate_breakpoint): New function.
32         (delete_std_terminate_breakpoint): Likewise.
33         (create_thread_event_breakpoint): Update.
34         (delete_command): Update.
35         (breakpoint_re_set_one): Update.
36         (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
37
38 2010-03-25  Jan Kratochvil  <[email protected]>
39
40         * symfile.c (build_section_addr_info_from_bfd): New.
41         (build_section_addr_info_from_objfile): Base it on
42         build_section_addr_info_from_bfd.
43         (addrs_section_compar, addrs_section_sort): New.
44         (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
45         addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs.  Build
46         addrs_to_abfd_addrs.  Use it for recalculating ADDRS.
47
48 2010-03-24  Michael Snyder  <[email protected]>
49
50         * elfread.c (find_separate_debug_file_by_buildid): 
51         Remove unused local variable.
52
53 2010-03-24  Tom Tromey  <[email protected]>
54
55         PR breakpoints/9352:
56         * NEWS: Mention changes to `commands' and `rbreak'.
57         * symtab.c (do_end_rbreak_breakpoints): New function.
58         (rbreak_command): Call start_rbreak_breakpoints; arrange to call
59         end_rbreak_breakpoints.
60         * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
61         (set_breakpoint_count): Likewise.  Clear last_was_multi.
62         (multi_start, multi_end, last_was_multi): New globals.
63         (start_rbreak_breakpoints, end_rbreak_breakpoints): New
64         functions.
65         (struct commands_info): New
66         (do_map_commands_command): New function.
67         (commands_command_1): New function.
68         (commands_command): Use it.
69         (commands_from_control_command): Likewise.
70         (do_delete_breakpoint): New function.
71         (delete_command): Use it.
72         (map_breakpoint_numbers): Add 'data' argument.  Pass to callback.
73         (do_map_disable_breakpoint): New function.
74         (disable_command): Use it.
75         (do_map_enable_breakpoint): New function.
76         (enable_command): Use it.
77         (enable_once_breakpoint): Add argument.
78         (enable_once_command): Update.
79         (enable_delete_breakpoint): Add argument.
80         (enable_delete_command): Update.
81         (break_command_really): Set last_was_multi when needed.
82         (check_tracepoint_command): Fix formatting.
83         (validate_commands_for_breakpoint): New function.
84         (breakpoint_set_commands): Use it.
85         (tracepoint_save_command): Update.
86         * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
87         Declare.
88
89 2010-03-24  Tom Tromey  <[email protected]>
90
91         * breakpoint.h (struct counted_command_line): New struct.
92         (struct breakpoint) <commands>: Change type.
93         (struct bpstats) <commands>: Change type.
94         <commands_left>: New field.
95         * breakpoint.c (alloc_counted_command_line): New function.
96         (incref_counted_command_line): Likewise.
97         (decref_counted_command_line): Likewise.
98         (do_cleanup_counted_command_line): Likewise.
99         (make_cleanup_decref_counted_command_line): Likewise.
100         (breakpoint_set_commands): Use decref_counted_command_line and
101         alloc_counted_command_line.
102         (commands_command): Don't error if breakpoint commands are
103         executing.
104         (commands_from_control_command): Likewise.
105         (bpstat_free): Update.
106         (bpstat_copy): Likewise.
107         (bpstat_clear_actions): Likewise.
108         (bpstat_do_actions_1): Likewise.
109         (bpstat_stop_status): Likewise.
110         (print_one_breakpoint_location): Likewise.
111         (delete_breakpoint): Likewise.
112         (bpstat_alloc): Initialize new field.
113         (tracepoint_save_command): Update.
114         * tracepoint.c (encode_actions): Update.
115         (trace_dump_command): Update.
116
117 2010-03-24  Daniel Jacobowitz  <[email protected]>
118
119         * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
120         * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
121         (read_structure_type): For RealView, set TYPE_STUB on structures with
122         no byte size and no children.
123         (read_subroutine_type): Mark functions as prototyped by default.
124         * symtab.c (producer_is_realview): New function.
125         * symtab.h (expand_line_sal): Fix declaration formatting.
126         (producer_is_realview): Declare.
127
128 2010-03-24  Daniel Jacobowitz  <[email protected]>
129
130         * arm-tdep.c (skip_prologue_function): New function.
131         (submask, bit, bits, sbits, BranchDest): Move higher in the file.
132         (thumb_analyze_prologue): Document return value.  Recognize more
133         Thumb instructions, skippable calls, and some Thumb-2 instructions.
134         Add debug output.
135         (arm_skip_prologue): Remove call dummy check.  Check the prologue
136         for non-GNU compilers.
137         (arm_instruction_changes_pc): New function.
138         (arm_analyze_prologue): New function, broken out from
139         arm_scan_prologue.  Recognize more ARM instructions and skippable
140         calls.  Update comments.  Handle NULL cache.  Return the address
141         of the first unrecognized instruction.  Do not skip past other
142         instructions which change control flow.  Add debug output.
143         (arm_scan_prologue): Use arm_analyze_prologue.
144         (ARM_PC_32): Delete.
145         (shifted_reg_val): Simplify ARM_PC_32 check.
146
147 2010-03-24  Vladimir Prus  <[email protected]>
148
149         * tracepoint.c (tvariables_info_1): Actually compute
150         the number of rows in the result.
151
152 2010-03-24  Pedro Alves  <[email protected]>
153
154         * remote.c (crc32): Constify `buf' parameter.
155         (remote_verify_memory): New, abstracted out from...
156         (compare_sections_command): ... this.  Remove hardcoded target
157         checks.
158         (init_remote_ops): Install remote_verify_memory.
159         * target.c (target_verify_memory): New.
160         * target.h (struct target_ops) <to_verify_memory>: New field.
161         (target_verify_memory): Declare.
162
163 2010-03-24  Vladimir Prus  <[email protected]>
164
165         Implement -trace-save.
166
167         * mi-cmds.h (mi_cmds_trace_save): Declare.
168         * mi-cmds.c (mi_cmds): Register -trace-save.
169         * mi/mi-main.c (mi_cmd_trace_save): New.
170         * remote.c (remote_save_trace_data): Take const parameter.
171         * target.h (struct target_ops::to_save_trace_data): Take
172         const parameter.
173         * target.c (update_current_target): Adjust to the above.
174         * tracepoint.c (trave_save): New, extracted from
175         (trace_save_command): ...this.
176         (tfile_trace_find): Remove message that is unnecessary now
177         that 'tfind' reports found frame.
178         * tracepoint.h (trace_save): Declare.
179
180 2010-03-24  Vladimir Prus  <[email protected]>
181
182         Implement -trace-find.
183
184         * mi/mi-cmds.c (mi_cmds): Register -trace-find.
185         * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
186         * mi/mi-main.c (mi_cmd_trace_find): New.
187         * target.h (struct target_ops): Document to_trace_find.
188         * tracepoint.h (tfind_1): Declare.
189         * tracepoint.c (finish_tfind_command): Rename to...
190         (tfind_1): ...this.
191         * remote.c (remote_trace_find): Return -1 if target say
192         there's no frame.  Improve error diagnostics.
193
194 2010-03-24  Vladimir Prus  <[email protected]>
195
196         -trace-define-variable and -trace-list-variables.
197
198         * tracepoint.c (create_trace_state_variable): Make
199         private copy of name, as opposed to assuming the
200         pointer lives forever.
201         (tvariables_info_1): New.
202         (tvariables_info): Use the above.
203         * tracepoint.h (create_trace_state_variable, tvariables_info_1):
204         Declare.
205         * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
206         and -trace-list-variables.
207         * mi/mi-cmds.h (mi_cmd_trace_define_variable)
208         (mi_cmd_trace_list_variables): New.
209         * mi/mi-main.c (mi_cmd_trace_define_variable)
210         (mi_cmd_trace_list_variables): New.
211
212 2010-03-24  Vladimir Prus  <[email protected]>
213
214         Implement -break-passcount.
215
216         * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
217         * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
218         * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
219
220 2010-03-24  Vladimir Prus  <[email protected]>
221
222         -trace-start/-trace-end/-trace-status.
223
224         * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
225         and -trace-stop.
226         * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
227         (mi_cmd_trace_stop): Declare.
228         * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
229         (mi_cmd_trace_stop): New.
230         * tracepoint.c (start_tracing): New, extracted from...
231         (trace_start_command): ...this.
232         (trace_status_mi): New.
233         * tracepoint.h (struct trace_status): Document
234         stopping_tracepoint.
235         (start_tracing, stop_tracing, trace_status_mi): Declare.
236
237 2010-03-24  Vladimir Prus  <[email protected]>
238
239         Implement creating tracepoints with -break-insert.
240
241         * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
242         to mean that tracepoint should be created.
243
244 2010-03-24  Vladimir Prus  <[email protected]>
245
246         * breakpoint.c (check_no_tracepoint_commands): Use
247         current spelling of 'teval'.
248
249 2010-03-24  Vladimir Prus  <[email protected]>
250
251         Unify actions and commands
252
253         * defs.h (read_command_lines, read_command_lines_1): New
254         parameters validator and closure.
255         * tracepoint.h (struct action_line): Remove.
256         * breakpoint.h (struct breakpoint): Remove the 'actions'
257         field.
258         * defs.h (enum command_control_type): New value
259         while_stepping_control.
260         (struct command_line): Add comments.
261         * breakpoint.c (breakoint_is_tracepoint): New.
262         (breakpoint_set_commands): For tracepoints,
263         verify the commands are permissible.
264         (check_tracepoint_commands): New.
265         (commands_command): Require that each new line is validated using
266         check_tracepoint_command, if we set commands for a tracepoint.
267         (create_tracepoint_from_upload): Likewise.
268         (print_one_breakpoint_location): Remove the code to print
269         actions specifically.
270         (tracepoint_save_command): Relay to print_command_lines.
271         * cli/cli-script.c (process_next_line): New parameters validator
272         and closure. Handle 'while-stepping'. Call validator if not null.
273         (read_command_lines, read_command_lines1): Likewise.
274         (recurse_read_control_structure): New parameters validator and
275         closure. Handle while_stepping_control.
276         (print_command_lines): Handle while-stepping.
277         (get_command_line, define_command, document_command): Adjust.
278         * remote.c (remote_download_tracepoint): Adjust.
279         * tracepoint.c (make_cleanup_free_actions, read_actions)
280         (free_actions, do_free_actions_cleanup): Remove.
281         (trace_actions_command): Use read_command_lines.
282         (validate_actionline): Use error in one place.
283         (encode_actions_1): New, extracted from...
284         (encode_actions): ...this. Also use cleanups for exception
285         safety.
286         (trace_dump_command): Adjust.
287         * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
288         it's tracepoint.
289
290 2010-03-23  Mike Frysinger  <[email protected]>
291
292         * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
293
294 2010-03-22  Stan Shebs  <[email protected]>
295
296         * value.c (value_static_field): Be lazy about the field's value.
297
298 2010-03-22  Reid Kleckner  <[email protected]>
299
300         PR gdb/11094
301         * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
302         bp_jit_event.
303         (disable_breakpoints_in_shlibs): Likewise.
304
305 2010-03-22  Ulrich Weigand  <[email protected]>
306
307         * dwarf2read.c (partial_die_parent_scope): Work around buggy
308         GCC 4.1 debug info generation (GCC PR c++/28460).
309         (determine_prefix): Likewise.
310
311 2010-03-20  Daniel Jacobowitz  <[email protected]>
312
313         * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
314         get_current_arch.
315         * tui/tui-layout.c (extract_display_start_addr): Likewise.
316
317 2010-03-19  Stan Shebs  <[email protected]>
318
319         * ax-gdb.c (gen_fetch): Handle bool.
320         (gen_usual_unary): Ditto.
321         (gen_cast): Ditto.
322         (gen_equal): New function.
323         (gen_less): New function.
324         (gen_expr_binop_rest): Call them, also return integer type from
325         logical operations.
326         (gen_expr): Ditto.
327
328 2010-03-19  Tom Tromey  <[email protected]>
329
330         * jv-lang.c (jv_dynamics_objfile_data_key)
331         (jv_type_objfile_data_key): New globals.
332         (class_symtab): Move earlier.
333         (jv_per_objfile_free): New function.
334         (get_dynamics_objfile): Call set_objfile_data.  Add 'gdbarch'
335         parameter.
336         Remove ancient #if 1.
337         (add_class_symbol): Remove redundant declaration.
338         (java_lookup_class): Use alloc_type, not alloc_type_arch.
339         (java_link_class_type): Mark as static.  Update.
340         (jv_clear_object_type): New function.
341         (set_java_object_type): Likewise.
342         (get_java_object_type): Use set_java_object_type.
343         (is_object_type): Likewise.
344         (_initialize_java_language): Register new objfile keys.
345         (get_java_class_symtab): Add 'gdbarch' parameter.
346         (add_class_symtab_symbol): Update.
347         (type_from_class): Update.
348
349 2010-03-19  Stan Shebs  <[email protected]>
350
351         * ax-general.c (ax_const_l): Fix a sizing bug. 
352
353 2010-03-18  Joel Brobecker  <[email protected]>
354
355         GDB 7.1 released.
356
357 2010-03-18  Stan Shebs  <[email protected]>
358             Pedro Alves  <[email protected]>
359
360         * target.h (struct target_ops): New method
361         to_set_circular_trace_buffer.
362         (target_set_circular_trace_buffer): New macro.
363         * target.c (update_current_target): Add
364         to_set_circular_trace_buffer, fix to_set_disconnected_tracing
365         default behavior.
366         * remote.c (remote_set_circular_trace_buffer): New function.
367         (init_remote_ops): Add it to vector.
368         * tracepoint.h (struct trace_status): New field traceframes_created,
369         change buffer_size and buffer_free to int.
370         * tracepoint.c (circular_trace_buffer): New global.
371         (start_tracing): Send values of disconnected tracing and circular
372         trace buffer settings.
373         (set_circular_trace_buffer): New function.
374         (parse_trace_state): Handle total space and frames created.
375         (trace_status_command): Display total space and total frames
376         created.
377         (trace_save): Write out new status values.
378         (parse_trace_status): Set traceframe_count, traceframes_created,
379         buffer_free and buffer_size to -1 by default.
380         (_initialize_tracepoint): New setshow for circular-trace-buffer.
381         * NEWS: Mention the circular trace buffer option.
382
383 2010-03-18  Tom Tromey  <[email protected]>
384
385         * infcmd.c (finish_command_continuation): Wrap print_return_value
386         in TRY_CATCH.
387
388 2010-03-18  Joel Brobecker  <[email protected]>
389
390         * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
391         DIE has a name before creating the associated partial symbol.
392         (read_func_scope): Emit a complaint if the subprogram does not
393         have a name or when we can't extract the subprogram PC bounds.
394
395 2010-03-18  Ulrich Weigand  <[email protected]>
396
397         * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
398         instead of selected frame architecture.
399
400 2010-03-18  Pedro Alves  <[email protected]>
401
402         * infcmd.c (until_command): Use ERROR_NO_INFERIOR.  Ensure there's
403         a valid selected thread, and that it is not running.
404         (advance_command): Ditto.
405         (finish_command): Ditto.
406
407 2010-03-17 Stan Shebs  <[email protected]>
408
409         * ax-gdb.c (require_rvalue): Disallow non-scalars.
410
411         * infcall.c: Include tracepoint.h.
412         (call_function_by_hand): Disallow calls in tfind mode.
413         * infcmd.c: Include tracepoint.h.
414         (ensure_not_tfind_mode): New function.
415         (continue_1): Call it.
416         (step_1) Ditto.
417         (jump_command): Ditto.
418         (signal_command): Ditto.
419         (advance_command): Ditto.
420         (until_command): Ditto.
421         (finish_command): Ditto.
422         * tracepoint.h (disconnect_or_stop_tracing): Declare.
423
424         * ax-gdb.h (struct axs_value): New field optimized_out.
425         (gen_trace_for_var): Add gdbarch argument.
426         * ax-gdb.c (gen_trace_static_fields): New function.
427         (gen_traced_pop): Call it, add gdbarch argument.
428         (gen_trace_for_expr): Update call to it.
429         (gen_trace_for_var): Ditto, and report optimized-out variables.
430         (gen_struct_ref_recursive): Check for optimized-out value.
431         (gen_struct_elt_for_reference): Ditto.
432         (gen_static_field): Pass gdbarch instead of expression, assume
433         optimization if field not found.
434         (gen_var_ref): Set the optimized_out flag.
435         (gen_expr): Error on optimized-out variable.
436         * tracepoint.c (collect_symbol): Handle struct-valued vars as
437         expressions, skip optimized-out variables with computed locations.
438         * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
439         erroring out if location expression missing.
440         (loclist_tracepoint_var_ref): Don't error out here.
441
442 2010-03-17  Tom Tromey  <[email protected]>
443
444         * dwarf2read.c (dwarf2_get_section_info): Handle case where no
445         DWARF data is available.
446
447 2010-03-17  Daniel Jacobowitz  <[email protected]>
448
449         * symfile.c (generic_load): Reset breakpoints after loading.
450
451 2010-03-17  Tom Tromey  <[email protected]>
452
453         * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
454
455 2010-03-17  Jan Kratochvil  <[email protected]>
456
457         * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
458         create_breakpoint call, adjust the parameters.
459
460 2010-03-16  Jan Kratochvil  <[email protected]>
461             Chandru <[email protected]>
462
463         * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
464         * valarith.c (value_subscripted_rvalue): Suppress error if
465         TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
466
467 2010-03-16  Holger Hans Peter Freyther  <[email protected]>
468
469         * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
470
471 2010-03-16  Joel Brobecker  <[email protected]>
472
473         * ada-tasks.c (task_command_1): Check that the task ptid is valid
474         before doing the associated thread switch.
475
476 2010-03-16  Daniel Jacobowitz  <[email protected]>
477
478         * MAINTAINERS: Update my email address.
479
480 2010-03-16  Vladimir Prus  <[email protected]>
481
482         Simplify MI breakpoint setting.
483
484         * breakpoint.c (break_command_really): Make nonstatic and
485         rename to...
486         (create_breakpoint): ...this. Rename prior function by this name
487         to...
488         (create_breakpoint_sal): ...this.
489         (create_breakpoints): Rename to...
490         (create_breakpoints_sal): ...this.
491         (set_breakpoint): Remove.
492         * breakpoint.h: Adjust to above changes.
493         * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
494
495 2010-03-15 Stan Shebs  <[email protected]>
496
497         * ax-gdb.c: Include cp-support.h.
498         (find_field): Remove.
499         (gen_primitive_field): New function.
500         (gen_struct_ref_recursive): New function.
501         (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
502         of find_field.
503         (gen_static_field): New function.
504         (gen_struct_elt_for_reference): New.
505         (gen_namespace_elt): New.
506         (gen_maybe_namespace_elt): New.
507         (gen_aggregate_elt_ref): New.
508         (gen_expr): Add OP_SCOPE, display opcode name in error message.
509
510 2010-03-15  Tom Tromey  <[email protected]>
511
512         * dwarf2read.c (die_needs_namespace): Also return 0 for
513         DW_TAG_subprogram.
514
515 2010-03-15  Sami Wagiaalla  <[email protected]>
516
517         PR c++/7936:
518         * cp-support.h: Added char *declaration element to using_direct
519         data struct.
520         (cp_add_using): Added char *declaration argument.
521         (cp_add_using_directive): Ditto.
522         (cp_lookup_symbol_imports): made extern.
523         * cp-namespace.c: Updated with the above changes.
524         * dwarf2read.c (read_import_statement): Ditto.
525         (read_namespace): Ditto.
526         (read_import_statement): Support import declarations.
527         * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
528         declarations.
529         Added support for 'declaration_only' search.
530         (cp_lookup_symbol_namespace): Attempt to search for the name as
531         is before consideration of imports.
532         * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
533         search at every block level search.
534         Now takes language argument.
535         (lookup_symbol_aux): Updated.
536
537 2010-03-15  Tom Tromey  <[email protected]>
538
539         * c-exp.y (name_not_typename): Add 'operator' clause.
540
541 2010-03-15  Ralf Corsepius  <[email protected]>  (tiny change)
542
543         * configure.ac: Exit if ${gdb_target_obs}" is not set.
544         * configure: Regenerate.
545
546 2010-03-15  Jan Kratochvil  <[email protected]>
547
548         * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
549         and ".sdynbss".  Update the comment.
550
551 2010-03-15  Jie Zhang  <[email protected]>
552
553         * MAINTAINERS: Update my email address.
554
555 2010-03-14  Daniel Jacobowitz  <[email protected]>
556
557         * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
558
559 2010-03-14  Daniel Jacobowitz  <[email protected]>
560
561         * charset.c [USE_WIN32API]: Include <windows.h>.
562          (_initialize_charset): Correct type of w32_host_default_charset.
563
564 2010-03-14  Pedro Alves  <[email protected]>
565
566         * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
567
568 2010-03-12  Tom Tromey  <[email protected]>
569
570         PR c++/9708:
571         * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
572         in a lexical block does not need a namespace.
573         (new_symbol) <DW_TAG_variable>: Put extern variables on
574         list_in_scope in all cases.
575
576 2010-03-12 Stan Shebs  <[email protected]>
577
578         * ax-gdb.c (gen_expr): Add shift expressions.
579         (gen_expr_binop_rest): Ditto.
580
581 2010-03-12  Sami Wagiaalla  <[email protected]>
582
583         * buildsym.c (finish_block): Reset using_directives pointer
584         after block initialization.
585
586 2010-03-12  H.J. Lu  <[email protected]>
587
588         * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
589         * i386-tdep.c (i386_word_names): Likewise.
590
591 2010-03-12  Pedro Alves  <[email protected]>
592
593         * target.c (memory_xfer_partial): Don't use the stack cache if
594         inspecting trace frames.
595         * tracepoint.c (finish_tfind_command): Invalidate the target
596         dcache.
597
598 2010-03-11  Jan Kratochvil  <[email protected]>
599
600         * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
601         for the PIC displacement, print also the displacement value.
602         (svr4_exec_displacement):  Print DISPLACEMENT if INFO_VERBOSE.
603
604 2010-03-10  Kevin Buettner  <[email protected]>
605
606         * remote-mips.c (close_ports, mips_initialize_cleanups)
607         (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
608         (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
609         (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
610         (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
611         (pmon_check_entry_address, pmon_check_total, pmon_end_download)
612         (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
613         comments describing each of these functions.
614         (mips_enter_debug, mips_exit_debug, common_open)
615         (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
616         blank line after the comment describing the function.
617
618 2010-03-10  Jan Kratochvil  <[email protected]>
619
620         * solib-svr4.c (svr4_exec_displacement): Return now success, new
621         parameter displacementp.  Update comment.
622         (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
623         element exists.  Return if svr4_exec_displacement was not successful.
624         Update comment.
625
626 2010-03-10  Jan Kratochvil  <[email protected]>
627             Daniel Jacobowitz  <[email protected]>
628
629         * solib-svr4.c (read_program_header): Support type == -1 to read
630         all program headers.
631         (read_program_headers_from_bfd): New function.
632         (svr4_static_exec_displacement): Remove and move the comment ...
633         (svr4_exec_displacement): ... here.  Remove variable found.  New
634         variable displacement.  Check also DYNAMIC.  Verify DISPLACEMENT
635         alignment for ELF targets.  Compare target vs. exec_bfd PHDRs for ELF
636         targets using read_program_headers_from_bfd.  Remove the call of
637         svr4_static_exec_displacement.
638
639 2010-03-10  Tom Tromey  <[email protected]>
640
641         * dwarf2read.c (struct pubnames_header): Remove.
642         (_PUBNAMES_HEADER): Remove.
643         (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
644         (struct aranges_header): Remove.
645         (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
646         (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
647         (PUBNAMES_SECTION): Remove.
648         (ARANGES_SECTION): Remove.
649         (dwarf2_locate_sections): Don't handle pubnames or aranges.
650         (dwarf2_build_psymtabs): Remove dead code.
651         (dwarf2_build_psymtabs_easy): Remove.
652
653 2010-03-10  Tom Tromey  <[email protected]>
654
655         * elfread.c (elf_symfile_read): Don't call
656         dwarf2_build_frame_info.
657         * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
658         (struct dwarf2_per_objfile) <objfile>: New field.
659         (dwarf2_has_info): Now idempotent.  Set objfile field.
660         (dwarf2_read_section): Check and set readin field.  Call
661         posix_madvise.
662         (dwarf2_build_psymtabs): Don't read all sections.
663         (read_type_comp_unit_head): Read types section.
664         (create_debug_types_hash_table): Likewise.
665         (init_cu_die_reader): Add asserts.
666         (process_type_comp_unit): Add assert.
667         (dwarf2_build_psymtabs_hard): Read info section.
668         (load_partial_comp_unit): Add assert.
669         (create_all_comp_units): Read info section.
670         (load_full_comp_unit): Likewise.
671         (dwarf2_ranges_read): Read ranges section.
672         (dwarf2_record_block_ranges): Add assert.
673         (dwarf2_read_abbrevs): Read abbrev section.
674         (read_indirect_string): Read str section.
675         (dwarf_decode_line_header): Read line section.
676         (read_signatured_type_at_offset): Read types section.
677         (dwarf_decode_macros): Read macinfo section.
678         (dwarf2_symbol_mark_computed): Read loc section.
679         * dwarf2-frame.c (dwarf2_frame_find_fde): Call
680         dwarf2_build_frame_info.
681         (dwarf2_build_frame_info): Unconditionally set
682         dwarf2_frame_objfile_data on the objfile.
683         * configure.ac: Check for posix_madvise.
684         * config.in, configure: Rebuild.
685
686 2010-03-10  Tom Tromey  <[email protected]>
687
688         * xcoffread.c (xcoff_start_psymtab): Update.
689         (xcoff_end_psymtab): Update.
690         * psymtab.c (allocate_psymtab): Remove dead code.
691         * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
692         void*.
693         * mdebugread.c (parse_partial_symbols): Update.
694         (new_psymtab): Likewise.
695         * dwarf2read.c (process_psymtab_comp_unit): Update.
696         (psymtab_to_symtab_1): Update.
697         * dbxread.c (start_psymtab): Update.
698         (end_psymtab): Likewise.
699
700 2010-03-10  Tom Tromey  <[email protected]>
701
702         * xcoffread.c: Include psymtab.h.
703         (xcoff_sym_fns): Update.
704         * symtab.h (struct partial_symbol): Remove.
705         (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
706         (struct partial_symtab): Remove.
707         (PSYMTAB_TO_SYMTAB): Remove.
708         (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
709         (find_pc_sect_psymtab): Remove.
710         (find_pc_sect_symtab_via_partial): Declare.
711         (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
712         (find_main_psymtab): Remove.
713         (find_main_filename): Declare.
714         (fixup_psymbol_section): Remove.
715         (fixup_section): Declare.
716         * symtab.c: Include psymtab.h.
717         (lookup_symtab): Use lookup_symtab method.
718         (lookup_partial_symtab): Remove.
719         (find_pc_sect_psymtab_closer): Remove.
720         (find_pc_sect_psymtab): Remove.
721         (find_pc_sect_symtab_via_partial): New function.
722         (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
723         (fixup_section): No longer static.
724         (fixup_psymbol_section): Remove.
725         (lookup_symbol_aux): Use lookup_symbol_aux_quick.
726         (lookup_global_symbol_from_objfile): Likewise.
727         (lookup_symbol_aux_psymtabs): Remove.
728         (lookup_symbol_aux_quick): New function.
729         (lookup_symbol_global): Use lookup_symbol_aux_quick.
730         (lookup_partial_symbol): Remove.
731         (basic_lookup_transparent_type_quick): New function.
732         (basic_lookup_transparent_type): Use it.
733         (find_main_psymtab): Remove.
734         (find_main_filename): New function.
735         (find_pc_sect_symtab): Use find_pc_sect_symtab method.
736         (find_line_symtab): Use expand_symtabs_with_filename method.
737         (output_partial_symbol_filename): New function.
738         (sources_info): Use map_partial_symbol_filenames.
739         (struct search_symbols_data): New type.
740         (search_symbols_file_matches): New function.
741         (search_symbols_name_matches): Likewise.
742         (search_symbols): Use expand_symtabs_matching method.
743         (struct add_name_data): Rename from add_macro_name_data.
744         (add_macro_name): Update.
745         (add_partial_symbol_name): New function.
746         (default_make_symbol_completion_list): Use
747         map_partial_symbol_names.
748         (struct add_partial_symbol_name): New type.
749         (maybe_add_partial_symtab_filename): New function.
750         (make_source_files_completion_list): Use
751         map_partial_symbol_filenames.
752         (expand_line_sal): Use expand_symtabs_with_filename method.
753         * symmisc.c: Include psymtab.h.
754         (print_objfile_statistics): Use print_stats method.
755         (dump_objfile): Use dump method.
756         (dump_psymtab, maintenance_print_psymbols)
757         (maintenance_info_psymtabs, maintenance_check_symtabs)
758         (extend_psymbol_list): Remove.
759         * symfile.h (struct quick_symbol_functions): New struct.
760         (struct sym_fns) <qf>: New field.
761         (sort_pst_symbols): Remove.
762         (increment_reading_symtab): Declare.
763         * symfile.c: Include psymtab.h.
764         (compare_psymbols, sort_pst_symbols): Remove.
765         (psymtab_to_symtab): Remove.
766         (increment_reading_symtab): New function.
767         (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
768         method.
769         (set_initial_language): Use find_main_filename.
770         (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
771         (free_named_symtabs): Remove unused code.
772         (start_psymtab_common, add_psymbol_to_bcache)
773         (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
774         Remove.
775         * stack.c: Include psymtab.h, symfile.h.
776         (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
777         * source.h (psymtab_to_fullname): Don't declare.
778         * source.c: Include psymtab.h.
779         (select_source_symtab): Use find_last_source_symtab method.
780         (forget_cached_source_info): Use forget_cached_source_info
781         method.
782         (find_and_open_source): No longer static.
783         (psymtab_to_fullname): Remove.
784         * somread.c: Include psymtab.h.
785         (som_sym_fns): Update.
786         * psympriv.h: New file.
787         * psymtab.h: New file.
788         * psymtab.c: New file.
789         * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
790         (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
791         * objfiles.c: Include psymtab.h.
792         (objfile_relocate1): Use relocate method.
793         (objfile_has_partial_symbols): Use has_symbols method.
794         * mipsread.c: Include psymtab.h.
795         (ecoff_sym_fns): Update.
796         * mi/mi-cmd-file.c: Include psymtab.h.
797         (print_partial_file_name): New function.
798         (mi_cmd_file_list_exec_source_files): Use
799         map_partial_symbol_filenames.
800         * mdebugread.c: Include psympriv.h.
801         * machoread.c: Include psympriv.h.
802         (macho_sym_fns): Update.
803         * m2-exp.y (yylex): Use lookup_symtab.
804         * elfread.c: Include psympriv.h.
805         (elf_sym_fns): Update.
806         * dwarf2read.c: Include psympriv.h.
807         * dbxread.c: Include psympriv.h.
808         (aout_sym_fns): Update.
809         * cp-support.c: Include psymtab.h.
810         (read_in_psymtabs): Remove.
811         (make_symbol_overload_list_qualified): Use
812         expand_symtabs_for_function method.
813         * coffread.c: Include psympriv.h.
814         (coff_sym_fns): Update.
815         * blockframe.c: Include psymtab.h.
816         (find_pc_partial_function): Use find_pc_sect_symtab method.
817         * ada-lang.h (ada_update_initial_language): Update.
818         * ada-lang.c: Include psymtab.h.
819         (ada_update_initial_language): Remove 'main_pst' argument.
820         (ada_lookup_partial_symbol): Remove.
821         (struct ada_psym_data): New type.
822         (ada_add_psyms): New function.
823         (ada_add_non_local_symbols): Use map_ada_symtabs method.
824         (struct add_partial_datum): New type.
825         (ada_add_partial_symbol_completions): New function.
826         (ada_make_symbol_completion_list): Use map_partial_symbol_names.
827         (ada_exception_support_info_sniffer): Update.
828         * Makefile.in (SFILES): Add psymtab.c.
829         (COMMON_OBS): Add psymtab.o.
830         (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
831
832 2010-03-10  Pierre Muller  <[email protected]>
833
834         * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
835
836 2010-03-10  Sami Wagiaalla  <[email protected]>
837
838         PR C++/11236:
839         * cp-namespace.c (cp_add_using): Deleted.
840         (cp_add_using_directive): Use obstack allocations.
841         Merged the function cp_add_using into this one.
842         Added 'struct obstack *' argument.
843         (cp_scan_for_anonymous_namespaces): Updated.
844         * cp-support.h: Updated.
845         * dwarf2read.c (read_import_statement): Updated.
846         (read_namespace): Updated.
847
848 2010-03-10  Pierre Muller  <[email protected]>
849
850         * windows-nat.c (cygwin_conv_path): Remove old macro.
851
852 2010-03-10  Pedro Alves  <[email protected]>
853
854         * breakpoint.c (condition_command): Handle watchpoint conditions.
855         (is_hardware_watchpoint): Add comment.
856         (is_watchpoint): New.
857         (update_watchpoint): Don't reparse the watchpoint's condition
858         unless necessary.
859         (WP_IGNORE): New.
860         (watchpoint_check): Use it.
861         (bpstat_check_watchpoint): Handle it.
862         (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
863         conditions in a frame where it makes sense.
864         (watch_command_1): Store the innermost block of the condition
865         expression.
866         (delete_breakpoint): Delete the watchpoint condition expression.
867         * breakpoint.h (struct bp_location) <cond>: Update comment.
868         (struct breakpoint): New field `cond_exp_valid_block'.
869
870 2010-03-09  Joel Brobecker  <[email protected]>
871
872         Adjust handling of Ada DIEs after dwarf2_physname patch.
873         * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
874
875 2010-03-09  Christopher Faylor  <[email protected]>
876             Pierre Muller  <[email protected]>
877
878         * windows-nat.c (cygwin_conv_path): Redefine to properly convert
879         from/to posix/win32.
880         (windows_make_so): Use non-Cygwin 1.7 specific function.
881         (windows_create_inferior): Make sure that cygallargs points to
882         original args in non Cygwin 1.7. case.
883
884 2010-03-09  Michael Snyder  <[email protected]>
885
886         * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
887         after target_read_memory to get host byte order.
888         (i386_process_record): Ditto.
889
890 2010-03-09  Keith Seitz  <[email protected]>
891
892         Based on work from Daniel Jacobowitz  <[email protected]>
893         * c-typeprint.c (cp_type_print_method_args): For non-static methods,
894         print out const or volatile qualifiers, too.
895         (c_type_print_args): Add parameters show_artificial and language.
896         Skip artificial parameters when requested.
897         Use the appropriate language printer.
898         (c_type_print_varspec): Tell c_type_print_args to skip artificial
899         parameters and pass language_c.
900         * dwarf2read.c (die_list): New file global.
901         (struct partial_die_info): Update comments for name field.
902         (pdi_needs_namespace): Renamed to ...
903         (die_needs_namespace): ... this. Rewrite.
904         (dwarf2_linkage_name): Remove.
905         (add_partial_symbol): Do not predicate the call to
906         partial_die_full_name based on pdi_needs_namespace.
907         Remove call to cp_check_possible_namespace_symbols and associated
908         outdated comments.
909         (guess_structure_name): Do not inspect child subprogram DIEs.
910         (dwarf2_fullname): Update comments.
911         Use die_needs_namespace to assist in computing the name.
912         (read_func_scope): Use dwarf2_name to get the DIE's name.
913         Use dwarf2_physname to get the "linkage name" of the DIE.
914         (dwarf2_add_member_field): Use dwarf2_physname instead of
915         dwarf2_linkage_name.
916         (read_structure_type): For structs and classes, set TYPE_NAME, too.
917         (determine_class): Remove.
918         (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
919         except Ada.
920         (new_symbol): Unconditionally call dwarf2_name.
921         Compute the "linkage name" using dwarf2_physname.
922         Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
923         When determining to scan for anonymous C++ namespaces, ignore
924         the linkage name.
925         (dwarf2_physname): New function.
926         (dwarf2_full_name): Move content to new function and call
927         that.
928         (dwarf2_compute_name): "New" function.
929         (_initialize_dwarf2_read): Initialize die_list.
930         * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
931         physname.
932         (gnu_v3_print_method_ptr): Use the physname for virtual methods
933         without a demangled name.
934         Print out type information for non-virtual methods.
935         * linespec.c (decode_line_1): Force ANY string using "::" (or
936         "." for java) to use decode_compound, and clean up any stray quoting.
937         If we found a file symtab, re-evaluate whether the remainder is_quoted.
938         (decode_compound): Stop consuming at an open parenthesis.
939         Keep template parameters.
940         Keep any overload information.
941         Keep keywords like "const".
942         Remove paren_pointer.
943         Move is_quoted check from set_flags to here.
944         Remove #if 0 code from 2000. Ten years is long enough.
945         (find_method): Before comparing symbol names, canonicalize the string
946         from the user.
947         If a specific overload is requested, find it. Otherwise throw an error.
948         (find_method_overload_end): New function.
949         (set_flags): Remove.
950         (decode_compound): Assume that parentheses are matched.
951         It's a lot easier.
952         * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
953         to cplus_demangle.
954         * linespec.c (decode_line_1): Keep important keywords like
955         "const" and "volatile".
956         * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
957         * typeprint.h (c_type_print_args): Add declaration.
958         * ui-file.c (do_ui_file_obsavestring): New function.
959         (ui_file_obsavestring): New function.
960         * ui-file.h (ui_file_obsavestring): Add declaration.
961         * valops.c (find_overload_match): Resolve the object to
962         a non-pointer type.
963         If the object is a data member, search the object for the member
964         and return with staticp set.
965         Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
966         Do not attempt to extract a function name from non-function types.
967         If the extracted function name and the original name are the same,
968         we don't have a C++ method.
969
970         From Jan Kratochvil  <[email protected]>:    
971         * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
972
973         * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
974         and arguments from symbol lookups.
975         * ax-gdb.c (gen_expr): Likewise.
976         * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
977         cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
978         lookup_possible_namespace_symbol): Likewise.
979         * cp-support.c (read_in_psymtabs): Likewise.
980         * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
981         * language.h (la_lookup_symbol_nonlocal): Likewise.
982         * scm-valprint.c (scm_inferior_print): Likewise.
983         * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
984         * solib-svr.c (elf_lookup_lib): Likewise.
985         * solib.c (show_auto_solib_add): Likewise.
986         * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
987         * symmisc.c (maintenance_check_symtabs): Likewise.
988         * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
989         lookup_symbol_aux_local, lookup_symbol_aux_block,
990         lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
991         lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
992         lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
993         basic_lookup_transparent_type, find_main_psymtab,
994         lookup_block_symbol): Likewise.
995         * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
996         lookup_symbol_global, lookup_symbol_aux_block,
997         lookup_symbol_partial_symbol, lookup_block_symbol,
998         lookup_global_symbol, value_maybe_namespace_elt): Likewise.
999
1000 2010-03-09  Pierre Muller  <[email protected]>
1001
1002         * python/python-internal.h: Include symtab.h.
1003
1004 2010-03-09  Joel Brobecker  <[email protected]>
1005             Pierre Muller  <[email protected]>
1006
1007         * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
1008         * p-valprint.c (pascal_val_print): Remove undeed block and fix
1009         indentation.
1010
1011 2010-03-08  Tom Tromey  <[email protected]>
1012
1013         * breakpoint.c (breakpoint_1): Add "QUIT".
1014
1015 2010-03-08  Daniel Jacobowitz  <[email protected]>
1016             Pedro Alves  <[email protected]>
1017
1018         * solib.c (solib_find): Replace extension if
1019         solib_symbols_extension is set in the target gdbarch.
1020         * arm-symbian-tdep.c (arm_symbian_init_abi): Set
1021         solib_symbols_extension to "sym".
1022         * gdbarch.sh (solib_symbols_extension): New variable.
1023         (pstring): New function.
1024         * gdbarch.h, gdbarch.c: Regenerate.
1025
1026 2010-03-08  Tom Tromey  <[email protected]>
1027
1028         PR cli/9591:
1029         * NEWS: Update.
1030         * utils.c: Include main.h.
1031         (fputs_maybe_filtered): Don't paginate if `batch_flag'.
1032         (defaulted_query): Use default answer if `batch_flag'.
1033         * main.h (batch_flag): Declare.
1034         * main.c (batch_flag): New global.
1035         (captured_main): Remove 'batch'.  Update.
1036
1037 2010-03-08  Kevin Buettner  <[email protected]>
1038
1039         From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
1040         and Kevin Buettner:
1041
1042         * remote-mips.c (rockhopper_ops): New target_ops struct.
1043         (MON_ROCKHOPPER): New mips_monitor_type.
1044         (read_hex_value): New function.
1045         (mips_request): Send 8-byte values with a 'T' packet.  Read the
1046         packet argument as a string and use read_hex_value to parse it.  
1047         (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
1048         (rockhopper_open): New function.
1049         (mips_wait): Read the PC, FP and SP fields as strings.  Use
1050         read_hex_value to parse them and mips_set_register to commit them.
1051         (mips_set_register): New function.
1052         (mips_fetch_registers): Do not cast register value to "unsigned"
1053         when reading a MON_ROCKHOPPER 't' packet.  Use mips_set_register.
1054         (mips_store_registers): Use a 'T' packet to set registers when
1055         using MON_ROCKHOPPER.
1056         (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
1057         and expect the total to be printed before the entry address.
1058         (_initialize_remote_mips): Initialize and add rockhopper_ops.
1059
1060 2010-03-08  Kevin Buettner  <[email protected]>
1061
1062         * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
1063         Change return value to int.  Store value fetched in location
1064         addressed by `val'.  Use function's return value as success
1065         or failure indicator.  Adjust all callers.
1066
1067 2010-03-08  Pierre Muller  <[email protected]>
1068
1069         * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
1070
1071 2010-03-08  Jan Kratochvil  <[email protected]>
1072             Hui Zhu  <[email protected]>
1073
1074         * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
1075         tmp_to_stopped_data_address.
1076         (record_open): Reset tmp_to_stopped_by_watchpoint and
1077         tmp_to_stopped_data_address.
1078         * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
1079         to_stopped_data_address.
1080
1081 2010-03-08  Hui Zhu  <[email protected]>
1082
1083         * i386-tdep.c (i386_process_record): Initialize regnum.
1084
1085 2010-03-08  Jan Kratochvil  <[email protected]>
1086
1087         * symfile.c (addr_info_make_relative): New variable sect_name, use it.
1088         Do not warn on ".gnu.liblist" and ".gnu.conflict".
1089
1090 2010-03-08  Joel Brobecker  <[email protected]>
1091
1092         Memory error when reading wrong core file.
1093         * solib-svr4.c (solib_svr4_r_map): catch and print all exception
1094         errors while reading the inferior memory, and return zero if
1095         an exception was raised.
1096
1097 2010-03-07  Michael Snyder  <[email protected]>
1098
1099         * record.c (record_restore): Rename tmpu8 to rectype.
1100
1101         * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
1102         tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
1103
1104         (i386_record_push): Rename local tmpulongest to addr.
1105
1106         (i386_process_record): Rename local tmpulongest to addr.
1107
1108         Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
1109         addr64.
1110
1111         Rename local variable tmpu8 to opcode8 and regnum.
1112
1113 2010-03-07  Joel Brobecker  <[email protected]>
1114
1115         * remote.c (remote_get_ada_task_ptid): New function.
1116         (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
1117
1118 2010-03-06  Christopher Faylor  <[email protected]>
1119
1120         * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
1121         block.  Define helper macros to reduce ifdefs in code.
1122         (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
1123         size.  Call unadorned GetModuleFileNameEx rather than
1124         GetModuleFileNameEx*.
1125         (windows_make_so): Use __PMAX to denote maximum buffer size and
1126         cygwin_buf_t for buffer type.  Use GetSystemDirectory{W,A} as
1127         appropriate.
1128         (get_image_name): Use __PMAX to denote maximum buffer size.
1129         (handle_load_dll): Likewise.
1130         (windows_pid_to_exec_file): Likewise.
1131         (windows_create_inferior): Add many accommodations for older Cygwin and
1132         non-Cygwin.
1133         (bad_GetModuleFileNameExW): Control inclusion of this function based on
1134         __USEWIDE conditional.
1135         (bad_GetModuleFileNameExA): Likewise.
1136         (_initialize_loadable): Just use real function names without the dyn_
1137         part since they are defined earlier.
1138
1139 2010-03-05  Corinna Vinschen  <[email protected]>
1140             Tom Tromey  <[email protected]>
1141
1142         * utils.c (host_char_to_target): Add 'gdbarch' argument.
1143         (parse_escape): Likewise.
1144         * python/py-utils.c (unicode_to_target_string): Update.
1145         (unicode_to_target_python_string): Update.
1146         (target_string_to_unicode): Update.
1147         * printcmd.c (printf_command): Update.
1148         * p-exp.y (yylex): Update.
1149         * objc-exp.y (yylex): Update.
1150         * mi/mi-parse.c: Include charset.h.
1151         (mi_parse_escape): New function.
1152         (mi_parse_argv): Use it.
1153         * jv-exp.y (yylex): Update.
1154         * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
1155         function.
1156         (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
1157         * gdbarch.sh (auto_charset, auto_wide_charset): New.
1158         * gdbarch.c: Rebuild.
1159         * gdbarch.h: Rebuild.
1160         * defs.h (parse_escape): Update.
1161         * cli/cli-setshow.c: Include arch-utils.h.
1162         (do_setshow_command): Update.
1163         * cli/cli-cmds.c (echo_command): Update.
1164         * charset.h (target_charset, target_wide_charset): Update.
1165         * charset.c: Include arch-utils.h.
1166         (target_charset_name): Default to "auto".
1167         (target_wide_charset_name): Likewise.
1168         (show_target_charset_name): Handle "auto".
1169         (show_target_wide_charset_name): Likewise.
1170         (be_le_arch): New global.
1171         (set_be_le_names): Add 'gdbarch' argument.
1172         (validate): Likewise.  Don't call set_be_le_names.
1173         (set_charset_sfunc, set_host_charset_sfunc)
1174         (set_target_charset_sfunc, set_target_wide_charset_sfunc):
1175         Update.
1176         (target_charset): Add 'gdbarch' argument.
1177         (target_wide_charset): Likewise.  Remove 'byte_order' argument.
1178         (auto_target_charset_name): New global.
1179         (default_auto_charset, default_auto_wide_charset): New functions.
1180         (_initialize_charset): Set auto_target_charset_name.  Allow "auto"
1181         for target charsets.  Copy result of nl_langinfo.  Use GetACP if
1182         USE_WIN32API.
1183         * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
1184         remove 'byte_order' argument.  Update.
1185         (classify_type): Likewise.
1186         (c_emit_char): Update.
1187         (c_printchar): Update.
1188         (c_printstr): Update.
1189         (c_get_string): Update.
1190         (evaluate_subexp_c): Update.
1191         * arch-utils.h (default_auto_charset, default_auto_wide_charset):
1192         Declare.
1193         * python/python.c (gdbpy_target_charset): New function.
1194         (gdbpy_target_wide_charset): Likewise.
1195         (GdbMethods): Update.
1196         * NEWS: Update.
1197
1198 2010-03-05  Ulrich Weigand  <[email protected]>
1199
1200         * symfile.c (build_section_addr_info_from_objfile): Do not mask
1201         off high address bits.
1202
1203 2010-03-05  Ulrich Weigand  <[email protected]>
1204
1205         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
1206         address as UnsignedLongLong, not LongLong.
1207
1208 2010-03-05  Kevin Buettner  <[email protected]>
1209             Pedro Alves  <[email protected]>
1210
1211         * remote-mips.c (gdbthread.h): Include.
1212         (remote_mips_ptid): Declare.
1213         (mips_error): Only mourn the inferior when inferior_ptid is non-null.
1214         (common_open): Set inferior_ptid, add it as an inferior, and
1215         as a thread too.  Delete FIXME comment regarding start_remote().
1216         (mips_close): Invoke generic_mourn_inferior().
1217         (mips_kill): Make sure that target_mourn_inferior is invoked.
1218         (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
1219         it's now invoked from mips_close().
1220         (mips_load): Don't null out inferior_ptid.  Don't call
1221         clear_symtab_users().
1222         (mips_thread_alive, mips_pid_to_str): New functions.
1223         (_initialize_remote_mips): Initialize remote_mips_ptid.  Initialize
1224         to_thread_alive and to_pid_to_str operations.
1225
1226 2010-03-04  Tom Tromey  <[email protected]>
1227
1228         * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
1229         in DWARF 3 and later.
1230         (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
1231
1232 2010-03-04  Keith Seitz  <[email protected]>
1233
1234         * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
1235         If the filename portion of the linespec was quoted, recheck the
1236         remainder for additional quoting.
1237         (locate_first_half): Skip over completer chars, too.
1238
1239 2010-03-04  Tom Tromey  <[email protected]>
1240
1241         * printcmd.c (printf_command): Pass dummy argument to
1242         printf_filtered.
1243
1244 2010-03-04  Doug Evans  <[email protected]>
1245
1246         * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
1247         unwound_fp.
1248
1249         * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
1250
1251 2010-03-04  Pedro Alves  <[email protected]>
1252
1253         * breakpoint.c (update_watchpoint): Create a sentinel location if
1254         the software watchpoint isn't watching any memory.
1255         (breakpoint_address_bits): Skip dummy software watchpoint locations.
1256
1257 2010-03-04  Pedro Alves  <[email protected]>
1258
1259         * utils.c (fputs_maybe_filtered): Check if there's already a top
1260         level interpreter before dereferencing it.  If there isn't one,
1261         don't paginate either.
1262
1263 2010-03-04  Matthew Gretton-Dann  <[email protected]>
1264
1265         * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
1266         the state right when single stepping.
1267         (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
1268         Get the next PC along with the instruction state.
1269         (thumb_get_next_pc): Remove.
1270         (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
1271
1272 2010-03-04  Hui Zhu  <[email protected]>
1273
1274         * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
1275
1276 2010-03-03  Pedro Alves  <[email protected]>
1277
1278         * utils.c (fputs_maybe_filtered): Always disable pagination if the
1279         top level interpreter is MI.
1280
1281 2010-03-03 Stan Shebs  <[email protected]>
1282
1283         * remote.c (remote_download_tracepoint): Iterate over locations.
1284         * tracepoint.c (validate_actionline): Ditto.
1285         (encode_actions): Add location argument.
1286         (trace_dump_command): Check all locations to see if stepping
1287         frame.
1288
1289 2010-03-03  H.J. Lu  <[email protected]>
1290             Eli Zaretskii  <[email protected]>
1291
1292         * NEWS: Add X86 general purpose registers section.
1293
1294 2010-03-03  Tom Tromey  <[email protected]>
1295
1296         PR mi/11098:
1297         * varobj.c (install_new_value): Handle case where new print_value
1298         is NULL.
1299
1300 2010-03-03  Dainis Jonitis  <[email protected]>
1301
1302         PR gdb/11345:
1303         * printcmd.c (printf_command): Print end of format string using
1304         printf_filtered.
1305
1306 2010-03-02  Tom Tromey  <[email protected]>
1307
1308         * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
1309         * defs.h (read_command_lines_1): Add missing 'void'.
1310         * cli/cli-script.c (recurse_read_control_structure): Add missing
1311         'void'.
1312         (read_next_line): Likewise.
1313         (read_command_lines_1): Likewise.
1314
1315 2010-03-02  Ulrich Weigand  <[email protected]>
1316
1317         * spu-tdep.c (spu_analyze_prologue): Track instruction to
1318         store backchain as part of prologue.
1319
1320 2010-03-02  Daniel Jacobowitz  <[email protected]>
1321
1322         * progspace.c (update_address_spaces): Update inferior address spaces
1323         also.
1324
1325 2010-03-02  Doug Evans  <[email protected]>
1326
1327         * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
1328         lowpc,highpc args to addrmap_set_empty.
1329
1330 2010-03-02  H.J. Lu  <[email protected]>
1331
1332         * amd64-tdep.c (amd64_byte_names): New.
1333         (amd64_word_names): Likewise.
1334         (amd64_dword_names): Likewise.
1335         (amd64_pseudo_register_name): Likewise.
1336         (amd64_pseudo_register_read): Likewise.
1337         (amd64_pseudo_register_write): Likewise.
1338         (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
1339         and num_mmx_regs.  Call set_gdbarch_pseudo_register_read,
1340         set_gdbarch_pseudo_register_write and
1341         set_tdesc_pseudo_register_name.  Don't call
1342         set_gdbarch_num_pseudo_regs.  Don't set mm0_regnum.
1343
1344         * i386-tdep.c (i386_num_mmx_regs): Removed.
1345         (i386_num_pseudo_regs): Likewise.
1346         (i386_byte_names): New.
1347         (i386_word_names): Likewise.
1348         (i386_byte_regnum_p): Likewise.
1349         (i386_word_regnum_p): Likewise.
1350         (i386_mmx_regnum_p): Updated.
1351         (i386_pseudo_register_name): Make it global.  Handle byte and
1352         word pseudo-registers.
1353         (i386_pseudo_register_read): Likewise.
1354         (i386_pseudo_register_write): Likewise.
1355         (i386_pseudo_register_type): Handle byte, word and dword
1356         pseudo-registers
1357         (i386_register_reggroup_p): Don't include pseudo
1358         registers, except for MXX, in any register groups.  Don't
1359         include pseudo byte, word, dword registers in general_reggroup.
1360         (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
1361         num_dword_regs, al_regnum, ax_regnum and eax_regnum.  Put MMX
1362         pseudo-registers after word pseudo-registers.  Call
1363         set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
1364
1365         * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
1366         al_regnum, num_word_regs, ax_regnum, num_dword_regs and
1367         eax_regnum.
1368         (i386_byte_regnum_p): New.
1369         (i386_word_regnum_p): Likewise.
1370         (i386_dword_regnum_p): Likewise.
1371         (i386_pseudo_register_name): Likewise.
1372         (i386_pseudo_register_read): Likewise.
1373         (i386_pseudo_register_write): Likewise.
1374
1375 2010-03-01  H.J. Lu  <[email protected]>
1376
1377         * target-descriptions.c (tdesc_type): Remove
1378         TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
1379         (tdesc_predefined_types): Likewise.
1380         (tdesc_gdb_type): Likewise.  Pass NULL to append_flags_type_flag
1381         if flag name is empty.
1382         (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
1383
1384         * features/i386/32bit-core.xml: Define i386_eflags.
1385         * features/i386/64bit-core.xml: Likewise.
1386
1387         * features/i386/32bit-sse.xml: Define i386_mxcsr.
1388         * features/i386/64bit-sse.xml: Likewise.
1389
1390         * features/i386/amd64-linux.c: Regenerated.
1391         * features/i386/amd64.c: Likewise.
1392         * features/i386/i386-linux.c: Likewise.
1393         * features/i386/i386.c: Likewise.
1394
1395 2010-03-01  Daniel Jacobowitz  <[email protected]>
1396
1397         * gdbtypes.c (append_composite_type_field_raw): New.
1398         (append_composite_type_field_aligned): Use the new function.
1399         * gdbtypes.h (append_composite_type_field_raw): Declare.
1400         * target-descriptions.c (struct tdesc_type_field): Add start and end.
1401         (struct tdesc_type_flag): New type.
1402         (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
1403         kind.  Add size to u.u.  Add u.f for flags.
1404         (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
1405         (tdesc_free_type): Likewise.
1406         (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
1407         (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
1408         (tdesc_add_bitfield, tdesc_add_flag): New.
1409         * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
1410         (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
1411         * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
1412         current_type.  Add current_type_size and current_type_is_flags.
1413         (tdesc_start_union): Clear the new fields.
1414         (tdesc_start_struct, tdesc_start_flags): New.
1415         (tdesc_start_field): Handle struct fields, including bitfields.
1416         (field_attributes): Make type optional.  Add start and end.
1417         (union_children): Rename to struct_union_children.
1418         (union_attributes): Rename to struct_union_attributes.  Add optional
1419         size.
1420         (flags_attributes): New.
1421         (feature_children): Add struct and flags.
1422         * features/gdb-target.dtd: Add flags and struct to features.
1423         Make field type optional.  Add field start and end.
1424
1425 2010-03-01  H.J. Lu  <[email protected]>
1426
1427         * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
1428         (amd64_linux_read_description): Likewise.
1429         (_initialize_amd64_linux_nat): Set to_read_description to
1430         amd64_linux_read_description.
1431
1432         * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
1433         (amd64_linux_register_name): Removed.
1434         (amd64_linux_register_type): Likewise.
1435         (amd64_linux_core_read_description): New.
1436         (amd64_linux_init_abi): Set target description to
1437         tdesc_amd64_linux if needed.  Support orig_rax in target
1438         description.  Don't call set_gdbarch_register_name nor
1439         set_gdbarch_register_type.  Call
1440         set_gdbarch_core_read_description.
1441         (_initialize_amd64_linux_tdep): Call
1442         initialize_tdesc_amd64_linux.
1443
1444         * amd64-linux-tdep.h (tdesc_amd64_linux): New.
1445
1446         * amd64-tdep.c:  Include "features/i386/amd64.c".
1447         (amd64_register_names): Removed.
1448         (amd64_register_name): Likewise.
1449         (amd64_register_type): Likewise.
1450         (amd64_init_abi):  Set num_core_regs and register_names.  Set
1451         target description to tdesc_amd64 if needed.  Don't call 
1452         set_gdbarch_register_name nor set_gdbarch_register_type.
1453         (_initialize_amd64_tdep): New.
1454
1455         * i386-linux-nat.c (i386_linux_read_description): New.
1456         (_initialize_i386_linux_nat): Set to_read_description to
1457         i386_linux_read_description.
1458
1459         * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
1460         (i386_linux_register_name): Removed.
1461         (i386_linux_core_read_description): New.
1462         (i386_linux_read_description): Likewise.
1463         (i386_linux_init_abi): Don't call set_gdbarch_register_name.
1464         Set target description to tdesc_i386_linux if needed.  Support
1465         orig_eax.  Set register_reggroup_p.  Call
1466         set_gdbarch_core_read_description.
1467         (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
1468
1469         * i386-linux-tdep.h (tdesc_i386_linux): New.
1470
1471         * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
1472         with I387_NUM_REGS.
1473
1474         * i386-tdep.c: Include "features/i386/i386.c".
1475         (i386_register_names): Make it const.
1476         (i386_mmx_names): Likewise.
1477         (i386_num_register_names): Removed.
1478         (i386_register_name): Likewise.
1479         (i386_eflags_type): Likewise.
1480         (i386_mxcsr_type): Likewise.
1481         (i386_sse_type): Likewise.
1482         (i386_register_type): Likewise.
1483         (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
1484         (i386_pseudo_register_name): New.
1485         (i386_pseudo_register_type): Likewise.
1486         (i386_mmx_type): Make it static.
1487         (i386_gdbarch_init): Check arch.  Replace I386_NUM_FREGS with
1488         I387_NUM_REGS.  Set num_core_regs and register_names.  Don't
1489         call set_gdbarch_register_name nor set_gdbarch_register_type.
1490         Set register_reggroup_p.  Set target description to tdesc_i386
1491         if needed.  Call set_tdesc_pseudo_register_type,
1492         set_tdesc_pseudo_register_name and tdesc_use_registers.
1493         (_initialize_i386_tdep): Call initialize_tdesc_i386.
1494         initialize_tdesc_x86_64.
1495
1496         * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
1497         i386_mxcsr_type and i386_sse_type.  Add num_core_regs,
1498         register_names, tdesc and register_reggroup_p.
1499         (I386_NUM_FREGS): Removed.
1500         (i386_eflags_type): Likewise.
1501         (i386_mxcsr_type): Likewise.
1502         (i386_mmx_type): Likewise.
1503         (i386_sse_type): Likewise.
1504         (i386_register_name): Likewise.
1505         (i386_regnum): Add I386_MXCSR_REGNUM.
1506         (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
1507
1508         * i387-tdep.h (I387_NUM_REGS): New.
1509
1510         * regformats/i386/i386-linux.dat: Generated.
1511         * regformats/i386/i386.dat: Likewise.
1512         * regformats/i386/amd64-linux.dat: Likewise.
1513         * regformats/i386/amd64.dat: Likewise.
1514
1515         * regformats/reg-i386-linux.dat: Removed.
1516         * regformats/reg-i386.dat: Likewise.
1517         * regformats/reg-x86-64-linux.dat: Likewise.
1518         * regformats/reg-x86-64.dat: Likewise.
1519
1520 2010-03-01  Corinna Vinschen  <[email protected]>
1521
1522         * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
1523         cygwin_conv_path API rather than the deprecated
1524         cygwin_conv_to_full_posix_path.
1525         * windows-nat.c:
1526         (GetModuleFileNameExA): Undefine for Cygwin.
1527         (GetModuleFileNameExW): Define for Cygwin.
1528         (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
1529         Call GetModuleFileNameExW and convert path to POSIX using
1530         cygwin_conv_path.
1531         (windows_make_so): Always define p.  Drop unused variable m.
1532         Don't use Win32 functions to check file existance, rather use
1533         access on Cygwin.  Fetch system directory using GetSystemDirectoryW.
1534         Use canonicalize_file_name to get full path.
1535         (get_image_name): Use wcstombs, rather than WideCharToMultiByte
1536         to convert Unicode pathname to multibyte on Cygwin.  Otherwise,
1537         use correct target buffer size in call to WideCharToMultiByte.
1538         (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
1539         (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
1540         (windows_create_inferior): Convert all paths and arguments to wchar_t
1541         and use CreateProcessW on Cygwin.
1542         (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
1543         (bad_GetModuleFileNameExA): Undefine for Cygwin.
1544         (bad_GetModuleFileNameExW): Define for Cygwin.
1545         (_initialize_loadable): Load GetModuleFileNameExW into
1546         dyn_GetModuleFileNameExW on Cygwin.  Don't load ANSI function on Cygwin.
1547
1548 2010-02-28  Phil Muldoon  <[email protected]>
1549
1550         PR python/11036
1551         * python/py-frame.c (frapy_read_var): Add block argument and logic
1552         to cope with user provided blocks.
1553
1554 2010-02-28  Jan Kratochvil  <[email protected]>
1555
1556         * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
1557         New comment.
1558
1559 2010-02-28  Corinna Vinschen  <[email protected]>
1560
1561         * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
1562         (COMMON_OBS): ... to here since it's used unconditionally.
1563         (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
1564         (SFILES): To here.
1565
1566 2010-02-26  David Daney  <[email protected]>
1567
1568         * mips-linux-tdep.c: Update struct sigframe comments.
1569         (SIGFRAME_CODE_OFFSET): Delete macro.
1570         (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
1571         this_frame's sp.
1572         (mips_linux_n32n64_sigframe_init): Same.
1573
1574 2010-02-26  Kevin Buettner  <[email protected]>
1575
1576         * remote-mips.c (mips_load): Don't use pseudo-register when
1577         invalidating regcache.
1578
1579 2010-02-26  Daniel Jacobowitz  <[email protected]>
1580
1581         * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
1582
1583 2010-02-26  Pedro Alves  <[email protected]>
1584
1585         * NEWS: Add "New targets" section, and mention ARM Symbian
1586         support.
1587
1588 2010-02-26  Ulrich Weigand  <[email protected]>
1589
1590         * dwarf2loc.c (struct piece_closure): Remove ARCH member,
1591         add ADDR_SIZE member.
1592         (allocate_piece_closure): Update.
1593         (copy_pieced_value_closure): Likewise.
1594         (dwarf2_evaluate_loc_desc): Likewise.
1595         (read_pieced_value): Use DWARF address size instead of
1596         GDB's gdbarch_addr_bit as size of values on the DWARF stack.
1597
1598 2010-02-26  Phil Muldoon  <[email protected]>
1599             Tom Tromey  <[email protected]>
1600
1601         * python/py-type.c (typy_lookup_typename): Add in block argument.
1602         If provided restrict lookup to specified blocks.
1603         (gdbpy_lookup_type): Likewise.
1604         (typy_lookup_type): Likewise.
1605
1606 2010-02-25  Daniel Jacobowitz  <[email protected]>
1607  
1608         Symbian config
1609
1610         gdb/
1611         * arm-symbian-tdep.c: New.
1612         * configure.tgt (arm*-*-symbianelf*): New target.
1613         (*-*-symbianelf*): New OS.
1614         * osabi.c (gdb_osabi_names): Add Symbian.
1615         * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
1616         * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
1617         (ALLDEPFILES): Add arm-symbian-tdep.c.
1618
1619 2010-02-25  Daniel Jacobowitz  <[email protected]>
1620
1621         * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
1622
1623 2010-02-24  Pedro Alves  <[email protected]>
1624
1625         * mi/mi-main.c (mi_cmd_execute): Fix typo.
1626
1627 2010-02-24  Phil Muldoon  <[email protected]>
1628             Tom Tromey  <[email protected]>
1629             Thiago Jung Bauermann  <[email protected]>
1630
1631         * python/python.c (_initialize_python): Call
1632         gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
1633         gdbpy_initialize_blocks.
1634         * python/python-internal.h: Declare struct symbol, block and
1635         symtab_and_line.  Declare block_object_type and
1636         symbol_object_type
1637         (gdbpy_lookup_symbol gdbpy_block_for_pc)
1638         (symtab_and_line_to_sal_object, symtab_to_symtab_object)
1639         (symbol_to_symbol_object,  block_to_block_object)
1640         (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
1641         (gdbpy_initialize_blocks ): Declare.
1642         * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
1643         (frapy_select): Add methods.
1644         (frapy_read_var): Add symbol branch.
1645         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
1646         py-block.
1647         (SUBDIR_PYTHON_SRCS): Likewise.
1648         (py-symbol.o): New rule.
1649         (py-symtab.o): Likewise.
1650         (py-block.o): Likewise.
1651         * python/py-symbol.c: New file.
1652         * python/py-symtab.c: Likewise.
1653         * python/py-block.c: Likewise.
1654
1655 2010-02-24  Pedro Alves  <[email protected]>
1656
1657         PR gdb/11321
1658
1659         * inferior.h (prepare_for_detach): Declare.
1660         (struct inferior) <detaching>: New field.
1661         * infrun.c (prepare_for_detach): New.
1662         (handle_inferior_event) <random signal>: Don't stop if detaching.
1663         * target.c (target_detach): Call prepare_for_detach.
1664
1665 2010-02-24  Pedro Alves  <[email protected]>
1666
1667         Per-process displaced stepping queue.
1668
1669         * infrun.c (displaced_step_ptid, displaced_step_request_queue)
1670         (displaced_step_gdbarch, displaced_step_closure,
1671         (displaced_step_original, displaced_step_copy): Move globals to
1672         this...
1673         (struct displaced_step_inferior_state): ... new structure.
1674         (displaced_step_inferior_states): New global.
1675         (get_displaced_stepping_state, add_displaced_stepping_state)
1676         (remove_displaced_stepping_state, infrun_inferior_exit): New
1677         functions.
1678         (displaced_step_clear): Add displaced_step_inferior_state
1679         parameter, and adjust to handle it.
1680         (displaced_step_clear_cleanup): Parameter is now a
1681         displaced_step_inferior_state.  Adjust.
1682         (displaced_step_prepare): Adjust.
1683         (displaced_step_fixup, displaced_step_fixup)
1684         (infrun_thread_ptid_changed, resume): Adjust.
1685         (init_wait_for_inferior): Don't call displaced_step_clear.
1686         (infrun_thread_stop_requested): Rewrite.
1687         (_initialize_infrun): Install infrun_inferior_exit as
1688         inferior_exit observer.
1689
1690 2010-02-24  Pedro Alves  <[email protected]>
1691
1692         * inferior.h (ptid_match): Declare.
1693         * infrun.c (ptid_match): New.
1694         * remote.c (queued_stop_reply): Rewrite and use ptid_match.
1695         (handle_notification): Add debug output.
1696         * linux-nat.c (ptid_match): Delete.
1697
1698 2010-02-24  David S. Miller  <[email protected]>
1699
1700         * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
1701         * syscalls/sparc-linux.xml: New.
1702         * syscalls/sparc64-linux.xml: New.
1703         * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
1704         * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
1705         (sparc32_linux_get_syscall_number): New function.
1706         (sparc32_linux_init_abi): Set syscall XML file name and hook up
1707         syscall number fetcher.
1708         * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
1709         (sparc64_linux_get_syscall_number): New function.
1710         (sparc64_linux_init_abi): Set syscall XML file name and hook up
1711         syscall number fetcher.
1712
1713 2010-02-24  Vladimir Prus  <[email protected]>
1714
1715         Multiexec MI
1716
1717         * breakpoint.c (clear_syscall_counts): Take struct inferior*.
1718         * inferior.c (add_inferior_silent): Notify inferior_added
1719         observer.
1720         (delete_inferior_1): Notify inferior_removed observer.
1721         (exit_inferior_1): Pass inferior, not pid, to observer.
1722         (inferior_appeared): Likewise.
1723         (add_inferior_with_spaces): New.
1724         (add_inferior_command): Use the above.
1725         * inferior.h (delete_inferior_1, add_inferior_with_spaces):
1726         Declare.
1727
1728         * inflow.c (inflow_inferior_exit): Likewise.
1729         * jit.c (jit_inferior_exit_hook): Likewise.
1730
1731         * mi/mi-cmds.c (mi_cmds): Register add-inferior and
1732         remove-inferior.
1733         * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
1734         * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
1735         (report_initial_inferior): New.
1736         (mi_inferior_removed): Register the above. Make sure
1737         inferior_added observer is called on the first inferior.
1738         (mi_new_thread, mi_thread_exit): Thread group is now identified by
1739         inferior number, not pid.
1740         (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
1741         affected.
1742         * mi/mi-main.c (current_context): New.
1743         (proceed_thread_callback): Use typed closure.
1744         Proceed everything if pid is 0. Most implementation split into
1745         (proceed_thread): ... this.
1746         (run_one_inferior): New.
1747         (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
1748         Adjust for multiexec behaviour.
1749         (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
1750         (mi_cmd_execute): Handle the 'thread-group' option here.
1751         Do some extra checks.
1752         * mi-parse.c (mi_parse): Handle the --all and --thread-group
1753         options.
1754         * mi-parse.h (struct mi_parse): New fields all and thread_group.
1755
1756 2010-02-24  Vladimir Prus  <[email protected]>
1757
1758         Make -exec-run a proper MI commands.
1759
1760         * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
1761         * mi/mi-cmds.c (mi_cmds): Adjust.
1762         * mi/mi-main.c (mi_cmd_exec_run): New.
1763
1764 2010-02-24  Pedro Alves  <[email protected]>
1765             Stan Shebs  <[email protected]>
1766
1767         * tracepoint.h (set_traceframe_number)
1768         (cleanup_restore_current_traceframe): Declare.
1769         * tracepoint.c (set_traceframe_number): New.
1770         (struct current_traceframe_cleanup): New.
1771         (do_restore_current_traceframe_cleanup)
1772         (restore_current_traceframe_cleanup_dtor)
1773         (make_cleanup_restore_current_traceframe): New.
1774         * infrun.c: Include tracepoint.h.
1775         (fetch_inferior_event): Switch out and in of tfind mode.
1776
1777 2010-02-24  Pedro Alves  <[email protected]>
1778
1779         * breakpoint.c (breakpoint_init_inferior): Also delete
1780         bp_shlib_event breakpoints.
1781         * solib-frv.c (enable_break): Remove call to
1782         remove_solib_event_breakpoints.
1783         * solib-svr4.c (enable_break): Ditto.
1784         * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
1785         * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
1786         * solib-som.c (som_solib_create_inferior_hook): Ditto.
1787         * solib-spu.c (spu_enable_break): Ditto.
1788
1789 2010-02-23  Harald Koenig  <[email protected]>
1790
1791         * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
1792
1793 2010-02-23  Harald Koenig  <[email protected]>
1794
1795         * varobj.c (varobj_update): Avoid non-constants in initializers.
1796
1797 2010-02-23  Tom Tromey  <[email protected]>
1798
1799         * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
1800         handle big-endian values.
1801         (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
1802
1803 2010-02-22  Pedro Alves  <[email protected]>
1804
1805         PR9605
1806
1807         gdb/
1808         * breakpoint.c (insert_bp_location): If inserting the read
1809         watchpoint failed, fallback to an access watchpoint.
1810         (bpstat_check_watchpoint): Stop for read watchpoint triggers even
1811         if the value changed, if not watching the same memory for writes.
1812         (watchpoint_locations_match): Add comment.
1813         (update_global_location_list): Copy the location's watchpoint type.
1814         * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
1815         handle read watchpoints here.
1816         (i386_insert_watchpoint): Read watchpoints aren't supported.
1817         * remote.c (remote_insert_watchpoint): Return 1 for unsupported
1818         packets.
1819         * target.h (target_insert_watchpoint): Update description.
1820
1821 2010-02-19  Tom Tromey  <[email protected]>
1822
1823         * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
1824         * m2-typeprint.c (m2_print_type): Update.
1825         * gdbtypes.c (recursive_dump_type): Update.
1826         (copy_type_recursive): Update.
1827         * c-typeprint.c (c_type_print_varspec_prefix): Update.
1828         (c_type_print_base): Update.
1829         * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
1830         Remove.
1831         (struct cplus_struct_type) <ntemplate_args>: Remove.
1832         <struct template_arg>: Remove.
1833         <is_dynamic>: Move earlier.
1834         (TYPE_TEMPLATE_ARGS): Remove.
1835         (TYPE_NTEMPLATE_ARGS): Remove.
1836         (TYPE_TEMPLATE_ARG): Remove.
1837
1838 2010-02-19  Tom Tromey  <[email protected]>
1839
1840         PR c++/8693, PR c++/9496:
1841         * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
1842         * c-exp.y (lex_one_token): Rename from yylex.  Don't call
1843         write_dollar_variable.  Don't try to classify NAME tokens.
1844         (token_and_value): New type.
1845         (token_fifo, popping, name_obstack): New globals.
1846         (classify_name): New function.
1847         (classify_inner_name): Likewise.
1848         (yylex): Likewise.
1849         (VARIABLE): Now has type sval.
1850         (exp : VARIABLE): Call write_dollar_variable.
1851         (qualified_name): Use TYPENAME, not typebase.  Add production for
1852         multiple "::" instances.
1853         (variable): Use name_not_typename.
1854         (qualified_type): Remove.
1855         (typebase): Update.
1856
1857 2010-02-19  Jan Kratochvil  <[email protected]>
1858
1859         * symfile.c (addr_info_make_relative): Extend comment.  Move SECT to
1860         a more inner block.  Initialize ADDR by LOWER_OFFSET only if it was
1861         found by bfd_get_section_by_name.
1862         * symfile.h (struct section_addr_info) <sectindex>: New comment.
1863
1864 2010-02-19  Joel Brobecker  <[email protected]>
1865
1866         * NEWS: Add new "[...] since 7.1" section.  Rename the "[...] since
1867         7.0 section" into "Changes in 7.1".
1868
1869 2010-02-19  Joel Brobecker  <[email protected]>
1870
1871         GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
1872         * version.in: Bump version to 7.1.50.20100219-cvs.
1873
1874 2010-02-18  Harald Koenig  <[email protected]>
1875
1876         * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
1877         * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
1878
1879 2010-02-17  Tom Tromey  <[email protected]>
1880
1881         * NEWS: Add Python API Improvements section.
1882
1883 2010-02-18  Daniel Jacobowitz  <[email protected]>
1884
1885         * NEWS: Correct typo.
1886
1887 2010-02-17  Tom Tromey  <[email protected]>
1888
1889         * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
1890
1891 2010-02-17  Jan Kratochvil  <[email protected]>
1892
1893         * symfile.c (build_section_addr_info_from_objfile): Include sections
1894         only if they are SEC_ALLOC or SEC_LOAD.
1895
1896 2010-02-17  H.J. Lu  <[email protected]>
1897
1898         PR shlibs/11293
1899         * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
1900         of ULONGEST for address size.
1901
1902 2010-02-17  Tom Tromey  <[email protected]>
1903
1904         * NEWS: Add C++ improvements section.
1905
1906 2010-02-17  Ulrich Weigand  <[email protected]>
1907
1908         * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
1909         PyThreadState_Swap): Avoid "statement with no effect" warning.
1910
1911 2010-02-17  Jan Kratochvil  <[email protected]>
1912
1913         * solib-svr4.c (enable_break <target_auxv_search>): New variable
1914         addr_bit.  Adjust LOAD_ADDR sign for cross-arch inferiors.
1915
1916 2010-02-17  Tristan Gingold  <[email protected]>
1917             Petr Hluzín <[email protected]>
1918
1919         * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
1920         gdb_assert.  Fix info->size for SIG prologue.
1921
1922 2010-02-16  Daniel Jacobowitz  <[email protected]>
1923
1924         * infcmd.c (show_inferior_tty_command): Check for NULL.
1925         Correct output message.
1926
1927 2010-02-16  Daniel Jacobowitz  <[email protected]>
1928
1929         * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
1930         FUNCTION contains parentheses.  Improve removal of a trailing
1931         single quote.
1932
1933 2010-02-16  Daniel Jacobowitz  <[email protected]>
1934
1935         * gcore.c (do_bfd_delete_cleanup): New function.
1936         (gcore_command): Use it.  Discard the cleanup after success.
1937         (gcore_copy_callback): Delete dead code.
1938
1939 2010-02-16  Daniel Jacobowitz  <[email protected]>
1940
1941         * symfile.c (addr_info_make_relative): Always use
1942         find_lowest_section.
1943
1944 2010-02-16  Sami Wagiaalla <[email protected]>
1945
1946         * NEWS: Added entry for namespace fixes.
1947
1948 2010-02-15  Tom Tromey  <[email protected]>
1949
1950         * dwarf2read.c (guess_structure_name): Allocate name on the
1951         objfile obstack.
1952
1953 2010-02-15  Tom Tromey  <[email protected]>
1954
1955         * c-typeprint.c (c_type_print_base): Reverse order of test.
1956
1957 2010-02-15  Jan Kratochvil  <[email protected]>
1958
1959         * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize.  Optionally
1960         initialize it from ELF BFD.  Extend the prelink condition by it.
1961
1962 2010-02-15  Jan Kratochvil  <[email protected]>
1963
1964         * defs.h (parse_pid_to_attach): New.
1965         * utils.c (parse_pid_to_attach): New.
1966         * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
1967         * gnu-nat.c (gnu_attach): Likewise.
1968         * nto-procfs.c (procfs_attach): Likewise.
1969         * procfs.c (procfs_attach): Likewise.
1970         * windows-nat.c (windows_attach): Likewise.
1971         * inf-ptrace.c (inf_ptrace_attach): Likewise.  Remove variable dummy.
1972         * inf-ttrace.c (inf_ttrace_attach): Likewise.
1973         * remote.c (extended_remote_attach_1): Likewise.  New comment on getpid
1974         check.
1975
1976 2010-02-14  Masaki Muranaka  <[email protected]>
1977
1978         * MAINTAINERS: Add myself for write after approval privileges.
1979
1980 2010-02-13  Jan Kratochvil  <[email protected]>
1981
1982         * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
1983         block.
1984
1985 2010-02-13  Jan Kratochvil  <[email protected]>
1986
1987         * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
1988         only if INFO_VERBOSE.
1989
1990 2010-02-12  Tomas Holmberg <[email protected]>
1991
1992         * mi/mi-main.c: Added the --reverse flag to the following MI
1993         commands: exec-continue, exec-finish, exec-next, exec-step,
1994         exec-next-instruction, exec-step-instruction. This is to
1995         support reverse execution over the MI interface to gdb.
1996
1997 2010-02-12  Pedro Alves  <[email protected]>
1998
1999         * tracepoint.c (_initialize_tracepoint): Specify that the address
2000         range of `tfind outsize' is exclusive, and that the address range
2001         of `tfind range' is inclusive, in the commands' help strings.
2002
2003 2010-02-12  Joel Brobecker  <[email protected]>
2004
2005         Spurious "dll not found" error messages on x64-windows.
2006         * windows-nat.c: Add include of complaints.h.
2007         (handle_unload_dll): Change dll-not-found error into a complaint.
2008
2009 2010-02-12  Pedro Alves  <[email protected]>
2010
2011         * breakpoint.c (allocate_bp_location): Use bp_loc_other for
2012         bp_tracepoint and bp_fast_tracepoint, not
2013         bp_loc_software_breakpoint.
2014         (update_global_location_list): Tracepoints are never duplicates of
2015         anything.
2016
2017 2010-02-12  Pedro Alves  <[email protected]>
2018
2019         * breakpoint.c (break_command_really): Change return type to int.
2020         Return false if no breakpoint was created, true otherwise.
2021         (trace_command): Don't set the tracepoint count if no tracepoint
2022         was created.
2023         (ftrace_command): Ditto.
2024         (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
2025         created in the breakpoints table.
2026
2027 2010-02-11  Jan Kratochvil  <[email protected]>
2028             Ulrich Weigand  <[email protected]>
2029
2030         * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
2031
2032 2010-02-11  Pedro Alves  <[email protected]>
2033
2034         * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
2035         the offset value isn't of integral type.
2036
2037 2010-02-11  Jan Kratochvil  <[email protected]>
2038
2039         * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
2040         New.
2041
2042 2010-02-11  Pedro Alves  <[email protected]>
2043
2044         * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
2045         non-subscriptable types.
2046         * valarith.c (binop_types_user_defined_p): New, abstracted out
2047         from ...
2048         (binop_user_defined_p): ... this.
2049         * value.h (binop_types_user_defined_p): Declare.
2050
2051 2010-02-11  Pedro Alves  <[email protected]>
2052
2053         * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
2054         Merge uploaded TSVs before merging uploaded tracepoints.
2055
2056 2010-02-11  Pedro Alves  <[email protected]>
2057
2058         * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
2059
2060 2010-02-11  Vladimir Prus  <[email protected]>
2061
2062         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
2063         whitespace character after a dot in comment.
2064         (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
2065         Likewise.
2066         (list_args_or_locals): For the 'all' (that is
2067         -stack-list-variables) case, always output list of tuples.
2068         Output 'arg' field if variable is argument.
2069
2070 2010-02-10  Tom Tromey  <[email protected]>
2071
2072         * parser-defs.h (parser_debug): Declare.
2073         * parse.c (_initialize_parse): Install "debug parser" set/show
2074         command.
2075         (parser_debug): New global.
2076         (show_parserdebug): New function.
2077         * c-exp.y (c_parse): Set yydebug.
2078
2079 2010-02-10  H.J. Lu  <[email protected]>
2080
2081         * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
2082         TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
2083         (tdesc_predefined_types): Add i387_ext, i386_eflags and
2084         i386_mxcsr.
2085         (tdesc_find_type): New.
2086         (tdesc_gdb_type): Use tdesc_find_type.  Handle TDESC_TYPE_I387_EXT,
2087         TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
2088
2089         * target-descriptions.h (tdesc_find_type): New.
2090
2091 2010-02-10  Michael Snyder  <[email protected]>
2092
2093         * gdb-gdb.py: Comment fix.
2094
2095 2010-02-09  Tristan Gingold  <[email protected]>
2096
2097         * machoread.c (macho_symfile_relocate): New function.
2098         (macho_sym_fns): Use macho_symfile_relocate instead of
2099         default_symfile_relocate.
2100         (macho_oso_data): New type.
2101         (current_oso): New variable.
2102         (macho_add_oso_symfile): Do not compute section_addr_info, but
2103         instead set vma of sections.
2104         Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
2105         Set and clear current_oso.
2106
2107 2010-02-09  Joel Brobecker  <[email protected]>
2108
2109         Wrong type description for tagged type parameter.
2110         * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
2111         EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
2112         reference to a tagged type.
2113
2114 2010-02-09  Tristan Gingold  <[email protected]>
2115
2116         * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
2117         brothers of the parent.
2118
2119 2010-02-08  Tom Tromey  <[email protected]>
2120
2121         PR c++/8017:
2122         * value.h: Update.
2123         * valops.c (search_struct_field): Make 'name' const.
2124         (search_struct_method): Likewise.
2125         (find_method_list): Make 'method' const.
2126         (value_struct_elt): Make 'name' and 'err' const.
2127         (value_find_oload_method_list): Make 'method' const.
2128         (find_overload_match): Make 'name' const.
2129         * eval.c (evaluate_subexp_standard): New locals function,
2130         function_name.
2131         <OP_FUNCALL>: Handle OP_SCOPE specially.
2132
2133 2010-02-08  Ulrich Weigand  <[email protected]>
2134
2135         * infrun.c (handle_inferior_event): Do not look up regcache
2136         for exited processes.
2137
2138 Mon Feb  8 13:17:10 2010  Chris Moller  <[email protected]>
2139
2140         PR gdb/10728
2141         * valarith.c (value_ptrdiff): Added a test for a zero type length,
2142         warn if found, and assume length = 1. 
2143
2144 2010-02-08  Chris Moller  <[email protected]>
2145
2146         PR gdb/9067
2147         * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
2148         cp_print_static_field)  Fix use of obstacks.
2149         
2150 2010-02-08  Pedro Alves  <[email protected]>
2151
2152         * linux-nat.c (linux_nat_resume): In non-stop, also only tag
2153         resumed LWPs as resumed.
2154         (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
2155         we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
2156         of throwing an internal error.  If an LWP of a process we're not
2157         waiting for reports a signal, don't force collecting a SIGSTOP,
2158         and if it was breakpoint hit in non-stop mode, cancel it.  Don't
2159         go through all LWPs cancelling breakpoints in non-stop mode.
2160         (resume_stopped_resumed_lwps): New.
2161         (linux_nat_wait): Use it.
2162
2163 2010-02-07  H.J. Lu  <[email protected]>
2164
2165         * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
2166         i386/amd64 and i386/amd64-linux.
2167         (i386/i386-expedite): New.
2168         (i386/i386-linux-expedite): Likewise.
2169         (i386/amd64-expedite):Likewise.
2170         (i386/amd64-linux-expedite): Likewise.
2171         ($(outdir)/i386/i386-linux.dat): Likewise.
2172         ($(outdir)/i386/amd64.dat): Likewise.
2173         ($(outdir)/i386/amd64-linux.dat): Likewise.
2174
2175         * features/i386/32bit-core.xml: New.
2176         * features/i386/32bit-linux.xml: Likewise.
2177         * features/i386/32bit-sse.xml: Likewise.
2178         * features/i386/64bit-core.xml: Likewise.
2179         * features/i386/64bit-linux.xml: Likewise.
2180         * features/i386/64bit-sse.xml: Likewise.
2181         * features/i386/i386-linux.xml: Likewise.
2182         * features/i386/i386.xml: Likewise.
2183         * features/i386/amd64-linux.xml: Likewise.
2184         * features/i386/amd64.xml: Likewise.
2185         * features/i386/i386-linux.c: Likewise.
2186         * features/i386/i386.c: Likewise.
2187         * features/i386/amd64-linux.c: Likewise.
2188         * features/i386/amd64.c: Likewise.
2189
2190 2010-02-05  Sami Wagiaalla  <[email protected]>
2191
2192         PR c++/7935:
2193         * cp-support.h: Added char* alias element to using_direct data
2194         struct.
2195         (cp_add_using): Added char* alias argument.
2196         (cp_add_using_directive): Ditto.
2197         * cp-namespace.c: Updated with the above changes.
2198         (cp_lookup_symbol_imports): Check for aliases.
2199         * dwarf2read.c (read_import_statement): Figure out local alias
2200         for the import and pass it on to cp_add_using.
2201         (read_namespace): Pass alias argument to cp_add_using.
2202
2203 2010-02-05  Hui Zhu  <[email protected]>
2204
2205         * defs.h (gdb_bfd_errmsg): New extern.
2206         * exec.c (exec_file_attach): Change bfd_errmsg to
2207         gdb_bfd_errmsg.
2208         * utils.c (AMBIGUOUS_MESS1): New macro.
2209         (AMBIGUOUS_MESS2): New macro.
2210         (gdb_bfd_errmsg): New function.
2211
2212 2010-02-04  Doug Evans  <[email protected]>
2213
2214         * solib-svr4.c (enable_break): Add comment.
2215
2216 2010-02-04  Anthony Green  <[email protected]>
2217
2218         * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
2219         gracefully.
2220
2221 2010-02-04  Tom Tromey  <[email protected]>
2222
2223         * valops.c (search_struct_field): Account for
2224         value_embedded_offset.  Fix check for virtual base past the end of
2225         the object.  Use value_copy when making a slice of the value.
2226
2227 2010-02-04  H.J. Lu  <[email protected]>
2228
2229         PR tui/9622
2230         * tui/tui-interp.c (tui_init): Call tui_initialize_readline
2231         only if gdb_stdout is a tty.
2232
2233 2010-02-04  H.J. Lu  <[email protected]>
2234
2235         * target-descriptions.c: Include "osabi.h".
2236         (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
2237         OSABI.
2238
2239 2010-02-04  Tristan Gingold  <[email protected]>
2240
2241         * machoread.c (macho_add_oso): Renamed to macho_register_oso.
2242         (macho_symtab_read): Adjust calls to macho_add_oso.
2243         (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
2244         (macho_symfile_read): Adjust call to macho_oso_symfile.
2245         (macho_new_init): Move this function after declarations.
2246         (macho_symfile_init): Ditto.
2247         * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
2248         * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
2249
2250 2010-02-04  Vladimir Prus  <[email protected]>
2251
2252         Include MI command in remotelog.
2253
2254         * mi/mi-main.c (mi_execute_command): Call target_log_command.
2255
2256 2010-02-03  H.J. Lu  <[email protected]>
2257
2258         * remote.c (remote_state): Remove gdbarch.
2259         (init_remote_state): Don't set gdbarch.
2260         (remote_query_supported): Pass target_gdbarch instead of
2261         rs->gdbarch to gdbarch_qsupported.
2262
2263 2010-02-03  H.J. Lu  <[email protected]>
2264
2265         * gdbarch.sh: Add qsupported.
2266
2267         * gdbarch.c: Regenerated.
2268         * gdbarch.h: Likewise.
2269
2270         * remote.c (remote_state): Add gdbarch.
2271         (init_remote_state): Set gdbarch.
2272         (remote_query_supported): Support gdbarch_qsupported.
2273
2274 2010-02-03  Daniel Jacobowitz  <[email protected]>
2275
2276         * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
2277         __FreeBSD_kernel_version.
2278
2279 2010-02-03  Tristan Gingold  <[email protected]>
2280
2281         * symfile.h (struct sym_fns): Add sym_relocate field.
2282         (default_symfile_relocate): New prototype.
2283         (symfile_relocate_debug_section): First argument is now an objfile.
2284         * symfile.c (default_symfile_relocate): Rename from
2285         symfile_relocate_debug_section, first argument is now an objfile.
2286         (symfile_relocate_debug_section): New function.
2287         * coffread.c (coff_sym_fns): Set sym_relocate field.
2288         * somread.c (som_sym_fns): Ditto.
2289         * mipsread.c (ecoff_sym_fns): Ditto.
2290         * machoread.c (macho_sym_fns): Ditto.
2291         * elfread.c (elf_sym_fns): Ditto.
2292         * dwarf2read.c (dwarf2_read_section): Ditto.
2293         * xcoffread.c (xcoff_sym_fns): Ditto.
2294         * dbxread.c (aout_sym_fns): Ditto.
2295         (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
2296         (elfstab_build_psymtabs): Ditto.
2297
2298 2010-02-03  H.J. Lu  <[email protected]>
2299
2300         * defs.h (MAX_REGISTER_SIZE): Increase to 32.
2301
2302 2010-02-02  Tom Tromey  <[email protected]>
2303
2304         * valops.c (value_cast_structs): Try downcasting using the RTTI
2305         type.
2306
2307 2010-02-02  Tom Tromey  <[email protected]>
2308
2309         * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
2310         (gnuv2_baseclass_offset): Now static.
2311         * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
2312         * gnu-v2-abi.h: Remove.
2313
2314 2010-02-02  Tom Tromey  <[email protected]>
2315
2316         * m2-typeprint.c (m2_record_fields): Don't use
2317         TYPE_DECLARED_TYPE.
2318         * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
2319         (struct main_type) <flag_declared_class>: New field.
2320         (struct cplus_struct_type) <declared_type>: Remove.
2321         <ntemplate_args>: Move earlier.
2322         (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
2323         (DECLARED_TYPE_TEMPLATE): Remove.
2324         (TYPE_DECLARED_TYPE): Remove.
2325         * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
2326         * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
2327         * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
2328         TYPE_DECLARED_TYPE.
2329
2330 2010-02-02  Tom Tromey  <[email protected]>
2331
2332         PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
2333         * valops.c (search_struct_field): Compute nbases after calling
2334         CHECK_TYPEDEF.
2335         (check_field): Call CHECK_TYPEDEF.
2336         * cp-valprint.c (cp_print_value): Pass correct address to
2337         baseclass_offset.  Fix check for virtual base past the end of the
2338         object.  Don't offset address passed to cp_print_value_fields or
2339         apply_val_pretty_printer.
2340         (cp_print_value_fields): Fix call to val_print.
2341         (cp_print_value_fields_rtti): New function.
2342         * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
2343         * p-valprint.c (pascal_object_print_value_fields): Fix call to
2344         val_print.
2345         * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
2346         offset to address.
2347         * language.h (struct language_defn) <la_val_print>: Document.
2348         * c-lang.h (cp_print_value_fields_rtti): Declare.
2349
2350 2010-02-01  Jan Kratochvil  <[email protected]>
2351
2352         PR libc/11214:
2353         * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
2354         (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
2355         (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
2356
2357 2010-02-01  Michael Matz  <[email protected]>
2358             Daniel Jacobowitz  <[email protected]>
2359
2360         * i386-tdep.c (i386_frame_cache): Assume valid anonymous
2361         functions use a frame pointer.
2362
2363 2010-02-01  Jan Kratochvil  <[email protected]>
2364
2365         * solib-svr4.c (scan_dyntag): New variable dyn_addr.  Replace gdb_assert
2366         by a conditional setting DYN_ADDR.  Use DYN_ADDR.
2367         * config/djgpp/fnchange.lst: Add translations for
2368         symbol-without-target_section.exp and symbol-without-target_section.c.
2369
2370 2010-02-01  Daniel Jacobowitz  <[email protected]>
2371
2372         * gdbarch.sh: Set LANG and LC_ALL to C, not c.
2373         (remote_breakpoint_for_pc): Correct invalid_p check.
2374         * gdbarch.c: Regenerated.
2375
2376 2010-02-01  Daniel Jacobowitz  <[email protected]>
2377
2378         * arm-tdep.c (arm_find_mapping_symbol): New function, from
2379         arm_pc_is_thumb.
2380         (arm_pc_is_thumb): Use arm_find_mapping_symbol.
2381         (extend_buffer_earlier): New function.
2382         (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
2383         (arm_adjust_breakpoint_address): New function.
2384         (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
2385
2386 2010-02-01  Daniel Jacobowitz  <[email protected]>
2387
2388         * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
2389         (arm_linux_thumb2_le_breakpoint): New constants.
2390         (arm_linux_init_abi): Set thumb2_breakpoint and
2391         thumb2_breakpoint_size.
2392         * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
2393         (thumb_get_next_pc): Add a comment.  Rename IT to ITSTATE.
2394         Implement support for single stepping through IT blocks if
2395         a 32-bit Thumb breakpoint instruction is available.
2396         (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
2397         is available, use it when needed.
2398         (arm_remote_breakpoint_from_pc): New function.
2399         (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
2400         * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
2401         comment.  Add thumb2_breakpoint and thumb2_breakpoint_size.
2402
2403 2010-02-01  Daniel Jacobowitz  <[email protected]>
2404
2405         * arch-utils.c (default_remote_breakpoint_from_pc): New function.
2406         * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
2407         * gdbarch.c, gdbarch.h: Regenerated.
2408         * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
2409         * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
2410         gdbarch_remote_breakpoint_from_pc.
2411
2412 2010-01-29  Daniel Jacobowitz  <[email protected]>
2413
2414         * infrun.c (prepare_to_proceed): Handle other signals which might
2415         match a breakpoint.
2416         (handle_inferior_event): Move the check for unusual breakpoint
2417         signals earlier.
2418
2419 2010-01-29  Paul Hilfinger  <[email protected]>
2420
2421         amd64 - function returning record with field straddling 2 registers.
2422         * amd64-tdep.c (amd_classify_aggregate): Handle the case of
2423         a record of length <= 16 in which a field straddles the two
2424         eightbytes.
2425
2426 2010-01-29  Joel Brobecker  <[email protected]>
2427
2428         Implement return values on amd64-windows.
2429         * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
2430         (amd64_windows_return_value): New function.
2431         (amd64_windows_init_abi): Call set_gdbarch_return_value with
2432         amd64_windows_return_value.
2433
2434 2010-01-29  Joel Brobecker  <[email protected]>
2435
2436         amd64-windows: 32 bytes allocated on stack by caller for integer
2437         parameter registers.
2438         * i386-tdep.h (struct gdbarch_tdep): Add new field
2439         integer_param_regs_saved_in_caller_frame.
2440         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
2441         tdep->integer_param_regs_saved_in_caller_frame to 1.
2442         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
2443         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
2444
2445 2010-01-29  Joel Brobecker  <[email protected]>
2446
2447         amd64-windows: memory args passed by pointer during function calls.
2448         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
2449         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
2450         where tdep->memory_args_by_pointer is non-zero.
2451         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
2452         tdep->memory_args_by_pointer to 1.
2453
2454 2010-01-29  Joel Brobecker  <[email protected]>
2455
2456         amd64-windows: Integer parameters in function calls.
2457         * i386-tdep.h (enum amd64_reg_class): New, moved here from
2458         amd64-tdep.c.
2459         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
2460         call_dummy_integer_regs, and classify.
2461         * amd64-tdep.h (amd64_classify): Add declaration.
2462         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
2463         (amd64_reg_class): Delete, moved to i386-tdep.h.
2464         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
2465         Replace call to amd64_classify by call to tdep->classify.
2466         (amd64_push_arguments): Get the list of registers to use for
2467         passing integer parameters from the gdbarch tdep structure,
2468         rather than using a hardcoded one.  Replace calls to amd64_classify
2469         by calls to tdep->classify.
2470         (amd64_push_dummy_call): Get the register number used for
2471         the "hidden" argument from tdep->call_dummy_integer_regs.
2472         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
2473         and tdep->call_dummy_integer_regs.  Set tdep->classify.
2474         * amd64-windows-tdep.c: Add include of gdbtypes.h.
2475         (amd64_windows_dummy_call_integer_regs): New static global.
2476         (amd64_windows_classify): New function.
2477         (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
2478         tdep->call_dummy_integer_regs and tdep->classify.
2479
2480 2010-01-28  Daniel Jacobowitz  <[email protected]>
2481
2482         * regcache.c (regcache_xmalloc): Add aspace argument.  Use it
2483         for the new regcache.  All callers updated.
2484         (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
2485         (get_thread_arch_regcache): Do not set aspace here.
2486         * regcache.h (regcache_xmalloc): Update declaration.
2487
2488         * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
2489         regcache_xmalloc updated.
2490
2491 2010-01-28  Joel Brobecker  <[email protected]>
2492
2493         Another -Wunused-function error in procfs.c (sparc-solaris)
2494         * procfs.c (insert_dbx_link_breakpoint): Delete declaration.  Move up.
2495         Only define if SYS_syssgi is defined.
2496         (remove_dbx_link_breakpoint): Delete declaration.  Move up.
2497         (dbx_link_addr, insert_dbx_link_bpt_in_file)
2498         (insert_dbx_link_bpt_in_region): Move up.  Only define if SYS_syssgi
2499         is itself defined.
2500
2501 2010-01-27  Christopher Faylor  <[email protected]>
2502
2503         * windows-nat.c (windows_initialization_done): New variable.
2504         (get_windows_debug_event): Issue error when process dies before
2505         completely initializing.
2506         (do_initial_windows_stuff): Set flag to indicate when we are done with
2507         the initial steps of attaching to the child.
2508
2509 2010-01-27  Jan Kratochvil  <[email protected]>
2510
2511         * symtab.h (struct symbol <symtab>): New comment on NULL values.
2512
2513 2010-01-27  Doug Evans  <[email protected]>
2514
2515         * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
2516
2517         * breakpoint.c (bpstat_stop_status): Delete useless code.
2518
2519 2010-01-27  Jan Kratochvil  <[email protected]>
2520
2521         * printcmd.c (display_uses_solib_p): Remove variable section.  Access
2522         objfile via SYMBOL_SYMTAB.
2523
2524 2010-01-26  Tom Tromey  <[email protected]>
2525
2526         PR exp/7643:
2527         * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
2528         coerce_array on result.
2529
2530 2010-01-26  Sami Wagiaalla  <[email protected]>
2531
2532         * cp-namespace.c (cp_lookup_symbol_namespace): Added
2533         search_parent argument.
2534         (cp_add_using): Initialize 'searched' field.
2535         (reset_directive_searched): New function.
2536         * cp-support.h: Add 'searched' field to using_direct struct.
2537         (cp_lookup_symbol_imports): Ditto.
2538         * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
2539         Perform recursive search.
2540         Implement non parent search.
2541         * valops.c (value_maybe_namespace_elt): Updated.
2542
2543 2010-01-26  Sami Wagiaalla  <[email protected]>
2544
2545         PR gdb/10929:
2546         * dwarf2read.c (read_lexical_block_scope): Create blocks for
2547         scopes which contain using directives even if they contain no
2548         declarations.
2549         * symtab.c (lookup_symbol_aux): Pass lowest level block to
2550         la_lookup_symbol_nonlocal.
2551         * cp-namespace.c (cp_lookup_symbol_nonlocal): call
2552         cp_lookup_symbol_namespace.
2553         (cp_lookup_symbol_namespace): Perform an import lookup at every
2554         block level.
2555         (cp_lookup_symbol_imports): New function.
2556         (cp_lookup_symbol_in_namespace): New function.
2557
2558 2010-01-25  Tom Tromey  <[email protected]>
2559
2560         PR gdb/11049:
2561         * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
2562         result.
2563
2564 2010-01-25  Rainer Orth  <[email protected]>
2565
2566         * configure.ac: Only use host_os part when disabling TUI on osf.
2567         Use test to check variables, prefix strings with x.
2568         * configure: Regenerate.
2569
2570         * solib-osf.c (osf_current_sos): Initialize tail.
2571
2572 2010-01-25  gingold  <[email protected]>
2573
2574         * windows-nat.c (windows_continue): Use %x to print thread id.
2575         (get_windows_debug_event): Ditto.
2576
2577 2010-01-22  Tom Tromey  <[email protected]>
2578
2579         PR symtab/11199:
2580         * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
2581         type and arguments.  Use smash_to_methodptr_type.
2582         (read_structure_type): Call quirk_gcc_member_function_pointer
2583         later.
2584         * gdbtypes.h (smash_to_methodptr_type): Declare.
2585         * gdbtypes.c (smash_to_methodptr_type): New function.
2586         (lookup_methodptr_type): Use it.
2587
2588 2010-01-21  Tom Tromey  <[email protected]>
2589
2590         PR symtab/11198:
2591         * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
2592         * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
2593         * glibc-tdep.c (find_minsym_and_objfile): Remove.
2594         (glibc_skip_solib_resolver): Use
2595         lookup_minimal_symbol_and_objfile.
2596
2597 2010-01-21  Kai Tietz  <[email protected]>
2598
2599         * inflow.c (check_syscall): Guard by #if clause for GO32 and
2600         WIN32 targets.
2601
2602 2010-01-20  Tom Tromey  <[email protected]>
2603
2604         PR backtrace/10770:
2605         * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
2606         BINOP_GEQ.  Handle BINOP_NOTEQUAL in the signed case.
2607         * dwarf2expr.c (new_dwarf_expr_context): Allocate
2608         dwarf_stack_values, not CORE_ADDRs.
2609         (execute_stack_op): Change DW_OP_div and comparison operators to
2610         use signed operands.
2611
2612 2010-01-20  Vladimir Prus  <[email protected]>
2613
2614         Per-inferior args and tty and environment.
2615
2616         * infcmd.c (inferior_args): Rename to ...
2617         (inferior_args_scratch): ... this.
2618         (inferior_io_terminal): Rename to ...
2619         (inferior_io_terminal_scratch): ... this.
2620         (inferior_argc, inferior_argv): Remove.
2621         (set_inferior_io_terminal, get_inferior_io_terminal): Store
2622         inside current_inferior().
2623         (set_inferior_tty_command, show_inferior_tty_command): New.
2624         (get_inferior_args, set_inferior_args): Store inside
2625         current_inferior().
2626         (notice_args_set): Likewise and rename to...
2627         (set_args_command): ... this.
2628         (set_inferior_args_vector): Likewise.
2629         (notice_args_read): Rename to...
2630         (show_args_command): ...new.
2631         (tty_command): Remove.
2632         (run_command_1): Don't free old args, as they are freed by
2633         set_inferior_arg now.
2634         (run_no_args_command): Likewise.
2635         (inferior_environ): Remove.
2636         (run_command_1): Use environment of the current inferior.
2637         (environment_info, set_environment_command)
2638         (unset_environment_command, path_info, path_command): Likewise.
2639         (_initialize_infcmd): Adjust for function and variable renames.
2640         Do not init inferior_environ.
2641         * inferior.h (set_inferior_arg): Adjust prototype.
2642         (struct inferior): New fields args, argc, argv, terminal, environment.
2643         (inferior_environ): Remove declaration.
2644         * inferior.c (free_inferior): Free new fields.
2645         (add_inferior_silent): Initialize 'environment' field.
2646         * main.c (captured_main): Set arguments only after the initial
2647         inferior has been created.  Set set_inferior_io_terminal,
2648         not tty_command.
2649         * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
2650         inferior.
2651         (_initialize_mi_cmd_env): Adjust for disappearance of global
2652         inferior_environ.
2653         * solib.c (solib_find): Use environment of the current inferior.
2654
2655 2010-01-20  Jan Kratochvil  <[email protected]>
2656
2657         * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
2658         HAVE_PYTHON.
2659         (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
2660
2661 2010-01-20  Joel Brobecker  <[email protected]>
2662
2663         Get rid of ada-lang.c:function_name_from_pc.
2664         * ada-lang.c: Add "stack.h" #include.
2665         (function_name_from_pc): Delete.
2666         (is_known_support_routine): Replace call to function_name_from_pc
2667         by call to find_frame_funname.
2668         (ada_unhandled_exception_name_addr_from_raise): Likewise.
2669
2670 2010-01-19  Tom Tromey  <[email protected]>
2671
2672         PR c++/11026:
2673         * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
2674         objfile obstack.
2675
2676 2010-01-19  Tom Tromey  <[email protected]>
2677
2678         * top.c (stop_sig, float_handler, do_nothing): Remove.
2679
2680 2010-01-19  Jan Kratochvil  <[email protected]>
2681
2682         * breakpoint.c (watchpoint_check): Check the call
2683         gdbarch_in_function_epilogue_p before calling frame_find_by_id.
2684         Extend the comment.
2685         * config/djgpp/fnchange.lst: Add translations for 
2686         watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
2687         watchpoint-cond-gone-stripped.c.
2688
2689 2010-01-19  Tom Tromey  <[email protected]>
2690
2691         PR c++/8000:
2692         * dwarf2read.c (partial_die_parent_scope): Put enumeration type
2693         into parent scope, and enumerator into grandparent scope.
2694
2695 2010-01-19  Joel Brobecker  <[email protected]>
2696
2697         * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
2698
2699 2010-01-19  Joel Brobecker  <[email protected]>
2700
2701         * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
2702         i[34567]86-*-solaris2.1[0-9]*.
2703         * configure.tgt: Likewise.
2704
2705 2010-01-19  Joel Brobecker  <[email protected]>
2706
2707         * NEWS: Document the source command enhancement allowing it
2708         to load Python scripts. Document the "set/show script-extension"
2709         commands.
2710
2711 2010-01-19  Joel Brobecker  <[email protected]>
2712
2713         Add -Wunused-function to compile flags.
2714         * configure.ac: Add -Wunused-function to build_warnings.
2715         * configure: Regenerate.
2716
2717 2010-01-19  Joel Brobecker  <[email protected]>
2718
2719         "delete" ada-lex.c:input function, not used.
2720         * ada-lex.l: #define YY_NO_INPUT.
2721
2722 2010-01-19  Joel Brobecker  <[email protected]>
2723
2724         Delete free_named_symtabs and associated cleanup.
2725         * symfile.h (free_named_symtabs): Delete declaration.
2726         * symfile.c: Remove some commented out code (clear_symtab_users_once).
2727         (cashier_psymtab): Comment function out.
2728         Delete declaration.
2729         (free_named_symtabs): Delete.
2730         * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
2731         * dbxread.c (end_psymtab): Likewise.
2732         * dwarf2read.c (process_psymtab_comp_unit): Ditto.
2733         * exec.c (exec_close_1): Ditto.
2734         * xcoffread.c (xcoff_end_psymtab): Likewise.
2735
2736 2010-01-19  Joel Brobecker  <[email protected]>
2737
2738         * stack.c (print_block_frame_labels): Comment function out.
2739
2740 2010-01-19  Joel Brobecker  <[email protected]>
2741
2742         Delete unused or undefined functions.
2743         * breakpoint.c (ep_parse_optional_filename): Delete.
2744         * dcache.c (dcache_write_line): Remove declaration.
2745         * infrun.c (build_infrun): Remove declaration.
2746         * tracepoint.c (tracepoint_save_command): Remove declaration.
2747         * linux-nat.c (init_lwp_list): Delete. No longer used.
2748         * event-loop.c (check_async_signal_handlers): Delete declaration.
2749         * infrun.c (init_execution_control_state): Delete.
2750         (proceed): Update comment to avoid mentioning
2751         init_execution_control_state.
2752         * target.c (kill_or_be_killed, nosupport_runtime): Delete.
2753         * ada-lang.c (ada_to_static_fixed_value): Delete.
2754         * scm-lang.c (evaluate_subexp_scm): Delete declaration.
2755         * cp-namespace.c (cp_copy_usings): Delete.
2756         * xml-syscall.c (xml_number_of_syscalls): Delete.
2757         * progspace.c (find_program_space_by_num): Delete.
2758         * inflow.c (handle_sigio): Delete declaration.
2759         * hppa-tdep.c (hppa_alignof): Delete.
2760         * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
2761         (mipsnbsd_core_osabi_sniffer): Delete.
2762
2763 2010-01-18  Tom Tromey  <[email protected]>
2764
2765         PR c++/9680:
2766         * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
2767         (CONST_CAST): New tokens.
2768         (exp): Add new productions.
2769         (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
2770         reinterpret_cast.
2771         (is_cast_operator): New function.
2772         (yylex): Handle cast operators specially.
2773         * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
2774         UNOP_REINTERPRET_CAST>: New cases.
2775         * expprint.c (print_subexp_standard): Likewise.
2776         (op_name_standard): Likewise.
2777         (dump_subexp_body_standard): Likewise.
2778         * parse.c (operator_length_standard): Likewise.
2779         * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
2780         UNOP_REINTERPRET_CAST.
2781         * gdbtypes.c (class_types_same_p): New function.
2782         (is_ancestor): Use it.
2783         (is_public_ancestor): New function.
2784         (is_unique_ancestor_worker): Likewise.
2785         (is_unique_ancestor): Likewise.
2786         * gdbtypes.h (class_types_same_p, is_public_ancestor)
2787         (is_unique_ancestor): Declare.
2788         * valops.c (value_reinterpret_cast): New function.
2789         (dynamic_cast_check_1): Likewise.
2790         (dynamic_cast_check_2): Likewise.
2791         (value_dynamic_cast): Likewise.
2792         * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
2793
2794 2010-01-18  Joel Brobecker  <[email protected]>
2795
2796         Fix build failure when building without Python support.
2797         * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
2798         is not defined.
2799
2800 2010-01-18  Joel Brobecker  <[email protected]>
2801
2802         Use XVS field type instead of doing a parallel lookup.
2803         * ada-lang.c (ada_get_base_type): Follow the XVS field type
2804         if it is a reference type instead of doing a type lookup using
2805         the XVS field name.
2806
2807 2010-01-18  Joel Brobecker  <[email protected]>
2808
2809         Trust PAD types instead of using PAD___XVS.
2810         * ada-lang.c (trust_pad_over_xvs): New static variable.
2811         (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
2812         parallel XVS type, follow the XVS type instead of the PAD type.
2813         (unwrap_value): Make sure that there is no parallel XVE type
2814         before returning the value as is.
2815         (set_ada_list, show_ada_list): New static variables.
2816         (set_ada_command, show_ada_command): New functions.
2817         (_initialize_ada_language): Add new "set/show ada" prefix commands.
2818         Add new "set/show ada trust-PAD-over-XVS" setting.
2819
2820 2010-01-18  Tom Tromey  <[email protected]>
2821             Thiago Jung Bauermann  <[email protected]>
2822
2823         Allow "source" to load python scripts.
2824         * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
2825         * python/python.c (source_python_script): New function.
2826         * python/python.h (source_python_script): Add declaration.
2827         * cli/cli-cmds.c: #include exceptions.h and python/python.h.
2828         (script_ext_off, script_ext_soft, script_ext_strict)
2829         (script_ext_enums, script_ext_mode): New static constants.
2830         (show_script_ext_mode, find_and_open_script): New functions.
2831         (source_script): Enhance to handle Python scripts.
2832         (init_cli_cmds): Add set/show script-extension commands.
2833
2834 2010-01-16  Stan Shebs  <[email protected]>
2835
2836         * tracepoint.h (struct trace_status): Use unsigned long long
2837         instead of size_t.
2838         * tracepoint.c (trace_status_command): Fix printf directive.
2839         (trace_save_command): Check fwrite returns, fix printf directive.
2840         (trace_filename): New global.
2841         (tfile_open): Set it, check read returns.
2842         (tfile_close): Free trace_filename.
2843         (tfile_get_traceframe_address): Check read returns.
2844         (tfile_trace_find): Ditto.
2845         (tfile_fetch_registers): Ditto.
2846         (tfile_xfer_partial): Ditto.
2847         (tfile_get_trace_state_variable_value): Ditto.
2848
2849 2010-01-15  Stan Shebs  <[email protected]>
2850
2851         Add trace file support.
2852         * tracepoint.h (enum trace_stop_reason): New enum.
2853         (struct trace_status): New struct.
2854         (parse_trace_status): Declare.
2855         (struct uploaded_tp): Move here from remote.c,
2856         add fields for actions.
2857         (struct uploaded_tsv): New struct.
2858         * tracepoint.c (tfile_ops): New target vector.
2859         (trace_fd): New global.
2860         (tfile_open): New function.
2861         (tfile_close): New function.
2862         (tfile_files_info): New function.
2863         (tfile_get_trace_status): New function.
2864         (tfile_get_traceframe_address): New function.
2865         (tfile_trace_find): New function.
2866         (tfile_fetch_registers): New function.
2867         (tfile_xfer_partial): New function.
2868         (tfile_get_trace_state_variable_value): New function.
2869         (init_tfile_ops): New function.
2870         (_initialize_tracepoint): Call it, add tfile target.
2871         (trace_status): New global.
2872         (current_trace_status): New function.
2873         (trace_running_p): Remove, change all users to get from
2874         current_trace_status()->running.
2875         (get_trace_status): Remove.
2876         (trace_status_command): Call target_get_trace_status directly,
2877         report more detail including tracing stop reasons.
2878         (trace_find_command): Always allow tfind on a file.
2879         (trace_find_pc_command): Ditto.
2880         (trace_find_tracepoint_command): Ditto.
2881         (trace_find_line_command): Ditto.
2882         (trace_find_range_command): Ditto.
2883         (trace_find_outside_command): Ditto.
2884         (trace_frames_offset, cur_offset): Declare as off_t.
2885         (trace_regblock_size): Rename from reg_size, update users.
2886         (parse_trace_status): New function.
2887         (tfile_interp_line): New function.
2888         (disconnect_or_stop_tracing): Ensure current trace
2889         status before asking what to do.
2890         (stop_reason_names): New global.
2891         (trace_save_command): New command.
2892         (get_uploaded_tp): Move here from remote.c.
2893         (find_matching_tracepoint): Ditto.
2894         (merge_uploaded_tracepoints): New function.
2895         (parse_trace_status): Use stop_reason_names.
2896         (_initialize_tracepoint): Define tsave command.
2897         * target.h (target_ops): New fields to_save_trace_data,
2898         to_upload_tracepoints, to_upload_trace_state_variables,
2899         to_get_raw_trace_data, change to_get_trace_status
2900         to take a pointer to a status struct.
2901         (target_save_trace_data): New macro.
2902         (target_upload_tracepoints): New macro.
2903         (target_upload_trace_state_variables): New macro.
2904         (target_get_raw_trace_data): New macro.
2905         * target.c (update_current_target): Add new methods, change
2906         signature of to_get_trace_status.
2907         * remote.c (hex2bin): Make globally visible.
2908         (bin2hex): Ditto.
2909         (remote_download_trace_state_variable): Download name also.
2910         (remote_get_trace_status): Update parameter, use
2911         parse_trace_status.
2912         (remote_save_trace_data): New function.
2913         (remote_upload_tracepoints): New function.
2914         (remote_upload_trace_state_variables): New function.
2915         (remote_get_raw_trace_data): New function.
2916         (remote_start_remote): Use them.
2917         (_initialize_remote_ops): Add operations.
2918         * ax-gdb.c: Include breakpoint.h.
2919         * breakpoint.c (create_tracepoint_from_upload): Use
2920         break_command_really, return tracepoint, warn about unimplemented
2921         parts.
2922         * NEWS: Mention trace file addition.
2923
2924 2010-01-15  Jan Kratochvil  <[email protected]>
2925
2926         Fix compilation warning on gcc-3.4.
2927         * exec.c (print_section_info): Move the `displacement' variable
2928         initialization to its declaration.
2929
2930 2010-01-15  Jan Kratochvil  <[email protected]>
2931
2932         * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
2933         comparison.
2934
2935 2010-01-15  Eric Botcazou  <[email protected]>
2936
2937         "info tasks" broken by typedefs in ATCB type definitions.
2938         * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
2939         ada_check_typedef before retrieving the length of the type for
2940         regular fields.
2941
2942 2010-01-15  Joel Brobecker  <[email protected]>
2943
2944         Do not use name-based lookup for unconstrained packed arrays.
2945         * ada-lang.c (find_parallel_type_by_descriptive_type):
2946         Limit the fallback to name-based lookups to the case where
2947         the type is a constrained packed array.
2948
2949 2010-01-15  Joel Brobecker  <[email protected]>
2950
2951         Enhance gdb-gdb.py to handle main_type.type_specific.
2952         * gdb-gdb.py: Print the type-specific part of struct main_type.
2953
2954 2010-01-15  Jan Kratochvil  <[email protected]>
2955
2956         * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
2957         * configure: Regenerate.
2958         * config.in: Regenerate.
2959         * utils.c: Include sys/resource.h.
2960         (dump_core, can_dump_core): New.
2961         (internal_vproblem): Update the comment.  Check can_dump_core while
2962         setting dump_core_p.  Replace two abort calls by dump_core calls.
2963
2964 2010-01-14  Jan Kratochvil  <[email protected]>
2965             Eli Zaretskii  <[email protected]>
2966
2967         * NEWS: Document the PIE support.
2968
2969 2010-01-14  Jan Kratochvil  <[email protected]>
2970
2971         * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
2972         (check_is_pie_binary, _initialize_linux_tdep): Remove.
2973
2974 2010-01-14  Jan Kratochvil  <[email protected]>
2975
2976         * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
2977         Replace exec_entry_point call by bfd_get_start_address.
2978
2979 2010-01-14  Jan Kratochvil  <[email protected]>
2980
2981         Support Valgrind attachments broken by the PIE support.
2982         * auxv.c: Include gdbcore.h.
2983         (procfs_xfer_auxv): Make static.  Reduce its comment.  Drop its
2984         parameters ops, object and annex.  Remove their assertions.
2985         (ld_so_xfer_auxv, memory_xfer_auxv): New function.
2986         * auxv.h (procfs_xfer_auxv): Remove comment.  Rename to ...
2987         (memory_xfer_auxv): ... here.
2988         * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
2989         memory_xfer_auxv.
2990         * procfs.c (procfs_xfer_partial): Likewise.
2991         * solib-svr4.c (svr4_relocate_main_executable): New prototype.
2992         (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
2993         (svr4_solib_create_inferior_hook): Conditionalize the
2994         svr4_relocate_main_executable call.
2995
2996 2010-01-14  Jan Kratochvil  <[email protected]>
2997
2998         * solib-svr4.c (scan_dyntag): Remove variable dyn_addr.  New variable
2999         target_section.  Find SECT in current_target_sections, gdb_assert it.
3000         (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
3001         New variable abfd.
3002         * symtab.c (lookup_objfile_from_block): Return the binary file instead
3003         of separate debug info file.
3004
3005 2010-01-14  Jan Kratochvil  <[email protected]>
3006
3007         Support PIEs with no symfile_objfile.
3008         * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
3009         * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
3010
3011 2010-01-14  Jan Kratochvil  <[email protected]>
3012
3013         * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
3014         code part to ...
3015         (svr4_static_exec_displacement): ... a new function.
3016         (svr4_exec_displacement): New function.
3017         (svr4_relocate_main_executable): Call svr4_exec_displacement.  Allocate
3018         new_offsets using alloca now.  Remove variable old_chain and changed.
3019         Call objfile_relocate unconditionally now.
3020
3021 2010-01-14  Doug Evans  <[email protected]>
3022
3023         * gdbtypes.c (arch_flags_type): Fix comment.
3024         * gdbtypes.h (arch_composite_type): Fix comment.
3025
3026 2009-01-14  Tristan Gingold  <[email protected]>
3027
3028         * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
3029         Call xstrdup for abfd->filename.  Pass symfile_flags and objfile flags
3030         to symbol_file_add_from_bfd.  Add OSO as separate objfile.
3031         (macho_oso_symfile): Add symfile_flags parameter.  Pass it to
3032         macho_add_oso_symfile.
3033         (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
3034
3035 2010-01-14  Joel Brobecker  <[email protected]>
3036
3037         Tru64: Dead threads are never deleted.
3038         * dec-thread.c (dec_thread_ptid_is_alive): New function.
3039         (dec_thread_count_gdb_threads): Fix counter increment.
3040         (dec_thread_add_gdb_thread): Fix *listp increment.
3041         (resync_thread_list): Fix bug in deletion of dead threads that
3042         caused all threads to be deleted, instead of just the dead ones.
3043
3044 2010-01-13  Phil Muldoon  <[email protected]>
3045
3046         PR python/10705
3047
3048         * python/python-internal.h: Add lazy_string_object_type
3049         definition.
3050         (create_lazy_string_object, gdbpy_initialize_lazy_string)
3051         (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
3052         * python/py-value.c (valpy_lazy_string): New function.
3053         (convert_value_from_python): Add lazy string conversion.
3054         * python/py-prettyprint.c (pretty_print_one_value): Check if
3055         return is also a lazy string.
3056         (print_string_repr): Add lazy string printing branch.
3057         (print_children): Likewise.
3058         * python/py-lazy-string.c: New file. Implement lazy strings.
3059         * python/python.c (_initialize_python): Call
3060         gdbpy_initialize_lazy_string.
3061         * varobj.c (value_get_print_value): Add lazy string printing
3062         branch.  Account for encoding.
3063         * c-lang.c (c_printstr): Account for new encoding argument.  If
3064         encoding is NULL, find encoding suited for type, otherwise use
3065         user encoding.
3066         * language.h (language_defn): Add encoding argument.
3067         (LA_PRINT_STRING): Likewise.
3068         * language.c (unk_lang_printstr): Update to reflect new encoding
3069         argument to language_defn.
3070         * ada-lang.h (ada_printstr): Likewise.
3071         * c-lang.h (c_printstr): Likewise.
3072         * p-lang.h (pascal_printstr);
3073         * f-lang.c (f_printstr): Likewise.
3074         * m2-lang.c (m2_printstr): Likewise.
3075         * objc-lang.c (objc_printstr): Likewise.
3076         * p-lang.c (pascal_printstr): Likewise.
3077         * scm-lang.c (scm_printstr): Likewise.
3078         * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
3079         encoding argument.
3080         * ada-valprint.c (ada_printstr): Likewise.
3081         * f-valprint.c (f_val_print): Likewise
3082         * m2-valprint.c (m2_val_print): Likewise.
3083         * p-valprint.c (pascal_val_print): Likewise.
3084         * expprint.c (print_subexp_standard): Likewise.
3085         * valprint.c (val_print_string): Likewise.
3086         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
3087         (SUBDIR_PYTHON_SRCS): Likewise.
3088         (py-lazy-string.o): New rule.
3089
3090 2010-01-13  Doug Evans  <[email protected]>
3091
3092         * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
3093         uninitialized" warning from gcc on local `tree'.
3094
3095 2010-01-13  Vladimir Prus  <[email protected]>
3096
3097         Implement core awareness.
3098
3099         * bcache.c (compare_ints): Remove
3100         (print_percentage): Use compare_positive_ints.
3101         * defs.h (compare_positive_ints): Declare.
3102         * linux-nat.h (struct lin_lwp): New field core.
3103         (linux_nat_core_of_thread_1): Declare.
3104         * linux-nat.c (add_lwp): Init the 'core' field.
3105         (linux_nat_wait_1): Record the core.
3106         (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
3107         (linux_nat_add_target): Register the above.
3108         * linux-thread-db.c (update_thread_core): New.
3109         (thread_db_find_new_threads): Update core information for
3110         every thread.
3111         * remote.c (struct private_thread_info): New.
3112         (free_private_thread_info, demand_private_info): New.
3113         (PACKET_qXfer_threads, use_osdata_threads): New.
3114         (struct thread_item, threads_parsing_context
3115         (start_thread, end_thread, thread_attributes)
3116         (thread_children, threads_children, threads_elements): New.
3117         (remote_threads_info): Try qXfer:threads before anything
3118         else.
3119         (remote_protocol_packets): Register qXfer:threads.
3120         (remote_open_1): Init use_osdata_threads.
3121         (struct stop_reply): New field 'core'.
3122         (remote_parse_stop_reply): Parse core number.
3123         (process_stop_reply): Record core number.
3124         (remote_xfer_partial): Handle qXfer:threads.
3125         (remote_core_of_thread): New.
3126         (init_remote_ops): Register remote_core_of_thread.
3127         (_initialize_remote): Register qXfer:read.
3128         * target.c (target_core_of_thread): New
3129         * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
3130         (struct target_ops): New field to_core_of_threads.
3131         (target_core_of_thread): Declare.
3132         * gdbthread.h (struct thread_info): New field private_dtor.
3133         * thread.c (print_thread_info): Report the core.
3134         * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
3135         * utils.c (compare_positive_ints): New.
3136         * features/threads.dtd: New.
3137         * mi/mi-interp.c (mi_on_normal_stop): Report the core.
3138         * mi/mi-main.c (struct collect_cores_data, collect_cores)
3139         (do_nothing, free_vector_of_osdata_items)
3140         (splay_tree_int_comparator, free_splay_tree): New.
3141         (print_one_inferior_data): Implemented printing of selected
3142         inferiors.  Collect and print cores.
3143         (output_cores): New.
3144         (mi_cmd_list_thread_groups): Support --recurse.  Permit specifying
3145         thread groups together with --available.
3146
3147 2010-01-12  Jan Kratochvil  <[email protected]>
3148
3149         * configure: Regenerate (for _STRUCTURED_PROC).
3150
3151 2010-01-12  Joel Brobecker  <[email protected]>
3152
3153         Delete dead function.
3154         * ada-lang.c (extract_string): Delete.  No longer used.
3155
3156 2010-01-12  Joel Brobecker  <[email protected]>
3157
3158         Fix -Wunused warning in dec-thread.c.
3159         * dec-thread.c (dec_thread_count_gdb_threads)
3160         (dec_thread_add_gdb_thread): Prevent -Wunused warning.
3161
3162 2010-01-12  Joel Brobecker  <[email protected]>
3163
3164         * ada-valprint.c (ada_print_floating): Remove trailing space.
3165
3166 2010-01-12  Joel Brobecker  <[email protected]>
3167
3168         Add support for DW_AT_GNAT_descriptive_type.
3169         * gdbtypes.h (enum type_specific_kind): New enum.
3170         (struct main_type) [type_specific_field]: New component.
3171         [type_specific]: Add new component "gnat_stuff".
3172         (struct gnat_aux_type): New type.
3173         (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
3174         (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
3175         (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
3176         (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
3177         (TYPE_SPECIFIC_FIELD): New macros.
3178         (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
3179         type does not hold any cplus-specific data.
3180         (TYPE_RAW_CPLUS_SPECIFIC): New macro.
3181         (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
3182         (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
3183         cplus-specific data.
3184         * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
3185         Set new component TYPE_SPECIFIC_FIELD (type).
3186         (gnat_aux_default): New constant.
3187         (allocate_gnat_aux_type): New function.
3188         (init_type): Add initialization the type-specific stuff for
3189         TYPE_CODE_FLT and TYPE_CODE_FUNC types.
3190         (print_gnat_stuff): New function.
3191         (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
3192         specific data.  Adjust code that prints the contents of the
3193         type-specific union using the TYPE_SPECIFIC_FIELD value.
3194         * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
3195         the type cplus stuff for Ada types.
3196         (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
3197         Error out if these routines are called with an Ada type.
3198         (read_structure_type, read_array_type, read_subrange_type):
3199         Add call to set_descriptive_type.
3200         (set_die_type): Initialize the gnat-specific data if necessary.
3201         (need_gnat_info, die_descriptive_type, set_descriptive_type):
3202         New functions.
3203         * ada-lang.c (decode_constrained_packed_array_type): Use
3204         decode_constrained_packed_array_type instead of doing a standard
3205         lookup to locate a parallel type.
3206         (find_parallel_type_by_descriptive_type): New function.
3207         (ada_find_parallel_type_with_name): New function.
3208         (ada_find_parallel_type): Reimplement using
3209         ada_find_parallel_type_with_name.
3210         * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
3211         to check if type has a cplus stuff.
3212         * linespec.c (total_number_of_methods): Likewise.
3213         * mdebugread.c (new_type): Likewise.
3214
3215 2010-01-11  Jan Kratochvil  <[email protected]>
3216
3217         * NEWS: Document the 0b binary number prefix parsing.
3218
3219 2010-01-11  Jan Kratochvil  <[email protected]>
3220
3221         * objfiles.c (objfile_relocate1): Change the return type to int.
3222         Describe the new return value.  Return non-zero if data changed.
3223         (objfile_relocate): New variable changed.  Set it.  Call
3224         breakpoint_re_set depending on CHANGED.
3225
3226 2010-01-11  Jan Kratochvil  <[email protected]>
3227
3228         Implement binary numbers parsing.
3229         * c-exp.y (parse_number): New case 'b' and 'B'.
3230
3231 2010-01-11  Jan Kratochvil  <[email protected]>
3232             Tristan Gingold  <[email protected]>
3233
3234         * solib.c (info_sharedlibrary_command): Replace
3235         objfile_has_partial_symbols and objfile_has_full_symbols calls by
3236         objfile_has_symbols.
3237
3238 2010-01-10  Joel Brobecker  <[email protected]>
3239
3240         * NEWS: Document the improvements made to the mips-irix port.
3241
3242 2010-01-09  Joel Brobecker  <[email protected]>
3243
3244         Fix the documentation of valprint.c:value_print.
3245         * valprint.c (value_print): Update the function description to
3246         mention that the syntax of the output follows the current_language,
3247         not necessarily C.
3248
3249 2010-01-09  Jan Kratochvil  <[email protected]>
3250
3251         Fix displacement of separate debug info files.
3252         * objfiles.c (objfile_relocate): Rename to ...
3253         (objfile_relocate1): ... here and make it static.  Extend the comment.
3254         (objfile_relocate): New function.
3255         * solib-spu.c (spu_relocate_main_executable): Explicitly check if
3256         SYMFILE_OBJFILE is NULL.  Remove variables objfile and old_chain.
3257         Remove following of SEPARATE_DEBUG_OBJFILE.  new_offsets is now
3258         allocated using alloca.
3259         * symfile.c (copy_section_addr_info): Remove.
3260         (build_section_addr_info_from_objfile): Make it global.  New variables
3261         addr_bit and mask, use them.
3262         * symfile.h (build_section_addr_info_from_objfile): New prototype.
3263         (copy_section_addr_info): Remove.
3264
3265 2010-01-09  Joel Brobecker  <[email protected]>
3266
3267         Signal unwinder for mips-irix N32.
3268         * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
3269         tramp-frame.h.
3270         (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
3271         (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
3272         (SIGCONTEXT_LO_OFF): New macros. 
3273         (mips_irix_n32_tramp_frame_init): New function. 
3274         (mips_irix_n32_tramp_frame): New static constant.
3275         (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
3276
3277 2010-01-09  Joel Brobecker  <[email protected]>
3278
3279         Breakpoint in shared library does not work on mips-irix.
3280         * procfs.c: #include "observer.h".
3281         (procfs_inferior_created): New function, moving here the code
3282         which unsets the syssgi syscall-exit notifications.
3283         (procfs_create_inferior): Remove the code which unsets the syssgi
3284         syscall-exit notifications. It is too early to do this here.
3285         (_initialize_procfs): Attach the procfs_inferior_created observer.
3286
3287 2010-01-09  Joel Brobecker  <[email protected]>
3288
3289         Wrong return convention for arrays (mips-irix).
3290         * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
3291         128 bits or smaller are returned the same way as structs
3292         and unions of the the same size.
3293
3294 2010-01-09  Joel Brobecker  <[email protected]>
3295
3296         Cannot set the PC on mips-irix.
3297         * irix5-nat.c (fill_gregset): Check regno against the raw PC
3298         register number, no the cooked one.
3299
3300 2010-01-09  Joel Brobecker  <[email protected]>
3301
3302         Error while loading core file on mips-irix.
3303         * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
3304         if debugging from a core file.
3305
3306 2010-01-09  Joel Brobecker  <[email protected]>
3307
3308         GDB hangs when attaching to process on mips-irix.
3309         * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
3310         attaching to a process.
3311
3312 2010-01-09  Joel Brobecker  <[email protected]>
3313
3314         Use the correct breakpoint instruction on mips-irix.
3315         * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
3316         containing the correct breakpoint instruction to use on mips-irix.
3317         Use it when the osabi is GDB_OSABI_IRIX.
3318
3319 2010-01-09  Joel Brobecker  <[email protected]>
3320
3321         -Wunused warning in procfs.c (mips-irix only).
3322         * procfs.c (gdb_praddset, gdb_prdelset): New macros.  Use them
3323         throughout instead of using praddset and prdelset respectively.
3324
3325 2010-01-09  Joel Brobecker  <[email protected]>
3326
3327         GDB crash while stepping into function.
3328         * infrun.c (handle_inferior_event): Refetch the current frame
3329         after handling what.main_action, in case that pointer became
3330         dangling.
3331
3332 2010-01-09  Joel Brobecker  <[email protected]>
3333
3334         Fix build failure of solaris-hosted cross debuggers.
3335         * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
3336
3337 2010-01-09  Daniel Gutson  <[email protected]>
3338
3339         Fix build failure on sparc-solaris.
3340         * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
3341
3342 2010-01-08  Jan Kratochvil  <[email protected]>
3343
3344         Move some symfile code into subroutines.
3345         * symfile.h (relative_addr_info_to_section_offsets)
3346         (addr_info_make_relative): New prototypes.
3347         * symfile.c (default_symfile_offsets): Move a part to ...
3348         (relative_addr_info_to_section_offsets): ... this new function.
3349         (default_symfile_offsets): Call it.
3350         (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
3351         this part to ...
3352         (addr_info_make_relative): ... this new function.
3353
3354 2010-01-08  Jan Kratochvil  <[email protected]>
3355
3356         Add from_tty to solib_create_inferior_hook.
3357         * infcmd.c (post_create_inferior): Move solib_add after
3358         solib_create_inferior_hook.  Pass from_tty to
3359         solib_create_inferior_hook.  Call solib_add and SOLIB_ADD with
3360         0 from_tty and comment why.
3361         * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
3362         * linux-nat.c (linux_child_follow_fork): Likewise.
3363         * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
3364         * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
3365         from_tty.
3366         * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
3367         * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
3368         * solib-null.c (null_solib_create_inferior_hook): Likewise.
3369         * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
3370         * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
3371         * solib-som.c (som_solib_create_inferior_hook): Likewise.
3372         * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
3373         Pass it to svr4_so_ops.solib_create_inferior_hook.
3374         * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
3375         from_tty.
3376         * solib-svr4.c (enable_break): New parameter from_tty.  Pass it to
3377         solib_add.
3378         (svr4_solib_create_inferior_hook): New parameter from_tty.  Pass it to
3379         enable_break.
3380         * solib-target.c (solib_target_solib_create_inferior_hook): New
3381         parameter from_tty.
3382         * solib.c (solib_create_inferior_hook): New parameter from_tty.  Pass
3383         it to ops->solib_create_inferior_hook.
3384         (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
3385         Move solib_add after solib_create_inferior_hook, call it now with
3386         from_tty as 0.  New comment there.
3387         * solib.h (solib_create_inferior_hook): New parameter from_tty.
3388         * solist.h (struct target_so_ops <solib_create_inferior_hook>):
3389         Likewise.
3390
3391 2010-01-08  Vladimir Prus  <[email protected]>
3392
3393         Fix multiexec race.
3394         * infrun.c (handle_inferior_event): Use get_thread_regcache
3395         with events ptid, not get_current_regcache.
3396
3397 2009-01-08  Joel Brobecker  <[email protected]>
3398
3399         GDB crash with empty executable name (MinGW).
3400         * source.c (openp): Add assert that parameter string is not NULL.
3401         if parameter string is an empty string, then return with a failure
3402         immediately.
3403
3404 2009-01-08  Joel Brobecker  <[email protected]>
3405
3406         Get rid of support for VAX Floats.
3407         * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
3408         (ada_vax_float_print_function): Delete.
3409         * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
3410         (ada_vax_float_print_function): Delete.
3411         * ada-typeprint.c (print_vax_floating_point_type): Delete.
3412         (ada_print_type): Remove support for VAX floats.
3413         * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
3414
3415 2010-01-08  Jan Kratochvil  <[email protected]>
3416
3417         * stabsread.c (read_args): Handle zero arguments.
3418
3419 2009-01-08  Joel Brobecker  <[email protected]>
3420
3421         Cannot find in-tree libiconv.a after reconfigure.
3422         * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
3423         that we can use, then cache the path to this archive.
3424         * configure: Regenerate.
3425
3426 2010-01-07  Stan Shebs  <[email protected]>
3427
3428         Make tracepoint operations go through target vector.
3429         * target.h (enum trace_find_type): New enum.
3430         (struct target_ops): New fields to_trace_init,
3431         to_download_tracepoint, to_download_trace_state_variable,
3432         to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
3433         to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
3434         to_set_disconnected_tracing.
3435         (target_trace_init): New macro.
3436         (target_download_tracepoint): New macro.
3437         (target_download_trace_state_variable): New macro.
3438         (target_trace_start): New macro.
3439         (target_trace_set_readonly_regions): New macro.
3440         (target_get_trace_status): New macro.
3441         (target_trace_stop): New macro.
3442         (target_trace_find): New macro.
3443         (target_get_trace_state_variable_value): New macro.
3444         (target_set_disconnected_tracing): New macro.
3445         * target.c (update_current_target): Inherit and set defaults for
3446         tracepoint operations.
3447         * tracepoint.c (default_collect): Make globally visible.
3448         (target_is_remote): Remove, along with all calls.
3449         (tvariables_info): Call target_get_trace_state_variable_value.
3450         (remote_set_transparent_ranges): Remove.
3451         (trace_start_command): Call target_trace_init,
3452         target_download_tracepoint, etc.
3453         (download_tracepoint): Remove.
3454         (trace_stop_command): Simplify.
3455         (stop_tracing): Call target_trace_stop.
3456         (get_trace_status): Call target_get_trace_status.
3457         (trace_status_command): Add case for targets that cannot trace.
3458         (finish_tfind_command): Change to take numerical arguments, call
3459         target_trace_find.
3460         (trace_find_command): Update call to finish_tfind_command.
3461         (trace_find_pc_command): Ditto.
3462         (trace_find_tracepoint_command): Ditto.
3463         (trace_find_line_command): Ditto.
3464         (trace_find_range_command): Ditto.
3465         (trace_find_outside_command): Ditto.
3466         (set_disconnected_tracing_value): Call
3467         target_set_disconnected_tracing.
3468         * remote.c: Add protocol encoding bits from tracepoint.c.
3469         (trace_error): Move from tracepoint.c.
3470         (remote_get_noisy_reply): Ditto.
3471         (free_actions_list_cleanup_wrapper): Ditto.
3472         (free_actions_list): Ditto.
3473         (remote_trace_init): New function.
3474         (remote_download_tracepoint): New function.
3475         (remote_download_trace_state_variable): New function.
3476         (remote_trace_set_readonly_regions): New function.
3477         (remote_trace_start): New function.
3478         (remote_get_trace_status): New function.
3479         (remote_trace_stop): New function.
3480         (remote_trace_find): New function.
3481         (remote_download_trace_state_variable): New function.
3482         (remote_set_disconnected_tracing): New function.
3483         (init_remote_ops): Add tracepoint operations.
3484
3485         * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
3486
3487 2010-01-07  Tristan Gingold  <[email protected]>
3488
3489         * symfile.c (build_section_addr_info_from_objfile): New function.
3490         (symbol_file_add_separate): Don't use offsets from objfile but
3491         built an addr info.
3492
3493 2010-01-06  Stan Shebs  <[email protected]>
3494
3495         Support disconnected tracing.
3496         * infcmd.c (detach_command): Ask whether to stop tracing.
3497         * cli/cli-cmds.c (quit_command): Ditto.
3498         * breakpoint.h (struct breakpoint): New field number_on_target.
3499         * breakpoint.c (create_tracepoint_from_upload): New function.
3500         (get_tracepoint_by_number_on_target): New function.
3501         * remote.c (struct remote): New field disconnected_tracing.
3502         (remote_disconnected_tracing_feature): New function.
3503         (remote_protocol_features): Add DisconnectedTracing.
3504         (struct uploaded_tp): New struct.
3505         (uploaded_tps): New global.
3506         (get_uploaded_tp): New function.
3507         (find_matching_tracepoint): New function.
3508         (remote_get_tracing_state): New function.
3509         (remote_start_remote): Call it.
3510         * tracepoint.c (disconnected_tracing): New global.
3511         (trace_start_command): Initialize number_on_target.
3512         (stop_tracing): New function, split out from...
3513         (trace_stop_command): Call stop_tracing.
3514         (get_trace_status): New function, split out from...
3515         (trace_status_command): Call get_trace_status, add info on
3516         disconnection behavior.
3517         (disconnect_or_stop_tracing): New function.
3518         (finish_tfind_command): Translate from number on target.
3519         (trace_find_tracepoint_command): Translate to number on target.
3520         (send_disconnected_tracing_value): New function.
3521         (set_disconnected_tracing): New function.
3522         (_initialize_tracepoint): Add disconnected-tracing variable.
3523         * NEWS: Mention disconnected tracing.
3524
3525 2010-01-06  Tristan Gingold  <[email protected]>
3526
3527         * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
3528         parameter to main_objfile.  Iterate on all separate debug objfiles.
3529         * symfile.h (symbol_file_add_separate)
3530         (find_separate_debug_file_by_debuglink): Remove parameter names.
3531         * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
3532         (reread_symbols): Use free_objfile_separate_debug.
3533         * objfiles.h (struct objfile): Add separate_debug_objfile_link.
3534         Adjust comment.
3535         (objfile_separate_debug_iterate, add_separate_debug_objfile)
3536         (free_objfile_separate_debug): New prototypes.
3537         * objfiles.c (objfile_separate_debug_iterate): New function.
3538         (add_separate_debug_objfile, free_objfile_separate_debug): New
3539         functions.
3540         (free_objfile): Use free_objfile_separate_debug.  Adjust for
3541         multiple separate debug objfile.
3542         (objfile_has_symbols): Adjust comment.  Iterate on all separate
3543         debug objfiles.
3544         * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
3545         debug objfile.
3546         (lookup_minimal_symbol_text): Ditto.
3547         (lookup_minimal_symbol_by_pc_name): Ditto.
3548         (lookup_minimal_symbol_solib_trampoline): Ditto.
3549         (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
3550         debug objfiles.
3551
3552 2010-01-05  Stan Shebs  <[email protected]>
3553
3554         Add fast tracepoints.
3555         * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
3556         * arch-utils.c (default_fast_tracepoint_valid_at): New function.
3557         * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
3558         * breakpoint.c (tracepoint_type): New function.
3559         (ALL_TRACEPOINTS): Use it.
3560         (should_be_inserted): Ditto.
3561         (bpstat_check_location): Ditto.
3562         (print_one_breakpoint_location): Ditto.
3563         (user_settable_breakpoint): Ditto.
3564         (set_breakpoint_location_function): Ditto.
3565         (disable_breakpoints_in_shlibs): Ditto.
3566         (delete_trace_command): Ditto.
3567         (print_it_typical): Add bp_fast_tracepoint case.
3568         (bpstat_what): Ditto.
3569         (print_one_breakpoint_location): Ditto.
3570         (allocate_bp_location): Ditto.
3571         (mention): Ditto.
3572         (breakpoint_re_set_one): Ditto.
3573         (disable_command): Ditto.
3574         (enable_command): Ditto.
3575         (check_fast_tracepoint_sals): New function.
3576         (break_command_really): Call it.
3577         (ftrace_command): New function.
3578         (_initialize_breakpoint): Add ftrace command.
3579         * gdbarch.sh (fast_tracepoint_valid_at): New.
3580         * gdbarch.h, gdbarch.c: Regenerate.
3581         * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
3582         (i386_gdbarch_init): Use it.
3583         * remote.c (struct remote_state): New field fast_tracepoints.
3584         (PACKET_FastTracepoints): New packet config type.
3585         (remote_fast_tracepoint_feature): New function.
3586         (remote_protocol_features): Add FastTracepoints.
3587         (remote_supports_fast_tracepoints): New function.
3588         (_initialize_remote): Add FastTracepoints.
3589         * tracepoint.c (download_tracepoint): Add fast tracepoint option.
3590         * NEWS: Mention fast tracepoints.
3591
3592 2010-01-06  Joel Brobecker  <[email protected]>
3593
3594         * gdb-gdb.py: New file.
3595
3596 2010-01-05  Michael Snyder  <[email protected]>
3597
3598         * infrun.c (handle_inferior_event): Fix typo in comment.
3599
3600 2010-01-05  Jan Kratochvil  <[email protected]>
3601
3602         * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
3603
3604 2010-01-04  Ulrich Weigand  <[email protected]>
3605
3606         * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
3607         and s390x-linux64.
3608         (s390-linux32-expedite): Define.
3609         (s390-linux64-expedite): Define.
3610         (s390x-linux64-expedite): Define.
3611         * features/s390-acr.xml: New file.
3612         * features/s390-fpr.xml: New file.
3613         * features/s390-core32.xml: New file.
3614         * features/s390-core64.xml: New file.
3615         * features/s390x-core64.xml: New file.
3616         * features/s390-linux32.xml: New file.
3617         * features/s390-linux64.xml: New file.
3618         * features/s390x-linux64.xml: New file.
3619         * features/s390-linux32.c: New generated file.
3620         * features/s390-linux64.c: New generated file.
3621         * features/s390x-linux64.c: New generated file.
3622
3623         * regformats/s390-linux32.dat: New generated file.
3624         * regformats/s390-linux64.dat: New generated file.
3625         * regformats/s390x-linux64.dat: New generated file.
3626         * regformats/reg-s390.dat: Remove.
3627         * regformats/reg-s390x.dat: Remove.
3628
3629         * s390-nat.c: Include "auxv.h" and <elf.h>.
3630         (HWCAP_S390_HIGH_GPRS): Define if undefined.
3631         (s390_target_wordsize): New function.
3632         (s390_auxv_parse): Likewise.
3633         (s390_get_hwcap): Likewise.
3634         (s390_read_description): Likewise.
3635         (_initialize_s390_nat): Install s390_auxv_parse and
3636         s390_read_description.
3637
3638         * s390-tdep.c: Include "features/s390-linux32.c",
3639         "features/s390-linux64.c", and "features/s390x-linux64.c".
3640         (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
3641         (s390_register_call_saved): New function.
3642         (s390_register_name): Remove.
3643         (s390_register_type): Remove.
3644         (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
3645         (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
3646         (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
3647         (s390_pseudo_register_name): New function.
3648         (s390_pseudo_register_type): New function.
3649         (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
3650         Handle full GPR pesudos and varying pseudo register numbers.
3651         (s390_pseudo_register_write): Likewise
3652         (s390x_pseudo_register_read): Remove.
3653         (s390x_pseudo_register_write): Likewise.
3654         (s390_register_group): Remove.
3655         (s390_pseudo_register_group): New function.
3656         (s390_regmap_gregset): Add GPR upper halves.
3657         (s390x_regmap_gregset): Likewise.
3658         (s390_regmap_fpregset): Likewise.
3659         (s390_regmap_upper): New global variable.
3660         (s390_upper_regset): New global variable.
3661         (s390_upper_regset_sections): New global variable.
3662         (s390_regset_from_core_section): Handle GPR upper halves.
3663         (s390_core_read_description): New function.
3664         (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
3665         register information.  Handle varying pseudo register numbers.
3666         (s390_backchain_frame_unwind_cache): Likewise.
3667         (s390_frame_prev_register): Unwind full GPRs to show lower halves.
3668         (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
3669         (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
3670         PC and CC pseudos.  Unwind upper halves and full GPRs as appropriate.
3671         Handle varying pseudo register numbers.
3672         (s390_unwind_pc): Handle varying pseudo register numbers.
3673         (s390_dwarf2_prev_register): New function.
3674         (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
3675         register information.  Handle varying pseudo register numbers.
3676         Install s390_dwarf2_prev_register to unwind full GPRs.
3677         (s390_gdbarch_init): Handle target descriptions.  Assign varying
3678         pseudo register numbers.  Install s390_adjust_frame_regnum.
3679         (_initialize_s390_tdep): Initialize target descriptions.
3680
3681         * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
3682         (S390_NUM_REGS): Redefine to include upper half registers.
3683         (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
3684         (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
3685         (tdesc_s390_linux32): Add declaration.
3686         (tdesc_s390_linux64): Likewise.
3687         (tdesc_s390x_linux64): Likewise.
3688
3689 2010-01-04  Ulrich Weigand  <[email protected]>
3690
3691         * regset.h (struct core_regset_section): Add HUMAN_NAME.
3692         * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
3693         * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
3694         (ppc_linux_vmx_regset_sections): Likewise.
3695         (ppc_linux_fp_regset_sections): Likewise.
3696
3697         * corelow.c (get_core_register_section): Constify arguments.
3698         (get_core_registers): Use gdbarch_core_regset_sections instead
3699         of hard-coded platform-specific register section names.
3700
3701 2010-01-04  Ulrich Weigand  <[email protected]>
3702
3703         * dwarf2loc.c (read_pieced_value): If a piece occupies part of
3704         a register, assume the least-significant part is used.
3705         (write_pieced_value): Likewise.
3706
3707 2010-01-04  Ulrich Weigand  <[email protected]>
3708
3709         * printcmd.c: Include "arch-utils.h".
3710         (do_one_display): Re-parse expression if current architecture changed.
3711
3712 2010-01-03  Jan Kratochvil  <[email protected]>
3713             Joel Brobecker  <[email protected]>
3714
3715         * gdbtypes.c (check_typedef): New comment on type length.
3716         * value.c (allocate_value_lazy): Remove the unused atype variable.  New
3717         comment on type length.
3718         (value_primitive_field): Keep the original TYPE value, new comment.
3719
3720 2010-01-01  Jan Kratochvil  <[email protected]>
3721
3722         * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
3723         p_start.  Change != comparisons to > and < comparisons.
3724
3725 2010-01-01  Jan Kratochvil  <[email protected]>
3726
3727         * cli/cli-script.c (process_next_line): Check P2 overrun.
3728
3729 2009-01-01  Joel Brobecker  <[email protected]>
3730
3731         Update the copyright hearder to add year 2010 for most GDB files.
3732
3733 2009-01-01  Joel Brobecker  <[email protected]>
3734
3735         Fix build failure in inf-ptrace.c.
3736         * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
3737
3738 2010-01-01  Joel Brobecker  <[email protected]>
3739
3740         * top.c (print_gdb_version): Update copyright year.
3741
3742 2010-01-01  Joel Brobecker  <[email protected]>
3743
3744         Fix break *FUN'address thread NUM.
3745         * ada-lex.l (task): Expand rule to also match the thread keyword.
3746
3747 2010-01-01  Joel Brobecker  <[email protected]>
3748
3749         Fix break *FUN'address task NUM.
3750         * ada-lex.l (task): New rule.
3751         * ada-lang.c (valid_task_id): Make sure the Ada task list has
3752         been built before using it.
3753
3754 For older changes see ChangeLog-2009.
3755 \f
3756 Local Variables:
3757 mode: change-log
3758 left-margin: 8
3759 fill-column: 74
3760 version-control: never
3761 coding: utf-8
3762 End:
This page took 0.238251 seconds and 4 git commands to generate.