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