a1056d7d61b59081086c336985ab24fb4c4a7926
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2009-11-24 Joel Brobecker <brobecker@adacore.com>
2
3 * breakpoint.c (expand_line_sal_maybe): Adjust adjust the SAL
4 past the function prologue in the case where we were given only
5 one SAL.
6
7 2009-11-24 Pedro Alves <pedro@codesourcery.com>
8
9 * record.c (init_record_ops, init_record_core_ops): Actually
10 install record_stopped_data_address.
11
12 2009-11-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
13
14 * dwarf2read.c [HAVE_MMAP] (MAP_FAILED): Define if missing.
15
16 2009-11-23 Tom Tromey <tromey@redhat.com>
17
18 * dwarf2read.c (find_partial_die): Don't reassign to 'back_to'.
19
20 2009-11-23 Michael Snyder <msnyder@vmware.com>
21
22 * NEWS: Mention hw watchpoint fix for process record.
23
24 2009-11-23 Paul Pluzhnikov <ppluzhnikov@google.com>
25
26 * cli/cli-cmds.c (disassemble_command): Split on comma.
27 (init_cli_cmds): Update help.
28 * NEWS: Mention incompatible change to 'disassemble'.
29
30 2009-11-22 Pedro Alves <pedro@codesourcery.com>
31
32 Make hardware breakpoints work for process repord.
33
34 * record.c (record_wait): Only adjust PC on software breakpoints
35 hits.
36
37 2009-11-22 Pedro Alves <pedro@codesourcery.com>
38 Michael Snyder <msnyder@vmware.com>
39
40 Make hardware watchpoints work for process record.
41
42 * breakpoint.c (hardware_watchpoint_inserted_in_range): New.
43 * breakpoint.h (hardware_watchpoint_inserted_in_range): Declare.
44 * record.c (record_beneath_to_stopped_by_watchpoint)
45 (record_beneath_to_stopped_data_address, record_hw_watchpoint):
46 New globals.
47 (record_exec_insn): Check for watchpoint hits.
48 (tmp_to_stopped_by_watchpoint, tmp_to_stopped_data_address): New
49 globals.
50 (record_open): Set tmp_to_stopped_by_watchpoint,
51 tmp_to_stopped_data_address,
52 record_beneath_to_stopped_by_watchpoint and
53 record_beneath_to_stopped_data_address.
54 (record_wait): Report watchpoint hits to the core. Update and
55 extend comments.
56 (record_stopped_by_watchpoint): New.
57 (record_stopped_data_address): New.
58 (init_record_ops): Install them.
59 (init_record_core_ops): Ditto.
60
61 2009-11-21 Pedro Alves <pedro@codesourcery.com>
62
63 * breakpoint.c (update_watchpoint): Skip creating locations and
64 reading the selected frame if there's no execution.
65 (bpstat_stop_status): Use is_hardware_watchpoint. If not
66 stopping, update watchpoints and the global location list, instead
67 of removing and inserting all breakpoints.
68 (breakpoint_address_is_meaningful): Hardware watchpoints also have
69 a meaningful target address.
70 (watchpoint_locations_match): New.
71 (breakpoint_locations_match): New.
72 (watch_command_1): Create the watchpoint breakpoint without any
73 location initially. Use update_watchpoint to create the
74 watchpoint locations.
75 (update_global_location_list): Use breakpoint_locations_match, so
76 watchpoint locations are handled too. Also detect duplicate
77 watchpoint locations.
78
79 2009-11-21 Pedro Alves <pedro@codesourcery.com>
80
81 * breakpoint.h (struct breakpoint) <watchpoint_thread>: New field.
82 * breakpoint.c (watchpoint_in_thread_scope): New.
83 (update_watchpoint): Skip if the local watchpoint's thread doesn't
84 match the current thread, or if the current thread is running.
85 (watchpoint_check): Ditto.
86 (watch_command_1): Set the watchpoint's watchpoint_thread field.
87
88 2009-11-20 Jan Kratochvil <jan.kratochvil@redhat.com>
89
90 * breakpoint.c (bp_location_compare): Change parameter a to ap and b to
91 bp. New variables a and b.
92 (bp_location_compare_for_qsort): Remove.
93 (update_global_location_list): Use now bp_location_compare.
94
95 2009-11-20 Jan Kratochvil <jan.kratochvil@redhat.com>
96
97 Fix repeated rwatch output.
98 * amd64-linux-nat.c (amd64_linux_dr_set, amd64_linux_dr_set_control)
99 (amd64_linux_dr_set_addr, amd64_linux_dr_reset_addr)
100 (amd64_linux_dr_get_status): New comments.
101 (amd64_linux_dr_unset_status): New function.
102 (_initialize_amd64_linux_nat): Install it.
103 * i386-linux-nat.c (i386_linux_dr_get, i386_linux_dr_set)
104 (i386_linux_dr_set_control, i386_linux_dr_set_addr)
105 (i386_linux_dr_reset_addr, i386_linux_dr_get_status): New comments.
106 (i386_linux_dr_unset_status): New function.
107 (_initialize_i386_linux_nat): Install it.
108 * i386-nat.c (I386_DR_WATCH_MASK): New macro.
109 (I386_DR_WATCH_HIT): Use I386_DR_WATCH_MASK.
110 (i386_insert_aligned_watchpoint): Call i386_dr_low.unset_status.
111 * i386-nat.h (struct i386_dr_low_type): Extend comments for
112 set_control, set_addr, reset_addr and get_status. New unset_status.
113 * breakpoint.c (update_watchpoint): Extend the comment.
114
115 2009-11-20 Jan Kratochvil <jan.kratochvil@redhat.com>
116 Pedro Alves <pedro@codesourcery.com>
117
118 Fix reordered watchpoints triggered in other threads during all-stop.
119
120 * linux-nat.c (resume_callback, linux_nat_resume): Clear
121 stopped_by_watchpoint.
122 (save_sigtrap, linux_nat_stopped_by_watchpoint)
123 (linux_nat_stopped_data_address): New.
124 (stop_wait_callback, linux_nat_filter_event): Call save_sigtrap.
125 (linux_nat_add_target): Install linux_nat_stopped_by_watchpoint
126 and linux_nat_stopped_data_address.
127 * linux-nat.h (struct lwp_info): New fields stopped_by_watchpoint,
128 stopped_data_address_p and stopped_data_address.
129
130 2009-11-20 Michael Snyder <msnyder@vmware.com>
131
132 * target.h (struct target_ops): New methods to_get_bookmark
133 and to_goto_bookmark.
134 (target_get_bookmark): New macro.
135 (target_goto_bookmark): New macro.
136 * target.c (dummy_get_bookmark): New function, default implementation.
137 (dummy_goto_bookmark): New function, default implementation.
138 (update_current_target): Inherit new methods.
139 * record.c (record_get_bookmark): New function.
140 (record_goto_bookmark): New function.
141 (init_record_ops): Set to_get_bookmark and to_goto_bookmark methods.
142 * reverse.c (struct bookmark): New type.
143 (save_bookmark_command): New function (command).
144 (delete_bookmark_command): New function (command).
145 (goto_bookmark_command): New function (command).
146 (bookmarks_info): New function (command).
147 (_initialize_reverse): Add new bookmark commands.
148 * command.h (enum command_class): Add class_bookmark.
149 * NEWS: Mention bookmark commands.
150
151 2009-11-20 Pedro Alves <pedro@codesourcery.com>
152
153 * breakpoint.c (update_global_location_list): Fix duplicate
154 locations detection.
155
156 2009-11-20 Pedro Alves <pedro@codesourcery.com>
157
158 * infrun.c (handle_inferior_event): Hardware hatchpoint traps are
159 never random signals.
160 * breakpoint.c (update_global_location_list): Always delete
161 immediately delete hardware watchpoint locations and other
162 locations whose target address isn't meaningful. Update comment
163 explaining the hazard of moribund locations.
164
165 2009-11-19 Joel Brobecker <brobecker@adacore.com>
166
167 * ada-lang.c (discrete_type_p): TYPE_CODE_BOOL is also a discrete type.
168
169 2009-11-19 Joel Brobecker <brobecker@adacore.com>
170
171 * completer.c (complete_line_internal): Make sure the command
172 completer is not NULL before calling it.
173
174 2009-11-19 Jerome Guitton <guitton@adacore.com>
175
176 * ada-lang.c (packed_array_type): Rename to...
177 (constrained_packed_array_type): ...and update comment.
178 (decode_packed_array, decode_constrained_packed_array): Ditto.
179 (decode_packed_array_type, decode_constrained_packed_array_type):
180 Ditto.
181 (ada_is_constrained_packed_array_type): New function.
182 (ada_is_unconstrained_packed_array_type): New function.
183 (decode_packed_array_bitsize): New function, extracted from
184 decode_packed_array_type.
185 (ada_type_of_array): Add support for unconstrained packed arrays.
186 (ada_coerce_to_simple_array_ptr, ada_coerce_to_simple_array)
187 (ada_array_bound_from_type, ada_array_bound, ada_array_length)
188 (ada_prefer_type, to_fixed_array_type, ada_evaluate_subexp): Resync.
189 * ada-lang.h (ada_is_packed_array_type,
190 ada_is_constrained_packed_array_type): Renaming.
191 * ada-valprint.c (ada_val_print_1): Resync.
192 * ada-typeprint.c (print_array_type, ada_print_type): Resync.
193
194 2009-11-19 Joel Brobecker <brobecker@adacore.com>
195
196 Wrong function used to perform address addition/subtraction.
197 * ada-lang.c (ada_type_match): Stop making TYPE_CODE_VOID
198 a wildcard matching any type. For types that we don't already
199 handle specifically, make sure that both types have the same code.
200
201 2009-11-19 Joel Brobecker <brobecker@adacore.com>
202
203 * ada-lang.c (ada_decode): Add handling of "TB" suffixes for
204 task bodies.
205
206 2009-11-19 Joel Brobecker <brobecker@adacore.com>
207
208 * ada-lang.c (ada_remove_Xbn_suffix): New function.
209 (find_old_style_renaming_symbol): Add handling for function suffixes
210 present in the name of various procedures.
211 Do not overwrite the function symbol's name.
212
213 2009-11-19 Pedro Alves <pedro@codesourcery.com>
214
215 * breakpoint.c (breakpoint_address_bits): Visit all locations'
216 gdbarchs, not the breakpoint's gdbarch.
217
218 2009-11-18 Vladimir Prus <vladimir@codesourcery.com>
219
220 * cli/cli-script.c (process_next_line): Recognize 'end'
221 even when the line has leading space and we're not parsing
222 commands.
223
224 2009-11-18 Tom Tromey <tromey@redhat.com>
225
226 * symtab.c (symbol_set_names): Correctly set 'name' on symbol when
227 lookup name differs.
228
229 2009-11-18 Tristan Gingold <gingold@adacore.com>
230
231 * machoread.c (macho_oso_symfile): Fix typo. Add comments.
232
233 2009-11-17 Jan Kratochvil <jan.kratochvil@redhat.com>
234
235 * dbxread.c (set_namestring): Remove cast to unsigned. Check N_STRX
236 overflow.
237
238 2009-11-17 Nathan Sidwell <nathan@codesourcery.com>
239
240 * features/m68k-core.xml: New file.
241
242 2009-11-17 Nathan Sidwell <nathan@codesourcery.com>
243
244 * regformats/reg-cf.dat: New file.
245
246 2009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
247
248 * m68k-tdep.c (m68k_register_name): Check fpregs_present.
249 (m68k_gdbarch_init): Remove a duplicate of set_gdbarch_fp0_regnum.
250
251 2009-11-17 Jan Kratochvil <jan.kratochvil@redhat.com>
252
253 Fix wrong debug output with `set debug infrun 1'.
254 * gdb/infrun.c (handle_inferior_event <debug_infrun>): New variable
255 old_chain. Temporarily switch INFERIOR_PTID.
256 * target.h (target_stopped_by_watchpoint): Extend the comment.
257 (target_stopped_data_address): New comment.
258
259 2009-11-16 Tom Tromey <tromey@redhat.com>
260
261 * xcoffread.c (scan_xcoff_symtab): Update.
262 * symfile.h (add_psymbol_to_list): Update prototype.
263 * symfile.c (add_psymbol_to_bcache): Add copy_name argument.
264 (add_psymbol_to_list): Likewise.
265 * stabsread.c (define_symbol): Update.
266 * mdebugread.c (parse_partial_symbols): Update.
267 (handle_psymbol_enumerators): Update.
268 (new_symbol): Update.
269 * dbxread.c (read_dbx_symtab): Update.
270 * coffread.c (process_coff_symbol): Update.
271 * symtab.h (prim_record_minimal_symbol_full): Declare.
272 (SYMBOL_SET_NAMES): Add copy_name argument.
273 * symtab.c (struct demangled_name_entry): New struct.
274 (hash_demangled_name_entry): New function.
275 (eq_demangled_name_entry): Likewise.
276 (create_demangled_names_hash): Use new functions.
277 (symbol_set_names): Use struct demangled_name_entry. Add
278 copy_name argument.
279 * minsyms.c (prim_record_minimal_symbol_full): New function.
280 (prim_record_minimal_symbol_and_info): Use it.
281 * elfread.c (record_minimal_symbol): Add name_len and copy_name
282 arguments. Call prim_record_minimal_symbol_full.
283 (elf_symtab_read): Add copy_names argument.
284 (elf_symfile_read): Update calls to elf_symtab_read.
285 * dwarf2read.c (add_partial_symbol): Don't copy symbol names.
286 (load_partial_dies): Likewise.
287 (new_symbol): Likewise.
288 * cp-namespace.c (check_one_possible_namespace_symbol): Don't save
289 name on the obstack. Update call to SYMBOL_SET_NAMES.
290
291 2009-11-15 Pedro Alves <pedro@codesourcery.com>
292
293 * infrun.c (handle_inferior_event): When handling a fork or vfork
294 event, check if the bpstat causes a stop, instead of if it
295 explains the signal.
296 * breakpoint.c (bpstat_causes_stop): New.
297 * breakpoint.h (bpstat_causes_stop): Declare.
298
299 2009-11-15 Pedro Alves <pedro@codesourcery.com>
300
301 * breakpoint.c (should_be_inserted): Don't insert breakpoints if
302 the pspace doesn't allow breakpoints.
303 (insert_breakpoint_locations): Remove waiting_for_vfork_done
304 special case. Expect watchpoints that shouldn't be inserted, to
305 not be inserted.
306 * progspace.h (struct program_space) <breakpoints_not_allowed>:
307 New field.
308 * infrun.c (handle_inferior_event): Clear it.
309 * linux-nat.c (linux_child_follow_fork): Set it.
310
311 2009-11-13 Doug Evans <dje@google.com>
312
313 * dcache.c (dcache_hit, dcache_read_line): Tweak comments.
314 (dcache_peek_byte, dcache_init, dcache_xfer_memory): Ditto.
315 * target.c (memory_xfer_partial): Tweak comments.
316 (target_xfer_partial, target_write_memory): Add comment.
317 (target_read_partial): Remove note from 2003-10-21.
318 (target_read, target_write): Add comments.
319
320 2009-11-13 Daniel Jacobowitz <dan@codesourcery.com>
321
322 * inline-frame.c (find_inline_frame_state): Check for changed PC
323 here...
324 (inline_frame_sniffer): ... not here.
325
326 2009-11-13 Daniel Jacobowitz <dan@codesourcery.com>
327
328 * ui-file.c (stdio_file_read): Call gdb_select before read.
329
330 2009-11-13 Maciej W. Rozycki <macro@codesourcery.com>
331
332 * mips-tdep.c (mips_insn16_frame_this_id): Mark the outermost
333 frame.
334 (mips_insn32_frame_this_id): Likewise.
335
336 2009-11-13 Maciej W. Rozycki <macro@codesourcery.com>
337
338 * elfread.c (elf_symtab_read): Only mark a minimal symbol as
339 special if it actually exists. Merge the checks for this
340 conditions.
341
342 2009-11-13 Kazu Hirata <kazu@codesourcery.com>
343 Maxim Kuvyrkov <maxim@codesourcery.com>
344
345 * remote-fileio.c (remote_fileio_request): Send Ctrl-C if it is
346 pending.
347 * remote-fileio.h: Update the prototype for remote_fileio_request.
348 * remote.c (struct remote_state): Add ctrlc_pending_p.
349 (remote_open_1): Clear ctrlc_pending_p.
350 (remote_stop_as): Set ctrlc_pending_p to 1.
351 (remote_wait_as): Pass ctrlc_pending_p to remote_fileio_request.
352
353 2009-11-13 Daniel Jacobowitz <dan@codesourcery.com>
354
355 * arm-tdep.c (arm_skip_stub): Recognize RealView veneer functions.
356
357 2009-11-13 Maciej W. Rozycki <macro@codesourcery.com>
358
359 * breakpoint.c (update_watchpoint): Only fiddle with frames for
360 local watchpoints.
361
362 2009-11-13 Pedro Alves <pedro@codesourcery.com>
363
364 * infrun.c (handle_inferior_event): Set stop_print_frame on
365 TARGET_WAITKIND_LOADED events, if stopping on solib-events.
366
367 2009-11-13 Doug Evans <dje@google.com>
368
369 * dcache.c (dcache_block): Replace member newer with next,prev.
370 (dcache_struct): Delete member newest.
371 (block_func): New typedef.
372 (append_block, remove_block, for_each_block): New functions.
373 (invalidate_block, free_block): New functions.
374 (dcache_invalidate): Update
375 (dcache_invalidate_line, dcache_alloc): Update to use new list
376 accessors.
377 (dcache_free): Ditto. Fix memory leak.
378
379 2009-11-13 Paul Pluzhnikov <ppluzhnikov@google.com>
380
381 * python/py-prettyprint.c (print_string_repr): Suppress
382 address printing
383
384 2009-11-13 Tristan Gingold <gingold@adacore.com>
385
386 * avr-tdep.c (avr_push_dummy_call): Fix endianness issue and avoid
387 overlap between returned structure and return address/parameters.
388
389 2009-11-12 Daniel Jacobowitz <dan@codesourcery.com>
390
391 * remote-fileio.c (remote_fileio_func_read): Limit console
392 reads to 16K.
393
394 2009-11-12 Daniel Jacobowitz <dan@codesourcery.com>
395 Paul Brook <paul@codesourcery.com>
396
397 * c-typeprint.c (c_type_print_base): Skip artificial fields.
398 Use get_vptr_fieldno to skip the vtable pointer.
399 * dwarf2read.c (dwarf2_add_field): Set FIELD_ARTIFICIAL on artificial
400 fields.
401 (dwarf2_add_member_fn): Complain about virtual member functions
402 without DW_AT_vtable_elem_location and force TYPE_CPLUS_DYNAMIC.
403 * gdbtypes.c (get_vptr_fieldno): Update comment.
404 * gdbtypes.h (struct cplus_struct_type): Add is_dynamic.
405 (TYPE_CPLUS_DYNAMIC): New macro.
406 * gnu-v3-abi.c (gnuv3_dynamic_class): New.
407 (gnuv3_get_vtable): Rewrite to use gnuv3_dynamic_class. Move higher.
408 (gnuv3_rtti_type, gnuv3_get_virtual_fn, gnuv3_baseclass_offset): Use
409 gnuv3_get_vtable.
410 * varobj.c (cplus_class_num_children, cplus_describe_child): Skip
411 artificial fields. Use get_vptr_fieldno to skip the vtable pointer.
412
413 2009-11-12 Paul Brook <paul@codesourcery.com>
414 Daniel Jacobowitz <dan@codesourcery.com>
415
416 * dwarf2read.c (dwarf2_add_member_fn): Calculate virtual function
417 offset for classes without DW_AT_containing_type.
418
419 2009-11-12 Paul Brook <paul@codesourcery.com>
420 Daniel Jacobowitz <dan@codesourcery.com>
421
422 * dwarf2read.c (struct field_info): Add baseclasses.
423 (dwarf2_add_field): Add base classes to a separate list.
424 (dwarf2_attach_fields_to_type): Merge base classes and fields.
425
426 2009-11-12 Daniel Jacobowitz <dan@codesourcery.com>
427
428 * dwarf2read.c (process_psymtab_comp_unit): Initialize per_cu backlink
429 at the same time as the forward link.
430 (load_partial_comp_unit): Initialize per_cu links before calling
431 init_cu_die_reader.
432
433 2009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
434
435 PR gdb/10838
436 * linux-thread-db.c (thread_db_info): New member.
437 (disable_thread_event_reporting): Call td_ta_clear_event.
438
439 2009-11-11 Keith Seitz <keiths@redhat.com>
440
441 * linespec.c (lookup_prefix_sym): Lookup the symbol
442 in both STRUCT_DOMAIN and VAR_DOMAIN.
443
444 2009-11-11 Michael Snyder <msnyder@vmware.com>
445
446 * darwin-nat-info.c: Update copyright.
447 * dbxread.c: Ditto.
448 * gdbarch.sh: Ditto.
449 * gdbarch.c: Ditto.
450 * gdbarch.h: Ditto.
451 * inline-frame.c: Ditto.
452 * inline-frame.h: Ditto.
453 * s390-nat.c: Ditto.
454
455 2009-11-11 Michael Snyder <msnyder@vmware.com>
456
457 * findvar.c (top level): Fix and add comments.
458
459 2009-11-10 Keith Seitz <keiths@redhat.com>
460
461 * c-exp.y (operator_stoken): New function.
462 (OPERATOR): New token.
463 (NEW): New token.
464 (DELETE): New token.
465 (operator): New rule.
466 (name): Add operator.
467 (ident_tokens): Add "new", "delete", and "operator".
468 * gdbtypes.c (rank_one_type): Don't complain about
469 void pointer conversion badness if both types are
470 void pointers.
471
472 2009-11-11 Jan Kratochvil <jan.kratochvil@redhat.com>
473
474 * symfile.c (separate_debug_file_exists): Change parameter parent_name
475 to parent_objfile. New variables parent_stat and abfd_stat. Call
476 strcmp and then bfd_stat functions to verify if NAME matches.
477 (find_separate_debug_file): Update the passed parameter at caller.
478
479 2009-11-11 Jan Kratochvil <jan.kratochvil@redhat.com>
480
481 * objfiles.c (objfile_relocate): Update also the field psymtabs_addrmap.
482
483 2009-11-11 Jan Kratochvil <jan.kratochvil@redhat.com>
484
485 * configure.ac: Call ACX_LARGEFILE.
486 * aclocal.m4: Call m4_include for ../config/largefile.m4 and
487 ../config/plugins.m4.
488 * configure: Regenerate.
489 * config.in: Regenerate.
490
491 2009-11-10 Keith Seitz <keiths@redhat.com>
492
493 * c-exp.y: Add new rule for resolving method overloads.
494 * eval.c (make_params): New function.
495 (free_param_types): New function.
496 (evaluate_subexp_standard): Pass expect_type to value_aggregate_elt.
497 Handle case TYPE_INSTANCE.
498 (evaluate_subexp_for_address): Pass expect_type to value_aggregate_elt.
499 * expression.h (enum exp_opcode): Add TYPE_INSTANCE.
500 (compare_parameters): Add declaration.
501 * parse.c (operator_length_standard): Add TYPE_INSTANCE.
502 * valops.c (value_aggregate_elt): Add new expect_type parameter.
503 Pass expect_type to value_struct_elt_for_reference.
504 (value_struct_elt_for_reference): Add expect_type parameter and use
505 compare_parameters.
506 Check for overload matches with and without artificial parameters.
507 Skip artificial methods.
508 (compare_parameters): New function.
509 * value.h (value_aggregate_elt): Add new expect_type parameter.
510
511 2009-11-10 Joseph Myers <joseph@codesourcery.com>
512
513 * solib-svr4.c (enable_break): Call
514 gdbarch_convert_from_func_ptr_addr on results of looking up
515 fallback symbol names.
516
517 2009-11-10 Daniel Gutson <dgutson@codesourcery.com>
518
519 * procfs.c (procfs_do_thread_registers): Added a call to fetch
520 register values before saving them in the core file
521 through the gcore command.
522 (procfs_corefile_thread_callback): Removed the backup of
523 inferior_ptid before calling procfs_do_thread_registers since
524 the function already saves and restores it before returning.
525
526 2009-11-10 Michael Snyder <msnyder@vmware.com>
527
528 * dcache.c (dcache_invalidate_line): Remove block from used list
529 when adding it to freed list.
530
531 2009-11-10 Michael Snyder <msnyder@vmware.com>
532
533 * dcache.c: Fix typo, shorten long lines in comment.
534
535 2009-11-10 Tristan Gingold <gingold@adacore.com>
536
537 * avr-tdep.c: Add AVR_PSEUDO_PC_REGNUM and AVR_NUM_PSEUDO_REGS.
538 (struct gdbarch_tdep): Add void_type, func_void_type and pc_type
539 fields.
540 (avr_register_name): Add "pc" name, renames "PC" to "PC2".
541 (avr_register_type): Handle AVR_PSEUDO_PC_REGNUM.
542 (avr_write_pc): Fix indentation.
543 (avr_pseudo_register_read): New function.
544 (avr_pseudo_register_write): New function.
545 (avr_frame_prev_register): Handle AVR_PSEUDO_PC_REGNUM.
546 (avr_gdbarch_init): Create types for pc. Register pseudo regs.
547
548 2009-11-10 Tristan Gingold <gingold@adacore.com>
549
550 * avr-tdep.c (avr_integer_to_address): New function.
551 (avr_gdbarch_init): Set integer_to_address.
552
553 2009-11-10 Tristan Gingold <gingold@adacore.com>
554
555 * avr-tdep.c (avr_skip_prologue): First try to skip prologue
556 using skip_prologue_using_sal.
557
558 2009-11-10 Tristan Gingold <gingold@adacore.com>
559
560 * avr-tdep.c (avr_extract_return_value): Remove.
561 (avr_return_value): Mostly rewritten. Fix handling for structures.
562 (avr_push_dummy_call): Handle struct_return.
563
564 2009-11-10 Tristan Gingold <gingold@adacore.com>
565
566 * avr-tdep.c (avr_scan_prologue): Decode instructions used for
567 small stack allocation.
568 Adjust code for prologue that don't write SP.
569
570 2009-11-10 Tristan Gingold <gingold@adacore.com>
571
572 * avr-tdep.c (avr_make_saddr): Return 0 for NULL.
573
574 2009-11-10 Tristan Gingold <gingold@adacore.com>
575
576 * avr-tdep.c (avr_dwarf_reg_to_regnum): New function.
577 (avr_gdbarch_init): Call set_gdbarch_dwarf2_reg_to_regnum.
578
579 2009-11-09 Sebastien Granjoux <seb.sfo@free.fr>
580
581 PR mi/9583:
582 * symtab.c (find_line_symtab, append_exact_match_to_sals)
583 (expand_line_sal): Use full filename when setting breakpoints if
584 available
585
586 2009-11-09 Cary Coutant <ccoutant@google.com>
587
588 * dwarf2read.c (read_import_statement): Don't clobber original cu.
589
590 2009-11-09 Tom Tromey <tromey@redhat.com>
591
592 * python/python.c (execute_gdb_command): Copy the argument text.
593
594 2009-11-06 Vladimir Prus <vladimir@codesourcery.com>
595
596 * m68k-tdep.c (m68k_convert_register_p): Correct
597 messup.
598
599 2009-11-06 Vladimir Prus <vladimir@codesourcery.com>
600
601 * m68k-tdep.c (m68k_convert_register_p): Compare with
602 the actual type of fp registers, not one of the possible
603 values.
604
605 2009-11-06 Vladimir Prus <vladimir@codesourcery.com>
606
607 Prevent program output from mix with "^running".
608
609 gdb/
610 * mi/mi-interp.c (mi_on_resume): Output token
611 and "^running" together, so that nothing else gets
612 in between.
613
614 2009-11-05 Daniel Jacobowitz <dan@codesourcery.com>
615
616 * dwarf2read.c (struct dwarf2_cu): Remove ranges_offset and
617 has_ranges_offset.
618 (struct partial_die_info): Remove language, has_stmt_list, dirname,
619 and line_offset.
620 (dwarf2_build_include_psymtabs): Take a die_info. Handle a missing
621 line table.
622 (dwarf2_get_pc_bounds): Take PST argument. Pass it
623 to dwarf2_ranges_read. Update all callers.
624 (init_cu_die_reader): Move earlier.
625 (dwarf2_find_base_address): New function.
626 (process_psymtab_comp_unit): Rewrite to use a full DIE for the
627 compilation unit. Use dwarf2_get_pc_bounds and
628 dwarf2_find_base_address.
629 (load_comp_unit): Rewrite to use a full DIE for the compilation unit.
630 (process_full_comp_unit): Use dwarf2_find_base_address.
631 (read_partial_die): Remove support for attributes only used
632 in the compilation unit DIE.
633 * symfile.c (allocate_psymtab): Make FILENAME const.
634 (start_psymtab_common): Likewise.
635 * symfile.h (allocate_psymtab, start_psymtab_common): Update
636 prototypes.
637
638 2009-11-05 Tom Tromey <tromey@redhat.com>
639
640 * symmisc.c (print_symbol_bcache_statistics): Print filename cache
641 statistics.
642 (print_objfile_statistics): Likewise.
643 * symfile.c (reread_symbols): Initialize filename_cache.
644 (allocate_symtab): Cache the file name.
645 (allocate_psymtab): Likewise.
646 * solib-sunos.c (allocate_rt_common_objfile): Initialize
647 filename_cache.
648 * objfiles.h (struct objfile) <filename_cache>: New field.
649 * objfiles.c (allocate_objfile): Initialize filename_cache.
650 (free_objfile): Free filename_cache.
651
652 2009-11-05 Tom Tromey <tromey@redhat.com>
653
654 * symfile.c (add_psymbol_to_bcache): Make 'psymbol' static again.
655 Zero the 'value' field.
656
657 2009-11-05 Doug Evans <dje@google.com>
658
659 * amd64-tdep.c (amd64_init_frame_cache): Enhance comment describing
660 saved_regs.
661
662 2009-11-05 Daniel Jacobowitz <dan@codesourcery.com>
663
664 * top.c (execute_command): Select a frame before checking the current
665 language. Only output a message if verbose.
666
667 2009-11-05 Tom Tromey <tromey@redhat.com>
668
669 * symtab.h (SYMBOL_SET_LINKAGE_NAME): Update comment.
670 * symfile.c (allocate_symtab): Don't use obsavestring on a
671 constant string.
672 * stabsread.c (define_symbol): Don't use obsavestring on a
673 constant string.
674 * mdebugread.c (parse_type): Don't use obsavestring on a constant
675 string.
676 (new_symtab): Likewise.
677 * elfread.c (elf_symtab_read): Don't use obsavestring on a
678 constant string.
679
680 2009-11-04 Tom Tromey <tromey@redhat.com>
681
682 * symfile.c (add_psymbol_to_bcache): Don't copy name. Make
683 'psymbol' non-static.
684
685 2009-11-03 Paul Pluzhnikov <ppluzhnikov@google.com>
686
687 * linux-thread-db.c (disable_thread_event_reporting): Adjust.
688
689 2009-11-03 Joel Brobecker <brobecker@adacore.com>
690
691 * MAINTAINERS (Responsible Maintainers): Add Tristan Gingold as
692 maintainer of the avr target.
693
694 2009-11-02 Daniel Jacobowitz <dan@codesourcery.com>
695
696 * elfread.c (elf_symfile_segments): Do not warn about
697 uninitialized sections outside of load segments.
698
699 2009-11-02 Jan Kratochvil <jan.kratochvil@redhat.com>
700
701 * symfile.c (build_id_to_debug_filename): New variable debugdir. Move
702 variables size, s and data into a new inner block. Change xmalloc for
703 alloca, use direct BUILDID->SIZE there now. Loop for the
704 DEBUG_FILE_DIRECTORY components.
705 (find_separate_debug_file): New variable debugdir and debugdir_end.
706 Loop for the DEBUG_FILE_DIRECTORY components.
707 (_initialize_symfile): For "debug-file-directory" use plural and note
708 one can use multiple components now.
709
710 2009-11-02 Jan Kratochvil <jan.kratochvil@redhat.com>
711
712 * symfile.c (find_separate_debug_file): Initialize dir, debugfile and
713 canon_name to NULL. Change alloca to xmalloc, newly call xfree for it.
714 New label cleanup_return_debugfile, jump to it from the failure paths.
715
716 2009-11-02 Andrew Cagney <cagney@gnu.org>
717
718 * symfile.c (separate_debug_file_exists): When the CRCs mismatch
719 print a warning.
720 (find_separate_debug_file): Pass in the objfile's name.
721
722 2009-11-02 Jan Kratochvil <jan.kratochvil@redhat.com>
723
724 Remove INVALID_ENTRY_POINT.
725 * frame.c (inside_entry_func): New variable entry_point. Return 0 if
726 the entry point is not known.
727 * solib-irix.c (enable_break): Likewise.
728 * objfiles.c (init_entry_point_info): Stop using INVALID_ENTRY_POINT.
729 Initialize EI.ENTRY_POINT_P.
730 (entry_point_address): Rename to ...
731 (entry_point_address_query): ... a new function. Use EI.ENTRY_POINT_P.
732 (entry_point_address): New function.
733 (objfile_relocate): Use EI.ENTRY_POINT_P.
734 * objfiles.h (struct entry_info): Simplify entry_point comment. New
735 field entry_point_p.
736 (INVALID_ENTRY_POINT): Remove.
737 (entry_point_address_query): New prototype.
738 * solib-frv.c (enable_break): Check for NULL SYMFILE_OBJFILE and its
739 EI.ENTRY_POINT_P. Return 0 if ".interp" is not found.
740
741 2009-11-01 Michael Snyder <msnyder@vmware.com>
742
743 * NEWS (New Commands): Mention record save/restore.
744
745 2009-10-31 Michael Snyder <msnyder@vmware.com>
746
747 * breakpoint.c (bpstat_stop_status): Fix broken comment.
748
749 2009-10-31 Pedro Alves <pedro@codesourcery.com>
750
751 * record.c (record_restore, cmd_record_save): Debug output goes to
752 gdb_stdlog.
753
754 2009-10-31 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
755
756 * breakpoint.c (catch_syscall_split_args): Remove unecessary warning
757 displayed when the user provided a syscall name and there is no
758 XML support.
759 * xml-syscall.c: Renamed `_sysinfo' to `sysinfo'.
760 (set_xml_syscall_file_name): Remove syscall_warn_user.
761 (xml_init_syscalls_info): Remove warning.
762 (init_sysinfo): Update warnings.
763
764 2009-10-30 Vladimir Prus <vladimir@codesourcery.com>
765
766 Fix breakpoint commands in MI.
767
768 * mi/mi-main.c (mi_execute_command): Run bpstat_do_actions.
769 * mi/mi-cmd-break.c (mi_cmd_break_commands): Pass 1 to
770 read_command_line_1 to actually parse composite commands.
771
772 2009-10-29 Sandra Loosemore <sandra@codesourcery.com>
773
774 PR gdb/10783
775
776 * target.c (simple_search_memory): Correct read_addr initialization
777 in loop for searching subsequent chunks.
778
779 2009-10-28 Daniel Jacobowitz <dan@codesourcery.com>
780
781 Reported by Antti Hatala <ahatala@nvidia.com>.
782
783 * arm-tdep.c (thumb_get_next_pc): Limit check to IT instructions
784 correctly.
785
786 2009-10-28 Pedro Alves <pedro@codesourcery.com>
787
788 * dwarf2-frame.c (dwarf2_build_frame_info): Discard --gc-section
789 leftover FDEs.
790
791 2009-10-28 Pedro Alves <pedro@codesourcery.com>
792
793 * infrun.c (keep_going): Wrap with resume_cleanups.
794
795 2009-10-27 Paul Pluzhnikov <ppluzhnikov@google.com>
796
797 * MAINTAINERS: Add self to "modify-after-approval" maintainers.
798
799 2009-10-27 Paul Pluzhnikov <ppluzhnikov@google.com>
800
801 PR gdb/10757
802 * linux-thread-db.c (attach_thread): Return success/failure
803 indicator.
804 (thread_db_find_new_threads_silently): Retry until no new threads.
805 (struct callback_data): New.
806 (find_new_threads_callback): Count new threads, stop iteration
807 on error.
808 (find_new_threads_once): New function.
809 (thread_db_find_new_threads_2): Rename from
810 thread_db_find_new_threads_1 and adjust.
811 (thread_db_find_new_threads_1): New function.
812
813 2009-10-26 Michael Eager <eager@eagercon.com>
814
815 * MAINTAINERS: Add self to "modify-after-approval" maintainers.
816
817 2009-10-26 Michael Snyder <msnyder@vmware.com>
818 Hui Zhu <teawater@gmail.com>
819
820 * Makefile.in (SFILES): Add gcore.c.
821 (COMMON_OBS): Add gcore.o.
822 * config/alpha/alpha-linux.mh (NATDEPFILES): Delete gcore.o.
823 * config/alpha/fbsd.mh (NATDEPFILES): Ditto.
824 * config/arm/linux.mh (NATDEPFILES): Ditto.
825 * config/i386/fbsd.mh (NATDEPFILES): Ditto.
826 * config/i386/fbsd64.mh (NATDEPFILES): Ditto.
827 * config/i386/i386sol2.mh (NATDEPFILES): Ditto.
828 * config/i386/linux.mh (NATDEPFILES): Ditto.
829 * config/i386/linux64.mh (NATDEPFILES): Ditto.
830 * config/i386/sol2-64.mh (NATDEPFILES): Ditto.
831 * config/ia64/linux.mh (NATDEPFILES): Ditto.
832 * config/m32r/linux.mh (NATDEPFILES): Ditto.
833 * config/m68k/linux.mh (NATDEPFILES): Ditto.
834 * config/mips/linux.mh (NATDEPFILES): Ditto.
835 * config/pa/linux.mh (NATDEPFILES): Ditto.
836 * config/powerpc/linux.mh (NATDEPFILES): Ditto.
837 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Ditto.
838 * config/s390/s390.mh (NATDEPFILES): Ditto.
839 * config/sparc/fbsd.mh (NATDEPFILES): Ditto.
840 * config/sparc/linux.mh (NATDEPFILES): Ditto.
841 * config/sparc/linux64.mh (NATDEPFILES): Ditto.
842 * config/sparc/sol2.mh (NATDEPFILES): Ditto.
843 * config/xtensa/linux.mh (NATDEPFILES): Ditto.
844 * target.c (dummy_find_memory_regions): Change output.
845 (dummy_make_corefile_notes): Ditto.
846
847 2009-10-26 Tristan Gingold <gingold@adacore.com>
848
849 * charset.c (_initialize_charset): Set a default value to
850 auto_host_charset_name if empty.
851
852 2009-10-26 Tristan Gingold <gingold@adacore.com>
853
854 * avr-tdep.c (avr_push_dummy_call): Handle avr6 architecture.
855 Fix the returned value. Fix style.
856
857 2009-10-26 Joel Brobecker <brobecker@adacore.com>
858
859 * MAINTAINERS (Responsible Maintainers): Add info about the microblaze
860 targets. Add Michael Eager as the maintainer for this target.
861
862 2009-10-25 Jan Kratochvil <jan.kratochvil@redhat.com>
863
864 Performance optimize large bp_location count.
865 * breakpoint.c (ALL_BP_LOCATIONS_SAFE): Remove.
866 (ALL_BP_LOCATIONS): New parameter BP_TMP. Use now bp_location and
867 bp_location_count.
868 (bp_location_chain): Remove variable.
869 (bp_location, bp_location_count)
870 (bp_location_placed_address_before_address_max)
871 (bp_location_shadow_len_after_address_max): New variables.
872 (moribund_locations, update_watchpoint): Update the bp_location
873 variable name.
874 (breakpoint_restore_shadows): Extend the comment. Move the variable
875 b to local blocks. Move the variables bp_addr, bp_size and bptoffset
876 to a local block. New variables bc_l, bc_r and bc. New binary search
877 for the left range boundary. New break on reaching the right range
878 boundary. Move shadow existence conditionals to ...
879 (bp_location_has_shadow): ... a new function.
880 (insert_breakpoint_locations): Replace the temp variable by bp_tmp.
881 Use now ALL_BP_LOCATIONS instead of ALL_BP_LOCATIONS_SAFE.
882 (remove_breakpoints, remove_hw_watchpoints, reattach_breakpoints)
883 (detach_breakpoints): New variable bp_tmp. Update the ALL_BP_LOCATIONS
884 calling convention.
885 (update_breakpoints_after_exec): New variable bplocp_tmp. Update the
886 ALL_BP_LOCATIONS calling convention.
887 (breakpoint_here_p, software_breakpoint_inserted_here_p)
888 (breakpoint_thread_match): New variable bptp_tmp. Drop the const
889 attribute of bpt. Update the ALL_BP_LOCATIONS calling convention.
890 (regular_breakpoint_inserted_here_p): Likewise. Update the bp_location
891 variable name.
892 (mark_breakpoints_out, breakpoint_init_inferior): New variable
893 bptp_tmp. Update the ALL_BP_LOCATIONS calling convention.
894 (bpstat_stop_status): New variables blp_tmp and update_locations. Drop
895 the const attribute of bl. Update the ALL_BP_LOCATIONS calling
896 convention. Protect HIT_COUNT increment by an ENABLE_STATE check.
897 Delay the update_global_location_list call using update_locations.
898 (set_default_breakpoint): Drop the check_duplicates name from comment.
899 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib):
900 New variable locp_tmp. Update the ALL_BP_LOCATIONS calling convention.
901 (bp_location_compare, bp_location_compare_for_qsort)
902 (bp_location_target_extensions_update): New functions.
903 (check_duplicates, check_duplicates_for): Remove, moving their code ...
904 (update_global_location_list): ... into this existing function. Remove
905 variables next, loc2, old_locations, ret and ix. New variables locp,
906 loc_first, old_location, old_locp and old_location_count. Stop using
907 global_next, create now the array bp_location, sort it by
908 bp_location_compare_for_qsort and call
909 bp_location_target_extensions_update. Change quadratic iteration by
910 loc2 into an in-sync scanning by locp and loc2p. Rename former loc
911 usage as old_loc.
912 (do_vec_free): Remove.
913 (breakpoint_program_space_exit): Update the ALL_BP_LOCATIONS calling
914 convention.
915 (remove_breakpoints_pid): New variable b_tmp. Update the
916 ALL_BP_LOCATIONS calling convention.
917 * breakpoint.h (struct bp_location <global_next>): Remove.
918
919 2009-10-25 Jan Kratochvil <jan.kratochvil@redhat.com>
920
921 * mep-tdep.c: Update include for the new location cgen/bitset.h.
922
923 2009-10-23 Tom Tromey <tromey@redhat.com>
924
925 * blockframe.c (_initialize_blockframe): Remove declaration.
926
927 2009-10-23 Doug Evans <dje@google.com>
928
929 * record.c (record_core_xfer_partial): Pass correct offset to
930 record_beneath_to_xfer_partial.
931
932 2009-10-23 Michael Snyder <msnyder@vmware.com>
933
934 * record.c (top level): Don't include byteswap.h.
935 (netorder64): Use store_unsigned_integer instead of bswap_64.
936 (netorder32): Use store_unsigned_integer instead of bswap_32.
937 (netorder16): Use store_unsigned_integer instead of bswap_16.
938
939 2009-10-23 Michael Snyder <msnyder@vmware.com>
940
941 * record.c (netorder64): Use BFD_ENDIAN_LITTLE not LITTLE_ENDIAN.
942 (netorder32): Ditto.
943 (netorder16): Ditto.
944
945 2009-10-23 Paul Pluzhnikov <ppluzhnikov@google.com>
946
947 * objfiles.c (allocate_objfile): Use xzalloc.
948
949 2009-10-23 Hui Zhu <teawater@gmail.com>
950
951 * record.c (record_restore): Use phex_nz.
952
953 2009-10-23 Tristan Gingold <gingold@adacore.com>
954
955 * frame.c (frame_unwind_pc): Fix typo: remove duplicate 0x.
956
957 2009-10-23 Tristan Gingold <gingold@adacore.com>
958
959 * objfiles.c (allocate_objfile): Remove useless test. Move
960 declaration of last_one to the block that uses it.
961
962 2009-10-22 Paul Pluzhnikov <ppluzhnikov@google.com>
963
964 * record.c (record_restore, cmd_record_save): Fix warnings.
965
966 2009-10-22 Paul Pluzhnikov <ppluzhnikov@google.com>
967
968 * disasm.h (DISASSEMBLY_OMIT_FNAME) New define.
969 (gdb_disassembly): Correct parameter name.
970 * disasm.c (dump_insns): Adjust.
971 (gdb_disassembly): Fix indentation.
972 * cli/cli-cmds.c (disassemble_command): Adjust.
973
974 2009-10-22 Michael Snyder <msnyder@vmware.com>
975
976 * infrun.c (keep_going): If insert_breakpoints fails,
977 print the reason.
978
979 2009-10-22 Paul Pluzhnikov <ppluzhnikov@google.com>
980
981 PR gdb/10819
982 * dwarf2-frame.c (find_cie): Don't call bsearch on empty cie_table.
983 * objfiles.c (find_pc_section): Likewise.
984 (update_section_map): Don't allocate empty table.
985
986 2009-10-22 Hui Zhu <teawater@gmail.com>
987 Michael Snyder <msnyder@vmware.com>
988
989 * record.c (RECORD_FILE_MAGIC): New constant.
990 (record_arch_list_cleanups): Renamed from record_message_cleanups.
991 (bfdcore_read): New function.
992 (netorder64): New function.
993 (netorder32): New function.
994 (netorder16): New function.
995 (record_restore): New function. Restore a saved record log.
996 (bfdcore_write): New function.
997 (cmd_record_restore): New function.
998 (cmd_record_save): New function. Save a record log to a file.
999 (_initialize_record): Set up commands for save and restore.
1000
1001 2009-10-22 Michael Snyder <msnyder@vmware.com>
1002
1003 * gcore.h: New file.
1004 * gcore.c (create_gcore_bfd): New function.
1005 (write_gcore_file): New function.
1006 (call_target_sbrk): New function. Abstracted from gcore_command.
1007 (gcore_command): Call call_target_sbrk.
1008
1009 2009-10-22 Hui Zhu <teawater@gmail.com>
1010 Michael Snyder <msnyder@vmware.com>
1011
1012 * record.c (record_core_ops): New ops target vector.
1013 (record_core_open_1): New function. Open core target.
1014 (record_open_1): New function. Open normal process record.
1015 (record_open): Call one of the above.
1016 (record_close): Allow for both core and normal targets.
1017 (record_core_resume): New function.
1018 (record_core_kill): New function.
1019 (record_core_fetch_registers): New function.
1020 (record_core_prepare_to_store): New function.
1021 (record_core_store_registers): New function.
1022 (record_core_xfer_partial): New function.
1023 (record_core_insert_breakpoint): New function.
1024 (record_core_remove_breakpoint): New function.
1025 (record_core_has_execution): New function.
1026 (init_record_core_ops): New function.
1027 (_initialize_record): Call init_record_core_ops, add_target.
1028
1029 2009-10-22 Tristan Gingold <gingold@adacore.com>
1030
1031 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
1032 amd64_supply_fxsave for amd64. Fix the offset.
1033 (i386_darwin_store_inferior_registers): Use amd64_collect_fxsave
1034 for amd64.
1035
1036 2009-10-21 Maxim Grigoriev <maxim2405@gmail.com>
1037
1038 * xtensa-tdep.c (XTENSA_ISA_BADPC): New.
1039 (xtensa_scan_prologue): Replace read_memory with target_read_memory.
1040 (call0_analyze_prologue): Use XTENSA_ISA_BADPC instead of "0".
1041 (call0_frame_cache): Check error conditions on call0_analyze_prologue.
1042
1043 2009-10-21 Paul Pluzhnikov <ppluzhnikov@google.com>
1044
1045 * defs.h (pc_prefix): New prototype.
1046 * disasm.c (dump_insns): Mark current instruction.
1047 * printcmd.c (do_examine): Likewise.
1048 (pc_prefix): New function.
1049 * stack.c (print_frame_info): Disassemble entire current line.
1050
1051 2009-10-21 Michael Snyder <msnyder@vmware.com>
1052
1053 Elaborate "info record".
1054 * record.c (struct record_end_entry): New field 'insn_num'.
1055 (record_insn_count): New variable.
1056 (record_open): Initialize record_insn_count.
1057 (info_record_command): Display contents of record log as
1058 lowest, current, and highest instruction counts.
1059 (show_record_insn_number): Delete.
1060 (_initialize_record): Remove add_cmd show_record_insn_number.
1061
1062 2009-10-21 Andrew Stubbs <ams@codesourcery.com>
1063 Joel Brobecker <brobecker@adacore.com>
1064
1065 * Makefile.in (HFILES_NO_SRCDIR): Remove shnbsd-tdep.h
1066 * configure.tgt (sh*-*-linux*): Add corelow.o to gdb_target_obs.
1067 * sh-linux-tdep.c: Include sh-tdep.h.
1068 (REGSx16): New macro.
1069 (gregs_table, fpregs_table): New variables.
1070 (sh_linux_init_abi): Set core_gregmap and fpregmap.
1071 * sh-tdep.c: Include regset.h.
1072 (sh_corefile_supply_regset): New function.
1073 (sh_corefile_collect_regset): New function.
1074 (sh_corefile_gregset, sh_corefile_fpregset): New variables.
1075 (sh_regset_from_core_section): New function.
1076 (sh_gdbarch_init): Set up tdep value.
1077 Call set_gdbarch_regset_from_core_section.
1078 * sh-tdep.h (PC_REGNUM): New enum value.
1079 (struct sh_corefile_regs): New type.
1080 (sh_corefile_gregset): Export variable.
1081 (sh_corefile_supply_regset): New prototype.
1082 (sh_corefile_collect_regset): New prototype.
1083 * shnbsd-tdep.c: Remove include of regcache.h, gdb_assert.h and
1084 shnbsd-tdep.h.
1085 (regmap): Use new definition using struct sh_corefile_regs.
1086 (shnbsd_supply_gregset, shnbsd_collect_gregset): Delete.
1087 (shnbsd_gregset): Delete.
1088 (shnbsd_regset_from_core_section): Delete.
1089 (shnbsd_supply_reg, shnbsd_fill_reg): Use new regset interface.
1090 (shnbsd_init_abi): Set core_gregmap.
1091 (shnbsd_supply_reg): Delete.
1092 (shnbsd_fill_reg): Delete.
1093 (SHNBSD_SIZEOF_GREGS): Move ...
1094 * shnbsd-nat.c (SHNBSD_SIZEOF_GREGS): ... to here.
1095 Remove include of shnbsd-tdep.h.
1096 (shnbsd_fetch_inferior_registers): Replace shnbsd_supply_reg call
1097 with sh_corefile_supply_regset.
1098 (shnbsd_store_inferior_registers): Replace shnbsd_fill_reg call with
1099 sh_corefile_collect_regset.
1100 * shnbsd-tdep.h: Delete file.
1101
1102 2009-10-21 Pierre Muller <muller@ics.u-strasbg.fr>
1103
1104 * rs6000-nat.c (exec_one_dummy_insn): Add missing new ASPACE parameter
1105 to depreacted_insert_raw_breakpoint function call.
1106 * procfs.c (insert_dbx_link_bpt_in_file): Likewise.
1107
1108 2009-10-20 Michael Snyder <msnyder@vmware.com>
1109
1110 * record.c: Add some top-level comments for general explanation.
1111
1112 2009-10-20 Hui Zhu <teawater@gmail.com>
1113 Michael Snyder <msnyder@vmware.com>
1114
1115 * record.c (record_exec_insn): New function. Emulate one
1116 instruction, forward or backward. Abstracted from record_wait.
1117 (record_wait) Call record_exec_insn.
1118
1119 2009-10-20 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1120
1121 * infrun.c (handle_inferior_event): Add pspace field to sal
1122 for reverse execution cases.
1123
1124 2009-10-20 Ken Werner <ken@linux.vnet.ibm.com>
1125
1126 * go32-nat.c (go32_create_inferior): Use inferior_appeared, not
1127 inferior_appeared_silent.
1128 * remote-sim.c (gdbsim_create_inferior): Ditto.
1129
1130 2009-10-20 Pedro Alves <pedro@codesourcery.com>
1131
1132 * darwin-nat.c (cancel_breakpoint): Pass the regcache's address
1133 space to breakpoint_inserted_here_p.
1134
1135 2009-10-20 Pedro Alves <pedro@codesourcery.com>
1136
1137 * linux-nat.c (linux_nat_thread_address_space): New.
1138 (linux_nat_add_target): Install it.
1139 * progspace.c (address_space_num): New.
1140 * progspace.h (address_space_num): Declare.
1141 * target.c (target_thread_address_space): Really query the target.
1142 * target.h (struct target_ops) <to_thread_address_space>: New
1143 field.
1144
1145 2009-10-19 Joel Brobecker <brobecker@adacore.com>
1146
1147 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Add comment.
1148
1149 2009-10-19 Pedro Alves <pedro@codesourcery.com>
1150 Stan Shebs <stan@codesourcery.com>
1151
1152 Add base multi-executable/process support to GDB.
1153
1154 * Makefile.in (SFILES): Add progspace.c.
1155 (COMMON_OBS): Add progspace.o.
1156 * progspace.h: New.
1157 * progspace.c: New.
1158
1159 * breakpoint.h (struct bp_target_info) <placed_address_space>: New
1160 field.
1161 (struct bp_location) <pspace>: New field.
1162 (struct breakpoint) <pspace>: New field.
1163 (bpstat_stop_status, breakpoint_here_p)
1164 (moribund_breakpoint_here_p, breakpoint_inserted_here_p)
1165 (regular_breakpoint_inserted_here_p)
1166 (software_breakpoint_inserted_here_p, breakpoint_thread_match)
1167 (set_default_breakpoint): Adjust prototypes.
1168 (remove_breakpoints_pid, breakpoint_program_space_exit): Declare.
1169 (insert_single_step_breakpoint, deprecated_insert_raw_breakpoint):
1170 Adjust prototypes.
1171 * breakpoint.c (executing_startup): Delete.
1172 (default_breakpoint_sspace): New.
1173 (breakpoint_restore_shadows): Skip if the address space doesn't
1174 match.
1175 (update_watchpoint): Record the frame's program space in the
1176 breakpoint location.
1177 (insert_bp_location): Record the address space in target_info.
1178 Adjust to pass the symbol space to solib_name_from_address.
1179 (breakpoint_program_space_exit): New.
1180 (insert_breakpoint_locations): Switch the symbol space and thread
1181 when inserting breakpoints. Don't insert breakpoints in a vfork
1182 parent waiting for vfork done if we're not attached to the vfork
1183 child.
1184 (remove_breakpoints_pid): New.
1185 (reattach_breakpoints): Switch to a thread of PID. Ignore
1186 breakpoints of other symbol spaces.
1187 (create_internal_breakpoint): Store the symbol space in the sal.
1188 (create_longjmp_master_breakpoint): Iterate over all symbol
1189 spaces.
1190 (update_breakpoints_after_exec): Ignore breakpoints for other
1191 symbol spaces.
1192 (remove_breakpoint): Rename to ...
1193 (remove_breakpoint_1): ... this. Pass the breakpoints symbol
1194 space to solib_name_from_address.
1195 (remove_breakpoint): New.
1196 (mark_breakpoints_out): Ignore breakpoints from other symbol
1197 spaces.
1198 (breakpoint_init_inferior): Ditto.
1199 (breakpoint_here_p): Add an address space argument and adjust to
1200 use breakpoint_address_match.
1201 (moribund_breakpoint_here_p): Ditto.
1202 (regular_breakpoint_inserted_here_p): Ditto.
1203 (breakpoint_inserted_here_p): Ditto.
1204 (software_breakpoint_inserted_here_p): Ditto.
1205 (breakpoint_thread_match): Ditto.
1206 (bpstat_check_location): Ditto.
1207 (bpstat_stop_status): Ditto.
1208 (print_breakpoint_location): If there's a location to print,
1209 switch the current symbol space.
1210 (print_one_breakpoint_location): Add `allflag' argument.
1211 (print_one_breakpoint): Ditto. Adjust.
1212 (do_captured_breakpoint_query): Adjust.
1213 (breakpoint_1): Adjust.
1214 (breakpoint_has_pc): Also match the symbol space.
1215 (describe_other_breakpoints): Add a symbol space argument and
1216 adjust.
1217 (set_default_breakpoint): Add a symbol space argument. Set
1218 default_breakpoint_sspace.
1219 (breakpoint_address_match): New.
1220 (check_duplicates_for): Add an address space argument, and adjust.
1221 (set_raw_breakpoint): Record the symbol space in the location and
1222 in the breakpoint.
1223 (set_longjmp_breakpoint): Skip longjmp master breakpoints from
1224 other symbol spaces.
1225 (remove_thread_event_breakpoints, remove_solib_event_breakpoints)
1226 (disable_breakpoints_in_shlibs): Skip breakpoints from other
1227 symbol spaces.
1228 (disable_breakpoints_in_unloaded_shlib): Match symbol spaces.
1229 (create_catchpoint): Set the symbol space in the sal.
1230 (disable_breakpoints_before_startup): Skip breakpoints from other
1231 symbol spaces. Set executing_startup in the current symbol space.
1232 (enable_breakpoints_after_startup): Clear executing_startup in the
1233 current symbol space. Skip breakpoints from other symbol spaces.
1234 (clone_momentary_breakpoint): Also copy the symbol space.
1235 (add_location_to_breakpoint): Set the location's symbol space.
1236 (bp_loc_is_permanent): Switch thread and symbol space.
1237 (create_breakpoint): Adjust.
1238 (expand_line_sal_maybe): Expand comment to mention symbol spaces.
1239 Switch thread and symbol space when reading memory.
1240 (parse_breakpoint_sals): Set the symbol space in the sal.
1241 (break_command_really): Ditto.
1242 (skip_prologue_sal): Switch and space.
1243 (resolve_sal_pc): Ditto.
1244 (watch_command_1): Record the symbol space in the sal.
1245 (create_ada_exception_breakpoint): Adjust.
1246 (clear_command): Adjust. Match symbol spaces.
1247 (update_global_location_list): Use breakpoint_address_match.
1248 (breakpoint_re_set_one): Switch thread and space.
1249 (breakpoint_re_set): Save symbol space.
1250 (breakpoint_re_set_thread): Also reset the symbol space.
1251 (deprecated_insert_raw_breakpoint): Add an address space argument.
1252 Adjust.
1253 (insert_single_step_breakpoint): Ditto.
1254 (single_step_breakpoint_inserted_here_p): Ditto.
1255 (clear_syscall_counts): New.
1256 (_initialize_breakpoint): Install it as inferior_exit observer.
1257
1258 * exec.h: Include "progspace.h".
1259 (exec_bfd, exec_bfd_mtime): New defines.
1260 (exec_close): Declare.
1261 * exec.c: Include "gdbthread.h" and "progspace.h".
1262 (exec_bfd, exec_bfd_mtime, current_target_sections_1): Delete.
1263 (using_exec_ops): New.
1264 (exec_close_1): Rename to exec_close, and make public.
1265 (exec_close): Rename to exec_close_1, and adjust all callers. Add
1266 description. Remove target sections and close executables from
1267 all program spaces.
1268 (exec_file_attach): Add comment.
1269 (add_target_sections): Check on `using_exec_ops' to check if the
1270 target should be pushed.
1271 (remove_target_sections): Only unpush the target if there are no
1272 more target sections in any symbol space.
1273 * gdbcore.h: Include "exec.h".
1274 (exec_bfd, exec_bfd_mtime): Remove declarations.
1275
1276 * frame.h (get_frame_program_space, get_frame_address_space)
1277 (frame_unwind_program_space): Declare.
1278 * frame.c (struct frame_info) <pspace, aspace>: New fields.
1279 (create_sentinel_frame): Add program space argument. Set the
1280 pspace and aspace fields of the frame object.
1281 (get_current_frame, create_new_frame): Adjust.
1282 (get_frame_program_space): New.
1283 (frame_unwind_program_space): New.
1284 (get_frame_address_space): New.
1285 * stack.c (print_frame_info): Adjust.
1286 (print_frame): Use the frame's program space.
1287
1288 * gdbthread.h (any_live_thread_of_process): Declare.
1289 * thread.c (any_live_thread_of_process): New.
1290 (switch_to_thread): Switch the program space as well.
1291 (restore_selected_frame): Don't warn if trying to restore frame
1292 level 0.
1293
1294 * inferior.h: Include "progspace.h".
1295 (detach_fork): Declare.
1296 (struct inferior) <removable, aspace, pspace>
1297 <vfork_parent, vfork_child, pending_detach>
1298 <waiting_for_vfork_done>: New fields.
1299 <terminal_info>: Remove field.
1300 <data, num_data>: New fields.
1301 (register_inferior_data, register_inferior_data_with_cleanup)
1302 (clear_inferior_data, set_inferior_data, inferior_data): Declare.
1303 (exit_inferior, exit_inferior_silent, exit_inferior_num_silent)
1304 (inferior_appeared): Declare.
1305 (find_inferior_pid): Typo.
1306 (find_inferior_id, find_inferior_for_program_space): Declare.
1307 (set_current_inferior, save_current_inferior, prune_inferiors)
1308 (number_of_inferiors): Declare.
1309 (inferior_list): Declare.
1310 * inferior.c: Include "gdbcore.h" and "symfile.h".
1311 (inferior_list): Make public.
1312 (delete_inferior_1): Always delete thread silently.
1313 (find_inferior_id): Make public.
1314 (current_inferior_): New.
1315 (current_inferior): Use it.
1316 (set_current_inferior): New.
1317 (restore_inferior): New.
1318 (save_current_inferior): New.
1319 (free_inferior): Free the per-inferior data.
1320 (add_inferior_silent): Allocate per-inferior data.
1321 Call inferior_appeared.
1322 (delete_threads_of_inferior): New.
1323 (delete_inferior_1): Adjust interface to take an inferior pointer.
1324 (delete_inferior): Adjust.
1325 (delete_inferior_silent): Adjust.
1326 (exit_inferior_1): New.
1327 (exit_inferior): New.
1328 (exit_inferior_silent): New.
1329 (exit_inferior_num_silent): New.
1330 (detach_inferior): Adjust.
1331 (inferior_appeared): New.
1332 (discard_all_inferiors): Adjust.
1333 (find_inferior_id): Make public. Assert pid is not zero.
1334 (find_inferior_for_program_space): New.
1335 (have_inferiors): Check if we have any inferior with pid not zero.
1336 (have_live_inferiors): Go over all pushed targets looking for
1337 process_stratum.
1338 (prune_inferiors): New.
1339 (number_of_inferiors): New.
1340 (print_inferior): Add executable column. Print vfork parent/child
1341 relationships.
1342 (inferior_command): Adjust to cope with not running inferiors.
1343 (remove_inferior_command): New.
1344 (add_inferior_command): New.
1345 (clone_inferior_command): New.
1346 (struct inferior_data): New.
1347 (struct inferior_data_registration): New.
1348 (struct inferior_data_registry): New.
1349 (inferior_data_registry): New.
1350 (register_inferior_data_with_cleanup): New.
1351 (register_inferior_data): New.
1352 (inferior_alloc_data): New.
1353 (inferior_free_data): New.
1354 (clear_inferior_data): New.
1355 (set_inferior_data): New.
1356 (inferior_data): New.
1357 (initialize_inferiors): New.
1358 (_initialize_inferiors): Register "add-inferior",
1359 "remove-inferior" and "clone-inferior" commands.
1360
1361 * objfiles.h: Include "progspace.h".
1362 (struct objfile) <pspace>: New field.
1363 (symfile_objfile, object_files): Don't declare.
1364 (ALL_PSPACE_OBJFILES): New.
1365 (ALL_PSPACE_OBJFILES_SAFE): New.
1366 (ALL_OBJFILES, ALL_OBJFILES_SAFE): Adjust.
1367 (ALL_PSPACE_SYMTABS): New.
1368 (ALL_PRIMARY_SYMTABS): Adjust.
1369 (ALL_PSPACE_PRIMARY_SYMTABS): New.
1370 (ALL_PSYMTABS): Adjust.
1371 (ALL_PSPACE_PSYMTABS): New.
1372 * objfiles.c (object_files, symfile_objfile): Delete.
1373 (struct objfile_sspace_info): New.
1374 (objfiles_pspace_data): New.
1375 (objfiles_pspace_data_cleanup): New.
1376 (get_objfile_pspace_data): New.
1377 (objfiles_changed_p): Delete.
1378 (allocate_objfile): Set the objfile's program space. Adjust to
1379 reference objfiles_changed_p in pspace data.
1380 (free_objfile): Adjust to reference objfiles_changed_p in pspace
1381 data.
1382 (objfile_relocate): Ditto.
1383 (update_section_map): Add pspace argument. Adjust to iterate over
1384 objfiles in the passed in pspace.
1385 (find_pc_section): Delete sections and num_sections statics.
1386 Adjust to refer to program space's objfiles_changed_p. Adjust to
1387 refer to sections and num_sections store in the objfile's pspace
1388 data.
1389 (objfiles_changed): Adjust to reference objfiles_changed_p in
1390 pspace data.
1391 (_initialize_objfiles): New.
1392 * linespec.c (decode_all_digits, decode_dollar): Set the sal's
1393 program space.
1394 * source.c (current_source_pspace): New.
1395 (get_current_source_symtab_and_line): Set the sal's program space.
1396 (set_current_source_symtab_and_line): Set current_source_pspace.
1397 (select_source_symtab): Ditto. Use ALL_OBJFILES.
1398 (forget_cached_source_info): Iterate over all program spaces.
1399 * symfile.c (clear_symtab_users): Adjust.
1400 * symmisc.c (print_symbol_bcache_statistics): Iterate over all
1401 program spaces.
1402 (print_objfile_statistics): Ditto.
1403 (maintenance_print_msymbols): Ditto.
1404 (maintenance_print_objfiles): Ditto.
1405 (maintenance_info_symtabs): Ditto.
1406 (maintenance_info_psymtabs): Ditto.
1407 * symtab.h (SYMTAB_PSPACE): New.
1408 (struct symtab_and_line) <pspace>: New field.
1409 * symtab.c (init_sal): Clear the sal's program space.
1410 (find_pc_sect_symtab): Set the sal's program space. Switch thread
1411 and space.
1412 (append_expanded_sal): Add program space argument. Iterate over
1413 all program spaces.
1414 (expand_line_sal): Iterate over all program spaces. Switch
1415 program space.
1416
1417 * target.h (enum target_waitkind) <TARGET_WAITKIND_VFORK_DONE>: New.
1418 (struct target_ops) <to_thread_address_space>: New field.
1419 (target_thread_address_space): Define.
1420 * target.c (target_detach): Only remove breakpoints from the
1421 inferior we're detaching.
1422 (target_thread_address_space): New.
1423
1424 * defs.h (initialize_progspace): Declare.
1425 * top.c (gdb_init): Call it.
1426
1427 * solist.h (struct so_list) <sspace>: New field.
1428 * solib.h (struct program_space): Forward declare.
1429 (solib_name_from_address): Adjust prototype.
1430 * solib.c (so_list_head): Replace with a macro referencing the
1431 program space.
1432 (update_solib_list): Set the so's program space.
1433 (solib_name_from_address): Add a program space argument and adjust.
1434
1435 * solib-svr4.c (struct svr4_info) <pid>: Delete field.
1436 <interp_text_sect_low, interp_text_sect_high, interp_plt_sect_low>
1437 <interp_plt_sect_high>: New fields.
1438 (svr4_info_p, svr4_info): Delete.
1439 (solib_svr4_sspace_data): New.
1440 (get_svr4_info): Rewrite.
1441 (svr4_sspace_data_cleanup): New.
1442 (open_symbol_file_object): Adjust.
1443 (svr4_default_sos): Adjust.
1444 (svr4_fetch_objfile_link_map): Adjust.
1445 (interp_text_sect_low, interp_text_sect_high, interp_plt_sect_low)
1446 (interp_plt_sect_high): Delete.
1447 (svr4_in_dynsym_resolve_code): Adjust.
1448 (enable_break): Adjust.
1449 (svr4_clear_solib): Revert bit that removed the svr4_info here,
1450 and reinstate clearing debug_base, debug_loader_offset_p,
1451 debug_loader_offset and debug_loader_name.
1452 (_initialize_svr4_solib): Register solib_svr4_pspace_data. Don't
1453 install an inferior_exit observer anymore.
1454
1455 * printcmd.c (struct display) <pspace>: New field.
1456 (display_command): Set the display's sspace.
1457 (do_one_display): Match the display's sspace.
1458 (display_uses_solib_p): Ditto.
1459
1460 * linux-fork.c (detach_fork): Moved to infrun.c.
1461 (_initialize_linux_fork): Moved "detach-on-fork" command to
1462 infrun.c.
1463 * infrun.c (detach_fork): Moved from linux-fork.c.
1464 (proceed_after_vfork_done): New.
1465 (handle_vfork_child_exec_or_exit): New.
1466 (follow_exec_mode_replace, follow_exec_mode_keep)
1467 (follow_exec_mode_names, follow_exec_mode_string)
1468 (show_follow_exec_mode_string): New.
1469 (follow_exec): New. Reinstate the mark_breakpoints_out call.
1470 Remove shared libraries before attaching new executable. If user
1471 wants to keep the inferior, keep it.
1472 (displaced_step_fixup): Adjust to pass an address space to the
1473 breakpoints module.
1474 (resume): Ditto.
1475 (clear_proceed_status): In all-stop mode, always clear the proceed
1476 status of all threads.
1477 (prepare_to_proceed): Adjust to pass an address space to the
1478 breakpoints module.
1479 (proceed): Ditto.
1480 (adjust_pc_after_break): Ditto.
1481 (handle_inferior_event): When handling a process exit, switch the
1482 program space to the inferior's that had exited. Call
1483 handle_vfork_child_exec_or_exit. Adjust to pass an address space
1484 to the breakpoints module. In non-stop mode, when following a
1485 fork and detach-fork is off, also resume the other branch. Handle
1486 TARGET_WAITKIND_VFORK_DONE. Set the program space in sals.
1487 (normal_stop): Prune inferiors.
1488 (_initialize_infrun): Install the new "follow-exec-mode" command.
1489 "detach-on-fork" moved here.
1490
1491 * regcache.h (get_regcache_aspace): Declare.
1492 * regcache.c (struct regcache) <aspace>: New field.
1493 (regcache_xmalloc): Clear the aspace.
1494 (get_regcache_aspace): New.
1495 (regcache_cpy): Copy the aspace field.
1496 (regcache_cpy_no_passthrough): Ditto.
1497 (get_thread_regcache): Fetch the thread's address space from the
1498 target, and store it in the regcache.
1499
1500 * infcall.c (call_function_by_hand): Set the sal's pspace.
1501
1502 * arch-utils.c (default_has_shared_address_space): New.
1503 * arch-utils.h (default_has_shared_address_space): Declare.
1504
1505 * gdbarch.sh (has_shared_address_space): New.
1506 * gdbarch.h, gdbarch.c: Regenerate.
1507
1508 * linux-tdep.c: Include auxv.h, target.h, elf/common.h.
1509 (linux_has_shared_address_space): New.
1510 (_initialize_linux_tdep): Declare.
1511
1512 * arm-tdep.c (arm_software_single_step): Pass the frame's address
1513 space to insert_single_step_breakpoint.
1514 * arm-linux-tdep.c (arm_linux_software_single_step): Pass the
1515 frame's pspace to breakpoint functions.
1516 * cris-tdep.c (crisv32_single_step_through_delay): Ditto.
1517 (cris_software_single_step): Ditto.
1518 * mips-tdep.c (deal_with_atomic_sequence): Add frame argument.
1519 Pass the frame's pspace to breakpoint functions.
1520 (mips_software_single_step): Adjust.
1521 (mips_single_step_through_delay): Adjust.
1522 * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
1523 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
1524 * solib-irix.c (enable_break): Adjust to pass the current frame's
1525 address space to breakpoint functions.
1526 * sparc-tdep.c (sparc_software_single_step): Ditto.
1527 * spu-tdep.c (spu_software_single_step): Ditto.
1528 * alpha-tdep.c (alpha_software_single_step): Ditto.
1529 * record.c (record_wait): Adjust to pass an address space to the
1530 breakpoints module.
1531
1532 * fork-child.c (fork_inferior): Set the new inferior's program and
1533 address spaces.
1534 * inf-ptrace.c (inf_ptrace_follow_fork): Copy the parent's program
1535 and address spaces.
1536 (inf_ptrace_attach): Set the inferior's program and address spaces.
1537 * linux-nat.c: Include "solib.h".
1538 (linux_child_follow_fork): Manage parent and child's program and
1539 address spaces. Clone the parent's program space if necessary.
1540 Don't wait for the vfork to be done here. Refuse to resume if
1541 following the vfork parent while leaving the child stopped.
1542 (resume_callback): Don't resume a vfork parent.
1543 (linux_nat_resume): Also check for pending events in the
1544 lp->waitstatus field.
1545 (linux_handle_extended_wait): Report TARGET_WAITKIND_VFORK_DONE
1546 events to the core.
1547 (stop_wait_callback): Don't wait for SIGSTOP on vfork parents.
1548 (cancel_breakpoint): Adjust.
1549 * linux-thread-db.c (thread_db_wait): Don't remove thread event
1550 breakpoints here.
1551 (thread_db_mourn_inferior): Don't mark breakpoints out here.
1552 Remove thread event breakpoints after mourning.
1553 * corelow.c: Include progspace.h.
1554 (core_open): Set the inferior's program and address spaces.
1555 * remote.c (remote_add_inferior): Set the new inferior's program
1556 and address spaces.
1557 (remote_start_remote): Update address spaces.
1558 (extended_remote_create_inferior_1): Don't init the thread list if
1559 we already debugging other inferiors.
1560 * darwin-nat.c (darwin_attach): Set the new inferior's program and
1561 address spaces.
1562 * gnu-nat.c (gnu_attach): Ditto.
1563 * go32-nat.c (go32_create_inferior): Ditto.
1564 * inf-ttrace.c (inf_ttrace_follow_fork, inf_ttrace_attach): Ditto.
1565 * monitor.c (monitor_open): Ditto.
1566 * nto-procfs.c (procfs_attach, procfs_create_inferior): Ditto.
1567 * procfs.c (do_attach): Ditto.
1568 * windows-nat.c (do_initial_windows_stuff): Ditto.
1569
1570 * inflow.c (inferior_process_group)
1571 (terminal_init_inferior_with_pgrp, terminal_inferior,
1572 (terminal_ours_1, inflow_inferior_exit, copy_terminal_info)
1573 (child_terminal_info, new_tty_postfork, set_sigint_trap): Adjust
1574 to use per-inferior data instead of inferior->terminal_info.
1575 (inflow_inferior_data): New.
1576 (inflow_new_inferior): Delete.
1577 (inflow_inferior_data_cleanup): New.
1578 (get_inflow_inferior_data): New.
1579
1580 * mi/mi-interp.c (mi_new_inferior): Rename to...
1581 (mi_inferior_appeared): ... this.
1582 (mi_interpreter_init): Adjust.
1583
1584 * tui/tui-disasm.c: Include "progspace.h".
1585 (tui_set_disassem_content): Pass an address space to
1586 breakpoint_here_p.
1587
1588 * NEWS: Mention multi-program debugging support. Mention new
1589 commands "add-inferior", "clone-inferior", "remove-inferior",
1590 "maint info program-spaces", and new option "set
1591 follow-exec-mode".
1592
1593 2009-10-19 Don Lee <don.lee@sunplusct.com>
1594
1595 * score-tdep.c: Delete dead codes.
1596
1597 2009-10-15 Michael Snyder <msnyder@vmware.com>
1598
1599 * record.c (struct record_reg_entry): Replace ptr with union
1600 of ptr and buf.
1601 (struct record_mem_entry): Ditto.
1602 (record_reg_alloc): Don't alloc ptr if reg will fit into buf.
1603 (record_mem_alloc): Ditto.
1604 (record_reg_release): Don't free ptr if reg was stored in buf.
1605 (record_mem_release): Ditto.
1606 (record_get_loc): New function. Return a pointer to where the
1607 value (mem or reg) is to be stored.
1608 (record_arch_list_add_reg): Call record_get_loc instead of using ptr.
1609 (record_arch_list_add_mem): Ditto.
1610 (record_wait): Ditto.
1611
1612 2009-10-16 Michael Eager <eager@eagercon.com>
1613
1614 * microblaze-linux-tdep.c:
1615 microblaze_linux_memory_remove_breakpoint(): Add gdbarch to param,
1616 replace frame_pc_unwind with get_frame_address_in_block.
1617 * microblaze-tdep.c: Remove MICROBLAZE_REGISTER_SIZE.
1618 * microblaze-tdep.h: Add MICROBLAZE_REGISTER_SIZE.
1619
1620 2008-10-15 Steven G. Kargl <kargl@gcc.gnu.org> (tiny patch)
1621
1622 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Conditionally compile in
1623 support for pcb->pcb_{fs,ds,es,gs} on FreeBSD older than 8.0.
1624
1625 2009-10-15 Michael Eager <eager@eagercon.com>
1626
1627 * config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,
1628 elf32-microblaze.c, microblaze-rom.c, microblaze-linux-tdep.c,
1629 microblaze-tdep.h, microblaze-tdep.c, microblaze-opc.h,
1630 microblaze-opcm.h, microblaze-dis.c, microblaze-dis.h, sim/microblaze,
1631 microblaze.h, and microblaze.isa.
1632 * configure.tgt: Add targets microblaze*-linux-*, microblaze*-xilinx-*.
1633 * Makefile.in: Build microblaze-tdep.o, microblaze-linux-tdep.o.
1634 HFILES_NO_SRCDIR: Add microblaze-tdep.h.
1635 * microblaze-linux-tdep.c: New.
1636 * microblaze-tdep.c: New.
1637 * microblaze-tdep.h: New.
1638 * NEWS: Announce Xilinx MicroBlaze support.
1639
1640 2009-10-15 Paul Pluzhnikov <ppluzhnikov@google.com>
1641
1642 PR gdb/10757
1643 * linux-nat.c (linux_nat_post_attach_wait): Adjust assert.
1644 (lin_lwp_attach_lwp, linux_nat_attach): Handle disappearing LWP.
1645
1646 2009-10-15 Michael Snyder <msnyder@vmware.com>
1647
1648 * record.c (record_insn_max_num): Make unsigned.
1649 (_initialize_record): Use uinteger instead of zinteger for
1650 set command, so that it will report "unlimited" for zero.
1651
1652 2009-10-15 Michael Snyder <msnyder@vmware.com>
1653
1654 * record.c (record_reg_alloc): New function.
1655 (record_reg_release): New function.
1656 (record_mem_alloc): New function.
1657 (record_mem_release): New function.
1658 (record_end_alloc): New function.
1659 (record_end_release): New function.
1660 (record_entry_release): New function.
1661 (record_list_release): Simplify, call record_entry_release.
1662 (record_list_release_next): Rename to record_list_release_following.
1663 Simplify and call record_entry_release.
1664 (record_list_release_first): Simplify, comment, and use
1665 record_entry_release.
1666 (record_arch_list_add_reg): Simplify, call record_reg_alloc.
1667 (record_arch_list_add_mem): Simplify, call record_mem_alloc.
1668 (record_arch_list_add_end): Simplify, call record_end_alloc.
1669
1670 2009-10-14 Michael Snyder <msnyder@vmware.com>
1671
1672 * record.c (record_list_release_first): Do not decrement
1673 record_insn_num.
1674 (set_insn_num_max): Remove printf.
1675 Decrement record_insn_num in the loop.
1676
1677 2009-10-14 Cary Coutant <ccoutant@google.com>
1678
1679 * dwarf2read.c (read_import_statement): Call follow_die_ref_or_sig.
1680
1681 2009-10-14 Keith Seitz <keiths@redhat.com>
1682
1683 * dwarf2read.c (dwarf2_const_value): Fix order of arguments to
1684 store_unsigned_integer.
1685
1686 2009-10-14 Pedro Alves <pedro@codesourcery.com>
1687
1688 * configure.ac (build_warnings): Add -Wunused-value.
1689 * configure: Regenerate.
1690
1691 2009-10-14 Tristan Gingold <gingold@adacore.com>
1692
1693 * solib-darwin.c: Remove trailing whitespaces.
1694 (darwin_dyld_version_ok): Fix typo.
1695
1696 2009-10-14 Andrew Stubbs <ams@codesourcery.com>
1697
1698 * sh-tdep.c (sh_gdbarch_init): Add show_regs settings for
1699 bfd_mach_sh3_nommu, bfd_mach_sh2a_nofpu_or_sh3_nommu,
1700 bfd_mach_sh2a_or_sh3e, bfd_mach_sh2a_or_sh4, bfd_mach_sh4_nommu_nofpu,
1701 and bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu.
1702 Move bfd_mach_sh2a_or_sh4 to use the same configuration as
1703 bfd_mach_sh4.
1704
1705 2009-10-13 Daniel Jacobowitz <dan@codesourcery.com>
1706
1707 * arm-tdep.c (arm_push_dummy_call): Set the low bit of LR for
1708 a Thumb entry point.
1709 (thumb_get_next_pc): Handle Thumb-2 and ARM v6 instructions. Refuse
1710 to single step into IT blocks.
1711
1712 2009-10-13 Pedro Alves <pedro@codesourcery.com>
1713
1714 * infcall.c (call_function_by_hand): Formatting.
1715
1716 2009-10-13 Tristan Gingold <gingold@adacore.com>
1717
1718 * solib-darwin.c: Add an empty line after comment for functions.
1719 (struct gdb_dyld_all_image_infos): Improve comment.
1720 (DYLD_VERSION): Removed and replaced by ...
1721 (DYLD_VERSION_MAX, DYLD_VERSION_MIN): ... New macros.
1722 (darwin_dyld_version_ok): New function.
1723 (darwin_load_image_infos): Call darwin_dyld_version_ok.
1724 (darwin_current_sos): Ditto.
1725 (darwin_solib_create_inferior_hook): Ditto.
1726
1727 2009-10-13 Tristan Gingold <gingold@adacore.com>
1728
1729 * machoread.c: Add an empty line after comment for functions.
1730 (oso_el_compare_name): New function.
1731 (macho_add_oso_symfile): New function.
1732 (macho_oso_symfile): Use macho_add_oso_symfile. Sort the oso
1733 and optimize accesses to libraries.
1734
1735 2009-10-13 Tristan Gingold <gingold@adacore.com>
1736
1737 * objfiles.c (objfile_has_symbols): New function.
1738 * objfiles.h (objfile_has_symbols): Add prototype.
1739 * symfile.c (symbol_file_add_with_addrs_or_offsets): Call
1740 objfile_has_symbols.
1741 (reread_symbols): Ditto.
1742
1743 2009-10-12 Jiang Jilin <freephp@gmail.com>
1744
1745 * i386-tdep.c (i386_process_record): Add xgetbv/xsetbv
1746 instructions support.
1747
1748 2009-10-11 Pedro Alves <pedro@codesourcery.com>
1749
1750 * procfs.c (procfs_make_note_section): Go back to only outputing
1751 an NT_PSTATUS note when UNIXWARE is defined.
1752
1753 2009-10-11 Daniel Jacobowitz <dan@codesourcery.com>
1754
1755 * features/xinclude.dtd: Correct EMPTY typo.
1756
1757 2009-10-10 Michael Snyder <msnyder@vmware.com>
1758
1759 * i386-tdep.c (i386_process_record): Or-equals, not not-equals.
1760
1761 2009-10-10 Pedro Alves <pedro@codesourcery.com>
1762
1763 * mi/mi-cmd-stack.c (list_args_or_locals): Use internal_error.
1764 Put "break" statements on their own line.
1765
1766 2009-10-09 Pedro Alves <pedro@codesourcery.com>
1767
1768 * linux-nat.c (linux_nat_wait_1): Bail out, if TARGET_WNOHANG and
1769 we found no event while waiting for a specific LWP.
1770 * infrun.c (handle_inferior_event): Handle TARGET_WAITKIND_IGNORE
1771 before anything else.
1772
1773 2009-10-09 Pedro Alves <pedro@codesourcery.com>
1774
1775 * procfs.c (procfs_make_note_section): Always output a NT_PSTATUS
1776 note when NEW_PROC_API is defined.
1777
1778 2009-10-09 Pedro Alves <pedro@codesourcery.com>
1779
1780 * corelow.c (core_has_fake_pid): New.
1781 (core_close): Clear it.
1782 (add_to_thread_list): Fake a pid if one is not found on a Solaris
1783 core. Add the inferior here. Always add the thread, don't use
1784 thread_change_ptid.
1785 (core_open): Don't add the main thread or the inferior here unless
1786 we find that the core had no .reg/NN sections.
1787 (get_core_register_section): Handle Solaris cores with fake pids.
1788
1789 * corelow.c (add_to_thread_list): Fix typo.
1790
1791 2009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
1792
1793 PR gdb/10457
1794 * elfread.c (elf_symtab_read): Don't use alloca in a loop.
1795
1796 2009-10-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1797
1798 * i386-nat.c (i386_stopped_by_hwbp): Remove.
1799
1800 2009-10-07 Joel Brobecker <brobecker@adacore.com>
1801
1802 * NEWS: Update following the GDB 7.0 release.
1803
1804 2009-10-07 Pierre Muller <muller@ics.u-strasbg.fr>
1805
1806 ARI fix: OP eol rule.
1807 * doublest.c (floatformat_from_length): Avoid operator at end of line.
1808 * dwarf2-frame.c (dwarf2_build_frame_info): Idem.
1809 * dwarf2read.c (read_array_order, dwarf_decode_macros): Idem.
1810 * eval.c (evaluate_subexp_standard): Idem.
1811 * event-loop.c (create_timer, handle_timer_event): Idem.
1812 * expprint.c (print_subexp_standard): Idem.
1813 * f-exp.y (variable): Idem.
1814 * f-typeprint.c (f_print_type): Idem.
1815
1816 2009-10-06 Pierre Muller <muller@ics.u-strasbg.fr>
1817
1818 ARI fix: OP eol rule.
1819 * blockframe.c (find_pc_partial_function): Avoid operator at end of
1820 line.
1821 * buildsym.c (find_symbol_in_list): Idem.
1822 (start_subfile, patch_subfile_names): Idem.
1823 * c-exp.y (variable, yylex): Idem.
1824 * c-typeprint.c (c_print_type, c_type_print_base): Idem.
1825 * c-valprint.c (c_val_print): Idem.
1826 * coffread.c (patch_opaque_types, process_coff_symbol): Idem.
1827 * corelow.c (core_open): Idem.
1828 * cris-tdep.c (move_reg_to_mem_movem_op): Idem.
1829 * cli/cli-decode.c (help_cmd_list, find_command_name_length): Idem.
1830
1831 2009-10-06 Pierre Muller <muller@ics.u-strasbg.fr>
1832
1833 ARI fix: OP eol rule.
1834 * ada-exp.y (block_lookup): Avoid operator at end of line.
1835 * aix-thread.c (pd_enable): Idem.
1836 * alpha-tdep.c (alpha_next_pc): Idem.
1837 * arm-tdep.c (arm_skip_prologue, arm_scan_prologue): Idem.
1838 (condition_true, coff_sym_is_thumb): Idem.
1839
1840 2009-10-06 Joel Brobecker <brobecker@adacore.com>
1841
1842 GDB 7.0 released.
1843
1844 2009-10-06 Pierre Muller <muller@ics.u-strasbg.fr>
1845
1846 ARI fix: "%p" rule.
1847 * target.c (debug_to_thread_architecture): Replace %p by %s using
1848 host_address_to_string function.
1849
1850 2009-10-06 Tristan Gingold <gingold@adacore.com>
1851
1852 * darwin-nat.c: Add __TEXT __info_plist content.
1853 (darwin_attach_pid): Update error message.
1854
1855 2009-10-06 Joel Brobecker <brobecker@adacore.com>
1856
1857 * MAINTAINERS: Add Tristan Gingold as Maintainer of the Darwin port.
1858
1859 2009-10-06 Joel Brobecker <brobecker@adacore.com>
1860
1861 * MAINTAINERS: Add Jan Kratochvil as Maintainer of the ia64 target.
1862
1863 2009-10-05 Pedro Alves <pedro@codesourcery.com>
1864
1865 Revert:
1866 2009-10-04 Pedro Alves <pedro@codesourcery.com>
1867 * gdbinit.in: Set data-directory to @srcdir@.
1868
1869 2009-10-04 Pedro Alves <pedro@codesourcery.com>
1870
1871 * NEWS: Mention non-stop mode.
1872
1873 2009-10-04 Pedro Alves <pedro@codesourcery.com>
1874
1875 * gdbinit.in: Set data-directory to @srcdir@.
1876
1877 2009-10-02 Pedro Alves <pedro@codesourcery.com>
1878
1879 * linux-nat.c (TRAP_IS_SYSCALL, TRAP_REMOVE_SYSCALL_FLAG): Delete.
1880 (SYSCALL_SIGTRAP): New.
1881 (status_to_str): Adjust.
1882 (get_pending_status): Pending events in lp->waitstatus don't map
1883 to any signal. Simplify.
1884 (linux_handle_syscall_trap): New.
1885 (linux_handle_extended_wait): When handling PTRACE_EVENT_CLONE
1886 events, use linux_ops->to_resume instead of direct ptrace with
1887 PTRACE_CONT. Remove all TRAP_IS_SYSCALL handling.
1888 (wait_lwp): Handle syscall traps with linux_handle_syscall_trap,
1889 and clear the sysgood bit.
1890 (status_callback): Make it clearer and add comments.
1891 (cancel_breakpoints_callback): Ignore if LP has waitstatus set.
1892 (linux_nat_filter_event): Handle syscall traps with
1893 linux_handle_syscall_trap, and clear the sysgood bit. Move the
1894 check for storing siginfo to after handling extended statuses and
1895 syscall traps. Store status in the lwp object.
1896 (linux_wait_1): Don't swap the pending status out of the lwp
1897 object until after deciding we found an lwp with an interesting
1898 event. Requeue a new pending signal if we find one while getting
1899 rid or a pending SIGSTOP we sent ourselves. Don't clear the
1900 sysgood bit here.
1901
1902 * infrun.c (deal_with_syscall_event): Rename to ...
1903 (handle_syscall_event): ... this. Always context switch and set
1904 stop_pc, even if not catching the syscall. If not catching the
1905 syscall, always resume with keep_going.
1906 (handle_inferior_event): Adjust.
1907
1908 2009-10-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1909
1910 Fix compatibility of --with-system-readline and readline-6.0+.
1911 * configure.ac <--with-system-readline> (for readline_echoing_p): New
1912 test.
1913 * config.in: Regenerate.
1914 * configure: Regenerate.
1915
1916 2009-10-01 Joel Brobecker <brobecker@adacore.com>
1917
1918 * MAINTAINERS: Move Don Lee to the correct section (Write After
1919 Approval).
1920
1921 2009-10-01 Phil Muldoon <pmuldoon@redhat.com>
1922
1923 * infcall.c (call_function_by_hand): Add a new cleanup branch for
1924 std::terminate breakpoints.
1925
1926 2009-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1927
1928 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): New variable buf.
1929 Check first the descriptor memory is readable.
1930
1931 2009-09-29 Tom Tromey <tromey@redhat.com>
1932
1933 * python/py-value.c (valpy_string): NULL-terminate 'keywords'.
1934
1935 2009-09-29 Ulrich Weigand <uweigand@de.ibm.com>
1936
1937 * s390-tdep.c (s390_displaced_step_fixup): Use type ULONGEST
1938 instead of CORE_ADDR for "amode".
1939
1940 2009-09-29 Joel Brobecker <brobecker@adacore.com>
1941
1942 * ia64-tdep.c: Update the comments on how we insert/remove
1943 breakpoints for L-X instructions.
1944 (ia64_memory_insert_breakpoint, ia64_memory_remove_breakpoint):
1945 Update the comments inside these functions.
1946
1947 2009-09-28 Ulrich Weigand <uweigand@de.ibm.com>
1948
1949 * gdbarch.sh (displaced_step_hw_singlestep): New callback.
1950 * gdbarch.c, gdbarch.h: Regenerate.
1951 * arch-utils.c (default_displaced_step_hw_singlestep): New function.
1952 * arch-utils.h (default_displaced_step_hw_singlestep): Add prototype.
1953
1954 * ppc-linux-tdep.c (ppc_displaced_step_hw_singlestep): New function.
1955 (rs6000_gdbarch_init): Install it.
1956
1957 * infrun.c (displaced_step_fixup): Use new callback to determine
1958 whether to "step" or "continue" displaced copy.
1959 (resume): Likewise. Do not call maybe_software_singlestep
1960 for displaced stepping.
1961 (maybe_software_singlestep): Do not handle displaced stepping.
1962
1963 2009-09-28 Ulrich Weigand <uweigand@de.ibm.com>
1964
1965 * eval.c (evaluate_subexp_standard) [OP_OBJC_MSGCALL]: Support
1966 platforms that use function descriptors. Prefer to use function
1967 pointer types instead of function types.
1968 * linespec.c (decode_objc): Support function descriptors. Fully
1969 initialize SAL result.
1970 * objc-lang.c (find_methods): Support function descriptors.
1971 Do not require function symbol to point to text section.
1972
1973 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): When calling
1974 via a function pointer, use the descriptor it points to.
1975
1976 2009-09-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1977
1978 Fix ia64 breakpoints in the L-X slot.
1979 * ia64-tdep.c (ia64_memory_insert_breakpoint): Extend the comment.
1980 New variable shadow_slotnum, use it appropriately instead of slotnum.
1981 Move shadow_len initialization before SLOTNUM adjustment, cover now the
1982 whole remaining bundle. Error now on breakpoints requested for the
1983 slot 2 of L-X bundles. Better sanity check the requested slot 1 of L-X
1984 bundles.
1985 (ia64_memory_remove_breakpoint): New variable shadow_slotnum, use it
1986 appropriately instead of slotnum. Warn now on breakpoints requested
1987 for the slot 2 of L-X bundles. Better sanity check the requested slot
1988 1 of L-X bundles. Update the assertio check of PLACED_SIZE.
1989 (ia64_breakpoint_from_pc): New variable shadow_slotnum, use it
1990 appropriately instead of slotnum. Move *lenptr initialization before
1991 SLOTNUM adjustment, cover now the whole remaining bundle. Error now
1992 on breakpoints requested for the slot 2 of L-X bundles. Better sanity
1993 check the requested slot 1 of L-X bundles. Simplify the returned
1994 expression.
1995
1996 2009-09-28 Joel Brobecker <brobecker@adacore.com>
1997
1998 * ia64-tdep.c (ia64_memory_insert_breakpoint): Check the slotnum
1999 and the type of instruction before deciding which slot to save
2000 in the breakpoint shadown contents.
2001
2002 2009-09-28 Doug Evans <dje@google.com>
2003
2004 * linux-nat.c (status_to_str): Handle TRAP_IS_SYSCALL.
2005 (TRAP_REMOVE_SYSCALL_FLAG): New macro.
2006 (linux_nat_wait_1): Mask off is-syscall bit in wait status for
2007 TRAP_IS_SYSCALL before passing value to caller.
2008
2009 2009-09-28 Ulrich Weigand <uweigand@de.ibm.com>
2010
2011 * valops.c (value_assign): Respect parent offset when
2012 assigning to a bitfield.
2013
2014 2009-09-28 Hui Zhu <teawater@gmail.com>
2015
2016 * i386-tdep.c (i386_process_record): Remove "0x" that
2017 don't need.
2018
2019 2009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
2020
2021 * s390-tdep.c (op_bctr, op_bctgr, op_bct, op1_bctg, op2_bctg,
2022 op_bxh, op1_bxhg, op2_bxhg, op_bxle, op1_bxleg, op2_bxleg,
2023 op1_brct, op2_brct, op1_brctg, op2_brctg, op_brxh, op1_brxhg,
2024 op2_brxhg, op_brxle, op1_brxlg, op2_brxlg): New enum values.
2025 (is_rsi, is_rie): New insn format decoder routines.
2026 (s390_displaced_step_fixup): New function.
2027 (s390_gdbarch_init): Install displaced stepping routines.
2028
2029 2009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
2030
2031 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*):
2032 Add linux-tdep.o to gdb_target_obs.
2033 (s390*-*-*): Likewise.
2034
2035 2009-09-27 Don Lee <don.lee@sunplusct.com>
2036
2037 * score-tdep.c: Comment out some simulator dependent codes.
2038 * score-tdep.h: Delete some simulator dependent macro definitions.
2039
2040 2009-09-27 Hui Zhu <teawater@gmail.com>
2041
2042 * record.c (record_open): Change "query" to "error".
2043 (cmd_record_stop): Change "query" to "printf_unfiltered".
2044
2045 2009-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
2046
2047 * i386-nat.c (i386_stopped_data_address): Also check that
2048 hitted watch register is not vacant.
2049
2050 2009-09-25 Tom Tromey <tromey@redhat.com>
2051
2052 PR python/10664:
2053 * language.h (struct language_defn) <la_get_string>: Add
2054 'char_type' argument.
2055 (LA_GET_STRING): Likewise.
2056 (default_get_string, c_get_string): Update.
2057 * language.c (default_get_string): Add 'char_type' argument.
2058 * c-valprint.c (c_textual_element_type): Rename from
2059 textual_element_type. No longer static. Update callers.
2060 * c-lang.h (c_textual_element_type): Declare.
2061 * c-lang.c (c_get_string): Add 'char_type' argument.
2062
2063 2009-09-25 Tom Tromey <tromey@redhat.com>
2064
2065 * charset.c (iconv_open): Use UTF-16 and UTF-32, not UCS-2 and
2066 UCS-4.
2067 (iconv): Rename 'ucs_flag'.
2068 (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
2069 * c-lang.c (charset_for_string_type): Use UTF-16 and UTF-32, not
2070 UCS-2 and UCS-4.
2071 (convert_ucn): Use UTF-32.
2072
2073 2009-09-25 Nick Roberts <nickrob@snap.net.nz>
2074
2075 * mi/gdb-mi.el: Remove file.
2076
2077 2009-09-23 Joel Brobecker <brobecker@adacore.com>
2078
2079 * record.c (record_open, record_store_registers, record_xfer_partial):
2080 Replace calls to nquery by calls to query.
2081
2082 2009-09-23 John Wright <john.wright@hp.com>
2083
2084 PR gdb/10684:
2085 * event-top.c (command_line_handler): Terminate linebuffer before
2086 xstrdup.
2087
2088 2009-09-22 Joel Brobecker <brobecker@adacore.com>
2089
2090 * solib.c (solib_bfd_open): Relax a bit the compatibility check.
2091
2092 2009-09-22 Daniel Jacobowitz <dan@codesourcery.com>
2093
2094 * source.c (forget_cached_source_info): Clear last_source_visited.
2095 (init_last_source_visited): Delete.
2096 (directory_command): Do not clear last_source_visited. Call
2097 forget_cached_source_info only if required.
2098 (unset_substitute_path_command, set_substitute_path_command): Call
2099 forget_cached_source_info.
2100 * mi/mi-cmd-env.c (mi_cmd_env_dir): Do not call
2101 init_last_source_visited.
2102 * defs.h (init_last_source_visited): Delete declaration.
2103
2104 2009-09-22 Tom Tromey <tromey@redhat.com>
2105
2106 PR gdb/10583:
2107 * python/py-value.c (valpy_int): Use PyLong_FromLongLong.
2108 (valpy_long): Likewise.
2109
2110 2009-09-22 Tom Tromey <tromey@redhat.com>
2111
2112 PR python/10680:
2113 * eval.c (evaluate_subexp_standard) <do_call_it>: Handle internal
2114 functions in EVAL_AVOID_SIDE_EFFECTS case.
2115
2116 2009-09-22 Jie Zhang <jie.zhang@analog.com>
2117
2118 * MAINTAINERS: Add myself under Write After Approval.
2119
2120 2009-09-22 Pierre Muller <muller@ics.u-strasbg.fr>
2121
2122 * windows-nat.c (ctrl_c_handler): Also handle CTRL_BREAK_EVENT.
2123
2124 2009-09-18 Keith Seitz <keiths@redhat.com>
2125
2126 * cp-support.h (cp_validate_operator): Declare new function.
2127 * cp-support.c (cp_validate_operator): New function.
2128 * linespec.c (decode_compound): For C++ check for a valid operator.
2129
2130 2009-09-21 Keith Seitz <keiths@redhat.com>
2131
2132 * c-exp.y (qualified_name): Call CHECK_TYPEDEF before deciding
2133 that a type is not an aggregate type.
2134
2135 2009-09-21 Jason Orendorff <jason.orendorff@gmail.com>
2136
2137 PR python/10666:
2138 * python/py-function.c (fnpy_init): Use xstrdup.
2139
2140 2009-09-21 Jie Zhang <jie.zhang@analog.com>
2141
2142 * doc/gdb.texinfo: Escape "{" and "}".
2143
2144 2009-09-21 Phil Muldoon <pmuldoon@redhat.com>
2145
2146 PR python/10633
2147
2148 * c-lang.c (c_printstr): Do not loop past options->print_max when
2149 iterating with wchar_iterate.
2150
2151 2009-09-21 Phil Muldoon <pmuldoon@redhat.com>
2152
2153 * python/py-value.c (valpy_getitem): Test value before allowing
2154 subscript operation.
2155
2156 2009-09-21 Hui Zhu <teawater@gmail.com>
2157 Michael Snyder <msnyder@vmware.com>
2158
2159 * amd64-linux-tdep.c (amd64_all_but_ip_registers_record): New
2160 function.
2161 (amd64_linux_syscall_record): Call
2162 amd64_all_but_ip_registers_record if syscall is
2163 sys_rt_sigreturn.
2164 (AMD64_LINUX_redzone, AMD64_LINUX_xstate,
2165 AMD64_LINUX_frame_size): New macros.
2166 (amd64_linux_record_signal): New function.
2167 (amd64_linux_init_abi): Call set_gdbarch_process_record_signal.
2168
2169 2009-09-21 Hui Zhu <teawater@gmail.com>
2170 Michael Snyder <msnyder@vmware.com>
2171
2172 * i386-linux-tdep.c (i386_all_but_ip_registers_record): New
2173 function.
2174 (i386_linux_intx80_sysenter_record): Call
2175 i386_all_but_ip_registers_record if syscall is sys_sigreturn
2176 or sys_rt_sigreturn.
2177 (I386_LINUX_xstate, I386_LINUX_frame_size): New macros.
2178 (i386_linux_record_signal): New function.
2179 (i386_linux_init_abi): Call set_gdbarch_process_record_signal.
2180
2181 2009-09-21 Hui Zhu <teawater@gmail.com>
2182 Michael Snyder <msnyder@vmware.com>
2183
2184 * record.c (record_end_entry): New struct.
2185 (record_type): Add end.
2186 (record_arch_list_add_end): Set rec->u.end.sigval to
2187 TARGET_SIGNAL_0.
2188 (record_message_args): New struct.
2189 (record_message): Call gdbarch_process_record_signal.
2190 (do_record_message): Add argument "signal".
2191 (record_resume): Ditto.
2192 (record_wait): Ditto. Check record_list->u.end.sigval
2193 in replay mode.
2194
2195 2009-09-21 Hui Zhu <teawater@gmail.com>
2196 Michael Snyder <msnyder@vmware.com>
2197
2198 * gdbarch.sh (process_record_signal): New interface.
2199
2200 2009-09-19 Matt Rice <ratmice@gmail.com> (tiny change)
2201
2202 Checked in by Joel Brobecker <brobecker@gnat.com>
2203 * varobj.c (varobj_update): Initialize children_changed.
2204
2205 2009-09-19 Vladimir Prus <vladimir@codesourcery.com>
2206
2207 * mi/mi-cmd-stack.c (list_args_or_locals): Workaround
2208 gcc warning.
2209
2210 2009-09-19 Vladimir Prus <vladimir@codesourcery.com>
2211
2212 * mi/mi-cmds.h (mi_cmd_stack_list_variables): Declare.
2213 * mi/mi-cmds.c (mi_cmds): Register -stack-list-variables.
2214 * mi/mi-cmd-stack.c (enum what_to_list): New.
2215 (list_args_or_locals): Accept what_to_list parameter.
2216 Use 'variables' as output name of all are requested.
2217 (mi_cmd_stack_list_variables): New.
2218 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args): Adjust.
2219
2220 2009-09-19 Eli Zaretskii <eliz@gnu.org>
2221
2222 * config/djgpp/fnchange.lst: Add missing edits.
2223
2224 2009-09-18 Maxim Grigoriev <maxim2405@gmail.com>
2225
2226 * xtensa-tdep.c (call0_analyze_prologue): Replace INT_MAX by UNIT_MAX.
2227
2228 2009-09-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2229
2230 * objfiles.c (free_objfile): Clear SYMFILE_OBJFILE if it is OBJFILE.
2231 * rs6000-nat.c (vmap_ldinfo): Only assertion check SYMFILE_OBJFILE now.
2232 * symfile.c (syms_from_objfile, symbol_file_clear): Likewise.
2233
2234 2009-09-18 Ulrich Weigand <uweigand@de.ibm.com>
2235
2236 * rs6000-tdep.c (rs6000_builtin_type_vec128): Add v2_double
2237 union member.
2238
2239 2009-09-17 Joel Brobecker <brobecker@adacore.com>
2240
2241 Fix a build failure on pa-hpux:
2242 * gdb_ptrace.h (PT_SYSCALL): Define here if not already defined.
2243 * inf-ttrace.c (inf_ttrace_wait): Fix compilation failure
2244 introduced after field syscall_id inside struct target_waitstatus
2245 has been renamed into syscall_number.
2246
2247 2009-09-16 H.J. Lu <hongjiu.lu@intel.com>
2248
2249 PR gdb/10649
2250 * Makefile.in (GDB_DATADIR_PATH): Renamed to ...
2251 (GDB_DATADIR): This.
2252 (xml-syscall-install): Updated.
2253
2254 2009-09-16 Joel Brobecker <brobecker@adacore.com>
2255
2256 GDB 7.0 branch created (branch timestamp: 2009-09-16 19:00 UTC)
2257 * version.in: Bump version to 7.0.50.20090916-cvs.
2258
2259 2009-09-15 Tom Tromey <tromey@redhat.com>
2260
2261 * varobj.h (varobj_update_result_t) <new>: New field.
2262 (varobj_get_child_range, varobj_set_child_range): Declare.
2263 (varobj_list_children): Update.
2264 (varobj_enable_pretty_printing, varobj_has_more)
2265 (varobj_pretty_printed_p): Declare.
2266 * varobj.c (pretty_printing): New global.
2267 (varobj_enable_pretty_printing): New function.
2268 (struct varobj_root) <from, to, constructor, child_iter,
2269 saved_item>: New fields.
2270 (varobj_create): Don't call install_default_visualizer.
2271 (instantiate_pretty_printer): Don't use value_copy.
2272 (varobj_has_more): New function.
2273 (restrict_range): New function.
2274 (install_dynamic_child): Likewise.
2275 (dynamic_varobj_has_child_method): Likewise.
2276 (update_dynamic_varobj_children): Remove 'new_and_unchanged'
2277 argument; add 'new', 'unchanged', 'from', and 'to' arguments.
2278 Rewrite.
2279 (varobj_get_num_children): Call update_dynamic_varobj_children.
2280 (varobj_list_children): Add 'from' and 'to' arguments. Ignore
2281 result of update_dynamic_varobj_children. Don't call
2282 install_default_visualizer. Restrict result range.
2283 (varobj_add_child): Don't call install_default_visualizer.
2284 (varobj_pretty_printed_p): New function.
2285 (install_visualizer): Rewrite. Move earlier in file.
2286 (install_default_visualizer): Likewise.
2287 (construct_visualizer): New function.
2288 (install_new_value_visualizer): Likewise.
2289 (install_new_value): Don't call release_value. Special case
2290 pretty-printed objects. Use value_incref. Rearrange "changed"
2291 logic.
2292 (varobj_get_child_range): New function.
2293 (varobj_set_child_range): Likewise.
2294 (varobj_set_visualizer): Rewrite.
2295 (varobj_update): Rewrite pretty-printing logic.
2296 (new_variable): Initialize new fields.
2297 (free_variable): Destroy new fields.
2298 (value_of_root): Copy 'from' and 'to'.
2299 (my_value_of_variable): Handle pretty-printers.
2300 (value_get_print_value): Rework pretty-printing logic.
2301 (cplus_describe_child): Don't use release_value.
2302 * mi/mi-cmds.h (mi_cmd_enable_pretty_printing)
2303 (mi_cmd_var_set_update_range): Declare.
2304 * mi/mi-cmds.c (mi_cmds): Add enable-pretty-printing and
2305 var-set-update-range.
2306 * mi/mi-cmd-var.c (print_varobj): Update. Emit "dynamic"
2307 attribute.
2308 (mi_cmd_var_create): Emit "has_more" attribute.
2309 (mi_cmd_var_set_format): Plug memory leak.
2310 (mi_print_value_p): Replace 'type' argument with 'var'. Handle
2311 pretty-printed varobjs.
2312 (mi_cmd_var_list_children): Accept 'from' and 'to' arguments.
2313 Emit "has_more" attribute.
2314 (mi_cmd_var_evaluate_expression): Plug memory leak.
2315 (mi_cmd_var_assign): Likewise.
2316 (varobj_update_one): Likewise. Emit "dynamic", "has_more", and
2317 "new_children" attributes.
2318 (mi_cmd_enable_pretty_printing): New function.
2319 (mi_cmd_var_set_update_range): Likewise.
2320
2321 2009-09-15 Doug Evans <dje@google.com>
2322
2323 * dwarf2expr.h (dwarf_value_location): Add more comments describing
2324 enum values.
2325 (struct dwarf_stack_value): New struct.
2326 (struct dwarf_expr_context): Change type of `stack' from CORE_ADDR*
2327 to struct dwarf_stack_value*.
2328 (struct dwarf_expr_piece): Move `v.value' into its own struct, v.expr,
2329 all uses updated. Add v.expr.in_stack_memory.
2330 (dwarf_expr_push): Update declaration.
2331 (dwarf_expr_fetch_in_stack_memory): Declare.
2332 * dwarf2expr.c (dwarf_expr_grow_stack): Update calculation of
2333 size of stack value.
2334 (dwarf_expr_push): New arg in_stack_memory, all callers updated.
2335 (dwarf_expr_fetch_in_stack_memory): New function.
2336 (add_piece): Set in_stack_memory for non-literal values.
2337 (execute_stack_op): Allow ops to specify whether the value is on the
2338 program's stack.
2339 (execute_stack_op, case DW_OP_fbreg): Mark value as in stack memory.
2340 (execute_stack_op, case DW_OP_call_frame_cfa): Ditto.
2341 (execute_stack_op, case DW_OP_dup): Copy in_stack_memory flag.
2342 (execute_stack_op, cases DW_OP_pick, DW_OP_over): Ditto.
2343 (execute_stack_op, cases DW_OP_swap, DW_OP_rot): Update type of
2344 dwarf stack value.
2345 * dwarf2loc.c (read_pieced_value): Call read_stack for values known
2346 to be on the program's stack.
2347 (dwarf2_evaluate_loc_desc, case DWARF_VALUE_MEMORY): Call
2348 set_value_stack only for objects known to be in stack memory.
2349 * dwarf2-frame.c (execute_stack_op): New arg initial_in_stack_memory,
2350 all callers updated.
2351
2352 * target.c (memory_xfer_partial): Pass correct length to dcache_update.
2353
2354 2009-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2355
2356 Fix gcc-4.5 HEAD warnings for enum ada_operator.
2357 * Makefile.in (HFILES_NO_SRCDIR): Add ada-operator.inc.
2358 * ada-lang.h (enum ada_operator): Move it to ...
2359 * ada-operator.inc: ... a new file.
2360 * expression.h (enum exp_opcode): Include ada-operator.inc.
2361 New element OP_UNUSED_LAST. Update comment for OP_EXTENDED0.
2362
2363 Fix gcc-4.5 HEAD warnings for GDB_FORM_cached_string.
2364 * dwarf2read.c (GDB_FORM_cached_string)
2365 (dwarf_form_name <GDB_FORM_cached_string>): Remove.
2366 (struct attribute <dwarf_form>): Reduce the bit width.
2367 (struct attribute <string_is_canonical>, DW_STRING_IS_CANONICAL): New.
2368 (read_attribute_value <DW_FORM_string>)
2369 (read_attribute_value <DW_FORM_strp>): Initialize
2370 DW_STRING_IS_CANONICAL.
2371 (dwarf2_name, dump_die_shallow <DW_FORM_string>)
2372 (dump_die_shallow <DW_FORM_strp>): Update the code using former
2373 GDB_FORM_cached_string.
2374
2375 2009-09-14 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
2376
2377 * amd64-linux-tdep.c: Include xml-syscall.h header, define the XML
2378 syscall name for the architecture.
2379 (amd64_linux_get_syscall_number): New function.
2380 (amd64_linux_init_abi): Register the correct functions for syscall
2381 catchpoint; set the correct syscall file name.
2382 * breakpoint.c: New include: xml-syscall.h.
2383 (set_raw_breakpoint_without_location): Setting the parameters
2384 for the catch syscall feature.
2385 (insert_catch_syscall): New.
2386 (remove_catch_syscall): New.
2387 (breakpoint_hit_catch_syscall): New.
2388 (print_it_catch_syscall): New.
2389 (print_one_catch_syscall): New.
2390 (print_mention_catch_syscall): New.
2391 (catch_syscall_breakpoint_ops): New.
2392 (syscall_catchpoint_p): New.
2393 (create_catchpoint_without_mention): New.
2394 (create_catchpoint): Modified in order to use
2395 create_catchpoint_without_mention.
2396 (create_syscall_event_catchpoint): New.
2397 (clean_up_filters): New.
2398 (catch_syscall_split_args): New.
2399 (catch_syscall_command_1): New.
2400 (delete_breakpoint): Add cleanup for catch syscall.
2401 (is_syscall_catchpoint_enabled): New.
2402 (catch_syscall_enabled): New.
2403 (catching_syscall_number): New.
2404 (catch_syscall_completer): New completer function.
2405 (add_catch_command): Add the completer function for catchpoints.
2406 * breakpoint.h (syscalls_to_be_caught): New vector.
2407 (catch_syscall_enabled): New.
2408 (catching_syscall_number): New.
2409 * gdbarch.c: Regenerated.
2410 * gdbarch.h: Regenerated.
2411 * gdbarch.sh: Add syscall catchpoint functions and structures.
2412 (get_syscall_number): New.
2413 (UNKNOWN_SYSCALL): New definition.
2414 * i386-linux-nat.c (i386_linux_resume): Select the proper request
2415 to be made for ptrace() considering if we are catching syscalls
2416 or not.
2417 * i386-linux-tdep.c: Include xml-syscall.h header, define the XML
2418 syscall name for the architecture.
2419 (i386_linux_get_syscall_number): New.
2420 (i386_linux_init_abi): Register the correct functions for syscall
2421 catchpoint; set the correct syscall file name.
2422 * inf-child.c (inf_child_set_syscall_catchpoint): New.
2423 (inf_child_target): Assign default values to target_ops.
2424 * inf-ptrace.c (inf_ptrace_resume): Select the proper request
2425 to be made for ptrace() considering if we are catching syscalls
2426 or not.
2427 * inferior.h (struct inferior): Included new variables
2428 any_syscall_count, syscalls_counts and total_syscalls_count,
2429 used to keep track of requested syscall catchpoints.
2430 * infrun.c (resume): Add syscall catchpoint.
2431 (deal_with_syscall_event): New.
2432 (handle_inferior_event): Add syscall entry/return events.
2433 (inferior_has_called_syscall): New.
2434 * linux-nat.c: Define some helpful variables to track wether we have
2435 support for the needed ptrace option.
2436 (linux_test_for_tracesysgood): New.
2437 (linux_supports_tracesysgood): New.
2438 (linux_enable_tracesysgood): New.
2439 (linux_enable_event_reporting): Save the current used ptrace
2440 options.
2441 (linux_child_post_attach): Calling linux_enable_tracesysgood.
2442 (linux_child_post_startup_inferior): Likewise.
2443 (linux_child_set_syscall_catchpoint): New function.
2444 (linux_handle_extended_wait): Handle the case which the inferior stops
2445 because it has called or returned from a syscall.
2446 (linux_target_install_ops): Install the necessary functions to handle
2447 syscall catchpoints.
2448 * linux-nat.h (struct lwp_info): Include syscall_state into the
2449 structure, which indicates if we are in a syscall entry or return.
2450 * ppc-linux-tdep.c: Include xml-syscall.h header, define the XML
2451 syscall filename for the arch.
2452 (ppc_linux_get_syscall_number): New.
2453 (ppc_linux_init_abi): Register the correct functions for syscall
2454 catchpoint; setting the correct name for the XML syscall file.
2455 * target.c (update_current_target): Update/copy functions related to
2456 syscall catchpoint.
2457 (target_waitstatus_to_string): Add syscall catchpoint entry/return
2458 events.
2459 * target.h (struct target_waitstatus): Add syscall number.
2460 (struct syscall): New struct to hold information about syscalls
2461 in the system.
2462 (struct target_ops): Add ops for syscall catchpoint.
2463 (inferior_has_called_syscall): New.
2464 (target_set_syscall_catchpoint): New.
2465 * xml-support.c (xml_fetch_content_from_file): New function,
2466 transferred from xml-tdesc.c.
2467 * xml-support.h (xml_fetch_content_from_file): New.
2468 * xml-tdesc.c (fetch_xml_from_file): Function removed;
2469 transferred to xml-support.c.
2470 (file_read_description_xml): Updated to use the new
2471 xml_fetch_content_from_file function.
2472 * syscalls/gdb-syscalls.dtd: New definition file for syscall's XML
2473 support.
2474 * syscalls/amd64-linux.xml: New file containing information about
2475 syscalls for GNU/Linux systems that use amd64 architecture.
2476 * syscalls/i386-linux.xml: New file containing information about
2477 syscalls for GNU/Linux systems that use i386 architecture.
2478 * syscalls/ppc-linux.xml: New file containing information about
2479 syscalls for GNU/Linux systems that use PPC architecture.
2480 * syscalls/ppc64-linux.xml: New file containing information about
2481 syscalls for GNU/Linux systems that use PPC64 architecture.
2482 * xml-syscall.c: New file containing functions for manipulating
2483 syscall's XML files.
2484 * xml-syscall.h: New file, exporting the functions above mentioned.
2485 * Makefile.in: Support for relocatable GDB datadir and XML
2486 syscall.
2487 * NEWS: Added information about the catch syscall feature.
2488
2489 2009-09-14 Doug Evans <dje@google.com>
2490
2491 * target.c (memory_xfer_partial): Only update dcache after we know
2492 the write succeeded.
2493
2494 2009-09-14 Paul Pluzhnikov <ppluzhnikov@google.com>
2495
2496 *minsyms.c (lookup_minimal_symbol_by_pc_section_1): Assert non-NULL
2497 section.
2498 (lookup_minimal_symbol_by_pc_section): Check for NULL section.
2499 (lookup_minimal_symbol_by_pc): Adjust.
2500
2501 2009-09-14 Paul Pluzhnikov <ppluzhnikov@google.com>
2502
2503 * objfiles.c (qsort_cmp): Remove asserts.
2504 (insert_section_p, filter_debuginfo_sections): New function.
2505 (filter_overlapping_sections): Likewise.
2506 (update_section_map): Adjust.
2507
2508 2009-09-13 Daniel Jacobowitz <dan@codesourcery.com>
2509
2510 * frame.c (get_frame_id): Default to outer_frame_id if the this_id
2511 method does not supply an ID. Assert that the result is not
2512 null_frame_id.
2513 (outer_frame_id): New.
2514 (frame_id_p): Accept outer_frame_id.
2515 (frame_id_eq): Allow outer_frame_id to be equal to itself.
2516 (frame_find_by_id): Revert previous local workarounds.
2517 (get_prev_frame_1): Adjust end-of-stack check to test outer_frame_id.
2518 * frame.h (null_frame_id, frame_id_p): Update comments.
2519 (outer_frame_id): Declare.
2520 * infrun.c (handle_inferior_event): Do not treat all steps from the
2521 outermost frame as subroutine calls.
2522
2523 * libunwind-frame.c (libunwind_frame_this_id): Do not clear THIS_ID.
2524 * hppa-tdep.c (hppa_stub_frame_this_id): Likewise.
2525 * ia64-tdep.c (ia64_frame_this_id): Likewise.
2526 (ia64_libunwind_frame_this_id, ia64_libunwind_sigtramp_frame_this_id):
2527 Use outer_frame_id instead of null_frame_id.
2528 * amd64obsd-tdep.c (amd64obsd_trapframe_cache): Use outer_frame_id.
2529 * i386obsd-tdep.c (i386obsd_trapframe_cache): Likewise.
2530 * inline-frame.c (inline_frame_this_id): Refuse outer_frame_id.
2531 * thread.c (restore_selected_frame): Update comment and remove
2532 frame_id_p check.
2533
2534 2009-09-11 Doug Evans <dje@google.com>
2535
2536 * dwarf2expr.c (execute_stack_op, case DW_OP_piece): Delete unused
2537 local addr_or_regnum.
2538
2539 * objfiles.c (struct objfile_data): Delete member cleanup and replace
2540 with save, free.
2541 (register_objfile_data_with_cleanup): Delete arg cleanup and replace
2542 with save, free. All callers updated.
2543 (clear_objfile_data): Replace cleanup loop with separate save and
2544 free loops.
2545 * objfiles.h (register_objfile_data_with_cleanup): Update.
2546 * arm-tdep.c (arm_objfile_data_free): Renamed from
2547 arm_objfile_data_cleanup, all callers updated.
2548 * dwarf2read.c (dwarf2_per_objfile_free): Renamed from
2549 dwarf2_per_objfile_cleanup, all callers updated.
2550 * python/py-objfile.c (py_free_objfile): Renamed from clean_up_objfile,
2551 all callers updated.
2552 * python/py-type.c (save_objfile_types): Renamed from
2553 clean_up_objfile_types, all callers updated.
2554
2555 2009-09-11 Tom Tromey <tromey@redhat.com>
2556
2557 * dwarf2loc.c (struct piece_closure) <arch>: New field.
2558 (dwarf2_evaluate_loc_desc): Update.
2559 (dwarf2_loc_desc_needs_frame): Likewise.
2560 (allocate_piece_closure): Initialize new field.
2561 (read_pieced_value): Update.
2562 (write_pieced_value): Update.
2563 (copy_pieced_value_closure): Update.
2564 * dwarf2expr.h (enum dwarf_value_location): New.
2565 (struct dwarf_expr_context) <in_reg>: Remove.
2566 <location, len, data>: New fields.
2567 (struct dwarf_expr_piece) <in_reg, value>: Remove.
2568 <location, v>: New fields.
2569 * dwarf2expr.c (add_piece): Remove in_reg, value arguments.
2570 Update.
2571 (require_composition): New function.
2572 (execute_stack_op): Update.
2573 <DW_OP_implicit_value, DW_OP_stack_value>: New cases.
2574 <DW_OP_reg0>: Set location, not in_reg.
2575 <DW_OP_regx>: Likewise. Use require_composition.
2576 <DW_OP_fbreg>: Update.
2577 <DW_OP_piece>: Likewise.
2578 * dwarf2-frame.c (execute_stack_op): Update.
2579
2580 2009-09-10 Anthony Green <green@moxielogic.com>
2581
2582 * moxie-tdep.c (moxie_analyze_prologue): Recognize new prologue
2583 sequences.
2584
2585 2009-09-10 Michael Snyder <msnyder@vmware.com>
2586
2587 * remote.c (PACKET_bc, PACKET_bs): New enums.
2588 (remote_protocol_features): Add ReverseStep, ReverseContinue.
2589 (remote_resume): Check for reverse capability.
2590 (_initialize_remote): Add packet config for "bs" and "bc" packets.
2591 * NEWS (new options): Mention set/show for "bs" and "bc" packets.
2592
2593 2009-09-10 Joel Brobecker <brobecker@adacore.com>
2594
2595 * top.c (interactive_mode): New static variable.
2596 (show_interactive_mode): New function.
2597 (input_from_terminal_p): If interactive_mode is not auto, then
2598 use that rather than checking the stdin settings.
2599 (init_main): Add "set/show interactive-mode" command.
2600 * NEWS: Add entry for new "set/show interactive-mode" command.
2601
2602 2009-09-10 Joel Brobecker <brobecker@adacore.com>
2603
2604 * configure.ac: Fix the names of the python source and object files
2605 following the renaming done in an earlier change.
2606 * configure: Regenerate.
2607
2608 2009-09-08 Joel Brobecker <brobecker@adacore.com>
2609
2610 Fix a build failure on AIX.
2611 * rs6000-nat.c (vmap_exec): Rewrite using target_get_section_table
2612 instead of relying on the to_sections/to_section_end target_ops
2613 field, since the latter have been removed in a previous patch.
2614
2615 2009-09-08 Thiago Jung Bauermann <thiago.bauermann@gmail.com>
2616
2617 * Makefile.in (py-cmd.o): Renamed from python-cmd.o. Updated
2618 references.
2619 (py-frame.o): Renamed from python-frame.o. Updated references.
2620 (py-function.o): Renamed from python-function.o. Updated references.
2621 (py-objfile.o): Renamed from python-objfile.o. Updated references.
2622 (py-prettyprint.o): Renamed from python-prettyprint.o. Updated
2623 references.
2624 (py-type.o): Renamed from python-type.o. Updated references.
2625 (py-utils.o): Renamed from python-utils.o. Updated references.
2626 (py-value.o): Renamed from python-value.o. Updated references.
2627 * py-cmd.c: Renamed from python-cmd.c.
2628 * py-frame.c: Renamed from python-frame.c.
2629 * py-function.c: Renamed from python-function.c.
2630 * py-objfile.c: Renamed from python-objfile.c.
2631 * py-prettyprint.c: Renamed from python-prettyprint.c.
2632 * py-type.c: Renamed from python-type.c.
2633 * py-utils.c: Renamed from python-utils.c.
2634 * py-value.c: Renamed from python-value.c.
2635
2636 2009-09-08 Joel Brobecker <brobecker@adacore.com>
2637
2638 Avoid quadratic behavior when computing the value of a register.
2639 * frame.c (frame_stash): New static constant.
2640 (frame_stash_add, frame_stash_find, frame_stash_invalidate):
2641 New functions.
2642 (get_frame_id): Minor reformatting. Add the frame to the frame stash.
2643 (frame_find_by_id): Search the frame stash first before walking all
2644 frames starting from te current_frame.
2645 (reinit_frame_stash): Add call to frame_stash_invalidate ();
2646
2647 2009-09-08 Joel Brobecker <brobecker@adacore.com>
2648
2649 * block.c (contained_in): Return zero for nested functions.
2650 * blockframe.c (block_innermost_frame): Delete unreferenced local
2651 variable.
2652
2653 2009-09-08 Doug Evans <dje@google.com>
2654
2655 * target.c (initialize_targets): Fix thinko in stack_cache_enabled_p.
2656
2657 2009-09-08 Michael Snyder <msnyder@vmware.com>
2658
2659 * amd64-linux-tdep.h (enum amd64_syscall): New enum consts,
2660 to replace literal consts used in amd64-linux-tdep.c
2661 * linux-record.h (enum gdb_syscall): New enum consts, to replace
2662 literal consts used in amd64-linux-tdep.c and linux-record.c.
2663 * amd64-linux-tdep.c (amd64_canonicalize_syscall): New function,
2664 translate from native amd64 Linux syscall id to internal gdb id.
2665 (amd64_linux_syscall_record): Switch statement abstracted out
2666 and replaced with a call to amd64_canonicalize_syscall.
2667 * linux-record.c (record_linux_system_call): Replace literal
2668 consts with enum consts.
2669 * i386-linux-tdep.c (i386_canonicalize_syscall): New function,
2670 trivially translate from native i386 Linux syscalls to gdb syscalls.
2671 (i386_linux_intx80_sysenter_record):
2672
2673 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2674
2675 * gdb/Makefile.in (check//%): Parse 'config.status --version'
2676 output to recreate the configuration from the testsuite directory,
2677 rather than running 'config.status --recheck' from a different
2678 build directory. Let configure do the recursion rather than
2679 doing it manually.
2680
2681 2009-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2682
2683 * ia64-tdep.c (ia64_memory_remove_breakpoint): Call do_cleanups
2684 before a return.
2685
2686 2009-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2687
2688 * ia64-tdep.c (ia64_memory_insert_breakpoint)
2689 (ia64_memory_remove_breakpoint): Return immediately if any of memory
2690 reads fail. Do not combine the VAL values.
2691
2692 2009-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2693
2694 Fix ia64 shadowing of breakpoints in multiple slots of a single bundle.
2695 * ia64-tdep.c (ia64_memory_insert_breakpoint): New call
2696 of make_show_memory_breakpoints_cleanup with parameter 0. Move the
2697 reading of SHADOW_CONTENTS to this memory state point of code. Update
2698 comment for the memory re-read.
2699
2700 2009-09-07 Michael Snyder <msnyder@vmware.com>
2701
2702 * record.c: Minor comment and white space fix-ups.
2703
2704 2009-09-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2705
2706 * m68k-tdep.c (m68k_gdbarch_init): Allocate TDEP as cleared.
2707 * sparc-tdep.c (sparc32_gdbarch_init): Allocate TDEP as cleared.
2708 Remove explicit clearing of TDEP fields.
2709
2710 2009-09-06 Hui Zhu <teawater@gmail.com>
2711
2712 * i386-tdep.c (i386_record_check_override): Deleted.
2713 (i386_record_lea_modrm): Ditto.
2714 (i386_process_record): Ditto.
2715
2716 2009-09-05 Eli Zaretskii <eliz@gnu.org>
2717
2718 * config/djgpp/djconfig.sh: Fix for Autoconf 2.64.
2719 * config/djgpp/config.sed: Fix for Autoconf 2.64.
2720
2721 2009-09-05 Hui Zhu <teawater@gmail.com>
2722
2723 * i386-tdep.c (i386_record_s): Add orig_addr.
2724 (i386_record_check_override): New function.
2725 (i386_record_lea_modrm): Call i386_record_check_override.
2726 (i386_process_record): Ditto.
2727
2728 2009-09-03 Nathan Froyd <froydnj@codesourcery.com>
2729
2730 * dwarf2loc.c (struct piece_closure): New.
2731 (allocate_piece_closure): New function.
2732 (read_pieced_value): New function.
2733 (write_pieced_value): New function.
2734 (copy_pieced_value_closure): New function.
2735 (free_pieced_value_closure): New function.
2736 (pieced_value_funcs): Define.
2737 (dwarf2_evaluate_loc_desc): Return a computed value for a variable
2738 described with pieces.
2739
2740 2009-09-03 Pierre Muller <muller@ics.u-strasbg.fr>
2741 Richard Earnshaw <rearnsha@arm.com>
2742
2743 * arm-tdep.c (displaced_write_reg): Replace call to abort by call
2744 to internal_error.
2745
2746 2009-09-02 Tom Tromey <tromey@redhat.com>
2747
2748 * frame.h (frame_unwinder_is): Declare.
2749 * frame.c (frame_unwinder_is): New function.
2750 * dwarf2loc.c: Include dwarf2-frame.h.
2751 (dwarf_expr_frame_cfa): New function.
2752 (dwarf2_evaluate_loc_desc): Use it.
2753 (needs_frame_frame_cfa): New function.
2754 (dwarf2_loc_desc_needs_frame): Use it.
2755 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_cfa>: New
2756 field.
2757 * dwarf2expr.c (execute_stack_op) <DW_OP_call_frame_cfa>: New
2758 case.
2759 * dwarf2-frame.h (dwarf2_frame_cfa): Declare.
2760 * dwarf2-frame.c (no_get_frame_cfa): New function.
2761 (execute_stack_op): Use it.
2762 (dwarf2_frame_cfa): New function.
2763
2764 2009-09-02 Hui Zhu <teawater@gmail.com>
2765
2766 * record.c (record_resume): Change "signal" to "siggnal".
2767
2768 2009-09-01 Hui Zhu <teawater@gmail.com>
2769
2770 * record.c (record_resume): Change "siggnal" to "signal".
2771
2772 2009-09-01 Hui Zhu <teawater@gmail.com>
2773
2774 * record.c (record_resume_siggnal): Deleted.
2775 (record_resume): Ditto.
2776 (record_wait): Change record_resume_siggnal to
2777 TARGET_SIGNAL_0.
2778
2779 2009-08-31 Jacob Potter <jdpotter@google.com>
2780 Doug Evans <dje@google.com>
2781
2782 Implement TARGET_OBJECT_STACK_MEMORY.
2783 * NEWS: Add note on new "set stack-cache" option.
2784 * corefile.c (read_stack): New function.
2785 * dcache.c (dcache_struct): New member ptid.
2786 (dcache_enable_p): Mark as obsolete.
2787 (show_dcache_enabled_p): Flag option as deprecated.
2788 (dcache_invalidate): Update ptid.
2789 (dcache_invalidate_line): New function.
2790 (dcache_read_line): No longer check cacheable attribute, stack
2791 accesses get cached despite attribute.
2792 (dcache_init): Set ptid.
2793 (dcache_xfer_memory): Flush cache if from different ptid than before.
2794 Update cache after write.
2795 (dcache_update): New function.
2796 (dcache_info): Report ptid.
2797 (_initialize_dcache): Update text for `remotecache' to indicate it
2798 is obsolete.
2799 * dcache.h (dcache_update): Declare.
2800 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Mark values on stack with
2801 set_value_stack.
2802 * frame-unwind.c (frame_unwind_got_memory): Ditto.
2803 * gdbcore.h (read_stack): Declare.
2804 * memattr.c (mem_enable_command): Call target_dcache_invalidate
2805 instead of dcache_invalidate.
2806 (mem_disable_command, mem_delete_command): Ditto.
2807 * target.c (stack_cache_enabled_p_1): New static global.
2808 (stack_cache_enabled_p): New static global.
2809 (set_stack_cache_enabled_p): New function.
2810 (show_stack_cache_enabled_p): New function.
2811 (target_dcache): Make static.
2812 (target_dcache_invalidate): New function.
2813 (target_load, target_resume): Call target_dcache_invalidate
2814 instead of dcache_invalidate.
2815 (memory_xfer_partial): New arg object, all callers updated.
2816 Check for existing inferior before calling dcache routines.
2817 When writing non-TARGET_OBJECT_STACK_MEMORY, notify dcache.
2818 (target_xfer_partial): Call memory_xfer_partial for
2819 TARGET_OBJECT_STACK_MEMORY.
2820 (target_read_stack): New function.
2821 (initialize_targets): Install new option `stack-cache'.
2822 * target.h: Remove #include of dcache.h.
2823 (enum target_object): New value TARGET_OBJECT_STACK_MEMORY.
2824 (target_dcache): Delete.
2825 (target_dcache_invalidate): Declare.
2826 (target_read_stack): Declare.
2827 * top.c (prepare_execute_command): New function.
2828 (execute_command): Call prepare_execute_command
2829 instead of free_all_values.
2830 * top.h (prepare_execute_command): Declare.
2831 * valops.c (get_value_at): New function.
2832 (value_at): Guts moved to get_value_at.
2833 (value_at_lazy): Similarly.
2834 (value_fetch_lazy): Call read_stack for stack values.
2835 * value.c (struct value): New member `stack'.
2836 (value_stack, set_value_stack): New functions.
2837 * value.h (value_stack, set_value_stack): Declare.
2838 * mi/mi-main.c (mi_cmd_execute): Call prepare_execute_command
2839 instead of free_all_values.
2840
2841 2009-08-29 Hui Zhu <teawater@gmail.com>
2842
2843 * i386-tdep.c (i386_process_record): Fix the error of string
2844 ops instructions's handler.
2845
2846 2009-08-28 Doug Evans <dje@google.com>
2847
2848 * top.c (execute_command): Remove redundant comment.
2849
2850 2009-08-28 Daniel Jacobowitz <dan@codesourcery.com>
2851
2852 PR gdb/10565
2853
2854 * value.c (value_primitive_field): Do not save value_offset for
2855 bitfields.
2856 (unpack_bits_as_long): Do not read an entire ULONGEST.
2857
2858 2009-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2859
2860 Support constant DW_AT_data_member_location by GCC PR debug/40659.
2861 * dwarf2read.c
2862 (dwarf2_add_field <DW_TAG_member> <DW_AT_data_member_location>):
2863 Initialize BYTE_OFFSET to 0 by default. Explicitly check if
2864 attr_form_is_block.
2865 (dwarf2_add_field <DW_TAG_inheritance> <DW_AT_data_member_location>)
2866 (read_common_block <DW_AT_data_member_location>): New variable
2867 byte_offset. Fix crash on non-DW_BLOCK ATTR values.
2868
2869 2009-08-28 Hui Zhu <teawater@gmail.com>
2870
2871 * record.c (record_list_release_next): Change the first
2872 record_reg to record_end.
2873
2874 2009-08-27 Doug Evans <dje@google.com>
2875
2876 * value.c (free_all_values): Tweak comment.
2877
2878 * NEWS: Add note on "info sharedlibrary".
2879 Remove note on "set print symbol-loading".
2880 * main.c (captured_main): Pass !batch for from_tty when calling
2881 symbol_file_add_main.
2882 * objfiles.h (objfile_has_partial_symbols): Declare.
2883 (objfile_has_full_symbols): Declare.
2884 * objfiles.c (objfile_has_partial_symbols): New function.
2885 (have_partial_symbols): Use it.
2886 (objfile_has_full_symbols): New function.
2887 (have_full_symbols): Use it.
2888 * solib.c: Include interps.h.
2889 (solib_read_symbols): Back out patch of 2008-07-10.
2890 Add test for info_verbose for symbol loading messages for
2891 consistency with symfile.c.
2892 (info_sharedlibrary_command): Handle optional parameter of regex of
2893 libraries to list. Inform user of libraries without debugging info.
2894 Rewrite to use ui_out routines to format output.
2895 * symfile.c (print_symbol_loading): Delete.
2896 (symbol_file_add_with_addrs_or_offsets): Back out patch of 2008-07-10.
2897 Print "no debugging symbols found" only if from_tty || info_verbose;
2898 and only check file being loaded, not all files.
2899 (reread_symbols): Test file being loaded for whether it has symbols,
2900 not all files.
2901 (__initialize_symfile): Delete `set print symbol-loading'.
2902 * symfile.h (print_symbol_loading): Delete.
2903
2904 2009-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2905
2906 * varobj.c (varobj_create): Error if the specified frame was not found
2907 and it is needed.
2908
2909 2009-08-26 Michael Snyder <msnyder@vmware.com>
2910
2911 * i386-tdep.c (i386_process_record): Break out of prefix loop
2912 if not amd64. Otherwise inc/dec instructions are lost.
2913
2914 2009-08-25 Keith Seitz <keiths@redhat.com>
2915
2916 * c-exp.y (yylex): Add cxx_only check for tokentab2 and tokentab3
2917 searches.
2918 (tokentab3): Add cxx_only for DOT_STAR.
2919
2920 2009-08-25 Pedro Alves <pedro@codesourcery.com>
2921
2922 * inferior.c (print_inferior): Align columns left. Remove header
2923 for the the "current" column. Rename column "Id" to "Num".
2924 Rename column "PID" to "Description". Print if there's no selected
2925 inferior.
2926
2927 2009-08-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2928
2929 Fix ia64 start crash when GDB built with -lmcheck.
2930 * ia64-tdep.c (ia64_gdbarch_init): Allocate TDEP as cleared. Remove
2931 specific clearing of TDEP SIGCONTEXT_REGISTER_ADDRESS and
2932 PC_IN_SIGTRAMP.
2933
2934 2009-08-24 Keith Seitz <keiths@redhat.com>
2935
2936 * c-exp.y (tokentab3): Add new token, ARROW_STAR. Changed all users.
2937 (tokentab2): Add new token, DOT_STAR. Changed all users.
2938
2939 2009-08-24 Keith Seitz <keiths@redhat.com>
2940
2941 * symtab.c (default_make_symbol_completion_list): Keep
2942 ':', too, so that we can limit searches in namespaces
2943 and classes.
2944
2945 2009-08-24 Tom Tromey <tromey@redhat.com>
2946
2947 * python/python-value.c (valpy_richcompare): Don't return from
2948 inside a TRY_CATCH.
2949
2950 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2951
2952 * CONTRIBUTE: Bump documented Autoconf version.
2953 * configure.ac: Do not substitute datarootdir, htmldir,
2954 pdfdir, docdir. Do not process --with-datarootdir,
2955 --with-htmldir, --with-pdfdir, --with-docdir.
2956 * configure: Regenerate.
2957
2958 * aclocal.m4: Regenerate.
2959 * config.in: Likewise.
2960 * configure: Likewise.
2961 * gnulib/Makefile.in: Likewise.
2962
2963 * configure.ac: Use AC_USE_SYSTEM_EXTENSIONS instead of
2964 AC_GNU_SOURCE, AC_AIX, AC_ISC_POSIX.
2965
2966 2009-08-21 Paul Pluzhnikov <ppluzhnikov@google.com>
2967
2968 * objfiles.h (gdb_bfd_ref): New prototype.
2969 * objfiles.c (gdb_bfd_ref): New function.
2970 (allocate_objfile): Call it.
2971 (gdb_bfd_unref): Adjust assertion.
2972 * solib.c (solib_map_sections): Add reference.
2973 (symbol_add_stub): Don't add reference here.
2974 * symfile.c (reread_symbols): Add reference.
2975
2976 2009-08-21 Ken Werner <ken@linux.vnet.ibm.com>
2977 Doug Evans <dje@google.com>
2978
2979 * jit.c (jit_event_handler): Use paddress to print target addresses.
2980 Wrap printf string in _().
2981
2982 2009-08-21 Doug Evans <dje@google.com>
2983
2984 * jit.c (jit_read_descriptor): New arg gdbarch, all callers updated.
2985 (jit_read_code_entry, jit_register_code): Ditto.
2986 (jit_event_handler): Ditto.
2987 (jit_inferior_init): Renamed from previous jit_inferior_created_hook.
2988 (jit_inferior_created_hook, jit_breakpoint_re_set): New functions.
2989 (jit_inferior_created_observer): Renamed from
2990 jit_inferior_created_hook1, all callers updated.
2991 * jit.h (jit_breakpoint_re_set): Declare.
2992 (jit_event_handler): Update prototype.
2993 * breakpoint.c (breakpoint_re_set): Call jit_breakpoint_re_set instead
2994 of jit_inferior_created_hook.
2995
2996 2009-08-21 Hui Zhu <teawater@gmail.com>
2997
2998 * record.c (record_wait): Change the argument of
2999 record_beneath_to_wait to options.
3000
3001 2009-08-20 Jacob Potter <jdpotter@google.com>
3002
3003 Replace dcache with splay tree.
3004 Remove partially implemented writeback support.
3005 * dcache.c: Include splay-tree.h.
3006 (LINE_SIZE_POWER): Change from 5 to 6.
3007 (DCACHE_SIZE): Change from 64 to 4096.
3008 (ENTRY_INVALID, ENTRY_VALID, ENTRY_DIRTY): Delete.
3009 (state_chars): Delete.
3010 (struct dcache_block): Clean up; remove state and anydirty fields.
3011 (struct dcache_struct): Redefine as a splay tree and linked list.
3012 (last_cache): Make static.
3013 (dcache_invalidate, dcache_hit): Rewrite for new cache structure.
3014 (dcache_read_line, dcache_alloc): Rewrite for new cache structure.
3015 (dcache_write_line): Delete.
3016 (dcache_writeback): Delete.
3017 (dcache_peek_byte): Clean up; remove "invalid" state check.
3018 (dcache_poke_byte): Rewrite for new cache structure; clarify comment.
3019 (dcache_splay_tree_compare): New function.
3020 (dcache_init, dcache_free): Rewrite for new cache structure.
3021 (dcache_xfer_memory): Rewrite for new write-through cache structure.
3022 (dcache_print_line): New function.
3023 (dcache_info): Rewrite for new cache structure.
3024 (_initialize_dcache): Update "info dcache" help text.
3025 * dcache.h (dcache_xfer_memory): Update declaration.
3026 * target.c (memory_xfer_partial): Update calls to dcache_xfer_memory.
3027
3028 2009-08-19 Reid Kleckner <reid@kleckner.net>
3029
3030 Add interface for JIT code generation.
3031 * NEWS: Announce JIT interface.
3032 * Makefile.in (SFILES): Add jit.c.
3033 (HFILES_NO_SRCDIR): Add jit.h.
3034 (COMMON_OBS): Add jit.o.
3035 * jit.c: New file.
3036 * jit.h: New file.
3037 * breakpoint.h (enum bptype): Add bp_jit_event to enum.
3038 * breakpoint.c:
3039 (update_breakpoints_after_exec): Delete jit breakpoints after exec.
3040 (bpstat_what): Update event table for bp_jit_event.
3041 (print_it_typical): Added case for bp_jit_event.
3042 (print_one_breakpoint_location): Added case for bp_jit_event.
3043 (allocate_bp_location): Added case for bp_jit_event.
3044 (mention): Added case for bp_jit_event.
3045 (delete_command): Added case for bp_jit_event.
3046 (breakpoint_re_set_one): Added case for bp_jit_event.
3047 (breakpoint_re_set): Added call to jit_inferior_created_hook.
3048 (create_jit_event_breakpoint): New.
3049 * infrun.c (handle_inferior_event): Add handler for jit event.
3050 (follow_exec): Add call to jit_inferior_created_hook.
3051
3052 2009-08-19 Ulrich Weigand <uweigand@de.ibm.com>
3053
3054 * value.c (enum internalvar_kind): Replace INTERNALVAR_SCALAR by
3055 INTERNALVAR_INTEGER and INTERNALVAR_POINTER.
3056 (union internalvar_data): Replace "scalar" member by "integer"
3057 and "pointer".
3058 (value_of_internalvar): Handle INTERNALVAR_INTEGER and
3059 INTERNALVAR_POINTER instead of INTERNALVAR_SCALAR.
3060 (get_internalvar_integer): Likewise.
3061 (set_internalvar): Likewise.
3062 (set_internalvar_integer): Likewise.
3063 (preserve_one_internalvar): Likewise.
3064 (value_from_pointer): Handle typedef'd pointer types.
3065
3066 2009-08-18 Tom Tromey <tromey@redhat.com>
3067
3068 * utils.c (add_internal_problem_command): Free set_doc and
3069 show_doc.
3070 * remote.c (add_packet_config_cmd): Free set_doc and show_doc.
3071 * language.c (add_language): Free language_set_doc.
3072
3073 2009-08-18 Tom Tromey <tromey@redhat.com>
3074
3075 * Makefile.in (ALL_TARGET_OBS): Remove prologue-value.o, solib.o.
3076
3077 2009-08-17 Ulrich Weigand <uweigand@de.ibm.com>
3078
3079 * symfile.c (reread_symbols): Call objfiles_changed *before*
3080 calling clear_symtab_users.
3081
3082 2009-08-17 Michael Snyder <msnyder@vmware.com>
3083
3084 * amd64-tdep.c: Add a frame unwinder for function epilogues.
3085 (amd64_in_function_epilogue_p): New function.
3086 (amd64_epilogue_frame_sniffer): New function.
3087 (amd64_epilogue_frame_cache): New function.
3088 (amd64_epilogue_frame_this_id): New function.
3089 (amd64_epilogue_frame_unwind): New struct frame_unwind.
3090 (amd64_init_abi): Hook the new unwinder.
3091
3092 * amd64-linux-tdep.c (amd64_linux_init_abi): Set gdbarch to use
3093 SVR4 method for skip_trampoline_code.
3094
3095 2009-08-17 Pedro Alves <pedro@codesourcery.com>>
3096
3097 * objfiles.c (objfile_relocate): Relocate the entry point before
3098 relocating the section offsets. Flush the section map before
3099 resetting breakpoints.
3100
3101 2009-08-14 Doug Evans <dje@google.com>
3102
3103 * symfile.c (find_separate_debug_file): Remove double free of
3104 canon_name.
3105
3106 2009-08-14 Pedro Alves <pedro@codesourcery.com>
3107
3108 * top.c (any_thread_of): Delete.
3109 (kill_or_detach): Use any_thread_of_process.
3110 * top.c (print_inferior_quit_action): New.
3111 (quit_confirm): Rewrite to print info about all inferiors.
3112 * target.c (dispose_inferior): New.
3113 (target_preopen): Use it.
3114
3115 2009-08-14 Pedro Alves <pedro@codesourcery.com>
3116
3117 * ui-file.h (ui_file_xstrdup): Mention that the length argument
3118 may be NULL.
3119 * ui-file.c (ui_file_xstrdup): Don't dereference LENGTH if it is
3120 NULL.
3121 * aix-thread.c (aix_thread_extra_thread_info): Pass NULL as length
3122 parameter to ui_file_xstrdup.
3123 * arm-tdep.c (_initialize_arm_tdep): Ditto.
3124 * infrun.c (print_target_wait_results): Ditto.
3125 * language.c (add_language): Ditto.
3126 * linespec.c (cplusplus_error): Ditto.
3127 * remote.c (escape_buffer): Ditto.
3128 * typeprint.c (type_to_string): Ditto.
3129 * utils.c (error_stream): Ditto.
3130 * varobj.c (value_get_print_value): Ditto.
3131 * xtensa-tdep.c (xtensa_verify_config): Replace `dummy' local with
3132 `length' local. Pass it to ui_file_xstrdup, and avoid an strlen
3133 call.
3134 * gdbarch.sh (verify_gdbarch): Ditto.
3135 * gdbarch.c: Regenerate.
3136 * cli/cli-setshow.c (do_setshow_command): Pass NULL as length
3137 parameter to ui_file_xstrdup.
3138 * python/python-frame.c (frapy_str): Ditto.
3139 * python/python-type.c (typy_str): Use the length local instead of
3140 calling strlen.
3141 * python/python-value.c (valpy_str): Pass NULL as length parameter
3142 to ui_file_xstrdup.
3143
3144 2009-08-13 Doug Evans <dje@google.com>
3145
3146 * utils.c (gnu_debuglink_crc32): Store crc32_table as unsigned int
3147 instead of unsigned long.
3148
3149 2009-08-13 Tom Tromey <tromey@redhat.com>
3150
3151 * varobj.c (update_dynamic_varobj_children): Don't use
3152 value_copy.
3153 * value.h: (preserve_one_value): Declare.
3154 (value_prepend_to_list, value_remove_from_list): Remove.
3155 * value.c (preserve_one_value): No longer static.
3156 (preserve_values): Call preserve_python_values.
3157 (value_prepend_to_list): Remove.
3158 (value_remove_from_list): Remove.
3159 * python/python.h (values_in_python): Don't declare.
3160 (preserve_python_values): Declare.
3161 * python/python-value.c (values_in_python): Change type. Move
3162 lower. Now static.
3163 (struct value_object): Add struct tag.
3164 <next, prev>: New fields.
3165 (valpy_dealloc): Update.
3166 (note_value): New function.
3167 (valpy_new): Use value_incref, note_value.
3168 (preserve_python_values): New function.
3169 (valpy_positive): Don't use value_copy.
3170 (value_to_value_object): Use value_incref, note_value.
3171 (convert_value_from_python): Update comment.
3172
3173 2009-08-13 Pedro Alves <pedro@codesourcery.com>
3174
3175 * remote.c (remote_pid_to_str): If printing a process id and we
3176 don't know what the remote pid could be, output "Remote target";
3177 otherwise, use normal_pid_to_str.
3178
3179 2009-08-13 Tom Tromey <tromey@redhat.com>
3180
3181 * language.h (longest_raw_hex_string): Remove unused declaration.
3182
3183 2009-08-13 Pedro Alves <pedro@codesourcery.com>
3184
3185 PR gdb/8869:
3186
3187 * language.c (language, type, range, case_sensitive): Make const.
3188 (show_language_command): Don't call deprecated_show_value_hack.
3189 Special case "auto".
3190 (set_language_command): An unrecognized language is now an
3191 internal error instead of a user error. Don't call set_lang_str.
3192 (show_type_command): Don't call deprecated_show_value_hack.
3193 Special case "auto". Use warning.
3194 (set_type_command): An unrecognized type is now an internal error
3195 instead of a user error. Output type check mismatch with language
3196 here. Don't call set_type_str.
3197 (show_range_command): Don't call deprecated_show_value_hack.
3198 Special case "auto". Use warning.
3199 (set_range_command): An unrecognized range check is now an
3200 internal error instead of a warning. Output range check mismatch
3201 with language here. Don't call set_range_str.
3202 (show_case_command): Don't call deprecated_show_value_hack.
3203 Special case "auto". Use warning.
3204 (set_case_command): Don't call set_case_str. An unrecognized case
3205 check is now an internal error instead of a warning. Output range
3206 check mismatch with language here. Don't call set_case_str.
3207 (set_type_range_case): Don't call set_type_str, set_range_str or
3208 set_case_str here.
3209 (set_lang_str, set_type_str, set_range_str, set_case_str): Delete.
3210 (add_language): Install or reinstall the "set language" command
3211 here, and make it an enum command. Build the enumeration and the
3212 help string from the current list of known languages.
3213 (_initialize_language): Don't install "set language" here. Make
3214 "set check type", "set check range" and "set case-sensitive" enum
3215 commands. Register the "auto" "local" and "unknown" languages in
3216 that order.
3217
3218 2009-08-13 Pedro Alves <pedro@codesourcery.com>
3219
3220 Revert 2009-08-07 changes for PR gdb/8869:
3221
3222 * language.c (set_language_command): Strip whitespace.
3223 (set_type_command): Likewise.
3224 (set_range_command): Likewise.
3225
3226 * language.c (language_completer): New function.
3227 (range_or_type_completer): New function.
3228 (case_completer): New function.
3229 (_initialize_language): Set completers.
3230 * cli/cli-decode.c (add_setshow_string_cmd): Return the "set"
3231 command.
3232 (add_setshow_string_noescape_cmd): Likewise.
3233 (add_setshow_integer_cmd): Likewise.
3234 (add_setshow_uinteger_cmd): Likewise.
3235 (add_setshow_zinteger_cmd): Likewise.
3236 (add_setshow_zuinteger_cmd): Likewise.
3237 * command.h (add_setshow_string_cmd,
3238 add_setshow_string_noescape_cmd, add_setshow_uinteger_cmd,
3239 add_setshow_zinteger_cmd, add_setshow_zuinteger_cmd): Update.
3240
3241 2009-08-12 Michael Snyder <msnyder@vmware.com>
3242
3243 * remote.c (remote_add_inferior): Remove unused local.
3244 (remote_add_thread): Ditto.
3245 (read_ptid): Ditto.
3246 (remote_current_thread): Ditto.
3247 (remote_stop_ns): Ditto.
3248 (remote_parse_stop_reply): Ditto.
3249 (remote_get_pending_stop_replies): Ditto.
3250 (remote_wait_ns): Ditto.
3251 (remote_wait_as): Ditto.
3252 (send_g_packet): Ditto.
3253 (remote_fetch_registers): Ditto.
3254 (store_register_using_P): Ditto.
3255 (remote_store_registers): Ditto.
3256 (remote_remove_breakpoint): Ditto.
3257 (remote_write_qxfer): Ditto.
3258 (remote_read_qxfer): Ditto.
3259
3260 2009-08-11 Tom Tromey <tromey@redhat.com>
3261
3262 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make a cleanup.
3263 (dwarf2_loc_desc_needs_frame): Likewise.
3264 * dwarf2expr.h (make_cleanup_free_dwarf_expr_context): Declare.
3265 * dwarf2expr.c (free_dwarf_expr_context_cleanup): New function.
3266 (make_cleanup_free_dwarf_expr_context): Likewise.
3267 * dwarf2-frame.c (execute_stack_op): Make a cleanup.
3268
3269 2009-08-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3270
3271 * objfiles.c (gdb_bfd_unref): Use the bfd_usrdata accessor.
3272 * solib.c (symbol_add_stub): Likewise.
3273 * symfile.c (symfile_bfd_open): Assert BFD_USRDATA is NULL.
3274
3275 2009-08-10 Paul Pluzhnikov <ppluzhnikov@google.com>
3276
3277 * objfiles.c (qsort_cmp): Remove assert.
3278 (preferred_obj_section): New function.
3279 (update_section_map): Filter duplicates.
3280
3281 2009-08-10 Tristan Gingold <gingold@adacore.com>
3282
3283 * solib-darwin.c (find_program_interpreter): Simplify the code by
3284 looking up for the load_dylinker command instead of reading the
3285 corresponding (but deprecated) section.
3286 (darwin_solib_create_inferior_hook): Adjust: do not free the
3287 interpreter path.
3288
3289 2009-08-10 Tristan Gingold <gingold@adacore.com>
3290
3291 * i386-darwin-tdep.c (i386_m128_p): New function.
3292 (i386_darwin_arg_type_alignment): Ditto.
3293 (i386_darwin_push_dummy_call): Ditto.
3294 (i386_darwin_init_abi): Define Darwin specific push_dummy_call.
3295 Adjust long_double size. Adjust pc offset in setjump buffer.
3296
3297 2009-08-10 Hui Zhu <teawater@gmail.com>
3298
3299 Add Linux AMD64 process record support.
3300
3301 * amd64-linux-tdep.c (amd64_linux_record_tdep): New variable.
3302 This struct has the argument for the function
3303 "record_linux_system_call".
3304 (amd64_linux_syscall_record): New function. Parse the
3305 system call instruction and call function
3306 "record_linux_system_call" to record execute log.
3307 (i386_linux_init_abi): Initialize "amd64_linux_record_tdep".
3308 Set "amd64_linux_syscall_record" to "i386_syscall_record".
3309
3310 2009-08-10 Hui Zhu <teawater@gmail.com>
3311
3312 Add process record Linux system call 64 bits support.
3313
3314 * linux-record.h (linux_record_tdep): Add size_pointer,
3315 size_size_t, size_iovec and arg6. Change the values of
3316 size_int, size_long and size_ulong to
3317 gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT,
3318 gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT,
3319 gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT.
3320 * i386-linux-tdep.c (i386_linux_init_abi): Ditto.
3321 (i386_linux_intx80_sysenter_record): Add a check for system
3322 call number.
3323 * linux-record.c (record_linux_system_call): Make this
3324 function support 64 bits.
3325
3326 2009-08-10 Hui Zhu <teawater@gmail.com>
3327
3328 Add AMD64 process record instruction set support.
3329
3330 * i386-tdep.h (gdbarch_tdep): Add record_regmap for registers
3331 because the AMD64's registers order in GDB is not same with
3332 I386 instructions.
3333 Add i386_syscall_record to be the syscall function handle
3334 interface.
3335 (record_i386_regnum): Number for record_regmap.
3336 * i386-tdep.c (OT_QUAD): For 64 bits.
3337 (i386_record_s): Add rex_x, rex_b, rip_offset and
3338 popl_esp_hack for AMD64 instruction set. And regmap for
3339 record_regmap.
3340 (i386_record_lea_modrm_addr): Support AMD64 instruction set
3341 64 bits lea.
3342 (i386_record_lea_modrm): Ditto.
3343 (i386_record_push): New function. Record the execution log
3344 of push.
3345 (I386_RECORD_ARCH_LIST_ADD_REG): New macro to record the
3346 register.
3347 (i386_process_record): Support AMD64 instruction set.
3348 * amd64-tdep.c (amd64_record_regmap): For record_regmap.
3349 (amd64_init_abi): Set amd64_record_regmap to record_regmap.
3350
3351 2009-08-08 Pedro Alves <pedro@codesourcery.com>
3352
3353 * bfd-target.c (struct target_bfd_data): New.
3354 (target_bfd_xfer_partial): Adjust to get at the section table from
3355 the new structure.
3356 (target_bfd_get_section_table): Ditto.
3357 (target_bfd_xclose): Ditto. Get the bfd pointer from the
3358 target_bfd_data structure, from the section table.
3359 (target_bfd_reopen): Store a struct target_bfd_data in the
3360 target_ops to_data field, instead of a target_section_table.
3361
3362 2009-08-08 Aleksandar Ristovski <aristovski@qnx.com>
3363 Hui Zhu <teawater@gmail.com>
3364
3365 * record.c (record_store_registers): Remove unused variable.
3366
3367 2009-08-07 Tom Tromey <tromey@redhat.com>
3368
3369 * language.c (set_language_command): Strip whitespace.
3370 (set_type_command): Likewise.
3371 (set_range_command): Likewise.
3372
3373 2009-08-07 Tom Tromey <tromey@redhat.com>
3374
3375 PR gdb/8869:
3376 * language.c (language_completer): New function.
3377 (range_or_type_completer): New function.
3378 (case_completer): New function.
3379 (_initialize_language): Set completers.
3380 * cli/cli-decode.c (add_setshow_string_cmd): Return the "set"
3381 command.
3382 (add_setshow_string_noescape_cmd): Likewise.
3383 (add_setshow_integer_cmd): Likewise.
3384 (add_setshow_uinteger_cmd): Likewise.
3385 (add_setshow_zinteger_cmd): Likewise.
3386 (add_setshow_zuinteger_cmd): Likewise.
3387 * command.h (add_setshow_string_cmd,
3388 add_setshow_string_noescape_cmd, add_setshow_uinteger_cmd,
3389 add_setshow_zinteger_cmd, add_setshow_zuinteger_cmd): Update.
3390
3391 2009-08-06 Paul Pluzhnikov <ppluzhnikov@google.com>
3392
3393 gold/10400
3394 * dwarf2-frame.c (qsort_fde_cmp): Use stable sort.
3395
3396 2009-08-06 Paul Pluzhnikov <ppluzhnikov@google.com>
3397
3398 * dwarf2-frame.c (struct dwarf2_cie): Remove 'next'.
3399 (struct dwarf2_cie_table): New.
3400 (struct dwarf2_fde): Remove 'next'.
3401 (struct dwarf2_fde_table): New.
3402 (struct comp_unit): Remove 'cie'.
3403 (bsearch_cie_cmp, bsearch_fde_cmp): New function.
3404 (find_cie, dwarf2_frame_find_fde): Use bsearch.
3405 (add_cie, add_fde): Use array instead of linked list.
3406 (decode_frame_entry, decode_frame_entry_1): New parameters.
3407 (qsort_fde_cmp): New function.
3408 (dwarf2_build_frame_info): Adjust.
3409
3410 2009-08-06 Don Lee <don.lee@sunplusct.com>
3411
3412 * score-tdep.c: Support a new Sunplus CT S+core variant, S+core 3.
3413 * score-tdep.h: Ditto.
3414 * NEWS: Ditto.
3415 * configure.tgt: Test do we have a simulator.
3416 * MAINTAINERS: Add myself under target score
3417
3418 2009-08-06 Nick Roberts <nickrob@snap.net.nz>
3419
3420 * utils.c (defaulted_query): Don't ask for confirmation if server
3421 prefix is used.
3422
3423 2009-08-05 Tom Tromey <tromey@redhat.com>
3424
3425 * spu-tdep.h (SPUADDR_SPU): Cast result to int.
3426
3427 2009-08-04 Paul Pluzhnikov <ppluzhnikov@google.com>
3428
3429 * objfiles.h (OBJF_KEEPBFD): Delete.
3430 (gdb_bfd_unref): New prototype.
3431 * objfiles.c (gdb_bfd_unref): New function.
3432 (free_objfile): Call gdb_bfd_unref.
3433 * solib.c (free_so): Likewise.
3434 (symbol_add_stub): Set refcount.
3435
3436 2009-08-04 Hui Zhu <teawater@gmail.com>
3437 Michael Snyder <msnyder@vmware.com>
3438
3439 * record.c (record_mem_entry): New field 'mem_entry_not_accessible'.
3440 (record_arch_list_add_mem): Initialize 'mem_entry_not_accessible'.
3441 (record_wait): Set 'mem_entry_not_accessible' flag if target
3442 memory not readable. Don't try to change target memory if
3443 'mem_entry_not_accessible' is set.
3444
3445 2009-08-03 Richard Guenther <rguenther@suse.de>
3446 Jan Kratochvil <jan.kratochvil@redhat.com>
3447
3448 Fix memory corruption on reread of file through a symbolic link.
3449 * symfile.c (find_separate_debug_file): Initialize CANON_NAME earlier.
3450 Allocate DEBUGFILE with length based on CANON_NAME. Free CANON_NAME on
3451 all the return paths.
3452
3453 2009-08-03 Jim Ingham <jingham@apple.com>
3454 Vladimir Prus <vladimir@codesourcery.com>
3455
3456 Implement -break-commands
3457
3458 * breakpoint.c (get_breakpoint, breakpoint_set_commands): New.
3459 (commands_command): Use breakpoint_set_commands.
3460 * breakpoint.h (get_breakpoint, breakpoint_set_commands): Declare.
3461
3462 * mi/mi-cmds.h (mi_cmd_break_commands): New.
3463 * mi/mi-cmds.c: Register -break-commands.
3464 * mi/mi-cmd-break.c (mi_cmd_break_commands, mi_read_next_line)
3465 (mi_command_line_array, mi_command_line_array_cnt)
3466 (mi_command_line_array_ptr): New.
3467
3468 2009-08-03 Jim Ingham <jingham@apple.com>
3469 Vladimir Prus <vladimir@codesourcery.com>
3470
3471 Refactor reading of commands
3472
3473 * defs.h (read_command_lines_1): Declare.
3474 * cli/cli-script.c (read_next_line): Only return string,
3475 do not process.
3476 (process_next_line): New, extracted from read_next_line.
3477 (recurse_read_control_structure): Take a function pointer to the
3478 read function.
3479 (get_command_line) Pass the read_next_line as reader function
3480 into recurse_read_control_structure.
3481 (read_command_lines_1): New, extracted from...
3482 (read_command_lines): ...here.
3483
3484 2009-07-31 Kazu Hirata <kazu@codesourcery.com>
3485
3486 * procfs.c (proc_set_current_signal): Populate mysinfo before
3487 copying it to arg.
3488 (proc_clear_current_signal): Likewise.
3489 (proc_set_watchpoint): Populate pwatch before copying it to arg.
3490
3491 2009-07-31 Michael Snyder <msnyder@vmware.com>
3492
3493 * remote.c (store_register_using_P): Call putpkt and getpkt
3494 directly instead of calling remote_send.
3495 (store_registers_using_G): Ditto.
3496 (fetch_register_using_p): Ditto.
3497
3498 * remote.c (store_register_using_P): Make error msg more verbose.
3499 (store_registers_using_G): Ditto.
3500 (fetch_register_using_p): Ditto.
3501
3502 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3503
3504 * spu-tdep.c: Include "infcall.h".
3505 (spu_address_class_type_flags): New function.
3506 (spu_address_class_type_flags_to_name): Likewise.
3507 (spu_address_class_name_to_type_flags): Likewise.
3508 (spu_pointer_to_address): Handle __ea pointers.
3509 (spu_auto_flush_cache_p): New static variable.
3510 (spu_objfile_from_frame): New function.
3511 (flush_ea_cache, spu_attach_normal_stop): Likewise.
3512 (show_spu_auto_flush_cache): Likewise.
3513 (spu_gdbarch_init): Install address class handlers.
3514 (_initialize_spu_tdep): Attach to normal_stop observer.
3515 Install "set spu auto-flush-cache" / "show spu auto-flush-cache"
3516 commands.
3517
3518 * NEWS: Mention "set/show spu auto-flush-cache" commands.
3519
3520 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3521
3522 * spu-tdep.c: Include "block.h".
3523 (setspucmdlist, showspucmdlist): New static variables.
3524 (spu_stop_on_load_p): Likewise.
3525 (spu_catch_start): New function.
3526 (show_spu_command, set_spu_command): New functions.
3527 (show_spu_stop_on_load): Likewise.
3528 (_initialize_spu_tdep): Attach spu_catch_start to new_objfile observer.
3529 Install "set spu" / "show spu" prefix command handler.
3530 Install "set spu stop-on-load" / "show spu stop-on-load" command.
3531
3532 * NEWS: Mention "set/show spu stop-on-load" commands.
3533
3534 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3535
3536 * ppc-linux-tdep.c: Include "solib.h", "solist.h", "exceptions.h",
3537 "arch-utils.h", and "spu-tdep.h".
3538 (spu_context_objfile, spe_context_lm_addr, spe_context_offset):
3539 New static variables.
3540 (spe_context_cache_ptid, spe_context_cache_address): Likewise.
3541 (ppc_linux_spe_context_lookup): New function.
3542 (ppc_linux_spe_context_inferior_created): Likewise.
3543 (ppc_linux_spe_context_solib_loaded): Likewise.
3544 (ppc_linux_spe_context_solib_unloaded): Likewise.
3545 (ppc_linux_spe_context): Likewise.
3546 (struct ppu2spu_cache, struct ppu2spu_data): New data types.
3547 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register,
3548 ppu2spu_unwind_register, ppu2spu_sniffer,
3549 ppu2spu_dealloc_cache): New functions.
3550 (ppu2spu_unwind): New static variable.
3551 (ppc_linux_init_abi): Install cross-architecture unwinder.
3552 (_initialize_ppc_linux_tdep): Attach to observers.
3553
3554 * spu-tdep.c (struct spu2ppu_cache): New data type.
3555 (spu2ppu_prev_arch, spu2ppu_this_id, spu2ppu_prev_register,
3556 spu2ppu_sniffer, spu2ppu_dealloc_cache): New functions.
3557 (spu2ppu_unwind): New static variable.
3558 (spu_gdbarch_init): Install cross-architecture unwinder.
3559
3560 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3561
3562 * target.h (enum strata): New value arch_stratum.
3563 * target.c (target_require_runnable): Skip arch_stratum targets.
3564
3565 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
3566 solib-spu.o and spu-multiarch.o to gdb_target_obs.
3567 * Makefile.in (ALL_TARGET_OBS): Add solib-spu.o and spu-multiarch.o.
3568 (ALLDEPFILES): Add solib-spu.c and spu-multiarch.c.
3569
3570 * solib-spu.c: New file.
3571 * solib-spu.h: New file.
3572 * spu-multiarch.c: New file.
3573
3574 * spu-tdep.h (SPUADDR, SPUADDR_SPU, SPUADDR_ADDR): New macros.
3575
3576 * spu-tdep.c (struct gdbarch_tdep): New member id.
3577 (spu_gdbarch_id): New function.
3578 (spu_lslr): New function.
3579
3580 (spu_address_to_pointer): New function.
3581 (spu_pointer_to_address): Support SPU ID address encoding. Use
3582 spu_gdbarch_id and spu_lslr.
3583 (spu_integer_to_address): Likewise.
3584 (spu_frame_unwind_cache): Update for encoded addresses.
3585 (spu_unwind_pc, spu_unwind_sp): Likewise.
3586 (spu_read_pc, spu_write_pc): Likewise.
3587 (spu_push_dummy_call): Likewise.
3588 (spu_software_single_step): Likewise.
3589 (spu_get_longjmp_target): Likewise.
3590 (spu_overlay_update_osect): Likewise.
3591
3592 (spu_dis_asm_print_address): New function.
3593 (gdb_print_insn_spu): Likewise.
3594
3595 (spu_gdbarch_init): Store SPU ID in tdep structure.
3596 Install spu_address_to_pointer and gdb_print_insn_spu.
3597
3598 * ppc-linux-tdep.c: Include "observer.h", "auxv.h", "elf/common.h"
3599 and "solib-spu.h".
3600 (ppc_linux_entry_point_addr): New static variable.
3601 (ppc_linux_inferior_created): New function.
3602 (ppc_linux_displaced_step_location): Likewise.
3603 (ppc_linux_init_abi): Enable Cell/B.E. support if supported
3604 by the target.
3605 (_initialize_ppc_linux_tdep): Attach to inferior_created observer.
3606
3607 * NEWS: Mention multi-architecture and Cell/B.E. debugging
3608 capabilities.
3609
3610 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3611
3612 * linux-nat.c: Include <sys/vfs.h>.
3613 (SPUFS_MAGIC): Define.
3614 (spu_enumerate_spu_ids): New function.
3615 (linux_proc_xfer_spu): New function.
3616 (linux_xfer_partial): Handle TARGET_OBJECT_SPU.
3617
3618 (iterate_over_spus): New function.
3619 (struct linux_spu_corefile_data): New data type.
3620 (linux_spu_corefile_callback): New function.
3621 (linux_spu_make_corefile_notes): New function.
3622 (linux_nat_make_corefile_notes): Call it.
3623
3624 * corelow.c (struct spuid_list): New data type.
3625 (add_to_spuid_list): New function.
3626 (core_xfer_partial): Handle TARGET_OBJECT_SPU.
3627
3628 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3629
3630 * features/Makefile: Allow sub-platform specific expedite settings.
3631 (WHICH): Add rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
3632 (rs6000/powerpc-cell32l-expedite): Define.
3633 (rs6000/powerpc-cell64l-expedite): Likewise.
3634 * features/rs6000/powerpc-cell32l.xml: New file.
3635 * features/rs6000/powerpc-cell64l.xml: New file.
3636 * features/rs6000/powerpc-cell32l.c: New generated file.
3637 * features/rs6000/powerpc-cell64l.c: New generated file.
3638
3639 * regformats/rs6000/powerpc-cell32l.dat: New generated file.
3640 * regformats/rs6000/powerpc-cell64l.dat: New generated file.
3641
3642 * config/djgpp/fnchange.lst: Add mappings for new files.
3643
3644 * ppc-linux-tdep.h (tdesc_powerpc_cell32l): Add prototype.
3645 (tdesc_powerpc_cell64l): Likewise.
3646 * ppc-linux-tdep.c: Include "features/rs6000/powerpc-cell32l.c"
3647 and "features/rs6000/powerpc-cell64l.c".
3648 (_initialize_ppc_linux_tdep): Initialize target descriptions.
3649 (ppc_linux_spu_section): New function.
3650 (ppc_linux_core_read_description): Detect Cell/B.E. core files.
3651 * ppc-linux-nat.c (PPC_FEATURE_CELL): Define.
3652 (ppc_linux_read_description): Detect Cell/B.E. architecture.
3653
3654 * rs6000-tdep.c (rs6000_gdbarch_init): Do not trust BFD wordsize
3655 if exec file is not PowerPC architecture.
3656
3657 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3658
3659 * features/gdb-target.dtd (target): Accept optional
3660 <compatible> elements.
3661 (compatible): Define element.
3662
3663 * target-descriptions.h (tdesc_compatible_p): New.
3664 (tdesc_add_compatible): New.
3665 * target-descriptions.c (arch_p): New VEC_P type.
3666 (struct target_desc): New member compatible.
3667 (free_target_description): Handle it.
3668 (maint_print_c_tdesc_cmd): Likewise.
3669 (tdesc_compatible_p): New function.
3670 (tdesc_add_compatible): New function.
3671
3672 * xml-tdesc.c (tdesc_end_compatible): New function.
3673 (target_children): Handle <compatible> element.
3674
3675 * arch-utils.c (choose_architecture_for_target): Accept target
3676 description instead of BFD architecture as input. Query target
3677 description for compatible architectures.
3678 (gdbarch_info_fill): Update call.
3679
3680 * NEWS: Mention <compatible> element of target descriptions.
3681
3682 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3683
3684 * breakpoint.c (remove_breakpoints): If removing one breakpoint
3685 location fails, still continue to remove other locations.
3686 (remove_hw_watchpoints): Likewise.
3687 (detach_breakpoints): Likewise.
3688
3689 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3690
3691 * breakpoint.h (enum enable_state): Add bp_startup_disabled.
3692 (disable_breakpoints_before_startup): Add prototype.
3693 (enable_breakpoints_after_startup): Likewise.
3694
3695 * breakpoint.c (executing_startup): New static variable.
3696 (describe_other_breakpoints): Handle bp_startup_disabled.
3697 (check_duplicates_for): Likewise.
3698 (disable_breakpoints_before_startup): New function.
3699 (enable_breakpoints_after_startup): New function.
3700 (create_breakpoint): Mark new breakpoints as bp_startup_disabled
3701 if executing_startup flag is true.
3702 (break_command_really): Likewise.
3703 (breakpoint_re_set_one): Skip bp_startup_disabled breakpoints.
3704
3705 2009-07-31 Julian Brown <julian@codesourcery.com>
3706
3707 * arm-linux-tdep.c (arch-utils.h, inferior.h, gdbthread.h, symfile.h):
3708 Include files.
3709 (arm_linux_cleanup_svc, arm_linux_copy_svc): New.
3710 (cleanup_kernel_helper_return, arm_catch_kernel_helper_return): New.
3711 (arm_linux_displaced_step_copy_insn): New.
3712 (arm_linux_init_abi): Initialise displaced stepping callbacks.
3713 * arm-tdep.c (DISPLACED_STEPPING_ARCH_VERSION): New macro.
3714 (ARM_NOP): New.
3715 (displaced_read_reg, displaced_in_arm_mode, branch_write_pc)
3716 (bx_write_pc, load_write_pc, alu_write_pc, displaced_write_reg)
3717 (insn_references_pc, copy_unmodified, cleanup_preload, copy_preload)
3718 (copy_preload_reg, cleanup_copro_load_store, copy_copro_load_store)
3719 (cleanup_branch, copy_b_bl_blx, copy_bx_blx_reg, cleanup_alu_imm)
3720 (copy_alu_imm, cleanup_alu_reg, copy_alu_reg)
3721 (cleanup_alu_shifted_reg, copy_alu_shifted_reg, cleanup_load)
3722 (cleanup_store, copy_extra_ld_st, copy_ldr_str_ldrb_strb)
3723 (cleanup_block_load_all, cleanup_block_store_pc)
3724 (cleanup_block_load_pc, copy_block_xfer, cleanup_svc, copy_svc)
3725 (copy_undef, copy_unpred): New.
3726 (decode_misc_memhint_neon, decode_unconditional)
3727 (decode_miscellaneous, decode_dp_misc, decode_ld_st_word_ubyte)
3728 (decode_media, decode_b_bl_ldmstm, decode_ext_reg_ld_st)
3729 (decode_svc_copro, arm_process_displaced_insn)
3730 (arm_displaced_init_closure, arm_displaced_step_copy_insn)
3731 (arm_displaced_step_fixup): New.
3732 (arm_gdbarch_init): Initialise max insn length field.
3733 * arm-tdep.h (DISPLACED_TEMPS, DISPLACED_MODIFIED_INSNS): New
3734 macros.
3735 (displaced_step_closure, pc_write_style): New.
3736 (arm_displaced_init_closure, displaced_read_reg)
3737 (arm_process_displaced_insn, arm_displaced_init_closure)
3738 (displaced_read_reg, displaced_write_reg, arm_displaced_step_copy_insn)
3739 (arm_displaced_step_fixup): Add prototypes.
3740
3741 2009-07-31 Pedro Alves <pedro@codesourcery.com>
3742 Julian Brown <julian@codesourcery.com>
3743
3744 * infrun.c (displaced_step_fixup): If this is a software
3745 single-stepping arch, don't tell the target to single-step.
3746 (maybe_software_singlestep): Return 0 if we're using displaced
3747 stepping.
3748 (resume): If this is a software single-stepping arch, and
3749 displaced-stepping is enabled, use it for all single-step
3750 requests.
3751
3752 2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3753
3754 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, aclocal_m4_deps)
3755 (AUTOCONF, configure_deps, AUTOHEADER): New variables.
3756 ($(srcdir)/aclocal.m4, $(srcdir)/configure, $(srcdir)/config.in)
3757 (am--refresh): New rules.
3758 (stamp-h, config.status): List config.in and configure including
3759 $(srcdir)/ prefix.
3760 * aclocal.m4: Regenerate.
3761 * configure: Regenerate.
3762
3763 2009-07-30 Thomas Schwinge <tschwinge@gnu.org>
3764
3765 * gnu-nat.c (add_task_commands) <stopped>: Register the correct
3766 callback function.
3767
3768 2009-07-30 H.J. Lu <hongjiu.lu@intel.com>
3769
3770 * ia64-tdep.c (ia64_access_reg): Correct paddress.
3771
3772 2009-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
3773
3774 Replace public function varobj_list by all_root_varobjs iterator.
3775 * mi/mi-cmd-var.c (struct mi_cmd_var_update, mi_cmd_var_update_iter):
3776 New.
3777 (mi_cmd_var_update): Replace the varobj_list call by all_root_varobjs.
3778 Remove the variables rootlist, cr. New variable data.
3779 * varobj.c (rootcount, varobj_list): Remove.
3780 (install_variable, uninstall_variable): Remove the rootcount updates.
3781 (all_root_varobjs): New function.
3782 (varobj_invalidate): Use the all_root_varobjs call. Move the code to...
3783 (varobj_invalidate_iter): ... a new function.
3784 * varobj.h (varobj_list): Remove the prototype.
3785 (all_root_varobjs): New prototype.
3786
3787 2009-07-29 Paul Pluzhnikov <ppluzhnikov@google.com>
3788
3789 PR gdb/6817
3790 * dbxread.c (read_dbx_symtab): Reduce stack use.
3791
3792 2009-07-29 Jan Kratochvil <jan.kratochvil@redhat.com>
3793
3794 Fix gcc-4.5 HEAD warnings.
3795 * cp-name-parser.y (%union <typed_val_int>, %token GLOBAL)
3796 (GLOBAL_CONSTRUCTORS, GLOBAL_DESTRUCTORS, demangler_special <GLOBAL>):
3797 Remove.
3798 (yylex <"global constructors keyed to ">)
3799 (yylex <"global destructors keyed to ">): Base it on DEMANGLER_SPECIAL.
3800 (cp_comp_to_string): Remove variables str, prefix and buf. Remove the
3801 GLOBAL_DESTRUCTORS and GLOBAL_CONSTRUCTORS handling.
3802 (cp_print): Remove the GLOBAL_DESTRUCTORS and GLOBAL_CONSTRUCTORS
3803 handling.
3804
3805 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
3806
3807 * NEWS: Mention ARM VFP support.
3808 * target-descriptions.c (tdesc_register_type): Make public.
3809 (tdesc_unnumbered_register): New function.
3810 (tdesc_register_reggroup_p): Allow missing
3811 pseudo_register_reggroup_p.
3812 * target-descriptions.h (tdesc_register_type): Declare.
3813 (tdesc_unnumbered_register): Declare.
3814 * arm-tdep.c (arm_neon_quad_read, arm_neon_quad_write): New functions.
3815 (arm_push_dummy_call): Use arm_neon_quad_write.
3816 (arm_neon_double_type, arm_neon_quad_type): New functions.
3817 (arm_register_type): Handle VFP and NEON registers. Override the
3818 types of double-precision registers for NEON. Disable FPA registers
3819 if they are not present.
3820 (arm_dwarf_reg_to_regnum): Add current VFP and NEON register numbers.
3821 (arm_return_value): Use arm_neon_quad_write and arm_neon_quad_read.
3822 (arm_register_name): Handle VFP single and NEON quad registers.
3823 (arm_pseudo_read, arm_pseudo_write): New functions.
3824 (arm_gdbarch_init): Check for VFP and NEON in the target description.
3825 Assign numbers to double-precision registers. Register VFP and NEON
3826 pseudo registers. Remove a shadowed "i" variable.
3827 * arm-tdep.h (enum gdb_regnum): Add ARM_D0_REGNUM and
3828 ARM_D31_REGNUM.
3829 (struct gdbarch_tdep): Add have_neon_pseudos, have_neon,
3830 have_vfp_registers, have_vfp_pseudos, neon_double_type,
3831 and neon_quad_type.
3832
3833 * features/Makefile: Make expedite settings only architecture
3834 specific.
3835 (WHICH): Add new ARM descriptions.
3836 * features/arm-with-neon.xml, features/arm-with-vfpv2.c,
3837 features/arm-with-vfpv3.c, features/arm-vfpv2.xml,
3838 features/arm-vfpv3.xml, features/arm-with-vfpv2.xml,
3839 features/arm-with-vfpv3.xml, features/arm-with-neon.c: New files.
3840 * regformats/arm-with-neon.dat, regformats/arm-with-vfpv2.dat,
3841 regformats/arm-with-vfpv3.dat: Generate.
3842
3843 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
3844
3845 * infrun.c (handle_inferior_event): Clear trap_expected after
3846 stepping past a single-step breakpoint.
3847
3848 2009-07-28 Joseph Myers <joseph@codesourcery.com>
3849
3850 * arm-tdep.c (enum arm_vfp_cprc_base_type,
3851 arm_vfp_cprc_unit_length, arm_vfp_cprc_reg_char,
3852 arm_vfp_cprc_sub_candidate, arm_vfp_call_candidate,
3853 arm_vfp_abi_for_function): New.
3854 (arm_push_dummy_call): Handle VFP ABI.
3855 (arm_extract_return_value, arm_store_return_value): Handle
3856 ARM_FLOAT_VFP case.
3857 (arm_return_value): Handle VFP ABI.
3858 (arm_gdbarch_init): Default fp_model based on Tag_ABI_VFP_args for
3859 EABI binaries.
3860
3861 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
3862
3863 * arch-utils.c (displaced_step_at_entry_point): Do not call
3864 gdbarch_convert_from_func_ptr_addr.
3865 * cris-tdep.c: Remove outdated comment.
3866 * infcall.c (call_function_by_hand): Do not call
3867 gdbarch_convert_from_func_ptr_addr after entry_point_address.
3868 * objfiles.c (entry_point_address): Call both
3869 gdbarch_convert_from_func_ptr_addr and
3870 gdbarch_addr_bits_remove.
3871
3872 2009-07-28 Aleksandar Ristovski <aristovski@qnx.com>
3873
3874 * nto-tdep.c (nto_thread_state_str): New array.
3875 (nto_extra_thread_info): New function definition.
3876 * nto-tdep.h (gdbthread.h): New include.
3877 (private_thread_info): New struct.
3878 (nto_extra_thread_info): New declaration.
3879 * nto-procfs.c (procfs_thread_alive): Properly check if
3880 thread is still alive.
3881 (update_thread_private_data_name, update_thread_private_data): New
3882 function definition.
3883 (procfs_find_new_threads): Fetch thread private data.
3884 (init_procfs_ops): Register to_extra_thread_info.
3885
3886 2009-07-25 Pedro Alves <pedro@codesourcery.com>
3887
3888 * stack.c (backtrace_command_1): Remove dead check of NULL current
3889 frame.
3890
3891 2009-07-23 Keith Seitz <keiths@redhat.com>
3892
3893 * source.c (forward_search_command): Don't fclose the stream,
3894 just run the cleanups.
3895 (reverse_search_command): Likewise.
3896
3897 2009-07-23 Paul Pluzhnikov <ppluzhnikov@google.com>
3898
3899 * symtab.c (search_symbols): Add QUIT.
3900
3901 2009-07-22 Paul Pluzhnikov <ppluzhnikov@google.com>
3902
3903 * symfile.c (symbol_file_add_with_addrs_or_offsets): Call observer.
3904
3905 2009-07-22 Paul Pluzhnikov <ppluzhnikov@google.com>
3906
3907 * objfiles.h (objfiles_changed): New prototype.
3908 * objfiles.c (objfiles_updated_p): Rename to objfiles_changed_p.
3909 (allocate_objfile, free_objfile): Must rebuild section map.
3910 (objfile_relocate): Likewise.
3911 (update_section_map, find_pc_section): Adjust.
3912 (set_objfiles_updated_on_exe_change): Remove.
3913 (set_objfiles_updated_on_solib_activity): Remove.
3914 (_initialize_objfiles): Remove.
3915 (objfiles_changed): New function.
3916 * symfile.c (reread_symbols): Call objfiles_changed.
3917
3918 2009-07-22 Hui Zhu <teawater@gmail.com>
3919
3920 * record.c (record_xfer_partial): Call error When nquery
3921 return "n".
3922
3923 2009-07-21 Paul Pluzhnikov <ppluzhnikov@google.com>
3924
3925 * objfiles.c (objfiles_updated_p): New variable.
3926 (qsort_cmp, bsearch_cmp, update_section_map): New function.
3927 (find_pc_section): Use bsearch.
3928 (set_objfiles_updated_on_exe_change): New function.
3929 (set_objfiles_updated_on_solib_activity): New function.
3930 (_initialize_objfiles): New function.
3931
3932 2009-07-21 Michael Eager <eager@eagercon.com>
3933
3934 * features/rs6000/powerpc-405.xml: New.
3935 * rs6000-tdep.c: Add include & initialize for
3936 powerpc-405.c, add 405 to variants.
3937 * features/rs6000/powerpc-405.c: Generate.
3938
3939 2009-07-21 Paul Pluzhnikov <ppluzhnikov@google.com>
3940
3941 * utils.c (internal_vproblem): Always print failure message.
3942
3943 2009-07-21 Daniel Jacobowitz <dan@codesourcery.com>
3944 Vladimir Prus <vladimir@codesourcery.com>
3945
3946 * valops.c (value_fetch_lazy): Handle bitfields explicitly.
3947 (value_assign): Remove unnecessary FIXME. Honor the container
3948 type of bitfields if possible.
3949 * value.c (struct value): Add parent field.
3950 (value_parent): New function.
3951 (value_free): Free the parent also.
3952 (value_copy): Copy the parent also.
3953 (value_primitive_field): Do not read the contents of a lazy
3954 value to create a child bitfield value. Set bitpos and offset
3955 according to the container type if possible.
3956 (unpack_bits_as_long): Rename from unpack_field_as_long. Take
3957 field_type, bitpos, and bitsize instead of type and fieldno.
3958 (unpack_field_as_long): Use unpack_bits_as_long.
3959 * value.h (value_parent, unpack_bits_as_long): New prototypes.
3960
3961 2009-07-21 Daniel Jacobowitz <dan@codesourcery.com>
3962
3963 * value.c (struct value): Add reference_count field.
3964 (allocate_value_lazy): Initialize reference_count.
3965 (value_incref): New function.
3966 (value_free): Check the reference count.
3967 * value.h (value_incref): New prototype.
3968
3969 2009-07-20 Marc Khouzam <marc.khouzam@ericsson.com>
3970
3971 * utils.c (defaulted_query): Update comment and remove dead code.
3972
3973 2009-07-20 Doug Evans <dje@google.com>
3974
3975 Add support for "comdat types" from DWARF4.
3976 * dwarf2read.c (dwarf2_per_objfile): New member types,
3977 signatured_types.
3978 (TYPES_SECTION): New macro.
3979 (dwarf2_per_cu_data): Change size of length field from 30 bits
3980 to 29 bits. New member from_debug_types.
3981 (signatured_type): New struct.
3982 (struct attribute): New union member signatured_type.
3983 (DW_SIGNATURED_TYPE): New macro.
3984 (dwarf2_attr_no_follow): New function.
3985 (read_type_unit_scope): New function.
3986 (follow_die_ref_or_sig, follow_die_sig): New functions.
3987 (dwarf2_locate_sectoins): Handle .debug_types.
3988 (dwarf2_build_psymtabs): Read .debug_types.
3989 (read_type_comp_unit_head): New function.
3990 (hash_type_signature, eq_type_signature): New functions.
3991 (create_debug_types_hash_table): New function.
3992 (lookup_signatured_type): New function.
3993 (process_psymtab_comp_unit): Handle type units too.
3994 (process_type_comp_unit, build_type_psymtabs): New functions.
3995 (dwarf2_build_psymtabs_hard): Call build_type_psymtabs.
3996 (load_partial_comp_unit): Assert not called for a type unit.
3997 (skip_one_die): Handle DW_FORM_sig8.
3998 (queue_comp_unit): Don't call load_full_comp_unit here, or
3999 update read_in_chain.
4000 (psymtab_to_symtab_1): Call read_signatured_type_at_offset for
4001 type units, or load_full_comp_unit for comp units after
4002 queue_comp_unit returns.
4003 (load_full_comp_unit): Assert not called for type units.
4004 (load_full_comp_unit): Update read_in_chain here.
4005 (process_die): Handle DW_TAG_type_unit.
4006 (read_structure_type): Look for signatured types.
4007 (read_enumeration_type): Ditto.
4008 (init_cu_die_reader): Handle .debug_types.
4009 (read_comp_unit): Assert hash not computed yet.
4010 (read_die_and_children): Expand debugging printf to handle .debug_types.
4011 (read_partial_die): Handle DW_TAG_type_unit:
4012 (find_patial_die): Handle .debug_types.
4013 (read_attribute_value): Handle DW_FORM_sig8.
4014 (die_type): Call follow_die_ref_or_sig instead of follow_die_ref.
4015 (die_containing_type): Ditto.
4016 (dwarf_tag_name): Handle DW_TAG_type_unit.
4017 (dwarf_attr_name): Handle DW_AT_signature.
4018 (dwarf_form_name): Handle DW_FORM_sec_offset, DW_FORM_exprloc,
4019 DW_FORM_flag_present, DW_FORM_sig8.
4020 (dump_die_shallow): Handlel DW_FORM_sig8.
4021 (maybe_queue_comp_unit): Change return type to int from void.
4022 All callers updated.
4023 (follow_die_ref): Handle .debug_types.
4024 (lookup_signatured_type_at_offset): New function.
4025 (read_signatured_type_at_offset): New function.
4026 (read_signatured_type): New function.
4027
4028 2009-07-20 Ulrich Weigand <uweigand@de.ibm.com>
4029
4030 * arch-utils.c (gdbarch_info_fill): Only reference GDB_OSABI_DEFAULT
4031 if the macro is defined.
4032
4033 2009-07-20 Pedro Alves <pedro@codesourcery.com>
4034
4035 * features/gdb-target.dtd (target): Accept an optional 'osabi'
4036 element.
4037 (osabi): Define element.
4038 * features/mips-linux.xml (target): Add an osabi subelement set to
4039 GNU/Linux.
4040 * regformats/regdat.sh (xmlarch, xmlosabi): New variables. Don't
4041 write the architecture into $xmltarget. Store it in $xmlarch.
4042 Handle the 'osabi' type. Handle outputting the osabi element of
4043 the target description.
4044 * regformats/reg-x86-64-linux.dat (osabi): Set to GNU/Linux.
4045 * regformats/reg-i386-linux.dat (osabi): Set to GNU/Linux.
4046
4047 * target-descriptions.h (tdesc_osabi, set_tdesc_osabi): Declare.
4048 * target-descriptions.c (struct target_desc) <osabi>: New field.
4049 (tdesc_osabi): New function.
4050 (set_tdesc_osabi): New function.
4051 * xml-tdesc.c: Include osabi.h.
4052 (tdesc_end_osabi): New.
4053 (target_children): Parse "osabi" elements.
4054 * arch-utils.c (gdbarch_info_fill): Try to get the osabi from the
4055 target description if the user didn't override it or it is not
4056 extractable from the bfd. If that still fails, fallback to the
4057 configured in default.
4058 * osabi.h (osabi_from_tdesc_string): Declare.
4059 * osabi.c (osabi_from_tdesc_string): New.
4060 (gdbarch_lookup_osabi): Return GDB_OSABI_UNKNOWN instead of
4061 GDB_OSABI_DEFAULT.
4062
4063 * NEWS: Mention that target descriptions can now describe the
4064 target OS ABI.
4065
4066 2009-07-20 Mike Frysinger <vapier@gentoo.org>
4067
4068 * configure.ac (AC_CHECK_FUNCS): Check for pipe.
4069 * config.in, configure: Regenerate.
4070 * tui/tui-io.c (TUI_USE_PIPE_FOR_READLINE): Define if HAVE_PIPE.
4071
4072 2009-07-20 Pedro Alves <pedro@codesourcery.com>
4073
4074 * gnu-nat.c: Include "inf-child.h".
4075 (gnu_mourn_inferior): Use the passed in target_ops
4076 instead of the gnu_ops global.
4077 (gnu_create_inferior): Inline `attach_to_child', use the passed in
4078 target_ops instead of the gnu_ops global.
4079 (gnu_can_run): Delete.
4080 (gnu_attach): Use the passed in target_ops instead of the gnu_ops
4081 global.
4082 (gnu_detach): Ditto.
4083 (gnu_prepare_to_store, gnu_open): Delete.
4084 (gnu_store_registers, gnu_fetch_registers): Delete declarations.
4085 (gnu_ops): Delete.
4086 (init_gnu_ops): Delete.
4087 (gnu_target): New.
4088 (_initialize_gnu_nat): Don't call init_gnu_ops or add_target here.
4089 * gnu-nat.h (gnu_target): Declare.
4090 * i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Make
4091 static.
4092 (_initialize_i386gnu_nat): New.
4093
4094 2009-07-20 Ulrich Weigand <uweigand@de.ibm.com>
4095
4096 * dwarf2loc.c (find_location_expression): Retrieve beginning and
4097 ending address offsets in location list entries as integers,
4098 not as addresses.
4099
4100 2009-07-20 Ulrich Weigand <uweigand@de.ibm.com>
4101
4102 * infrun.c (wait_for_inferior): Invalidate registers and overlay
4103 cache every time before calling target_wait.
4104 (handle_inferior_event): Make static. Always reset waiton_ptid.
4105 Never call registers_changed.
4106 (prepare_to_wait): Do not invaliate registers or overlay cache
4107 (moved to wait_for_inferior). Do not reset waiton_ptid (moved
4108 to handle_inferior_event).
4109 (fetch_inferior_event): Remove check for always-true condition.
4110
4111 2009-07-20 Thomas Schwinge <tschwinge@gnu.org>
4112
4113 * i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Adjust to
4114 2009-02-23 target_ops changes.
4115
4116 2009-07-18 Michael Snyder <msnyder@vmware.com>
4117
4118 * infrun.c (handle_inferior_event): Remove an execution_direction
4119 check in the "check for subroutine calls" test, and add some
4120 additional handling for reverse-stepping through shared libraries.
4121
4122 2009-07-18 Anthony Green <green@moxielogic.com>
4123
4124 * moxie-tdep.c (moxie_analyze_prologue): Take gdbarch as last
4125 parameter instead of frame_info.
4126 (moxie_frame_cache): Call moxie_analyze_prologue with different
4127 args.
4128
4129 2009-07-17 Ulrich Weigand <uweigand@de.ibm.com>
4130
4131 * solib.c (solib_bfd_open): Do not call ops->bfd_open.
4132 (solib_map_sections): Call ops->bfd_open instead of solib_bfd_open.
4133 * solib-frv.c (_initialize_frv_solib): Initialize bfd_open member.
4134 * solib-irix.c (_initialize_irix_solib): Likewise.
4135 * solib-null.c (_initialize_null_solib): Likewise.
4136 * solib-osf.c (_initialize_osf_solib): Likewise.
4137 * solib-pa64.c (_initialize_pa64_solib): Likewise.
4138 * solib-som.c (_initialize_som_solib): Likewise.
4139 * solib-sunos.c (_initialize_sunos_solib): Likewise.
4140 * solib-svr4.c (_initialize_svr4_solib): Likewise.
4141 * solib-target.c (_initialize_solib_target): Likewise.
4142
4143 2009-07-17 Ulrich Weigand <uweigand@de.ibm.com>
4144
4145 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Respect mixed_mode flag.
4146
4147 2009-07-16 Doug Evans <dje@google.com>
4148
4149 * linux-thread.db.c (try_thread_db_load_1): Tweak comment.
4150
4151 2007-07-16 Paul Pluzhnikov <ppluzhnikov@google.com>
4152
4153 * linux-thread-db.c (thread_db_find_new_threads_silently):
4154 New function.
4155 (try_thread_db_load_1): Call it.
4156
4157 2009-07-15 Doug Evans <dje@google.com>
4158
4159 Code reorg in preparation for adding comdat types support.
4160 * dwarf2read.c (struct die_reader_specs): New struct.
4161 (locate_pdi_sibling): New arg buffer. All callers updated.
4162 (load_partial_dies, read_partial_die): Ditto.
4163 (read_8_bytes): Change return type to ULONGEST.
4164 (read_comp_unit): Delete arg abfd. All callers updated.
4165 (read_die_and_children_1): Delete args abfd, cu. New arg reader.
4166 All callers updated.
4167 (read_die_and_children, read_die_and_siblings): Ditto.
4168 (read_full_die): Ditto. Move closer to callers.
4169 (skip_one_die): New arg buffer. All callers updated.
4170 (load_full_comp_unit): Change return type to void. All callers
4171 updated.
4172 (partial_read_comp_unit_head): New args buffer, buffer_size.
4173 All callers updated.
4174 (process_psymtab_comp_unit): New function, split out from
4175 dwarf2_build_psymtabs_hard.
4176 (dwarf2_build_psymtabs_hard): Call it.
4177 (load_partial_comp_unit): Renamed from load_comp_unit.
4178 All callers updated.
4179 (skip_children): New arg buffer. All callers updated.
4180 (init_cu_die_reader): New function.
4181 (is_ref_attr): New function.
4182 (dwarf2_get_ref_die_offset): Call it.
4183 (alloc_one_comp_unit): New function.
4184
4185 2009-07-14 Stan Shebs <stan@codesourcery.com>
4186
4187 * MAINTAINERS (Global Maintainers): Add Doug Evans.
4188
4189 2009-07-14 Stan Shebs <stan@codesourcery.com>
4190
4191 Conditional tracepoints.
4192 * ax-gdb.h (gen_eval_for_expr): Declare.
4193 * ax-gdb.c (gen_expr): Generate bytecodes for BINOP_EQUAL
4194 and other comparisons.
4195 (gen_eval_for_expr): New function.
4196 (agent_eval_command): New maintenance command.
4197 (_initialize_ax_gdb): Define the command.
4198 * remote.c (struct remote_state): New field cond_tracepoints.
4199 (PACKET_ConditionalTracepoints): New packet config type.
4200 (remote_cond_tracepoint_feature): New function.
4201 (remote_protocol_features): Add ConditionalTracepoints.
4202 (remote_supports_cond_tracepoints): New function.
4203 (_initialize_remote): Add ConditionalTracepoints.
4204 * tracepoint.c (download_tracepoint): Add conditional.
4205 * NEWS: Mention conditional tracepoints.
4206
4207 2009-07-14 Ulrich Weigand <uweigand@de.ibm.com>
4208
4209 * objfiles.c (objfile_relocate): Do not relocate the same
4210 BLOCKVECTOR_MAP address map multiple times.
4211
4212 2009-07-14 Ulrich Weigand <uweigand@de.ibm.com>
4213
4214 * remote.c (process_stop_reply): Access expedited target registers
4215 in target_gdbarch.
4216
4217 2009-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4218
4219 Fix memory access from signed 32bit inferior registers on 64bit GDB.
4220 * linux-nat.c (linux_xfer_partial <TARGET_OBJECT_MEMORY>): New variable
4221 addr_bit. Mask OFFSET by the ADDR_BIT width.
4222
4223 2009-07-13 Anthony Green <green@moxielogic.com>
4224
4225 * moxie-tdep.c (moxie_gdbarch_init): Call
4226 set_gdbarch_process_record.
4227 (moxie_process_record): New.
4228 (moxie_process_readu): New.
4229
4230 2009-07-12 Michael Snyder <msnyder@vmware.com>
4231
4232 * i386-tdep.c: Add a frame unwinder for function epilogues.
4233 (i386_in_function_epilogue_p): New function.
4234 (i386_epilogue_frame_sniffer): New function.
4235 (i386_epilogue_frame_cache): New function.
4236 (i386_epilogue_frame_this_id): New function.
4237 (i386_epilogue_frame_unwind): New struct frame_unwind.
4238 (i386_gdbarch_init): Hook the new unwinder.
4239
4240 2009-07-11 Hui Zhu <teawater@gmail.com>
4241
4242 * cli/cli-cmds.c (disassemble_command): Add a new modifier /r
4243 to "disassemble" command to print the raw instructions in hex as
4244 well as in symbolic form.
4245 (init_cli_cmds): Ditto.
4246 (print_disassembly): Change "mixed" to "flags" to translate
4247 the behavior of disassemble.
4248 (disassemble_current_function): Ditto.
4249 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Ditto.
4250 * stack.c (gdb_disassembly_stub): Ditto.
4251 * disasm.c (do_mixed_source_and_assembly): Ditto.
4252 (do_mixed_source_and_assembly): Ditto.
4253 (do_assembly_only): Ditto.
4254 (gdb_disassembly): Ditto.
4255 (dump_insns): print the raw instructions in hex as well as in
4256 symbolic form if DISASSEMBLY_RAW_INSN and flags is true.
4257 * disasm.h (DISASSEMBLY_SOURCE): Include source code with the
4258 assembly if it and flags is true.
4259 (DISASSEMBLY_RAW_INSN): Include the raw instructions in hex with
4260 the assembly if it and flags is true.
4261 (gdb_disassembly): Update extern.
4262 * NEWS: Document disassemble/r support.
4263
4264 2009-07-10 Tom Tromey <tromey@redhat.com>
4265
4266 * dwarf2-frame.c: Include dwarf2.h, not elf/dwarf2.h.
4267 * dwarf2expr.c: Likewise.
4268 * dwarf2loc.c: Likewise.
4269 * dwarf2read.c: Likewise.
4270 * sh-tdep.c: Likewise.
4271 * xtensa-tdep.c: Likewise.
4272
4273 2009-07-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4274
4275 Tidy up the code.
4276 * mi/mi-cmd-var.c (mi_cmd_var_update): Remove variable nv. Move
4277 variables var, rootlist and cr to their local sub-block. Move the
4278 make_cleanup_ui_out_tuple_begin_end, make_cleanup_ui_out_list_begin_end
4279 and do_cleanups calls to the common base block. Remove the zero NV
4280 check.
4281
4282 2009-07-10 Phil Muldoon <pmuldoon@redhat.com>
4283
4284 * python/python-internal.h (apply_varobj_pretty_printer): Update
4285 definition.
4286 (python_string_to_target_python_string): Add definition.
4287 * python/python-utils.c (unicode_to_encoded_python_string)
4288 (unicode_to_target_python_string)
4289 (python_string_to_target_python_string): New Functions.
4290 * python/python-prettyprint.c (pretty_print_one_value): Likewise.
4291 (print_string_repr): Refactor to logic to account for PyObject
4292 returned strings.
4293 (apply_varobj_pretty_printer): Likewise.
4294 * python/python-value.c (valpy_string): Parse length keyword. Use
4295 length keyword in LA_GET_STRING.
4296 * varobj.c (value_get_print_value): Refactor logic to account for
4297 PyObject returned strings.
4298 * c-lang.c (c_get_string): If the length parameter is specified,
4299 use that. Return value in characters. Update comments.
4300 * language.h: Update c_get_string prototype comments.
4301
4302 2009-07-09 Doug Evans <dje@google.com>
4303
4304 * i386-tdep.c (i386_displaced_step_fixup): Fix order of arguments
4305 to read_memory_unsigned_integer.
4306
4307 2009-07-09 Jan Kratochvil <jan.kratochvil@redhat.com>
4308
4309 Report error on inaccessible memory.
4310 * cli/cli-dump.c: Include gdbcore.h.
4311 (dump_memory_to_file): Call read_memory instead of target_read_memory.
4312
4313 2009-07-09 Hui Zhu <teawater@gmail.com>
4314
4315 * solib.c (solib_bfd_open): Output a warning if solib's
4316 architecture is not compatible with inferior's architecture.
4317
4318 2009-07-09 Ulrich Weigand <uweigand@de.ibm.com>
4319 Jan Kratochvil <jan.kratochvil@redhat.com>
4320
4321 * target.h (struct target_ops <to_thread_architecture>): Describe it.
4322 (target_thread_architecture): Refer to to_thread_architecture.
4323
4324 2009-07-08 Pierre Muller <muller@ics.u-strasbg.fr>
4325
4326 * cli/cli-cmds.c (init_cli_cmds): Add "inf" alias for "info" command.
4327
4328 2009-07-07 Ulrich Weigand <uweigand@de.ibm.com>
4329
4330 * tui/tui-stack.c (tui_make_status_line): Display PC as ?? if unknown.
4331
4332 2009-07-07 Pierre Muller <muller@ics.u-strasbg.fr>
4333
4334 * breakpoint.c (set_raw_breakpoint): Remove static modifier.
4335
4336 2009-07-07 Tom Tromey <tromey@redhat.com>
4337
4338 * c-lang.c (convert_octal): Only allow 3 octal digits.
4339 (print_wchar): Prefer 3-digit octal form. Fall back to hex if
4340 needed.
4341 * c-exp.y (c_parse_escape): Only allow 3 octal digits.
4342
4343 2009-07-07 Paul Pluzhnikov <ppluzhnikov@google.com>
4344
4345 * python/python-value.c (valpy_getitem): Remove incorrect assert.
4346
4347 2009-07-07 Paul Pluzhnikov <ppluzhnikov@google.com>
4348
4349 * python/python-value.c (valpy_getitem): Don't return from TRY_CATCH.
4350
4351 2009-07-07 Sami Wagiaalla <swagiaal@redhat.com>
4352
4353 * cp-support.h (struct using_direct): Rename members inner and
4354 outer to import_src, and import_dest respectively.
4355 * cp-namespace.c (cp_add_using_directive): Update.
4356 (cp_add_using): Update.
4357 (cp_copy_usings): Update.
4358 (cp_lookup_symbol_namespace): Update.
4359 (cp_scan_for_anonymous_namespaces): Update.
4360 * cp-support.c (make_symbol_overload_list_using): Update.
4361 * cp-support.h (cp_add_using_directive, cp_add_using): Rename
4362 arguments from inner and outer to src and dest respectively.
4363 * cp-namespace.c (cp_add_using_directive): Ditto.
4364 (cp_add_using): Ditto.
4365
4366 2009-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4367
4368 * mi/mi-cmd-var.c (mi_cmd_var_update): Replace a while loop by for loop.
4369 * varobj.c (varobj_invalidate): Replace a while loop by for loop.
4370
4371 2009-07-07 Vladimir Prus <vladimir@codesourcery.com>
4372
4373 Fix hang in floating varobjs.
4374
4375 * varobj.c (varobj_invalidate): Advance to next
4376 element when processing floating varobj.
4377
4378 2009-07-07 Vladimir Prus <vladimir@codesourcery.com>
4379
4380 * varobj.c: Remove unnecessary include.
4381
4382 2009-07-07 Tristan Gingold <gingold@adacore.com>
4383
4384 * config/i386/darwin.mh (NATDEPFILES): Remove excServer.o.
4385 Remove excServer.c target. Remove _all target.
4386 * darwin.defs: Removed.
4387
4388 2009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
4389
4390 * configure.tgt (i[34567]86-*-nto*): Add build_gdbserver=yes.
4391
4392 2009-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4393
4394 * source.c (find_and_open_source): Remove the `objfile' parameter.
4395 Update the function comment.
4396 (open_source_file, symtab_to_fullname, psymtab_to_fullname): Update the
4397 find_and_open_source callers.
4398
4399 2009-07-05 Pedro Alves <pedro@codesourcery.com>
4400
4401 * coff-pe-read.c (read_pe_exported_syms): Recognize
4402 "pe-arm-wince-little" and "pei-arm-wince-little" bfd targets as PE
4403 targets.
4404
4405 2009-07-05 Pedro Alves <pedro@codesourcery.com>
4406
4407 * arm-wince-tdep.c (arm_wince_skip_main_prologue): New.
4408 (arm_wince_init_abi): Register it as gdbarch_skip_main_prologue
4409 callback.
4410
4411 2009-06-29 Tristan Gingold <gingold@adacore.com>
4412
4413 * i386-darwin-tdep.c (amd64_darwin_thread_state_reg_offset)
4414 (amd64_darwin_thread_state_num_regs)
4415 (amd64_darwin_sigcontext_addr, x86_darwin_init_abi_64): Moved to
4416 amd64-darwin-tdep.c
4417 (_initialize_i386_darwin_tdep): Remove 64 bits parts.
4418 (darwin_dwarf_signal_frame_p): Make public.
4419 * amd64-darwin-tdep.c: New file with most chunks from
4420 i386-darwin-tdep.c
4421 * i386-darwin-tdep.h: Add a prototype for darwin_dwarf_signal_frame_p.
4422 (amd64_darwin_thread_state_reg_offset)
4423 (amd64_darwin_thread_state_num_regs): Moved to amd64-darwin-tdep.h
4424 * amd64-darwin-tdep.h: New file.
4425 * i386-darwin-nat.c: Only includes amd64-nat.h and amd64-darwin-tdep.h
4426 if BFD64 is defined.
4427 (i386_darwin_fetch_inferior_registers): Add #ifdef BFD64/#endif around
4428 64 bits parts.
4429 (i386_darwin_store_inferior_registers): Ditto.
4430 (darwin_set_sstep): Ditto.
4431 (darwin_complete_target): Ditto.
4432 (amd64_darwin_sstep_at_sigreturn): Ditto.
4433 * configure.tgt: Create a separate entry for x86_64-*-darwin.
4434 Add 64 bits support for i386-*-darwin if --enable-64-bit-bfd.
4435 * Makefile.in (ALLDEPFILES): Add amd64-darwin-tdep.c, darwin-nat.c,
4436 i386-darwin-tdep.c i386-darwin-nat.c
4437 (ALL_64_TARGET_OBS): Add amd64-darwin-tdep.o
4438
4439 2009-07-02 Pedro Alves <pedro@codesourcery.com>
4440
4441 * linux-fork.c (forks_exist_p): Drop unnecessary extern.
4442 (add_fork, linux_fork_killall, linux_fork_mourn_inferior)
4443 (linux_fork_detach): Ditto.
4444 (delete_fork_command): Rename to ...
4445 (delete_checkpoint_command): ... this.
4446 (detach_fork_command): Rename to ...
4447 (detach_checkpoint_command): ... this.
4448 (info_forks_command): Rename to ...
4449 (info_checkpoints_command): ... this.
4450 (_initialize_linux_fork): Remove stale comments. Adjust.
4451
4452 2009-07-02 Pedro Alves <pedro@codesourcery.com>
4453
4454 * linux-nat.c (linux_child_follow_fork): If we're staying attached
4455 to the child process, enable event reporting on it. Don't handle
4456 checkpoints here. Instead, add the child fork to the lwp thread
4457 and inferior lists without clobbering the previous inferior. Let
4458 the thread_db layer learn about a new child process, even if
4459 following the parent.
4460 (linux_nat_switch_fork): Delete lwps of the current inferior only,
4461 instead of clearing the whole list. Use thread_change_ptid to
4462 give the core the illusion the new checkpoint is still the same
4463 inferior. Clear the register cache.
4464 (linux_handle_extended_wait): Handle checkpoints here.
4465 (linux_multi_process): Turn on.
4466 * linux-fork.c (struct fork_info) <pc>: Remove field.
4467 (init_fork_list): Do not delete the checkpoint from the inferior
4468 list (it is not there).
4469 (fork_load_infrun_state): Don't switch inferior_ptid here. Pass
4470 the new checkpoint's ptid to linux_nat_switch_fork.
4471 (fork_save_infrun_state): Make static. Don't stop the pc field of
4472 fork_info, it's gone.
4473 (linux_fork_mourn_inferior): Don't delete the checkpoint from the
4474 inferior list, it's not there.
4475 (linux_fork_detach): Ditto.
4476 (delete_fork_command): Replace mention of fork/checkpoint by
4477 checkpoint only.
4478 (detach_fork_command): Likewise. Don't delete the checkpoint from
4479 the inferior list.
4480 (info_forks_command): Adjust.
4481 (restore_detach_fork): Delete.
4482 (checkpointing_pid): New.
4483 (linux_fork_checkpointing_p): New.
4484 (save_detach_fork): Delete.
4485 (checkpoint_command): Delete temp_detach_fork. Don't remove
4486 breakpoints, that's a nop. Store the pid of the process we're
4487 checkpointing, and use make_cleanup_restore_integer to restore it.
4488 Don't reinsert breakpoints here.
4489 (process_command, fork_command): Delete.
4490 (restart_command): Update comments to only mention checkpoints,
4491 not forks.
4492 (_initialize_linux_fork): Delete "fork", "process", "info forks"
4493 commands.
4494 * linux-fork.h (fork_save_infrun_state, fork_list): Delete
4495 declarations.
4496 (linux_fork_checkpointing_p): Declare.
4497 * cli/cli-cmds.c (killlist): New.
4498 * cli/cli-cmds.h (killlist): Declare.
4499 * gdbcmd.h (killlist): Declare.
4500 * inferior.c: Include "gdbthread.h".
4501 (detach_inferior_command, kill_inferior_command)
4502 (inferior_command): New.
4503 (info_inferiors_command): Allow specifying a specific inferior id.
4504 (_initialize_inferiors): Register "inferior", "kill inferior" and
4505 "detach inferior" commands.
4506 * infcmd.c (_initialize_infcmd): Make "kill" a prefix command.
4507 * gdbthread.h (any_thread_of_process): Declare.
4508 * thread.c (any_thread_of_process): New.
4509
4510 * NEWS: Mention multi-inferior debugging. Mention 'info
4511 inferiors', 'inferior', 'detach inferior' and 'kill inferior' as
4512 new commands.
4513 (Removed commands): New section, mentioning that 'info forks',
4514 'fork', 'process', 'delete fork' and 'detach fork' are now gone.
4515
4516 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
4517
4518 * gdbarch.sh (current_gdbarch): Remove global variable.
4519 (find_arch_by_info): Remove, inline into ...
4520 (gdbarch_find_by_info): ... this. Remove current_gdbarch swapping.
4521 (deprecated_current_gdbarch_select_hack): Rename to ...
4522 (deprecated_target_gdbarch_select_hack): ... this. Do not set
4523 or access current_gdbarch.
4524 * gdbarch.c, gdbarch.h: Regenerate.
4525
4526 * arch-utils.c (gdbarch_update_p): Update call.
4527 (set_gdbarch_from_file): Likewise.
4528
4529 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
4530
4531 * defs.h (extract_signed_integer, extract_unsigned_integer,
4532 extract_long_unsigned_integer, store_signed_integer,
4533 store_unsigned_integer): Add BYTE_ORDER parameter.
4534 * findvar.c (extract_signed_integer, extract_unsigned_integer,
4535 extract_long_unsigned_integer, store_signed_integer,
4536 store_unsigned_integer): Add BYTE_ORDER parameter. Use it
4537 instead of current_gdbarch.
4538
4539 * gdbcore.h (read_memory_integer, safe_read_memory_integer,
4540 read_memory_unsigned_integer, write_memory_signed_integer,
4541 write_memory_unsigned_integer): Add BYTE_ORDER parameter.
4542 * corefile.c (struct captured_read_memory_integer_arguments): Add
4543 BYTE_ORDER member.
4544 (safe_read_memory_integer): Add BYTE_ORDER parameter. Store it into
4545 struct captured_read_memory_integer_arguments.
4546 (do_captured_read_memory_integer): Pass it to read_memory_integer.
4547 (read_memory_integer): Add BYTE_ORDER parameter. Pass it to
4548 extract_signed_integer.
4549 (read_memory_unsigned_integer): Add BYTE_ORDER parameter. Pass it to
4550 extract_unsigned_integer.
4551 (write_memory_signed_integer): Add BYTE_ORDER parameter. Pass it
4552 to store_signed_integer.
4553 (write_memory_unsigned_integer): Add BYTE_ORDER parameter. Pass it
4554 to store_unsigned_integer.
4555
4556 * target.h (get_target_memory_unsigned): Add BYTE_ORDER parameter.
4557 * target.c (get_target_memory_unsigned): Add BYTE_ORDER parameter.
4558 Pass it to extract_unsigned_integer.
4559
4560
4561 Update calls to extract_signed_integer, extract_unsigned_integer,
4562 extract_long_unsigned_integer, store_signed_integer,
4563 store_unsigned_integer, read_memory_integer,
4564 read_memory_unsigned_integer, safe_read_memory_integer,
4565 write_memory_signed_integer, write_memory_unsigned_integer, and
4566 get_target_memory_unsigned to pass byte order:
4567 * ada-lang.c (ada_value_binop): Update.
4568 * ada-valprint.c (char_at): Update.
4569 * alpha-osf1-tdep.c (alpha_osf1_sigcontext_addr): Update.
4570 * alpha-tdep.c (alpha_lds, alpha_sts, alpha_push_dummy_call,
4571 alpha_extract_return_value, alpha_read_insn,
4572 alpha_get_longjmp_target): Update.
4573 * amd64-linux-tdep.c (amd64_linux_sigcontext_addr): Update.
4574 * amd64obsd-tdep.c (amd64obsd_supply_uthread,
4575 amd64obsd_collect_uthread, amd64obsd_trapframe_cache): Update.
4576 * amd64-tdep.c (amd64_push_dummy_call, amd64_analyze_prologue,
4577 amd64_frame_cache, amd64_sigtramp_frame_cache, fixup_riprel,
4578 amd64_displaced_step_fixup): Update.
4579 * arm-linux-tdep.c (arm_linux_sigreturn_init,
4580 arm_linux_rt_sigreturn_init, arm_linux_supply_gregset): Update.
4581 * arm-tdep.c (thumb_analyze_prologue, arm_skip_prologue,
4582 arm_scan_prologue, arm_push_dummy_call, thumb_get_next_pc,
4583 arm_get_next_pc, arm_extract_return_value, arm_store_return_value,
4584 arm_return_value): Update.
4585 * arm-wince-tdep.c (arm_pe_skip_trampoline_code): Update.
4586 * auxv.c (default_auxv_parse): Update.
4587 * avr-tdep.c (avr_address_to_pointer, avr_pointer_to_address,
4588 avr_scan_prologue, avr_extract_return_value,
4589 avr_frame_prev_register, avr_push_dummy_call): Update.
4590 * bsd-uthread.c (bsd_uthread_check_magic, bsd_uthread_lookup_offset,
4591 bsd_uthread_wait, bsd_uthread_thread_alive,
4592 bsd_uthread_extra_thread_info): Update.
4593 * c-lang.c (c_printstr, print_wchar): Update.
4594 * cp-valprint.c (cp_print_class_member): Update.
4595 * cris-tdep.c (cris_sigcontext_addr, cris_sigtramp_frame_unwind_cache,
4596 cris_push_dummy_call, cris_scan_prologue, cris_store_return_value,
4597 cris_extract_return_value, find_step_target, dip_prefix,
4598 sixteen_bit_offset_branch_op, none_reg_mode_jump_op,
4599 move_mem_to_reg_movem_op, get_data_from_address): Update.
4600 * dwarf2expr.c (dwarf2_read_address, execute_stack_op): Update.
4601 * dwarf2-frame.c (execute_cfa_program): Update.
4602 * dwarf2loc.c (find_location_expression): Update.
4603 * dwarf2read.c (dwarf2_const_value): Update.
4604 * expprint.c (print_subexp_standard): Update.
4605 * findvar.c (unsigned_pointer_to_address, signed_pointer_to_address,
4606 unsigned_address_to_pointer, address_to_signed_pointer,
4607 read_var_value): Update.
4608 * frame.c (frame_unwind_register_signed,
4609 frame_unwind_register_unsigned, get_frame_memory_signed,
4610 get_frame_memory_unsigned): Update.
4611 * frame-unwind.c (frame_unwind_got_constant): Update.
4612 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp,
4613 frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
4614 Update.
4615 * frv-tdep.c (frv_analyze_prologue, frv_skip_main_prologue,
4616 frv_extract_return_value, find_func_descr,
4617 frv_convert_from_func_ptr_addr, frv_push_dummy_call): Update.
4618 * f-valprint.c (f_val_print): Update.
4619 * gnu-v3-abi.c (gnuv3_decode_method_ptr, gnuv3_make_method_ptr):
4620 Update.
4621 * h8300-tdep.c (h8300_is_argument_spill, h8300_analyze_prologue,
4622 h8300_push_dummy_call, h8300_extract_return_value,
4623 h8300h_extract_return_value, h8300_store_return_value,
4624 h8300h_store_return_value): Update.
4625 * hppabsd-tdep.c (hppabsd_find_global_pointer): Update.
4626 * hppa-hpux-nat.c (hppa_hpux_fetch_register, hppa_hpux_store_register):
4627 Update.
4628 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline,
4629 hppa64_hpux_in_solib_call_trampoline,
4630 hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code,
4631 hppa_hpux_sigtramp_frame_unwind_cache,
4632 hppa_hpux_sigtramp_unwind_sniffer, hppa32_hpux_find_global_pointer,
4633 hppa64_hpux_find_global_pointer, hppa_hpux_search_pattern,
4634 hppa32_hpux_search_dummy_call_sequence,
4635 hppa64_hpux_search_dummy_call_sequence, hppa_hpux_supply_save_state,
4636 hppa_hpux_unwind_adjust_stub): Update.
4637 * hppa-linux-tdep.c (insns_match_pattern,
4638 hppa_linux_find_global_pointer): Update.
4639 * hppa-tdep.c (hppa_in_function_epilogue_p, hppa32_push_dummy_call,
4640 hppa64_convert_code_addr_to_fptr, hppa64_push_dummy_call,
4641 skip_prologue_hard_way, hppa_frame_cache, hppa_fallback_frame_cache,
4642 hppa_pseudo_register_read, hppa_frame_prev_register_helper,
4643 hppa_match_insns): Update.
4644 * hpux-thread.c (hpux_thread_fetch_registers): Update.
4645 * i386-tdep.c (i386bsd_sigcontext_addr): Update.
4646 * i386-cygwin-tdep.c (core_process_module_section): Update.
4647 * i386-darwin-nat.c (i386_darwin_sstep_at_sigreturn,
4648 amd64_darwin_sstep_at_sigreturn): Update.
4649 * i386-darwin-tdep.c (i386_darwin_sigcontext_addr,
4650 amd64_darwin_sigcontext_addr): Likewise.
4651 * i386-linux-nat.c (i386_linux_sigcontext_addr): Update.
4652 * i386nbsd-tdep.c (i386nbsd_sigtramp_cache_init): Update.
4653 * i386-nto-tdep.c (i386nto_sigcontext_addr): Update.
4654 * i386obsd-nat.c (i386obsd_supply_pcb): Update.
4655 * i386obsd-tdep.c (i386obsd_supply_uthread, i386obsd_collect_uthread,
4656 i386obsd_trapframe_cache): Update.
4657 * i386-tdep.c (i386_displaced_step_fixup, i386_follow_jump,
4658 i386_analyze_frame_setup, i386_analyze_prologue,
4659 i386_skip_main_prologue, i386_frame_cache, i386_sigtramp_frame_cache,
4660 i386_get_longjmp_target, i386_push_dummy_call,
4661 i386_pe_skip_trampoline_code, i386_svr4_sigcontext_addr,
4662 i386_fetch_pointer_argument): Update.
4663 * i387-tdep.c (i387_supply_fsave): Update.
4664 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Update.
4665 * ia64-tdep.c (ia64_pseudo_register_read, ia64_pseudo_register_write,
4666 examine_prologue, ia64_frame_cache, ia64_frame_prev_register,
4667 ia64_sigtramp_frame_cache, ia64_sigtramp_frame_prev_register,
4668 ia64_access_reg, ia64_access_rse_reg, ia64_libunwind_frame_this_id,
4669 ia64_libunwind_frame_prev_register,
4670 ia64_libunwind_sigtramp_frame_this_id,
4671 ia64_libunwind_sigtramp_frame_prev_register, ia64_find_global_pointer,
4672 find_extant_func_descr, find_func_descr,
4673 ia64_convert_from_func_ptr_addr, ia64_push_dummy_call, ia64_dummy_id,
4674 ia64_unwind_pc): Update.
4675 * iq2000-tdep.c (iq2000_pointer_to_address, iq2000_address_to_pointer,
4676 iq2000_scan_prologue, iq2000_extract_return_value,
4677 iq2000_push_dummy_call): Update.
4678 * irix5nat.c (fill_gregset): Update.
4679 * jv-lang.c (evaluate_subexp_java): Update.
4680 * jv-valprint.c (java_value_print): Update.
4681 * lm32-tdep.c (lm32_analyze_prologue, lm32_push_dummy_call,
4682 lm32_extract_return_value, lm32_store_return_value): Update.
4683 * m32c-tdep.c (m32c_push_dummy_call, m32c_return_value,
4684 m32c_skip_trampoline_code, m32c_m16c_address_to_pointer,
4685 m32c_m16c_pointer_to_address): Update.
4686 * m32r-tdep.c (m32r_store_return_value, decode_prologue,
4687 m32r_skip_prologue, m32r_push_dummy_call, m32r_extract_return_value):
4688 Update.
4689 * m68hc11-tdep.c (m68hc11_pseudo_register_read,
4690 m68hc11_pseudo_register_write, m68hc11_analyze_instruction,
4691 m68hc11_push_dummy_call): Update.
4692 * m68linux-tdep.c (m68k_linux_pc_in_sigtramp,
4693 m68k_linux_get_sigtramp_info, m68k_linux_sigtramp_frame_cache):
4694 Update.
4695 * m68k-tdep.c (m68k_push_dummy_call, m68k_analyze_frame_setup,
4696 m68k_analyze_register_saves, m68k_analyze_prologue, m68k_frame_cache,
4697 m68k_get_longjmp_target): Update.
4698 * m88k-tdep.c (m88k_fetch_instruction): Update.
4699 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_csr_write,
4700 mep_pseudo_cr32_write, mep_get_insn, mep_push_dummy_call): Update.
4701 * mi/mi-main.c (mi_cmd_data_write_memory): Update.
4702 * mips-linux-tdep.c (mips_linux_get_longjmp_target, supply_32bit_reg,
4703 mips64_linux_get_longjmp_target, mips64_fill_gregset,
4704 mips64_fill_fpregset, mips_linux_in_dynsym_stub): Update.
4705 * mipsnbdsd-tdep.c (mipsnbsd_get_longjmp_target): Update.
4706 * mips-tdep.c (mips_fetch_instruction, fetch_mips_16,
4707 mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call,
4708 mips_o32_push_dummy_call, mips_o64_push_dummy_call,
4709 mips_single_step_through_delay, mips_skip_pic_trampoline_code,
4710 mips_integer_to_address): Update.
4711 * mn10300-tdep.c (mn10300_analyze_prologue, mn10300_push_dummy_call):
4712 Update.
4713 * monitor.c (monitor_supply_register, monitor_write_memory,
4714 monitor_read_memory_single): Update.
4715 * moxie-tdep.c (moxie_store_return_value, moxie_extract_return_value,
4716 moxie_analyze_prologue): Update.
4717 * mt-tdep.c (mt_return_value, mt_skip_prologue, mt_select_coprocessor,
4718 mt_pseudo_register_read, mt_pseudo_register_write, mt_registers_info,
4719 mt_push_dummy_call): Update.
4720 * objc-lang.c (read_objc_method, read_objc_methlist_nmethods,
4721 read_objc_methlist_method, read_objc_object, read_objc_super,
4722 read_objc_class, find_implementation_from_class): Update.
4723 * ppc64-linux-tdep.c (ppc64_desc_entry_point,
4724 ppc64_linux_convert_from_func_ptr_addr, ppc_linux_sigtramp_cache):
4725 Update.
4726 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_sniffer,
4727 ppcobsd_sigtramp_frame_cache): Update.
4728 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
4729 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
4730 ppc64_sysv_abi_return_value): Update.
4731 * ppc-linux-nat.c (ppc_linux_auxv_parse): Update.
4732 * procfs.c (procfs_auxv_parse): Update.
4733 * p-valprint.c (pascal_val_print): Update.
4734 * regcache.c (regcache_raw_read_signed, regcache_raw_read_unsigned,
4735 regcache_raw_write_signed, regcache_raw_write_unsigned,
4736 regcache_cooked_read_signed, regcache_cooked_read_unsigned,
4737 regcache_cooked_write_signed, regcache_cooked_write_unsigned): Update.
4738 * remote-m32r-sdi.c (m32r_fetch_register): Update.
4739 * remote-mips.c (mips_wait, mips_fetch_registers, mips_xfer_memory):
4740 Update.
4741 * rs6000-aix-tdep.c (rs6000_push_dummy_call, rs6000_return_value,
4742 rs6000_convert_from_func_ptr_addr, branch_dest,
4743 rs6000_software_single_step): Update.
4744 * rs6000-tdep.c (rs6000_in_function_epilogue_p,
4745 ppc_displaced_step_fixup, ppc_deal_with_atomic_sequence,
4746 bl_to_blrl_insn_p, rs6000_fetch_instruction, skip_prologue,
4747 rs6000_skip_main_prologue, rs6000_skip_trampoline_code,
4748 rs6000_frame_cache): Update.
4749 * s390-tdep.c (s390_pseudo_register_read, s390_pseudo_register_write,
4750 s390x_pseudo_register_read, s390x_pseudo_register_write, s390_load,
4751 s390_backchain_frame_unwind_cache, s390_sigtramp_frame_unwind_cache,
4752 extend_simple_arg, s390_push_dummy_call, s390_return_value): Update.
4753 * scm-exp.c (scm_lreadr): Update.
4754 * scm-lang.c (scm_get_field, scm_unpack): Update.
4755 * scm-valprint.c (scm_val_print): Update.
4756 * score-tdep.c (score_breakpoint_from_pc, score_push_dummy_call,
4757 score_fetch_inst): Update.
4758 * sh64-tdep.c (look_for_args_moves, sh64_skip_prologue_hard_way,
4759 sh64_analyze_prologue, sh64_push_dummy_call, sh64_extract_return_value,
4760 sh64_pseudo_register_read, sh64_pseudo_register_write,
4761 sh64_frame_prev_register): Update:
4762 * sh-tdep.c (sh_analyze_prologue, sh_push_dummy_call_fpu,
4763 sh_push_dummy_call_nofpu, sh_extract_return_value_nofpu,
4764 sh_store_return_value_nofpu, sh_in_function_epilogue_p): Update.
4765 * solib-darwin.c (darwin_load_image_infos): Update.
4766 * solib-frv.c (fetch_loadmap, lm_base, frv_current_sos, enable_break2,
4767 find_canonical_descriptor_in_load_object): Update.
4768 * solib-irix.c (extract_mips_address, fetch_lm_info, irix_current_sos,
4769 irix_open_symbol_file_object): Update.
4770 * solib-som.c (som_solib_create_inferior_hook, link_map_start,
4771 som_current_sos, som_open_symbol_file_object): Update.
4772 * solib-sunos.c (SOLIB_EXTRACT_ADDRESS, LM_ADDR, LM_NEXT, LM_NAME):
4773 Update.
4774 * solib-svr4.c (read_program_header, scan_dyntag_auxv,
4775 solib_svr4_r_ldsomap): Update.
4776 * sparc64-linux-tdep.c (sparc64_linux_step_trap): Update.
4777 * sparc64obsd-tdep.c (sparc64obsd_supply_uthread,
4778 sparc64obsd_collect_uthread): Update.
4779 * sparc64-tdep.c (sparc64_pseudo_register_read,
4780 sparc64_pseudo_register_write, sparc64_supply_gregset,
4781 sparc64_collect_gregset): Update.
4782 * sparc-linux-tdep.c (sparc32_linux_step_trap): Update.
4783 * sparcobsd-tdep.c (sparc32obsd_supply_uthread,
4784 sparc32obsd_collect_uthread): Update.
4785 * sparc-tdep.c (sparc_fetch_wcookie, sparc32_push_dummy_code,
4786 sparc32_store_arguments, sparc32_return_value, sparc_supply_rwindow,
4787 sparc_collect_rwindow): Update.
4788 * spu-linux-nat.c (parse_spufs_run): Update.
4789 * spu-tdep.c (spu_pseudo_register_read_spu,
4790 spu_pseudo_register_write_spu, spu_pointer_to_address,
4791 spu_analyze_prologue, spu_in_function_epilogue_p,
4792 spu_frame_unwind_cache, spu_push_dummy_call, spu_software_single_step,
4793 spu_get_longjmp_target, spu_get_overlay_table, spu_overlay_update_osect,
4794 info_spu_signal_command, info_spu_mailbox_list, info_spu_dma_cmdlist,
4795 info_spu_dma_command, info_spu_proxydma_command): Update.
4796 * stack.c (print_frame_nameless_args, frame_info): Update.
4797 * symfile.c (read_target_long_array, simple_read_overlay_table,
4798 simple_read_overlay_region_table): Update.
4799 * target.c (debug_print_register): Update.
4800 * tramp-frame.c (tramp_frame_start): Update.
4801 * v850-tdep.c (v850_analyze_prologue, v850_push_dummy_call,
4802 v850_extract_return_value, v850_store_return_value,
4803 * valarith.c (value_binop, value_bit_index): Update.
4804 * valops.c (value_cast): Update.
4805 * valprint.c (val_print_type_code_int, val_print_string,
4806 read_string): Update.
4807 * value.c (unpack_long, unpack_double, unpack_field_as_long,
4808 modify_field, pack_long): Update.
4809 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call,
4810 vax_skip_prologue): Update.
4811 * xstormy16-tdep.c (xstormy16_push_dummy_call,
4812 xstormy16_analyze_prologue, xstormy16_in_function_epilogue_p,
4813 xstormy16_resolve_jmp_table_entry, xstormy16_find_jmp_table_entry,
4814 xstormy16_pointer_to_address, xstormy16_address_to_pointer): Update.
4815 * xtensa-tdep.c (extract_call_winsize, xtensa_pseudo_register_read,
4816 xtensa_pseudo_register_write, xtensa_frame_cache,
4817 xtensa_push_dummy_call, call0_track_op, call0_frame_cache): Update.
4818
4819
4820 * dfp.h (decimal_to_string, decimal_from_string, decimal_from_integral,
4821 decimal_from_floating, decimal_to_doublest, decimal_is_zero): Add
4822 BYTE_ORDER parameter.
4823 (decimal_binop): Add BYTE_ORDER_X, BYTE_ORDER_Y, and BYTE_ORDER_RESULT
4824 parameters.
4825 (decimal_compare): Add BYTE_ORDER_X and BYTE_ORDER_Y parameters.
4826 (decimal_convert): Add BYTE_ORDER_FROM and BYTE_ORDER_TO parameters.
4827 * dfp.c (match_endianness): Add BYTE_ORDER parameter. Use it
4828 instead of current_gdbarch.
4829 (decimal_to_string, decimal_from_integral, decimal_from_floating,
4830 decimal_to_doublest, decimal_is_zero): Add BYTE_ORDER parameter.
4831 Pass it to match_endianness.
4832 (decimal_binop): Add BYTE_ORDER_X, BYTE_ORDER_Y, and BYTE_ORDER_RESULT
4833 parameters. Pass them to match_endianness.
4834 (decimal_compare): Add BYTE_ORDER_X and BYTE_ORDER_Y parameters.
4835 Pass them to match_endianness.
4836 (decimal_convert): Add BYTE_ORDER_FROM and BYTE_ORDER_TO parameters.
4837 Pass them to match_endianness.
4838 * valarith.c (value_args_as_decimal): Add BYTE_ORDER_X and
4839 BYTE_ORDER_Y output parameters.
4840 (value_binop): Update call to value_args_as_decimal.
4841
4842 Update calls to decimal_to_string, decimal_from_string,
4843 decimal_from_integral, decimal_from_floating, decimal_to_doublest,
4844 decimal_is_zero, decimal_binop, decimal_compare and decimal_convert
4845 to pass/receive byte order:
4846 * c-exp.y (parse_number): Update.
4847 * printcmd.c (printf_command): Update.
4848 * valarith.c (value_args_as_decimal, value_binop, value_logical_not,
4849 value_equal, value_less): Update.
4850 * valops.c (value_cast, value_one): Update.
4851 * valprint.c (print_decimal_floating): Update.
4852 * value.c (unpack_long, unpack_double): Update.
4853 * python/python-value.c (valpy_nonzero): Update.
4854
4855
4856 * ada-valprint.c (char_at): Add BYTE_ORDER parameter.
4857 (printstr): Update calls to char_at.
4858 (ada_val_print_array): Likewise.
4859 * valprint.c (read_string): Add BYTE_ORDER parameter.
4860 (val_print_string): Update call to read_string.
4861 * c-lang.c (c_get_string): Likewise.
4862 * charset.h (target_wide_charset): Add BYTE_ORDER parameter.
4863 * charset.c (target_wide_charset): Add BYTE_ORDER parameter.
4864 Use it instead of current_gdbarch.
4865 * printcmd.c (printf_command): Update calls to target_wide_charset.
4866 * c-lang.c (charset_for_string_type): Add BYTE_ORDER parameter.
4867 Pass to target_wide_charset. Use it instead of current_gdbarch.
4868 (classify_type): Add BYTE_ORDER parameter. Pass to
4869 charset_for_string_type. Allow NULL encoding pointer.
4870 (print_wchar): Add BYTE_ORDER parameter.
4871 (c_emit_char): Update calls to classify_type and print_wchar.
4872 (c_printchar, c_printstr): Likewise.
4873
4874
4875 * gdbarch.sh (in_solib_return_trampoline): Convert to type "m".
4876 * gdbarch.c, gdbarch.h: Regenerate.
4877 * arch-utils.h (generic_in_solib_return_trampoline): Add GDBARCH
4878 parameter.
4879 * arch-utils.c (generic_in_solib_return_trampoline): Likewise.
4880 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Likewise.
4881 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Likewise.
4882 (rs6000_skip_trampoline_code): Update call.
4883
4884 * alpha-tdep.h (struct gdbarch_tdep): Add GDBARCH parameter to
4885 dynamic_sigtramp_offset and pc_in_sigtramp callbacks.
4886 (alpha_read_insn): Add GDBARCH parameter.
4887 * alpha-tdep.c (alpha_lds, alpha_sts): Add GDBARCH parameter.
4888 (alpha_register_to_value): Pass architecture to alpha_sts.
4889 (alpha_extract_return_value): Likewise.
4890 (alpha_value_to_register): Pass architecture to alpha_lds.
4891 (alpha_store_return_value): Likewise.
4892 (alpha_read_insn): Add GDBARCH parameter.
4893 (alpha_skip_prologue): Pass architecture to alpha_read_insn.
4894 (alpha_heuristic_proc_start): Likewise.
4895 (alpha_heuristic_frame_unwind_cache): Likewise.
4896 (alpha_next_pc): Likewise.
4897 (alpha_sigtramp_frame_this_id): Pass architecture to
4898 tdep->dynamic_sigtramp_offset callback.
4899 (alpha_sigtramp_frame_sniffer): Pass architecture to
4900 tdep->pc_in_sigtramp callback.
4901 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): Add GDBARCH parameter.
4902 (alphafbsd_sigtramp_offset): Likewise.
4903 * alpha-linux-tdep.c (alpha_linux_sigtramp_offset_1): Add GDBARCH
4904 parameter. Pass to alpha_read_insn.
4905 (alpha_linux_sigtramp_offset): Add GDBARCH parameter. Pass to
4906 alpha_linux_sigtramp_offset_1.
4907 (alpha_linux_pc_in_sigtramp): Add GDBARCH parameter. Pass to
4908 alpha_linux_sigtramp_offset.
4909 (alpha_linux_sigcontext_addr): Pass architecture to alpha_read_insn
4910 and alpha_linux_sigtramp_offset.
4911 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Add GDBARCH parameter.
4912 (alphanbsd_pc_in_sigtramp): Add GDBARCH parameter. Pass to
4913 alphanbsd_sigtramp_offset.
4914 * alphaobsd-tdep.c (alphaobsd_sigtramp_offset): Add GDBARCH parameter.
4915 (alphaobsd_pc_in_sigtramp): Add GDBARCH parameter. Pass to
4916 alpha_read_insn.
4917 (alphaobsd_sigcontext_addr): Pass architecture to
4918 alphaobsd_sigtramp_offset.
4919 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): Add GDBARCH
4920 parameter.
4921
4922 * amd64-tdep.c (amd64_analyze_prologue): Add GDBARCH parameter.
4923 (amd64_skip_prologue): Pass architecture to amd64_analyze_prologue.
4924 (amd64_frame_cache): Likewise.
4925
4926 * arm-tdep.c (SWAP_SHORT, SWAP_INT): Remove.
4927 (thumb_analyze_prologue, arm_skip_prologue, arm_scan_prologue,
4928 thumb_get_next_pc, arm_get_next_pc): Do not use SWAP_ macros.
4929 * arm-wince-tdep.c: Include "frame.h".
4930
4931 * avr-tdep.c (EXTRACT_INSN): Remove.
4932 (avr_scan_prologue): Add GDBARCH argument, inline EXTRACT_INSN.
4933 (avr_skip_prologue): Pass architecture to avr_scan_prologue.
4934 (avr_frame_unwind_cache): Likewise.
4935
4936 * cris-tdep.c (struct instruction_environment): Add BYTE_ORDER member.
4937 (find_step_target): Initialize it.
4938 (get_data_from_address): Add BYTE_ORDER parameter.
4939 (bdap_prefix): Pass byte order to get_data_from_address.
4940 (handle_prefix_assign_mode_for_aritm_op): Likewise.
4941 (three_operand_add_sub_cmp_and_or_op): Likewise.
4942 (handle_inc_and_index_mode_for_aritm_op): Likewise.
4943
4944 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Add GDBARCH parameter.
4945 (frv_linux_sigcontext_reg_addr): Pass architecture to
4946 frv_linux_pc_in_sigtramp.
4947 (frv_linux_sigtramp_frame_sniffer): Likewise.
4948
4949 * h8300-tdep.c (h8300_is_argument_spill): Add GDBARCH parameter.
4950 (h8300_analyze_prologue): Add GDBARCH parameter. Pass to
4951 h8300_is_argument_spill.
4952 (h8300_frame_cache, h8300_skip_prologue): Pass architecture
4953 to h8300_analyze_prologue.
4954
4955 * hppa-tdep.h (struct gdbarch_tdep): Add GDBARCH parameter to
4956 in_solib_call_trampoline callback.
4957 (hppa_in_solib_call_trampoline): Add GDBARCH parameter.
4958 * hppa-tdep.c (hppa64_convert_code_addr_to_fptr): Add GDBARCH
4959 parameter.
4960 (hppa64_push_dummy_call): Pass architecture to
4961 hppa64_convert_code_addr_to_fptr.
4962 (hppa_match_insns): Add GDBARCH parameter.
4963 (hppa_match_insns_relaxed): Add GDBARCH parameter. Pass to
4964 hppa_match_insns.
4965 (hppa_skip_trampoline_code): Pass architecture to hppa_match_insns.
4966 (hppa_in_solib_call_trampoline): Add GDBARCH parameter. Pass to
4967 hppa_match_insns_relaxed.
4968 (hppa_stub_unwind_sniffer): Pass architecture to
4969 tdep->in_solib_call_trampoline callback.
4970 * hppa-hpux-tdep.c (hppa_hpux_search_pattern): Add GDBARCH parameter.
4971 (hppa32_hpux_search_dummy_call_sequence): Pass architecture to
4972 hppa_hpux_search_pattern.
4973 * hppa-linux-tdep.c (insns_match_pattern): Add GDBARCH parameter.
4974 (hppa_linux_sigtramp_find_sigcontext): Add GDBARCH parameter.
4975 Pass to insns_match_pattern.
4976 (hppa_linux_sigtramp_frame_unwind_cache): Pass architecture to
4977 hppa_linux_sigtramp_find_sigcontext.
4978 (hppa_linux_sigtramp_frame_sniffer): Likewise.
4979 (hppa32_hpux_in_solib_call_trampoline): Add GDBARCH parameter.
4980 (hppa64_hpux_in_solib_call_trampoline): Likewise.
4981
4982 * i386-tdep.c (i386_follow_jump): Add GDBARCH parameter.
4983 (i386_analyze_frame_setup): Add GDBARCH parameter.
4984 (i386_analyze_prologue): Add GDBARCH parameter. Pass to
4985 i386_follow_jump and i386_analyze_frame_setup.
4986 (i386_skip_prologue): Pass architecture to i386_analyze_prologue
4987 and i386_follow_jump.
4988 (i386_frame_cache): Pass architecture to i386_analyze_prologue.
4989 (i386_pe_skip_trampoline_code): Add FRAME parameter.
4990 * i386-tdep.h (i386_pe_skip_trampoline_code): Add FRAME parameter.
4991 * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): Pass
4992 frame to i386_pe_skip_trampoline_code.
4993
4994 * ia64-tdep.h (struct gdbarch_tdep): Add GDBARCH parameter
4995 to sigcontext_register_address callback.
4996 * ia64-tdep.c (ia64_find_global_pointer): Add GDBARCH parameter.
4997 (ia64_find_unwind_table): Pass architecture to
4998 ia64_find_global_pointer.
4999 (find_extant_func_descr): Add GDBARCH parameter.
5000 (find_func_descr): Pass architecture to find_extant_func_descr
5001 and ia64_find_global_pointer.
5002 (ia64_sigtramp_frame_init_saved_regs): Pass architecture to
5003 tdep->sigcontext_register_address callback.
5004 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Add
5005 GDBARCH parameter.
5006
5007 * iq2000-tdep.c (iq2000_scan_prologue): Add GDBARCH parameter.
5008 (iq2000_frame_cache): Pass architecture to iq2000_scan_prologue.
5009
5010 * lm32-tdep.c (lm32_analyze_prologue): Add GDBARCH parameter.
5011 (lm32_skip_prologue, lm32_frame_cache): Pass architecture to
5012 lm32_analyze_prologue.
5013
5014 * m32r-tdep.c (decode_prologue): Add GDBARCH parameter.
5015 (m32r_skip_prologue): Pass architecture to decode_prologue.
5016
5017 * m68hc11-tdep.c (m68hc11_analyze_instruction): Add GDBARCH parameter.
5018 (m68hc11_scan_prologue): Pass architecture to
5019 m68hc11_analyze_instruction.
5020
5021 * m68k-tdep.c (m68k_analyze_frame_setup): Add GDBARCH parameter.
5022 (m68k_analyze_prologue): Pass architecture to
5023 m68k_analyze_frame_setup.
5024
5025 * m88k-tdep.c (m88k_fetch_instruction): Add BYTE_ORDER parameter.
5026 (m88k_analyze_prologue): Add GDBARCH parameter. Pass byte order
5027 to m88k_fetch_instruction.
5028 (m88k_skip_prologue): Pass architecture to m88k_analyze_prologue.
5029 (m88k_frame_cache): Likewise.
5030
5031 * mep-tdep.c (mep_get_insn): Add GDBARCH parameter.
5032 (mep_analyze_prologue): Pass architecture to mep_get_insn.
5033
5034 * mips-tdep.c (mips_fetch_instruction): Add GDBARCH parameter.
5035 (mips32_next_pc): Pass architecture to mips_fetch_instruction.
5036 (deal_with_atomic_sequence): Likewise.
5037 (unpack_mips16): Add GDBARCH parameter, pass to mips_fetch_instruction.
5038 (mips16_scan_prologue): Likewise.
5039 (mips32_scan_prologue): Likewise.
5040 (mips16_in_function_epilogue_p): Likewise.
5041 (mips32_in_function_epilogue_p): Likewise.
5042 (mips_about_to_return): Likewise.
5043 (mips_insn16_frame_cache): Pass architecture to mips16_scan_prologue.
5044 (mips_insn32_frame_cache): Pass architecture to mips32_scan_prologue.
5045 (mips_skip_prologue): Pass architecture to mips16_scan_prologue
5046 and mips32_scan_prologue.
5047 (mips_in_function_epilogue_p): Pass architecture to
5048 mips16_in_function_epilogue_p and
5049 mips32_in_function_epilogue_p.
5050 (heuristic_proc_start): Pass architecture to mips_fetch_instruction
5051 and mips_about_to_return.
5052 (mips_skip_mips16_trampoline_code): Pass architecture to
5053 mips_fetch_instruction.
5054 (fetch_mips_16): Add GDBARCH parameter.
5055 (mips16_next_pc): Pass architecture to fetch_mips_16.
5056 (extended_mips16_next_pc): Pass architecture to unpack_mips16 and
5057 fetch_mips_16.
5058
5059 * objc-lang.c (read_objc_method, read_objc_methlist_nmethods,
5060 read_objc_methlist_method, read_objc_object, read_objc_super,
5061 read_objc_class): Add GDBARCH parameter.
5062 (find_implementation_from_class): Add GDBARCH parameter, pass
5063 to read_objc_class, read_objc_methlist_nmethods, and
5064 read_objc_methlist_method.
5065 (find_implementation): Add GDBARCH parameter, pass to
5066 read_objc_object and find_implementation_from_class.
5067 (resolve_msgsend, resolve_msgsend_stret): Pass architecture
5068 to find_implementation.
5069 (resolve_msgsend_super, resolve_msgsend_super_stret): Pass
5070 architecture to read_objc_super and find_implementation_from_class.
5071
5072 * ppc64-linux-tdep.c (ppc64_desc_entry_point): Add GDBARCH parameter.
5073 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target,
5074 ppc64_standard_linkage3_target): Pass architecture to
5075 ppc64_desc_entry_point.
5076 * rs6000-tdep.c (bl_to_blrl_insn_p): Add BYTE_ORDER parameter.
5077 (skip_prologue): Pass byte order to bl_to_blrl_insn_p.
5078 (rs6000_fetch_instruction): Add GDBARCH parameter.
5079 (rs6000_skip_stack_check): Add GDBARCH parameter, pass to
5080 rs6000_fetch_instruction.
5081 (skip_prologue): Pass architecture to rs6000_fetch_instruction.
5082
5083 * remote-mips.c (mips_store_word): Return old_contents as host
5084 integer value instead of target bytes.
5085
5086 * s390-tdep.c (struct s390_prologue_data): Add BYTE_ORDER member.
5087 (s390_analyze_prologue): Initialize it.
5088 (extend_simple_arg): Add GDBARCH parameter.
5089 (s390_push_dummy_call): Pass architecture to extend_simple_arg.
5090
5091 * scm-lang.c (scm_get_field): Add BYTE_ORDER parameter.
5092 * scm-lang.h (scm_get_field): Add BYTE_ORDER parameter.
5093 (SCM_CAR, SCM_CDR): Pass SCM_BYTE_ORDER to scm_get_field.
5094 * scm-valprint.c (scm_scmval_print): Likewise.
5095 (scm_scmlist_print, scm_ipruk, scm_scmval_print): Define
5096 SCM_BYTE_ORDER.
5097
5098 * sh64-tdep.c (look_for_args_moves): Add GDBARCH parameter.
5099 (sh64_skip_prologue_hard_way): Add GDBARCH parameter, pass to
5100 look_for_args_moves.
5101 (sh64_skip_prologue): Pass architecture to
5102 sh64_skip_prologue_hard_way.
5103 * sh-tdep.c (sh_analyze_prologue): Add GDBARCH parameter.
5104 (sh_skip_prologue): Pass architecture to sh_analyze_prologue.
5105 (sh_frame_cache): Likewise.
5106
5107 * solib-irix.c (extract_mips_address): Add GDBARCH parameter.
5108 (fetch_lm_info, irix_current_sos, irix_open_symbol_file_object):
5109 Pass architecture to extract_mips_address.
5110
5111 * sparc-tdep.h (sparc_fetch_wcookie): Add GDBARCH parameter.
5112 * sparc-tdep.c (sparc_fetch_wcookie): Add GDBARCH parameter.
5113 (sparc_supply_rwindow, sparc_collect_rwindow): Pass architecture
5114 to sparc_fetch_wcookie.
5115 (sparc32_frame_prev_register): Likewise.
5116 * sparc64-tdep.c (sparc64_frame_prev_register): Likewise.
5117 * sparc32nbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Likewise.
5118 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): Likewise.
5119
5120 * spu-tdep.c (spu_analyze_prologue): Add GDBARCH parameter.
5121 (spu_skip_prologue): Pass architecture to spu_analyze_prologue.
5122 (spu_virtual_frame_pointer): Likewise.
5123 (spu_frame_unwind_cache): Likewise.
5124 (info_spu_mailbox_list): Add BYTE_ORER parameter.
5125 (info_spu_mailbox_command): Pass byte order to info_spu_mailbox_list.
5126 (info_spu_dma_cmdlist): Add BYTE_ORER parameter.
5127 (info_spu_dma_command, info_spu_proxydma_command): Pass byte order
5128 to info_spu_dma_cmdlist.
5129
5130 * symfile.c (read_target_long_array): Add GDBARCH parameter.
5131 (simple_read_overlay_table, simple_read_overlay_region_table,
5132 simple_overlay_update_1): Pass architecture to read_target_long_array.
5133
5134 * v850-tdep.c (v850_analyze_prologue): Add GDBARCH parameter.
5135 (v850_frame_cache): Pass architecture to v850_analyze_prologue.
5136
5137 * xstormy16-tdep.c (xstormy16_analyze_prologue): Add GDBARCH
5138 parameter.
5139 (xstormy16_skip_prologue, xstormy16_frame_cache): Pass architecture
5140 to xstormy16_analyze_prologue.
5141 (xstormy16_resolve_jmp_table_entry): Add GDBARCH parameter.
5142 (xstormy16_find_jmp_table_entry): Likewise.
5143 (xstormy16_skip_trampoline_code): Pass architecture to
5144 xstormy16_resolve_jmp_table_entry.
5145 (xstormy16_pointer_to_address): Likewise.
5146 (xstormy16_address_to_pointer): Pass architecture to
5147 xstormy16_find_jmp_table_entry.
5148
5149 * xtensa-tdep.c (call0_track_op): Add GDBARCH parameter.
5150 (call0_analyze_prologue): Add GDBARCH parameter, pass to
5151 call0_track_op.
5152 (call0_frame_cache): Pass architecture to call0_analyze_prologue.
5153 (xtensa_skip_prologue): Likewise.
5154
5155 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5156
5157 * defs.h (strlen_paddr, paddr, paddr_nz): Remove.
5158 (paddress): Add GDBARCH parameter.
5159 * utils.c (strlen_paddr, paddr, paddr_nz): Remove.
5160 (paddress): Add GDBARCH parameter, use it instead of current_gdbarch.
5161 * ui-out.h (ui_out_field_core_addr): Add GDBARCH parameter.
5162 * ui-out.c (ui_out_field_core_addr): Add GDBARCH parameter,
5163 use it instead of current_gdbarch.
5164
5165 Update calls to ui_out_field_core_addr to pass architecture:
5166 * ada-lang.c (print_one_exception): Update.
5167 * breakpoint.c (print_one_breakpoint_location,
5168 print_one_exception_catchpoint): Update.
5169 * disasm.c (dump_insns): Update.
5170 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
5171 * mi/mi-main.c (mi_cmd_data_read_memory): Update.
5172 * mi/mi-symbol-cmds.c: Include "objfiles.h".
5173 (mi_cmd_symbol_list_lines): Update.
5174 * stack.c (print_frame_info, print_frame): Update.
5175
5176 Update callers of paddress to pass architecture:
5177 * ada-tasks.c (info_task): Update.
5178 * ada-valprint.c (ada_val_print_1): Update.
5179 * annotate.c (annotate_source, annotate_frame_begin): Update.
5180 * breakpoint.c (insert_bp_location, describe_other_breakpoints,
5181 mention): Update.
5182 * cli/cli-cmds.c (edit_command, list_command, print_disassembly):
5183 Update.
5184 * corefile.c (memory_error): Update.
5185 * c-valprint.c (print_function_pointer_address, c_val_print): Update.
5186 * disasm.c (dis_asm_print_address): Update.
5187 * exec.c (print_section_info): Update.
5188 * f-valprint.c (f_val_print): Update.
5189 * infcmd.c: Include "arch-utils.h".
5190 (jump_command, program_info): Update.
5191 * linux-fork.c: Include "arch-utils.h".
5192 (info_forks_command): Update.
5193 * m2-valprint.c (print_function_pointer_address,
5194 print_unpacked_pointer, print_variable_at_address,
5195 m2_val_print): Update.
5196 * m32r-rom.c (m32r_load_section, m32r_load, m32r_upload_command):
5197 Update.
5198 * printcmd.c (print_address, print_address_demangle, address_info):
5199 Update.
5200 * p-valprint.c (pascal_val_print): Update.
5201 * source.c: Include "arch-utils.h".
5202 (line_info): Update.
5203 * stack.c (frame_info, print_block_frame_labels): Update.
5204 * symfile.c (add_symbol_file_command, list_overlays_command): Update.
5205 * symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1,
5206 print_symbol, print_partial_symbols, maintenance_info_psymtabs,
5207 maintenance_check_symtabs): Update.
5208 * symtab.c (find_pc_sect_symtab): Update.
5209 * target.c (deprecated_debug_xfer_memory): Update.
5210 * tracepoint.c (scope_info): Update.
5211 * tui/tui-stack.c (tui_make_status_line): Update.
5212 * valprint.c (val_print_string): Update.
5213
5214 Update callers of paddr_nz to use paddress instead (keeping
5215 user-visible output identical):
5216 * alpha-tdep.c (alpha_heuristic_proc_start): Update.
5217 * amd64-tdep.c (fixup_riprel, amd64_displaced_step_copy_insn,
5218 amd64_displaced_step_fixup): Update.
5219 * arch-utils.c (simple_displaced_step_copy_insn): Update.
5220 * auxv.c (fprint_target_auxv): Update.
5221 * breakpoint.c (insert_single_step_breakpoint): Update.
5222 * buildsym.c (finish_block): Update.
5223 * cli/cli-dump.c (restore_section_callback): Update.
5224 * fbsd-nat.c (fbsd_find_memory_regions): Update.
5225 * frame.c (frame_unwind_register_value): Update.
5226 * gcore.c (gcore_create_callback): Update.
5227 * hppa-tdep.c (hppa_frame_cache, hppa_skip_trampoline_code): Update.
5228 * i386-tdep.c (i386_displaced_step_fixup, i386_record_modrm,
5229 i386_record_lea_modrm_addr, i386_record_lea_modrm,
5230 i386_process_record): Update.
5231 * ia64-tdep.c (ia64_frame_this_id, ia64_sigtramp_frame_this_id,
5232 ia64_libunwind_frame_this_id, ia64_libunwind_sigtramp_frame_this_id,
5233 ia64_dummy_id, ia64_access_reg, ia64_access_rse_reg): Update.
5234 * infrun.c (displaced_step_prepare, displaced_step_fixup,
5235 handle_inferior_event, insert_step_resume_breakpoint_at_sal,
5236 insert_longjmp_resume_breakpoint): Update.
5237 * linux-nat.c (linux_nat_find_memory_regions): Update.
5238 * linux-record.c (record_linux_system_call): Update.
5239 * mips-tdep.c (heuristic_proc_start, mips_eabi_push_dummy_call,
5240 mips_n32n64_push_dummy_call, mips_o32_push_dummy_call,
5241 mips_o64_push_dummy_call): Update.
5242 * monitor.c (monitor_error, monitor_remove_breakpoint): Update.
5243 * record.c (record_arch_list_add_mem, record_wait,
5244 record_xfer_partial): Update.
5245 * remote-mips.c (mips_fetch_word, mips_check_lsi_error,
5246 mips_common_breakpoint): Update.
5247 * remote-sim.c (gdbsim_xfer_inferior_memory): Update.
5248 * rs6000-tdep.c (ppc_displaced_step_fixup): Update.
5249 * solib-som.c (som_current_sos): Update.
5250 * symfile.c (load_progress, generic_load): Update.
5251 * symfile-mem.c (add_vsyscall_page): Update.
5252 * valops.c (value_fetch_lazy): Update.
5253 * windows-tdep.c (windows_xfer_shared_library): Update.
5254
5255 Update callers of paddr_nz to use paddress instead (changing
5256 user-visible output to make it more correct):
5257 * dwarf2loc.c (locexpr_describe_location): Update.
5258 * ia64-tdep.c (ia64_memory_insert_breakpoint,
5259 ia64_memory_remove_breakpoint): Update.
5260 * jv-valprint.c (java_value_print): Update.
5261 * m32c-tdep.c (m32c_m16c_address_to_pointer): Update.
5262 * monitor.c (monitor_read_memory): Update.
5263
5264 Update callers of paddr to use paddress instead (changing
5265 user-visible output to make it more correct):
5266 * arm-tdep.c (arm_push_dummy_call): Update.
5267 * breakpoint.c (insert_bp_location, create_thread_event_breakpoint,
5268 create_breakpoint): Update.
5269 * darwin-nat-info.c (darwin_debug_regions): Update.
5270 * dcache.c (dcache_info): Update.
5271 * dsrec.c (load_srec, make_srec): Update.
5272 * dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program,
5273 dwarf2_frame_cache): Update.
5274 * gcore.c (gcore_copy_callback): Update.
5275 * gnu-nat.c (gnu_xfer_memory): Update.
5276 * mips-linux-nat.c (mips_show_dr): Update.
5277 * monitor.c (monitor_write_memory, monitor_insert_breakpoint,
5278 monitor_remove_breakpoint): Update.
5279 * remote.c (compare_sections_command): Update.
5280 * remote-m32r-sdi.c (m32r_xfer_memory, m32r_insert_breakpoint,
5281 m32r_remove_breakpoint, m32r_insert_watchpoint,
5282 m32r_remove_watchpoint): Update.
5283 * sol-thread.c (info_cb): Update.
5284 * symfile.c (load_progress): Update.
5285
5286 Update callers of paddress or paddr_nz to use hex_string instead
5287 (changes output of internal/error/debug messages only):
5288 * dwarf2read.c (dump_die_shallow): Update.
5289 * frame.c (fprint_field, fprint_frame, frame_pc_unwind,
5290 get_frame_func, create_new_frame): Update.
5291 * hppa-tdep.c (find_unwind_entry, unwind_command): Update.
5292 * ia64-tdep.c (get_kernel_table, ia64_find_proc_info_x,
5293 ia64_get_dyn_info_list): Update.
5294 * maint.c (maintenance_translate_address): Update.
5295 * mi/mi-cmd-var.c (mi_cmd_var_create): Update.
5296 * target.c (target_flash_erase): Update.
5297
5298 Update callers of paddr/paddr_nz to use phex/phex_nz instead,
5299 using an appropriate address size. Remove use of strlen_paddr.
5300 * exec.c (exec_files_info): Update.
5301 * i386-nat.c (i386_show_dr): Update.
5302 * remote.c (remote_flash_erase): Update.
5303 * m32r-rom.c (m32r_load_section): Update.
5304 * monitor.c (monitor_vsprintf, monitor_store_register): Update.
5305 * remote.c (remote_check_symbols, remote_search_memory): Update.
5306 * remote-mips.c (mips_request, mips_common_breakpoint): Update.
5307 * scm-valprint.c (scm_ipruk, scm_scmval_print): Update.
5308 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Update.
5309 * sh-tdep.c (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs,
5310 sh2a_show_regs, sh2a_nofpu_show_regs, sh3e_show_regs,
5311 sh3_dsp_show_regs, sh4_show_regs, sh4_nofpu_show_regs,
5312 sh_dsp_show_regs): Update.
5313 * xcoffsolib.c (sharedlibrary_command): Update.
5314
5315
5316 * maint.c (maint_print_section_info): Add ADDR_SIZE parameter.
5317 Use hex_string_custom instead of paddr.
5318 (print_bfd_section_info): Pass address size.
5319 (print_objfile_section_info): Likewise.
5320
5321 * annotate.h (annotate_source): Add GDBARCH parameter.
5322 (annotate_frame_begin): Likewise.
5323 * annotate.c (annotate_source): Add GDBARCH parameter.
5324 (annotate_frame_begin): Likewise.
5325 * source.c (identify_source_line): Update call to annotate_source.
5326 * stack.c (print_frame_info, print_frame): Update call to
5327 annotate_frame_begin.
5328
5329 * breakpoint.c (describe_other_breakpoints): Add GDBARCH parameter.
5330 (create_breakpoint, create_ada_exception_breakpoint): Update call.
5331
5332 * stack.c (print_block_frame_labels): Add GDBARCH parameter.
5333 (print_frame_label_vars): Update call.
5334
5335 * symmisc.c (print_partial_symbols): Add GDBARCH parameter.
5336 (dump_psymtab): Update call to print_partial_symbols.
5337 (struct print_symbol_args): Add GDBARCH member.
5338 (dump_symtab_1): Set print_symbol_args architecture member.
5339 (print_symbol): Use it.
5340
5341 * windows-tdep.h (windows_xfer_shared_library): Add GDBARCH
5342 parameter.
5343 * windows-tdep.c (windows_xfer_shared_library): Likewise.
5344 * i386-cygwin-tdep.c (struct cpms_data): Add GDBARCH member.
5345 (core_process_module_section): Pass architecture from cpms_data to
5346 windows_xfer_shared_library.
5347 (windows_core_xfer_shared_libraries): Initialize cmps_data
5348 architecture member.
5349 * windows-nat.c (windows_xfer_shared_libraries): Pass architecture
5350 to windows_xfer_shared_library.
5351
5352 * defs.h (print_address): Add GDBARCH parameter.
5353 * printcmd.c (print_address): Add GDBARCH parameter.
5354 (print_scalar_formatted, do_examine): Update call.
5355 * findcmd.c (find_command): Update call.
5356 * tracepoint.c: Include "arch-utils.h".
5357 (trace_find_line_command): Update call.
5358 * tui/tui-disasm.c (tui_disassemble): Update call.
5359
5360 * value.h (print_address_demangle): Add GDBARCH parameter.
5361 * printcmd.c (print_address_demangle): Add GDBARCH parameter.
5362 * c-valprint.c (print_function_pointer_address, c_val_print):
5363 Update call.
5364 * f-valprint.c (f_val_print): Update call.
5365 * gnu-v3-abi.c (gnuv3_print_method_ptr): Update call.
5366 * jv-valprint.c (java_val_print): Update call.
5367 * m2-valprint.c (print_function_pointer_address, m2_val_print):
5368 Update call.
5369 * p-valprint.c (pascal_val_print): Update call.
5370
5371 * disasm.c (gdb_disassemble_info): Install architecture into
5372 di.application_data field.
5373
5374 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5375
5376 * disasm.h (gdb_disassembly): Add GDBARCH parameter.
5377 (gdb_print_insn): Likewise.
5378 * disasm.c (dump_insns): Add GDBARCH parameter. Use it instead
5379 of current_gdbarch.
5380 (do_mixed_source_and_assembly): Add GDBARCH parameter. Pass to
5381 dump_insns.
5382 (do_assembly_only): Likewise.
5383 (gdb_disassembly): Add GDBARCH parameter. Use it instead of
5384 current_gdbarch. Pass to subroutines.
5385 (gdb_print_insn): Add GDBARCH parameter. Use it instead of
5386 current_gdbarch.
5387
5388 * stack.c (struct gdb_disassembly_stub_args): Add GDBARCH member.
5389 (gdb_disassembly_stub): Pass architecture to gdb_disassembly.
5390 (do_gdb_disassembly): Add GDBARCH argument. Store into args.
5391 (print_frame_info): Pass architecture to do_gdb_disassembly.
5392
5393 * printcmd.c (print_formatted): Pass architecture to gdb_print_insn.
5394
5395 * mi/mi-cmd-disas.c: Include "arch-utils.h"
5396 (mi_cmd_disassemble): Pass architecture to gdb_disassembly.
5397
5398 * cli/cli-cmds.c: Include "arch-utils.h".
5399 (print_disassembly): Add GDBARCH parameter. Pass to gdb_disassembly
5400 and tui_show_assembly.
5401 (disassemble_current_function): Pass architecture to
5402 tui_get_low_disassembly_address and print_disassembly.
5403 (disassemble_command): Pass architecture to
5404 tui_get_low_disassembly_address and print_disassembly.
5405
5406 * tui/tui.c (tui_show_assembly): Add GDBARCH parameter. Pass to
5407 tui_update_source_windows_with_addr.
5408
5409 * tui/tui-data.h (struct tui_locator_element): Add GDBARCH member.
5410 (struct tui_source_info): Likewise.
5411 * tui/tui-data.c (tui_clear_win_detail): Clear source_info.gdbarch.
5412
5413 * tui/tui-disasm.c (tui_disassemble): Add GDBARCH parameter.
5414 Pass to gdb_print_insn.
5415 (tui_find_disassembly_address): Add GDBARCH parameter. Pass to
5416 tui_disassemble.
5417 (tui_set_disassem_content): Add GDBARCH parameter. Install into
5418 source_info.gdbarch. Pass to tui_disassemble.
5419 (tui_show_disassem): Add GDBARCH parameter. Pass to
5420 tui_update_source_window.
5421 (tui_show_disassem_and_update_source): Add GDBARCH parameter. Pass to
5422 tui_show_disassem and tui_update_source_window.
5423
5424 (tui_get_begin_asm_address): Return locator architecture in addition
5425 to locator PC value.
5426
5427 (tui_get_low_disassembly_address): Add GDBARCH parameter. Pass to
5428 tui_get_low_disassembly_address.
5429
5430 (tui_vertical_disassem_scroll): Pass architecture to subroutines.
5431
5432 * tui/tui-disasm.h (tui_set_disassem_content): Add GDBARCH parameter.
5433 (tui_show_disassem): Likewise.
5434 (tui_show_disassem_and_update_source): Likewise.
5435 (tui_get_begin_asm_address): Return architecture and PC value.
5436
5437 * tui/tui.h (tui_get_low_disassembly_address): Add GDBARCH parameter.
5438 (tui_show_assembly): Add GDBARCH parameter.
5439
5440 * tui/tui-layout.c (extract_display_start_addr): Return current window
5441 architecture in addition to current PC value.
5442
5443 (tui_set_layout): Update calls to tui_get_low_disassembly_address and
5444 extract_display_start_addr. Pass architecture to
5445 tui_update_source_windows_with_addr.
5446
5447 * tui/tui-source.c: Include "objfiles.h".
5448 (tui_set_source_content): Initialize window architecture.
5449 (tui_show_symtab_source): Add GDBARCH parameter. Pass to
5450 tui_update_source_window_as_is
5451
5452 * tui/tui-source.h (tui_show_symtab_source): Add GDBARCH parameter.
5453
5454 * tui/tui-stack.c (tui_set_locator_info): Add GDBARCH parameter.
5455 Install locator architecture.
5456 (tui_set_locator_filename): Update call.
5457 (tui_show_frame_info): Pass architecture to tui_set_locator_info
5458 and subroutines.
5459
5460 * tui/tui-win.c (make_visible_with_new_height): Pass architecture
5461 to tui_update_source_window.
5462
5463 * tui/tui-winsource.c: Include "objfiles.h".
5464 (tui_display_main): Update call to tui_get_begin_asm_address.
5465 Pass architecture to tui_update_source_windows_with_addr.
5466 (tui_update_source_window): Add GDBARCH parameter. Pass to
5467 tui_update_source_window_as_is.
5468 (tui_update_source_window_as_is): Add GDBARCH parameter.
5469 Pass to tui_set_disassem_content.
5470 (tui_update_source_windows_with_addr): Add GDBARCH parameter.
5471 Pass to subroutines.
5472 (tui_update_source_windows_with_line): Pass objfile architecture
5473 to subroutines.
5474 (tui_horizontal_source_scroll): Pass architecture to
5475 tui_update_source_window_as_is.
5476
5477 * tui/tui-winsource.h (tui_update_source_window): Add GDBARCH
5478 parameter.
5479 (tui_update_source_window_as_is): Likewise.
5480 (tui_update_source_windows_with_addr): Likewise.
5481
5482 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5483
5484 * breakpoint.h (struct breakpoint): New member GDBARCH.
5485 * breakpoint.c: Include "arch-utils.h".
5486 (set_raw_breakpoint_without_location): Add GDBARCH parameter.
5487 Use it to set breakpoint architecture.
5488 (set_raw_breakpoint): Add GDBARCH parameter.
5489 (create_internal_breakpoint): Likewise.
5490 (create_catchpoint): Likewise.
5491 (create_fork_vfork_event_catchpoint): Likewise.
5492 (create_breakpoint): Likewise.
5493 (create_breakpoints): Likewise.
5494 (break_command_really): Likewise.
5495 (create_ada_exception_breakpoint): Likewise.
5496 Update local callers to pass architecture:
5497 (create_internal_breakpoint): Update.
5498 (create_overlay_event_breakpoint): Update.
5499 (create_longjmp_master_breakpoint): Update.
5500 (create_thread_event_breakpoint): Update.
5501 (create_solib_event_breakpoint): Update.
5502 (create_catchpoint): Update.
5503 (create_fork_vfork_event_catchpoint): Update.
5504 (set_momentary_breakpoint): Update.
5505 (clone_momentary_breakpoint): Update.
5506 (create_breakpoint): Update.
5507 (create_breakpoints): Update.
5508 (break_command_really): Update.
5509 (break_command_1): Update.
5510 (set_breakpoint): Update.
5511 (watch_command_1): Update.
5512 (catch_fork_command_1): Update.
5513 (catch_exec_commnd_1): Update.
5514 (handle_gnu_v3_exceptions): Update.
5515 (create_ada_exception_breakpoint): Update.
5516 (catch_ada_exception_command): Update.
5517 (catch_assert_command): Update.
5518 (trace_command): Update.
5519
5520 * breakpoint.h (struct bp_location): New member GDBARCH.
5521 * breakpoint.c (get_sal_arch): New function.
5522 (set_raw_breakpoint): Set location architecture.
5523 (add_location_to_breakpoint): Likewise.
5524 (clone_momentary_breakpoint): Likewise.
5525 (watch_command_1): Likewise.
5526 (update_watchpoint): Likewise.
5527 (bp_loc_is_permanent): Use location architecture instead of
5528 current_gdbarch.
5529 (adjust_breakpoint_address): Add GDBARCH parameter; use it
5530 instead of current_gdbarch.
5531 Update callers of adjust_breakpoint_address to pass
5532 breakpoint location architecture:
5533 (set_raw_breakpoint): Update.
5534 (watch_command_1): Update.
5535
5536 * tracepoint.c: (collect_symbol): Add GDBARCH parameter, use instead
5537 of current_gdbarch.
5538 (add_local_symbols): Add GDBARCH parameter. Pass to collect_symbol.
5539 (encode_actions): Pass tracepoint architecture to add_local_symbols
5540 (encode_actions): Use tracepoint architecture instead of
5541 current_gdbarch. Pass it to add_local_symbols and collect_symbol.
5542
5543 * breakpoint.h (struct breakpoint_ops): Replace last_addr parameter
5544 of print_one callback with last_loc.
5545 * breakpoint.c (print_one_breakpoint_location): Replace last_addr
5546 parameter with last_loc.
5547 (print_one_breakpoint): Likewise.
5548 (do_captured_breakpoint_query): Update call.
5549 (breakpoint_1): Pass last_loc instead of last_addr to
5550 print_one_breakpoint. Pass last location architecture instead of
5551 current_gdbarch to set_next_address.
5552 Update all implementations of the print_one callback:
5553 * breakpoint.c (print_one_catch_fork): Update.
5554 (print_one_catch_vfork): Update.
5555 (print_one_catch_exec): Update.
5556 (print_one_exception_catchpoint): Update.
5557 * ada-lang.c (print_one_exception): Update.
5558 (print_one_catch_exception): Update.
5559 (print_one_catch_exception_unhandled): Update.
5560 (print_one_catch_assert): Update.
5561
5562 * breakpoint.c (print_one_breakpoint_location): Add PRINT_ADDRESS_BITS
5563 parameter. Use it instead of gdbarch_addr_bit (current_gdbarch).
5564 (print_one_breakpoint): Add PRINT_ADDRESS_BITS parameter and pass it
5565 to print_one_breakpoint_location.
5566 (breakpoint_address_bits): New function.
5567 (do_captured_breakpoint_query): Compute number of address bits to print
5568 and pass it to print_one_breakpoint.
5569 (breakpoint_1): Likewise. Use it instead of current_gdbarch.
5570
5571 * breakpoint.h (create_thread_event_breakpoint): Add GDBARCH.
5572 * breakpoint.c (create_thread_event_breakpoint): Likewise.
5573 Update callers to create_thread_event_breakpoint:
5574 * aix-thread.c (pd_enable): Update.
5575 * linux-thread-db.c (enable_thread_event): Update.
5576
5577 * breakpoint.h (create_solib_event_breakpoint): Add GDBARCH.
5578 * breakpoint.c (create_solib_event_breakpoint): Likewise.
5579 Update callers to create_solib_event_breakpoint:
5580 * solib-frv.c (enable_break, enable_break2): Update.
5581 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
5582 * solib-som.c (som_solib_create_inferior_hook): Update.
5583 * solib-darwin.c (darwin_solib_create_inferior_hook): Update.
5584 * solib-svr4.c (enable_break): Update.
5585
5586 * breakpoint.h (insert_single_step_breakpoint): Add GDBARCH.
5587 * breakpoint.c (insert_single_step_breakpoint): Likewise.
5588 Update callers to insert_single_step_breakpoint:
5589 * alpha-tdep.c (alpha_software_single_step): Update.
5590 * arm-linux-tdep.c (arm_linux_software_single_step): Update.
5591 * arm-tdep.c (arm_software_single_step): Update.
5592 * cris-tdep.c (cris_software_single_step): Update.
5593 * rs6000-aix-tdep.c (rs6000_software_single_step): Update.
5594 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Update.
5595 * sparc-tdep.c (sparc_software_single_step): Update.
5596 * spu-tdep.c (spu_software_single_step): Update.
5597 * mips-tdep.c (deal_with_atomic_sequence): Add GDBARCH parameter.
5598 Pass it to insert_single_step_breakpoint.
5599 (mips_software_single_step): Pass architecture to
5600 deal_with_atomic_sequence and insert_single_step_breakpoint.
5601
5602 * breakpoint.h (deprecated_insert_raw_breakpoint): Add GDBARCH.
5603 (deprecated_remove_raw_breakpoint): Likewise.
5604 * breakpoint.c (deprecated_insert_raw_breakpoint): Add GDBARCH.
5605 (deprecated_remove_raw_breakpoint): Likewise.
5606 Update callers to deprecated_insert_raw_breakpoint and
5607 deprecated_remove_raw_breakpoint:
5608 * breakpoint.c (single_step_gdbarch): New static variable.
5609 (insert_single_step_breakpoint): Pass GDBARCH parameter to
5610 deprecated_insert_raw_breakpoint. Store it in single_step_gdbarch.
5611 (remove_single_step_breakpoints): Pass architecture stored in
5612 single_step_gdbarch to deprecated_remove_raw_breakpoint.
5613 * rs6000-nat.c (exec_one_dummy_insn): Update.
5614 * solib-irix.c (enable_break, disable_break): Update.
5615 * procfs.c (procfs_mourn_inferior): Update.
5616 (remove_dbx_link_breakpoint): Update.
5617
5618 * breakpoint.h (set_breakpoint): Add GDBARCH parameter.
5619 (set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
5620 * breakpoint.c (set_breakpoint): Add GDBARCH parameter.
5621 (set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
5622 Update callers to set_breakpoint, set_momentary_breakpoint and
5623 set_momentary_breakpoint_at_pc:
5624 * breakpoint.c (set_momentary_breakpoint_at_pc): Update.
5625 (until_break_command): Update.
5626 * infcall.c (call_function_by_hand): Update.
5627 * infcmd.c (finish_backward, finish_forward): Update.
5628 * infrun.c (insert_step_resume_breakpoint_at_sal): Add GDBARCH
5629 parameter. Pass it to set_momentary_breakpoint.
5630 (insert_longjmp_resume_breakpoint): Add GDBARCH parameter.
5631 Pass it to set_momentary_breakpoint_at_pc.
5632 (handle_inferior_event): Update.
5633 (insert_step_resume_breakpoint_at_frame): Update.
5634 (insert_step_resume_breakpoint_at_caller): Update..
5635 * mi/mi-cmd-break.c: Include "arch-utils.h".
5636 (mi_cmd_break_insert): Update.
5637
5638 * target.h (struct target_ops): Add GDBARCH parameter to
5639 to_insert_breakpoint, to_remove_breakpoint, to_insert_hw_breakpoint,
5640 and to_remove_hw_breakpoint members.
5641 (target_insert_breakpoint, target_remove_breakpoint,
5642 target_insert_hw_breakpoint, target_remove_hw_breakpoint): Add GDBARCH
5643 parameter, pass to target routine.
5644 (memory_remove_breakpoint, memory_insert_breakpoint): Add GDBARCH
5645 parameter.
5646 * target.c (debug_to_insert_breakpoint, debug_to_remove_breakpoint,
5647 debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint): Add
5648 GDBARCH parameter, pass to target routine.
5649 (update_current_target): Update function signature.
5650 * breakpoint.c (insert_bp_location, remove_breakpoint,
5651 deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint):
5652 Pass architecture to target_ routines.
5653 Update all implementations of the target breakpoint routines to take
5654 GDBARCH parameter and use it instead of GDBARCH as appropriate:
5655 * corelow.c (ignore): Update.
5656 * exec.c (ignore): Update.
5657 * mem-break.c (memory_insert_breakpoint): Update.
5658 (memory_remove_breakpoint): Update.
5659 * monitor.c (monitor_insert_breakpoint): Update.
5660 (monitor_remove_breakpoint): Update.
5661 * record.c (record_insert_breakpoint): Update.
5662 (record_beneath_to_insert_breakpoint): Update.
5663 (record_remove_breakpoint): Update.
5664 (record_beneath_to_remove_breakpoint): Update.
5665 * remote.c (remote_insert_breakpoint): Update.
5666 (remote_remove_breakpoint): Update.
5667 (remote_insert_hw_breakpoint): Update.
5668 (remote_remove_hw_breakpoint): Update.
5669 * remote-m32r-sdi.c (m32r_insert_breakpoint): Update.
5670 (m32r_remove_breakpoint): Update.
5671 * remote-mips.c (mips_insert_breakpoint): Update.
5672 (mips_remove_breakpoint): Update.
5673 * i386-nat.c (i386_insert_hw_breakpoint): Update.
5674 (i386_remove_hw_breakpoint): Update.
5675 * nto-procfs.c (procfs_insert_breakpoint): Update.
5676 (procfs_remove_breakpoint): Update.
5677 (procfs_insert_hw_breakpoint): Update.
5678 (procfs_remove_hw_breakpoint): Update.
5679
5680 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5681
5682 * frame.h (frame_unwind_arch): New.
5683 (frame_unwind_caller_arch): Likewise.
5684 * frame-unwind.h (frame_prev_arch_ftype): New type.
5685 (struct frame_unwind): New member prev_arch.
5686 * frame.c (struct frame_info): New member prev_arch.
5687 (frame_unwind_arch): New function.
5688 (frame_unwind_caller_arch): Likewise..
5689 (get_frame_arch): Reimplement in terms of frame_unwind_arch.
5690 * sentinel-frame.c (sentinel_frame_prev_arch): New function.
5691 (sentinel_frame_unwinder): Install it.
5692
5693 * frame.c (frame_pc_unwind): Use frame_unwind_arch instead
5694 of get_frame_arch.
5695 (frame_unwind_register_value): Likewise.
5696 (frame_unwind_register_signed): Likewise.
5697 (frame_unwind_register_unsigned): Likewise.
5698 * frame-unwind.c (frame_unwind_got_optimized): Likewise.
5699 (frame_unwind_got_register): Likewise.
5700 (frame_unwind_got_constant): Likewise.
5701 (frame_unwind_got_bytes): Likewise.
5702 (frame_unwind_got_address): Likewise.
5703
5704 * frame.h (enum frame_type): New value ARCH_FRAME.
5705 * frame.c (fprint_frame_type): Handle ARCH_FRAME.
5706 * stack.c (print_frame_info): Likewise.
5707
5708 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5709
5710 * target.h (struct target_ops): New member to_thread_architecture.
5711 (target_thread_architecture): New macro.
5712 * target.c (update_current_target): Inherit to_thread_architecture.
5713 (default_thread_architecture): New function.
5714 (debug_to_thread_architecture): New function.
5715 (setup_target_debug): Handle to_thread_architecture.
5716
5717 * regcache.h (get_thread_arch_regcache): New.
5718 * regcache.c (struct regcache_list): New data type.
5719 (current_regcache): Hold regcache list instead of single regcache.
5720 (current_thread_ptid, current_thread_arch): New static variables.
5721 (get_thread_arch_regcache): New function.
5722 (get_thread_regcache): Use it. Call target_thread_architecture.
5723 (regcache_thread_ptid_changed): Update to current_regcache changes.
5724 (registers_changed): Likewise. Reset current_thread_arch and
5725 current_thread_ptid.
5726
5727 * remote.c (remote_wait): Access target registers in target_gdbarch.
5728 * linux-nat.c (linux_nat_do_thread_registers): Likewise.
5729 * proc-service.c (ps_lgetregs, ps_lsetregs): Likewise.
5730 (ps_lgetfpregs, ps_lsetfpregs): Likewise.
5731 * sol-thread.c (ps_lgetregs, ps_lsetregs): Likewise.
5732 (ps_lgetfpregs, ps_lsetfpregs): Likewise.
5733 * solib-svr4.c (enable_break): Likewise.
5734 (svr4_relocate_main_executable): Likewise.
5735
5736 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5737
5738 * python/python-internal.h (struct language_defn): Declare.
5739 (python_gdbarch, python_language): Likewise.
5740 (ensure_python_env): Add prototype.
5741 (make_cleanup_py_restore_gil): Remove prototype.
5742
5743 * python/python.c: Include "arch-utils.h", "value.h" and "language.h".
5744 (python_gdbarch, python_language): New global variables.
5745 (struct python_env): New data type.
5746 (ensure_python_env, restore_python_env): New functions.
5747 (eval_python_from_control_command): Call ensure_python_env to
5748 install current architecture and language.
5749 (python_command, gdbpy_new_objfile): Likewise.
5750 * python/python-cmd.c: Include "arch-utils.h" and "language.h".
5751 (cmdpy_destroyer, cmdpy_function, cmdpy_completer): Call
5752 ensure_python_env.
5753 * python/python-type.c (clean_up_objfile_types): Likewise.
5754 * python/python-objfile.c: Include "language.h".
5755 (clean_up_objfile): Call ensure_python_env.
5756 * python/python-prettyprint.c (apply_val_pretty_printer): Likewise.
5757 (apply_varobj_pretty_printer): Do not call PyGILState_Ensure.
5758 * varobj.c (varobj_ensure_python_env): New helper function.
5759 (varobj_get_display_hint, update_dynamic_varobj_children,
5760 install_default_visualizer, varobj_set_visualizer, free_variable,
5761 value_get_print_value): Call it.
5762 (value_get_print_value): Add varobj argument instead of pretty
5763 printer argument. Update all callers.
5764
5765 * python/python-utils.c (py_gil_restore, make_cleanup_py_restore_gil):
5766 Remove.
5767
5768 * value.h (internal_function_fn): Add GDBARCH and LANGUAGE argument.
5769 (call_internal_function): Likewise.
5770 * value.c (call_internal_function): Likewise. Pass to handler.
5771 * eval.c (evaluate_subexp_standard): Update call.
5772 * python/python-function.c: Include "language.h".
5773 (fnpy_call): Add GDBARCH and LANGAUAGE arguments and call
5774 make_cleanup_python_env.
5775
5776 * python/python-value.c (builtin_type_pyint, builtin_type_pyfloat,
5777 builtin_type_pylong, builtin_type_pybool, builtin_type_pychar,
5778 valpy_str): Use python_gdbarch and python_language instead of
5779 current_gdbarch and current_language.
5780 * python/python-type.c (typy_lookup_typename): Likewise.
5781
5782 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5783
5784 * arch-utils.c (selected_byte_order): Return target_byte_order_user.
5785 (show_endian): Use target_byte_order_user if specified; otherwise
5786 use get_current_arch () instead of current_gdbarch.
5787 (show_architecture): Use set_architecture_string if specified;
5788 otherwise use get_current_arch () instead of current_gdbarch.
5789 (get_current_arch): New function.
5790 * arch-utils.h (get_current_arch): Add prototype.
5791
5792 * osabi.c (show_osabi): Use get_current_arch () instead of
5793 current_gdbarch.
5794
5795 * findcmd.c: Include "arch-utils.h".
5796 (parse_find_args): Add BIG_P argument. Use it instead of byte order
5797 of current_gdbarch.
5798 (find_command): Use get_current_arch () instead of current_gdbarch.
5799 Pass byte order to parse_find_args.
5800
5801 * maint.c: Include "arch-utils.h".
5802 (maintenance_print_architecture): Use get_current_arch () instead
5803 of current_gdbarch.
5804
5805 * reggroups.c: Include "arch-utils.h".
5806 (maintenance_print_reggroups): Use get_current_arch () instead
5807 of current_gdbarch.
5808
5809 * symfile.c: Include "arch-utils.h".
5810 (overlay_load_command): Use get_current_arch () instead of
5811 current_gdbarch.
5812
5813 * value.c: Include "arch-utils.h".
5814 (show_convenience): Use get_current_arch () instead of
5815 current_gdbarch.
5816
5817 * tui/tui-regs.c: Include "arch-utils.h".
5818 (tui_reg_next_command): Use get_current_arch () instead of
5819 current_gdbarch.
5820
5821 * mi/mi-main.c: Include "arch-utils.h".
5822 (mi_cmd_data_read_memory): Use get_current_arch () instead of
5823 current_gdbarch.
5824
5825 * parse.c: Include "arch-utils.h".
5826 (parse_exp_in_context): Use get_current_arch () instead of
5827 current_gdbarch.
5828
5829 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5830
5831 * gdbtypes.c (make_pointer_type, make_reference_type,
5832 smash_to_memberptr_type, lookup_array_range_type, check_stub_method):
5833 Use type architecture instead of current_gdbarch.
5834
5835 * gdbtypes.h (address_space_name_to_int, address_space_int_to_name):
5836 Add GDBARCH paramter.
5837 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name):
5838 Add GDBARCH parameter. Use it instead of current_gdbarch.
5839 * c-typeprint.c (c_type_print_modifier): Update call.
5840 * parse.c (push_type_address_space): Likewise.
5841
5842 * findvar.c (extract_typed_address, store_typed_address): Use type
5843 architecture instead of current_gdbarch.
5844
5845 * value.c (value_as_address, unpack_field_as_long): Use type architecture
5846 instead of current_gdbarch.
5847
5848 * doublest.c (floatformat_from_length): Add GDBARCH argument. Use it
5849 instead of current_gdbarch.
5850 (floatformat_from_type): Pass type architecture.
5851
5852 * infcall.c (find_function_addr): Use type architecture instead
5853 of current_gdbarch.
5854
5855 * valarith.c (value_bitstring_subscript, value_x_binop, value_neg,
5856 value_bit_index): Use type architecture instead of current_gdbarch.
5857 * valops.c (value_cast, value_slice): Likewise.
5858
5859 * value.h (modify_field): Add TYPE argument.
5860 * value.c (modify_field): Add TYPE argument. Use type architecture
5861 instead of current_gdbarch.
5862 (set_internalvar_component): Likewise.
5863 * eval.c (evaluate_struct_tuple): Update call.
5864 * valops.c (value_assign): Likewise.
5865 * ada-lang.c (modify_general_field): Likewise. Add TYPE argument.
5866 (make_array_descriptor): Update calls.
5867 (move_bits): Add BITS_BIG_ENDIAN_P argument. Use it instead of
5868 current_gdbarch.
5869 (ada_value_assign, value_assign_to_component): Update calls.
5870 (decode_packed_array, ada_value_primitive_packed_val, ada_value_assign,
5871 value_assign_to_component): Use type arch instead of current_gdbarch.
5872
5873 * printcmd.c (float_type_from_length): Remove GDBARCH argument,
5874 use type architecture instead.
5875 (print_scalar_formatted, printf_command): Update calls. Use type
5876 architecture instead of current_gdbarch.
5877 * valprint.c (val_print_type_code_int): Use type architecture
5878 instead of current_gdbarch.
5879 * varobj.c (value_get_print_value): Likewise.
5880 * python/python-prettyprint.c (print_string_repr): Add GDBARCH
5881 argument. Use it instead of current_gdbarch.
5882 (apply_val_pretty_printer): Update call.
5883
5884 * ada-valprint.c (ada_val_print_1): Use type architecture instead
5885 of current_gdbarch.
5886 * c-valprint.c (print_function_pointer_address): Add GDBARCH argument.
5887 Use it instead of current_gdbarch.
5888 (c_val_print): Update calls passing type architecture.
5889 * f-valprint.c (f_val_print): Use type architecture instead of
5890 current_gdbarch.
5891 * jv-valprint (java_value_print): Likewise.
5892 * m2-valprint.c (print_function_pointer_address): Add GDBARCH argument.
5893 Use it instead of current_gdbarch.
5894 (print_unpacked_pointer): Update calls passing type architecture.
5895 * scm-valprint.c (scm_scmval_print): Use type architecture instead of
5896 current_gdbarch.
5897
5898 * gnu-v3-abi.c (get_class_arch): Remove.
5899 (gnuv3_rtti_type): Use get_type_arch instead of get_class_arch. Remove
5900 special-case check for Java classes.
5901 (gnuv3_virtual_fn_field, gnuv3_baseclass_offset, gnuv3_print_method_ptr,
5902 gnuv3_method_ptr_size, gnuv3_make_method_ptr, gnuv3_method_ptr_to_value):
5903 Use get_type_arch instead of get_class_arch.
5904
5905 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
5906
5907 * gdbtypes.h (TYPE_OBJFILE_OWNED, TYPE_OWNER): New macros.
5908 (TYPE_OBJFILE, TYPE_ALLOC, TYPE_ZALLOC): Reimplement.
5909 (alloc_type_arch): Add prototype.
5910 (alloc_type_copy): Likewise.
5911 (get_type_arch): Likewise.
5912 (arch_type): Likewise.
5913 (arch_integer_type): Likewise.
5914 (arch_character_type): Likewise.
5915 (arch_boolean_type): Likewise.
5916 (init_float_type): Remove, replace by ...
5917 (arch_float_type): ... this.
5918 (init_complex_type): Remove, replace by ...
5919 (arch_complex_type): ... this.
5920 (init_flags_type): Remove, replace by ...
5921 (arch_flags_type): ... this.
5922 (init_composite_type): Remove, replace by ...
5923 (arch_composite_type): ... this.
5924
5925 * gdbtypes.c (alloc_type): No longer support NULL objfile.
5926 (init_type): Likewise.
5927 (alloc_type_arch): New function.
5928 (alloc_type_copy): New function.
5929 (get_type_arch): New function.
5930
5931 (smash_type): Preserve type ownership information.
5932 (make_pointer_type, make_reference_type, make_function_type,
5933 smash_to_memberptr_type, smash_to_method_type): No longer
5934 preserve OBJFILE across smash_type calls.
5935 (make_pointer_type, make_reference_type, make_function_type,
5936 lookup_memberptr_type, lookup_methodptr_type, allocate_stub_method,
5937 create_range_type, create_array_type, create_set_type, copy_type):
5938 Use alloc_type_copy when allocating types.
5939 (check_typedef): Use alloc_type_arch.
5940 (copy_type_recursive): Likewise. Preserve type ownership data
5941 after copying type.
5942 (recursive_dump_type): Dump type ownership data.
5943 (alloc_type_instance): Update type ownership check.
5944 (copy_type, copy_type_recursive): Likewise.
5945
5946 (arch_type): New function.
5947 (arch_integer_type): Likewise.
5948 (arch_character_type): Likewise.
5949 (arch_boolean_type): Likewise.
5950 (init_float_type): Remove, replace by ...
5951 (arch_float_type): ... this.
5952 (init_complex_type): Remove, replace by ...
5953 (arch_complex_type): ... this.
5954 (init_flags_type): Remove, replace by ...
5955 (arch_flags_type): ... this.
5956 (append_flags_type_flag): Move down.
5957 (init_composite_type): Remove, replace by ...
5958 (arch_composite_type): ... this.
5959 (append_composite_type_field_aligned,
5960 append_composite_type_field): Move down.
5961
5962 * gdbarch.c (gdbtypes_post_init): Allocate all types
5963 using per-architecture routines.
5964 * ada-lang.c (ada_language_arch_info): Likewise.
5965 * f-lang.c (build_fortran_types): Likewise.
5966 * jv-lang.c (build_java_types): Likewise.
5967 * m2-lang.c (build_m2_types): Likewise.
5968 * scm-lang.c (build_scm_types): Likewise.
5969
5970 * ada-lang.c (ada_type_of_array): Use alloc_type_copy.
5971 (packed_array_type): Likewise.
5972 (ada_template_to_fixed_record_type_1): Likewise.
5973 (template_to_static_fixed_type): Likewise.
5974 (to_record_with_fixed_variant_part): Likewise.
5975 (to_fixed_variant_branch_type): Likewise.
5976 (to_fixed_array_type): Likewise.
5977 (to_fixed_range_type): Likewise.
5978 (empty_record): Use type instead of objfile argument.
5979 Use alloc_type_copy.
5980 (to_fixed_variant_branch_type): Update call to empty_record.
5981 * jv-lang.c (type_from_class): Use alloc_type_arch.
5982
5983 * arm-tdep.c (arm_ext_type): Allocate per-architecture type.
5984 * i386-tdep.c (i386_eflags_type, i386_mxcsr_type, i387_ext_type,
5985 i386_mmx_type, i386_sse_type): Likewise.
5986 * ia64-tdep.c (ia64_ext_type): Likewise.
5987 * m32c-tdep.c (make_types): Likewise.
5988 * m68k-tdep.c (m68k_ps_type, m68881_ext_type): Likewise.
5989 * rs6000-tdep.c (rs6000_builtin_type_vec64,
5990 rs6000_builtin_type_vec128): Likewise.
5991 * sparc-tdep.c (sparc_psr_type, sparc_fsr_type): Likewise.
5992 * sparc64-tdep.c (sparc64_pstate_type, sparc64_fsr_type,
5993 sparc64_fprs_type): Likewise.
5994 * spu-tdep.c (spu_builtin_type_vec128): Likewise.
5995 * xtensa-tdep.c (xtensa_register_type): Likewise.
5996 * linux-tdep.c (linux_get_siginfo_type): Likewise.
5997 * target-descriptions.c (tdesc_gdb_type): Likewise.
5998 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
5999
6000 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6001
6002 * i386-tdep.h (struct gdbarch_tdep): Add i386_eflags_type and
6003 i386_mxcsr_type members.
6004 (i386_eflags_type): Make into function.
6005 (i386_mxcsr_type): Likewise.
6006 * i386-tdep.c (i386_eflags_type): Make into function.
6007 (i386_mxcsr_type): Likewise.
6008 (i386_register_type): Update uses.
6009 (i386_init_types): Remove.
6010 (_initialize_i386_tdep): Do not call it.
6011 * amd64-tdep.c (amd64_register_type): Update uses.
6012
6013 * m68k-tdep.h (struct gdbarch_tdep): Add m68k_ps_type member.
6014 * m68k-tdep.c (m68k_ps_type): Make into function.
6015 (m68k_register_type): Update use.
6016 (m68k_init_types): Remove.
6017 (_initialize_m68k_tdep): Do not call it.
6018
6019 * sparc-tdep.h (struct gdbarch_tdep): Add sparc_psr_type,
6020 sparc_fsr_type, sparc64_pstate_type, sparc64_fsr_type, and
6021 sparc64_fprs_type members.
6022 * sparc-tdep.c (sparc_psr_type): Make into function.
6023 (sparc_fsr_type): Likewise.
6024 (sparc32_register_type): Update uses.
6025 (sparc_init_types): Remove.
6026 (_initialize_sparc_tdep): Do not call it.
6027 * sparc64-tdep.c (sparc64_pstate_type): Make into function.
6028 (sparc64_fsr_type): Likewise.
6029 (sparc64_fprs_type): Likewise.
6030 (sparc64_register_type): Update uses.
6031 (sparc64_init_types): Remove.
6032 (_initialize_sparc64_tdep): Likewise.
6033
6034 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6035
6036 * gdbtypes.h (builtin_type_ieee_single, builtin_type_ieee_double,
6037 builtin_type_i387_ext, builtin_type_m68881_ext, builtin_type_arm_ext,
6038 builtin_type_ia64_spill, builtin_type_ia64_quad): Remove.
6039 (init_float_type, init_complex_type): Add prototypes.
6040 * gdbtypes.c (builtin_type_ieee_single, builtin_type_ieee_double,
6041 builtin_type_i387_ext, builtin_type_m68881_ext, builtin_type_arm_ext,
6042 builtin_type_ia64_spill, builtin_type_ia64_quad): Remove.
6043 (_initialize_gdbtypes): Do not initialize them.
6044 (build_flt): Rename to ...
6045 (init_float_type): ... this. Make global.
6046 (build_complex): Rename to ...
6047 (init_complex_type): ... this. Make global. Remove BIT argument.
6048 (gdbtypes_post_init): Update calls.
6049
6050 * ada-lang.c (ada_language_arch_info): Use init_float_type.
6051 * jv-lang.c (build_java_types): Likewise.
6052 * m2-lang.c (build_m2_types): Likewise.
6053 * f-lang.c (build_fortran_types): Use init_float_type and
6054 init_complex_type.
6055
6056 * target-descriptions.c (tdesc_gdb_type): Call init_float_type instead
6057 of using builtin_type_ieee_single, builtin_type_ieee_double, or
6058 builtin_type_arm_ext.
6059
6060 * ia64-tdep.h (struct gdbarch_tdep): Add ia64_ext_type member.
6061 * ia64-tdep.c (builtin_type_ia64_ext): Remove.
6062 (_initialize_ia64_tdep): Do not initialize it.
6063 (floatformat_valid, floatformat_ia64_ext, floatformats_ia64_ext):
6064 Move up.
6065 (ia64_ext_type): New function.
6066 (ia64_register_reggroup_p, ia64_convert_register_p,
6067 ia64_register_to_value, ia64_value_to_register,
6068 ia64_extract_return_value, ia64_store_return_value): Use ia64_ext_type
6069 instead of builtin_type_ia64_ext.
6070
6071 * i386-tdep.h (struct gdbarch_tdep): Add i387_ext_type member.
6072 (i387_ext_type): Add prototype.
6073 * i386-tdep.c (i387_ext_type): New function.
6074 (i386_extract_return_value, i386_store_return_value,
6075 i386_register_type): Use it instead of builtin_type_i387_ext.
6076 * amd64-tdep.c (amd64_register_type): Likewise.
6077 * i387-tdep.c (print_i387_value, i387_register_to_value,
6078 i387_value_to_register): Likewise.
6079 (print_i387_value, print_i387_ext): Add GDBARCH argument.
6080 (print_i387_ext, i387_print_float_info): Pass to subroutines.
6081
6082 * m68k-tdep.h (struct gdbarch_tdep): Add m68881_ext_type member.
6083 * m68k-tdep.c (m68881_ext_type): New function.
6084 (m68k_register_type, m68k_convert_register_p): Use it instead
6085 of builtin_type_m68881_ext.
6086
6087 * arm-tdep.h (struct gdbarch_tdep): Add arm_ext_type member.
6088 * arm-tdep.c (arm_ext_type): New function.
6089 (arm_register_type): Use it instead of builtin_type_arm_ext.
6090
6091 * alpha-tdep.c (alpha_register_type): Use builtin types
6092 instead of builtin_type_ieee_double.
6093
6094 * mips-tdep.c (mips_float_register_type, mips_double_register_type):
6095 Remove.
6096 (mips_register_type): Use builtin types instead of
6097 builtin_type_ieee_single and builtin_type_ieee_double.
6098 (mips_print_fp_register): Use builtin types instead of
6099 mips_float_register_type and mips_double_register_type.
6100
6101 * hppa-tdep.c (hppa32_register_type, hppa64_register_type):
6102 Use builtin types instead of builtin_type_ieee_single and
6103 builtin_type_ieee_double.
6104
6105 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6106
6107 * gdbtypes.h (builtin_type_int0, builtin_type_int8, builtin_type_uint8,
6108 builtin_type_int16, builtin_type_uint16, builtin_type_int32,
6109 builtin_type_uint32, builtin_type_int64, builtin_type_uint64,
6110 builtin_type_int128, builtin_type_uint128): Remove.
6111 (struct builtin_type): New members builtin_int0, builtin_int8,
6112 builtin_uint8, builtin_int16, builtin_uint16, builtin_int32,
6113 builtin_uint32, builtin_int64, builtin_uint64, builtin_int128,
6114 and builtin_uint128.
6115 * gdbtypes.c (builtin_type_int0, builtin_type_int8, builtin_type_uint8,
6116 builtin_type_int16, builtin_type_uint16, builtin_type_int32,
6117 builtin_type_uint32, builtin_type_int64, builtin_type_uint64,
6118 builtin_type_int128, builtin_type_uint128): Remove.
6119 (_initialize_gdbtypes): Do not initialize them.
6120 (gdbtypes_post_init): Initialize fixed-size integer types.
6121
6122 * dwarf2expr.c (unsigned_address_type, signed_address_type): Add
6123 GDBARCH argument. Return platform-specific type.
6124 (dwarf2_read_address, execute_stack_op): Update calls.
6125
6126 * target-descriptions.c (tdesc_gdb_type): Use platform-specific types
6127 instead of global builtin_int_... variables.
6128 * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
6129 * printcmd.c (do_examine): Likewise.
6130 * jv-exp.y (parse_number): Likewise.
6131
6132 * alpha-tdep.c (alpha_register_type, alpha_push_dummy_call,
6133 alpha_store_return_value): Likewise.
6134 * amd64-linux-tdep.c (amd64_linux_register_type): Likewise.
6135 * amd64-tdep.c (amd64_register_type): Likewise.
6136 * arm-tdep.c (arm_register_type): Likewise.
6137 * avr-tdep.c (avr_register_type): Likewise.
6138 * cris-tdep.c (cris_register_type, crisv32_register_type): Likewise.
6139 * frv-tdep.c (frv_register_type): Likewise.
6140 * h8300-tdep.c h8300_register_type): Likewise.
6141 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_register_type,
6142 hppa64_register_type): Likewise.
6143 * i386-tdep.c (i386_mmx_type, i386_sse_type): Likewise.
6144 * iq2000-tdep.c (iq2000_register_type): Likewise.
6145 * lm32-tdep.c (lm32_register_type, lm32_push_dummy_call): Likewise.
6146 * m32r-tdep.c (m32r_register_type): Likewise.
6147 * m68hc11-tdep.c (m68hc11_register_type, m68hc11_pseudo_register_read,
6148 m68hc11_pseudo_register_write): Likewise.
6149 * m68k-tdep.c (m68k_register_type): Likewise.
6150 * m88k-tdep.c (m88k_register_type, m88k_store_arguments): Likewise.
6151 * mep-tdep.c (mep_register_type): Likewise.
6152 * mips-tdep.c (mips_register_type, mips_pseudo_register_type,
6153 mips_print_fp_register): Likewise.
6154 * moxie-tdep.c (moxie_register_type): Likewise.
6155 * mt-tdep.c (mt_copro_register_type, mt_register_type): Likewise.
6156 * rs6000-tdep.c (rs6000_builtin_type_vec64,
6157 rs6000_builtin_type_vec128): Likewise.
6158 * score-tdep.c (score_register_type): Likewise.
6159 * sparc-tdep.c (sparc32_register_type, sparc32_store_arguments):
6160 Likewise.
6161 * sparc64-tdep.c (sparc64_register_type, sparc64_store_arguments):
6162 Likewise.
6163 * spu-tdep.c (spu_builtin_type_vec128, spu_register_type): Likewise.
6164 * v850-tdep.c (v850_register_type): Likewise.
6165 * xstormy16-tdep.c (xstormy16_register_type): Likewise.
6166 * xtensa-tdep.c (xtensa_register_type): Likewise.
6167
6168 * mt-tdep.c (struct gdbarch_tdep): New data structure.
6169 (mt_gdbarch_init): Alloc TDEP structures.
6170 (mt_register_type): Cache coprocessor type in TDEP instead of
6171 static global variable.
6172
6173 * xtensa-tdep.h (struct gdbarch_tdep): Add type_entries member.
6174 * xtensa-tdep.c (type_entries): Remove.
6175 (xtensa_register_type): Cache fixed-size types in TDEP instead
6176 of in global variable.
6177
6178 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6179
6180 * gdbtypes.h (builtin_type_true_char): Remove.
6181 (builtin_type_true_unsigned_char): Likewise.
6182 (struct builtin_type): Add builtin_true_char and
6183 builtin_true_unsigned_char members.
6184 * gdbtypes.c (builtin_type_true_char): Remove.
6185 (builtin_type_true_unsigned_char): Likewise.
6186 (_initialize_gdbtypes): Do not initialize them.
6187 (gdbtypes_post_init): Initialize builtin_true_char and
6188 builtin_true_unsigned_char members of builtin_type.
6189
6190 * printcmd.c (print_scalar_formatted): Use builtin_type
6191 members instead of builtin_type_true_char and
6192 builtin_type_true_unsigned_char.
6193 * ada-valprint.c (ada_val_print_1): Likewise.
6194
6195 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6196
6197 * gdbtypes.h (builtin_type_void): Remove.
6198 * gdbtypes.c (builtin_type_void): Remove.
6199 (_initialize_gdbtypes): Do not initialize it.
6200
6201 (safe_parse_type): Add GDBARCH argument. Use it to construct
6202 void return type.
6203 (check_stub_method): Update call.
6204
6205 * infcall.c (call_function_by_hand): Use platform-specific type
6206 instead of builtin_type_void.
6207 * valops.c (value_cast): Use input void type instead of
6208 builtin_type_void.
6209
6210 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6211
6212 * ada-lang.c (assign_component): Use platform-specific integer type
6213 instead of builtin_type_int32 type.
6214 (ada_evaluate_subexp) [OP_ATR_SIZE]: Likewise.
6215
6216 * ax-gdb.c (gen_expr) [UNOP_NEG]: Use platform-specific integer type
6217 instead of builtin_type_int8 type.
6218 * valarith.c (value_x_unop): Likewise.
6219 * python/python-value.c (valpy_absolute): Avoid reference to
6220 builtin_type_int8 type.
6221
6222 * eval.c (evaluate_subexp_standard): Use platform-specific integer
6223 type instead of builtin_type_int8 as EVAL_SKIP return value type.
6224 * ada-lang.c (ada_evaluate_subexp): Likewise.
6225 * jv-lang.c (evaluate_subexp_java): Likewise.
6226 * m2-lang.c (evaluate_subexp_modula2): Likewise.
6227 * scm-lang.c (evaluate_exp): Likewise.
6228
6229 * value.h (value_bitstring): Add INDEX_TYPE argument.
6230 * valops.c (value_bitstring): Add INDEX_TYPE argument, use it instead
6231 of builtin_type_int32 as base range type.
6232 * eval.c (evaluate_subexp_standard): Update value_bitstring call.
6233
6234 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6235
6236 * gdbtypes.c (lookup_array_range_type): Add prototype.
6237 (lookup_string_range_type): Likewise.
6238 * gdbtypes.c (lookup_array_range_type): New function.
6239 (lookup_string_range_type): Likewise.
6240
6241 * ax-gdb.c (gen_repeat): Use lookup_array_range_type.
6242 * parse.c (follow_types): Likewise.
6243 * jv-lang.c (java_array_type): Likewise.
6244 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
6245 * mt-tdep.c (mt_register_type): Likewise.
6246 * sh-tdep.c (sh_sh4_build_float_register_type): Likewise.
6247 * sh64-tdep.c (sh64_build_float_register_type): Likewise.
6248 * value.c (allocate_repeat_value): Likewise.
6249 * valops.c (value_array, value_cstring): Likewise.
6250 * valops.c (value_string): Use lookup_string_range_type.
6251
6252 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6253
6254 * m2-typeprint.c (m2_print_bounds, m2_is_long_set_of_type): Remove
6255 redundant check for NULL TYPE_TARGET_TYPE.
6256 * m2-valprint.c (m2_print_long_set): Likewise.
6257 * p-valprint.c (pascal_type_print_base): Likewise.
6258
6259 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6260
6261 * printcmd.c (next_gdbarch): New static variable.
6262 (set_next_address, do_examine, x_command): Set it.
6263 (decode_format): Use 'a' size to indicate width of an address.
6264 (do_examine): Add GDBARCH argument. Handle 'a' size.
6265 (x_command): Pass architecture to do_examine.
6266 Error if called without argument the first time.
6267 (do_one_display): Pass architecture to do_examine.
6268
6269 (examine_i_type, examine_b_type, examine_h_type, examine_w_type,
6270 examine_g_type): Remove.
6271 (_initialize_printcmd): Do not initialize them.
6272 (do_examine): Use builin_type_int... instead of examine_..._type.
6273
6274 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6275
6276 * gdbtypes.h (struct builtin_type): Add internal_fn member.
6277 * gdbtypes.c (gdbtypes_post_init): Initialize it.
6278 * value.c (internal_fn_type): Remove.
6279 (_initialize_values): Do not initialize it.
6280
6281 * value.c (struct internalvar): Add enum internalvar_kind type and
6282 kind member. Restructure union internalvar_data type. Remove type,
6283 canonical, and make_value members.
6284 (init_if_undefined_command): Update for data structure changes.
6285 (create_internalvar): Likewise.
6286 (create_internalvar_type_lazy): Likewise.
6287 (get_internalvar_integer): Likewise.
6288 (get_internalvar_function): Likewise.
6289 (set_internalvar_component): Likewise.
6290 (set_internalvar): Likewise.
6291 (set_internalvar_integer): Likewise.
6292 (set_internalvar_function): Likewise.
6293 (clear_internalvar): Likewise.
6294 (add_internal_function): Likewise.
6295 (preserve_one_internalvar): New function.
6296 (preserve_values): Call it.
6297
6298 * value.h (value_of_internalvar): Add GDBARCH parameter.
6299 (internalvar_make_value): Likewise.
6300 * value.c (value_of_internalvar): Add GDBARCH parameter. Pass it to
6301 make_value callback. Use it to generate per-architecture result value
6302 types for internal variables with no pre-defined type. Update for data
6303 structure changes.
6304 (show_convenience): Pass architecture to value_of_internalvar.
6305 * eval.c (evaluate_subexp_standard): Likewise.
6306 * infrun.c (siginfo_make_value): Add GDBARCH parameter. Use it
6307 instead of current frame architecture. Return per-architecture type.
6308
6309 * value.h (set_internalvar_string): Add prototype.
6310 * value.c (set_internalvar_string): New function.
6311 * tracepoint.c (set_traceframe_context): Use it.
6312
6313 2009-07-02 Ulrich Weigand <uweigand@de.ibm.com>
6314
6315 * jv-lang.h (java_int_type, java_byte_type, java_short_type,
6316 java_long_type, java_boolean_type, java_char_type, java_float_type,
6317 java_double_type, java_void_type): Remove.
6318 (struct builtin_java_type): New data type.
6319 (builtin_java_type): Add prototype.
6320 (java_primitive_type): Add GDBARCH argument.
6321 (java_primitive_type_from_name): Likewise.
6322 (type_from_class): Likewise.
6323
6324 * jv-lang.c (java_int_type, java_byte_type, java_short_type,
6325 java_long_type, java_boolean_type, java_char_type, java_float_type,
6326 java_double_type, java_void_type): Remove.
6327
6328 (build_java_types, builtin_java_type): New functions.
6329 (java_type_data): New static variable.
6330 (_initialize_java_language): Initialize it. No longer initialize
6331 global types.
6332 (java_language_arch_info): Use per-architecture types.
6333
6334 (java_primitive_type): Add GDBARCH argument. Return per-architecture
6335 type instead of refering to global variable.
6336 (java_primitive_type_from_name): Add GDBARCH argument.
6337 (java_primitive_type_name): New function.
6338 (java_demangled_signature_length): Use it instead of
6339 java_primitive_type_from_name.
6340 (java_demangled_signature_copy): Likewise.
6341
6342 (type_from_class): Add GDBARCH argument. Pass to java_link_class_type,
6343 java_primitive_type, and recursive type_from_class call.
6344 (java_link_class_type): Add GDBARCH argument. Pass to type_from_class
6345 calls. Use per-architecture types instead of global types.
6346
6347 * jv-exp.y (parse_java_type): New define.
6348 Use per-architecture types instead of global types througout.
6349
6350 * jv-valprint.c (java_value_print): Pass architecture to
6351 type_from_class and java_primitive_type_from_name. Use per-
6352 architecture types instead of global types.
6353
6354 2009-07-01 Doug Evans <dje@google.com>
6355
6356 * NEWS: Mention biarch amd64-linux gdbserver and hardware watchpoint
6357 support for i386-linux, amd64-linux, and i386-win32 builds of
6358 gdbserver.
6359
6360 2009-07-01 Nick Roberts <nickrob@snap.net.nz>
6361
6362 * Makefile.in (HFILES_NO_SRCDIR): Remove entries for deleted files.
6363
6364 2009-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
6365
6366 * Makefile.in (TARGET_FLAGS_TO_PASS): Include also FORCE_PARALLEL.
6367 (check//%): Construct FORCE_PARALLEL for the sub-make. Extend the
6368 comment for it.
6369
6370 2009-06-30 Paul Pluzhnikov <ppluzhnikov@google.com>
6371
6372 gdb/10275
6373 * dwarf2-frame.c (dwarf2_frame_state): Move cfa_offset, cfa_reg,
6374 cfa_how and cfa_exp into regs and adjust users.
6375
6376 2009-06-30 Daniel Jacobowitz <dan@codesourcery.com>
6377
6378 * dwarf2read.c (inherit_abstract_dies): Work around GCC PR 40573.
6379
6380 2009-06-30 Vladimir Prus <vladimir@codesourcery.com>
6381
6382 * mi/mi-cmd-stack.c (parse_print_values): New.
6383 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args): Use the above.
6384
6385 2009-06-30 Vladimir Prus <vladimir@codesourcery.com>
6386
6387 * varobj.c (varobj_get_type): Use type_to_string.
6388
6389 2009-06-29 Pedro Alves <pedro@codesourcery.com>
6390
6391 * infrun.c (handle_inferior_event): Context switch to the new
6392 thread when resuming for a new_thread_event.
6393
6394 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6395
6396 * ada-lang.h (ada_convert_actual): Add GDBARCH argument.
6397 * ada-lang.c (convert_actual): Remove stale prototype.
6398 (ensure_lval, make_array_descriptor, ada_convert_actual):
6399 Add GDBARCH argument and pass through to subroutine calls.
6400 (ensure_lval): Use GDBARCH instead of current_gdbarch.
6401 * infcall.c (value_arg_coerce): Update ada_convert_actual call.
6402
6403 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6404
6405 * ada-lang.c (resolve): Use per-architecture void type instead
6406 of platform-independent one.
6407 (ada_evaluate_subexp) [STRUCTOP_STRUCT]: Likewise.
6408 (ada_resolve_function): Reimplement fallback logic to avoid
6409 explicit reference to builtin_type_void.
6410
6411 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6412
6413 * ada-valprint.c (ada_print_scalar): Accept NULL type argument
6414 to indicate scalar should be printed as default integer.
6415 (print_optional_low_bound): Pass NULL to ada_print_scalar to
6416 indicate default integer output.
6417 * ada-typeprint.c (print_range, print_range_bound): Likewise.
6418 (print_choices): Likewise. Thus, accept NULL as val_type.
6419 * ada-lang.c (ada_variant_discrim_type): Return NULL when failed
6420 to look up controlling discriminant name.
6421
6422 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6423
6424 * ada-lang.c (to_fixed_range_type): Add ORIG_TYPE argument.
6425 Fall back to orig_type as index type if symbol lookup fails.
6426 Allocate result types from ORIG_TYPE's objfile.
6427 (ada_array_bound_from_type, to_fixed_array_type,
6428 ada_evaluate_subexp): Pass original index type to
6429 to_fixed_range_type. Do not pass objfile.
6430
6431 * ada-typeprint.c (print_range_type_named): Add ORIG_TYPE argument.
6432 Fall back to orig_type as index type if symbol lookup fails.
6433 (print_array_type, ada_print_type): Pass original index type
6434 to print_range_type_named.
6435
6436 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6437
6438 * ada-lang.c (ada_index_type): Update comment.
6439
6440 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6441
6442 * ada-lang.c (ada_index_type): Make static. Add NAME argument.
6443 Throw error on invalid input arguments. Return NULL if unable
6444 to determine index type.
6445
6446 (ada_array_bound_from_type): Remove TYPEP argument.
6447 (ada_array_bound): Make static. Return LONGEST instead of value.
6448 Update for ada_array_bound_from_type change.
6449 (ada_array_length): Return LONGEST instead of value.
6450 Update for ada_array_bound_from_type change.
6451 (make_array_descriptor): Update for ada_array_bound change.
6452
6453 (ada_evaluate_subexp) [OP_ATR_RANGE, OP_ATR_FIRST, OP_ATR_LAST,
6454 OP_ATR_LENGTH]: Update for ada_array_bound_from_type,
6455 ada_array_bound, ada_array_length, ada_index_type changes.
6456 Always use ada_index_type to compute result type; fall back
6457 to architecture-specific integer type if ada_index_type fails.
6458
6459 * ada-lang.h (ada_index_type): Remove prototype.
6460 (ada_array_bound): Likewise.
6461
6462 2009-06-29 Pedro Alves <pedro@codesourcery.com>
6463
6464 * dbxread.c (read_dbx_symtab): Clear has_line_numbers when ending
6465 a psymtab.
6466
6467 2009-06-29 Tom Tromey <tromey@redhat.com>
6468
6469 * README: Mention parallel check.
6470
6471 2009-06-29 Sami Wagiaalla <swagiaal@redhat.com>
6472
6473 * dwarf2read.c (read_import_statement): Properly set import location
6474 and destination.
6475 * cp-support.h (cp_add_using, cp_add_using_directive): Now take char*
6476 inner, char* outer arguments. Updated callers.
6477
6478 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6479
6480 * value.h (value_subscript, value_subscripted_rvalue,
6481 value_bitstring_subscript, value_ptradd): Use LONGEST instead
6482 of value as type of the index argument.
6483 (value_ptrsub): Remove.
6484 * valarith.c (value_subscript, value_subscripted_rvalue,
6485 value_bitstring_subscript, value_ptradd): Use LONGEST instead
6486 of value as type of the index argument.
6487 (value_ptrsub): Remove.
6488
6489 * wrapper.h (gdb_value_subscript): Use LONGEST instead of
6490 value as type of the index argument.
6491 * wrapper.c (gdb_value_subscript): Likewise.
6492
6493 Update calls to gdb_value_subscript, value_subscript,
6494 value_subscripted_rvalue, value_bitstring_subscript and
6495 value_ptradd to use LONGEST instead of value as index
6496 argument type. Use value_ptradd instead of value_ptrsub.
6497 * ada-lang.c (ada_value_subscript, ada_value_ptr_subscript,
6498 ada_tag_name_2): Update.
6499 * ada-tasks.c (read_atcb): Update.
6500 * eval.c (evaluate_subexp_standard): Update.
6501 * valarith.c (value_subscript): Update.
6502 * gnu-v2-abi.c (gnuv2_virtual_fn_field): Update.
6503 * gnu-v3-abi.c (gnuv3_get_virtual_fn, gnuv3_baseclass_offset,
6504 gnuv3_method_ptr_to_value): Update.
6505 * jv-lang.c (evaluate_subexp_java): Update.
6506 * m2-lang.c (evaluate_subexp_modula2): Update.
6507 * python/python-value.c (valpy_getitem, valpy_binop): Update.
6508 * wrapper.c (gdb_value_subscript): Update.
6509 * varobj.c (c_describe_child): Update.
6510
6511 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6512
6513 * gdbtypes.h (make_function_type): Remove OBJFILE parameter.
6514 * gdbtypes.c (make_function_type): Remove OBJFILE parameter.
6515 (lookup_function_type): Update call.
6516 * stabsread.c (read_type): Likewise.
6517 * dwarf2read.c (read_subroutine_type): Use lookup_function_type
6518 instead of make_function_type.
6519 * jv-lang.c (type_from_class): Likewise. Do not allocate types
6520 on the fake "dynamics" obstack.
6521
6522 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6523
6524 * gdbtypes.h (struct builtin_type): Remove builtin_core_addr,
6525 nodebug_text_symbol, nodebug_data_symbol, nodebug_unknown_symbol,
6526 and nodebug_tls_symbol members.
6527 (struct objfile_type): New data structure.
6528 (objfile_type): Add prototype.
6529 * gdbtypes.c (gdbtypes_post_init): Remove initialization code
6530 for types no longer in struct builtin_type.
6531 (objfile_type_data): New static variable.
6532 (_initialize_gdbtypes): Initialize it.
6533 (objfile_type): New function.
6534
6535 * gdbtypes.h (builtin_type_error): Remove.
6536 * gdbtypes.c (build_complex): Do not use builtin_type_error.
6537 * symtab.c (builtin_type_error): Remove.
6538 (_initialize_symtab): Remove initialization.
6539
6540 * stabsread.c (dbx_lookup_type, define_symbol, error_type,
6541 rs6000_builtin_type, read_range_type): Use per-objfile types
6542 instead of global or per-architecture builtin types.
6543 * coffread.c (decode_type): Likewise.
6544 * dwarf2read.c (read_array_type, read_tag_string_type,
6545 new_symbol, die_type): Likewise.
6546 * mdebugread.c (parse_symbol, basic_type, upgrade_type,
6547 parse_procedure, psymtab_to_symtab_1): Likewise.
6548 * xcoffread.c (process_xcoff_symbol): Likewise.
6549 * parse.c (write_exp_msymbol): Likewise.
6550
6551 * stabsread.c (rs6000_builtin_type_data): New static variable.
6552 (_initialize_stabsread): Initialize it.
6553 (rs6000_builtin_type): Add OBJFILE argument. Allocate builtin
6554 types per-objfile instead of globally.
6555
6556 * stabsread.c (dbx_lookup_type): Add OBJFILE argument. Use it
6557 instead of current_objfile; pass it to rs6000_builtin_type.
6558 (dbx_alloc_type, read_type, read_range_type): Update calls.
6559 (cleanup_undefined_types_noname): Add OBJFILE argument and
6560 pass it to dbx_lookup_type.
6561 (cleanup_undefined_types): Add OBJFILE argument and pass it
6562 to cleanup_undefined_types_noname.
6563 * stabsread.h (cleanup_undefined_types): Add OBJFILE argument.
6564 * buildsym.c (end_symtab): Update call.
6565
6566 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6567
6568 * darwin-nat-info.c (darwin_debug_regions_recurse): Use
6569 target_gdbarch instead of current_gdbarch.
6570
6571 2009-06-29 Ulrich Weigand <uweigand@de.ibm.com>
6572
6573 * Makefile.in (ALL_64_TARGET_OBS): Add amd64-windows-tdep.o.
6574 (ALL_TARGET_OBS): Add moxie-tdep.o, i386-darwin-tdep.o, and
6575 solib-darwin.o.
6576
6577 * configure.tgt: Add comment.
6578
6579 2009-06-28 Paul Pluzhnikov <ppluzhnikov@google.com>
6580
6581 * mi/mi-cmds.c (mi_cmds): Remove unimplemented entries.
6582
6583 2009-06-27 Daniel Jacobowitz <dan@codesourcery.com>
6584 Jan Kratochvil <jan.kratochvil@redhat.com>
6585
6586 * NEWS: Document inlined function support.
6587 * Makefile.in (SFILES): Add inline-frame.c.
6588 (COMMON_OBS): Add inline-frame.o.
6589 * block.c (contained_in): Rewrite to use lexical nesting.
6590 (block_linkage_function): Skip inlined function blocks.
6591 (block_inlined_p): New.
6592 * block.h (struct block): Update comment.
6593 (block_inlined_p): New prototype.
6594 * blockframe.c (get_frame_block): Handle inlined functions.
6595 (get_frame_function): Do not use block_linkage_function.
6596 (block_innermost_frame): Use get_frame_block and contained_in.
6597 * breakpoint.c (watchpoint_check): Remove extra reinit_frame_cache.
6598 Skip over inlined functions. Simplify epilogue check.
6599 (bpstat_check_breakpoint_conditions): Use get_stack_frame_id.
6600 Update comments.
6601 (set_momentary_breakpoint): Only accept non-inlined frames.
6602 (watch_command_1): Use frame_unwind_caller_pc and
6603 frame_unwind_caller_id instead of get_prev_frame.
6604 (until_break_command): Likewise. Use get_stack_frame_id.
6605 * buildsym.c (end_symtab): Set SYMBOL_SYMTAB for block functions.
6606 * dwarf2loc.c (dwarf_expr_frame_base): Use block_linkage_function.
6607 * dwarf2read.c (process_die): Handle DW_TAG_inlined_subroutine.
6608 (read_func_scope, new_symbol): Likewise. Handle arguments specially
6609 for inlined functions without call site information.
6610 (inherit_abstract_dies): Allow tag mismatch for inlined subroutines.
6611 (die_specification): Treat DW_AT_abstract_origin as a specification.
6612 (read_type_die): Handle DW_TAG_inlined_subroutine.
6613 * frame-unwind.c (frame_unwind_init): Add inline_frame_unwind.
6614 * frame.c (fprint_frame_id): Print inline depth.
6615 (fprint_frame_type): Handle INLINE_FRAME and SENTINEL_FRAME.
6616 (skip_inlined_frames, get_stack_frame_id): New.
6617 (frame_unwind_caller_id): Use skip_inlined_frames.
6618 (frame_id_inlined_p): New.
6619 (frame_id_eq): Make the logic match the comments. Add inline_depth
6620 check.
6621 (frame_id_inner): Handle inlined functions.
6622 (frame_unwind_pc): New function, copied from frame_unwind_caller_pc.
6623 (frame_unwind_caller_pc): Use skip_inlined_frames and frame_unwind_pc.
6624 (get_prev_frame_1): Check for inline frames. Split out frame
6625 allocation to get_prev_frame_raw.
6626 (get_prev_frame_raw): New function.
6627 (get_prev_frame): Handle inline frames.
6628 (get_frame_pc): Use frame_unwind_pc.
6629 (get_frame_address_in_block): Skip inlined frames on both sides.
6630 (pc_notcurrent): Delete.
6631 (find_frame_sal): Rewrite to handle inline call sites. Use
6632 get_frame_address_in_block.
6633 (deprecated_update_frame_pc_hack): Make static.
6634 * frame.h: Update comments.
6635 (struct frame_id): Add inline_depth.
6636 (enum frame_type): Add INLINE_FRAME.
6637 (frame_id_inlined_p, get_stack_frame_id): New prototypes.
6638 * gdbthread.h (struct thread_info): Add step_stack_frame_id field.
6639 * infcmd.c (set_step_frame): New function.
6640 (step_once): Use set_step_frame. Handle inlined functions.
6641 (until_next_command): Use set_step_frame.
6642 (finish_backward), finish_forward): Use get_stack_frame_id.
6643 (finish_command): Support inlined functions.
6644 * inferior.h (set_step_info): New prototype.
6645 * infrun.c (RESUME_ALL): Use minus_one_ptid.
6646 (clear_proceed_status): Clear step_stack_frame_id.
6647 (init_wait_for_inferior): Call clear_inline_frame_state.
6648 (init_execution_control_state): Make static.
6649 (set_step_info): New function.
6650 (init_thread_stepping_state): Do not set the symtab or line here.
6651 (stepped_in_from): New function.
6652 (handle_inferior_event): Handle inlined functions. Use set_step_info.
6653 (insert_step_resume_breakpoint_at_frame): Use get_stack_frame_id.
6654 (struct inferior_status): Add step_stack_frame_id.
6655 (save_inferior_status, restore_inferior_status): Save and restore
6656 step_stack_frame_id.
6657 * inline-frame.c, inline-frame.h: New files.
6658 * minsyms.c (prim_record_minimal_symbol_and_info): Use XCALLOC.
6659 * regcache.c (regcache_write_pc): Call reinit_frame_cache.
6660 * s390-tdep.c (s390_prologue_frame_unwind_cache): Handle INLINE_FRAME.
6661 * stack.c (frame_show_address): New.
6662 (print_frame_info, print_frame): Use it.
6663 (find_frame_funname): Use get_frame_function. Handle inlined blocks.
6664 (frame_info): Mark inlined functions.
6665 (backtrace_command_1): Use get_current_user_frame.
6666 (print_frame_local_vars, print_frame_label_vars): Update comments.
6667 (return_command): Refuse inlined functions.
6668 * symtab.c (lookup_symbol_aux_local): Stop at inlined function
6669 boundaries.
6670 (find_function_start_sal): Avoid inlined functions.
6671 (completion_list_add_fields): New function.
6672 (default_make_symbol_completion_list): Use it. Use block_static_block
6673 and block_global_block. Check for inlined functions.
6674 (skip_prologue_using_sal): Avoid line number comparison across
6675 inlining.
6676 * symtab.h (struct symbol): Add is_inlined.
6677 (SYMBOL_INLINED): New.
6678 * target.c (target_resume): Call clear_inline_frame_state.
6679 * valops.c (value_of_variable): Check block_inlined_p.
6680
6681 2009-06-27 Daniel Jacobowitz <dan@codesourcery.com>
6682
6683 * frame.c (frame_unwind_id): Renamed to ...
6684 (frame_unwind_caller_id): ... this. All callers updated.
6685 (frame_pc_unwind): Renamed to ...
6686 (frame_unwind_caller_pc): ... this. All callers updated.
6687 * frame.h: Document frame_unwind_caller_WHAT functions.
6688 (frame_unwind_id): Renamed to ...
6689 (frame_unwind_caller_id): ... this.
6690 (frame_pc_unwind): Renamed to ...
6691 (frame_unwind_caller_pc): ... this.
6692 * hppa-tdep.c (hppa_find_unwind_entry_in_block): Correct comment.
6693 * stack.c (parse_frame_specification_1): Do not rely on
6694 frame_unwind_id.
6695
6696 2009-06-27 Michael Snyder <msnyder@vmware.com>
6697
6698 * infrun.c (handle_inferior_event): Improve handling of
6699 reverse-stepping into and over shared library functions.
6700
6701 2009-06-25 Karen Osmond <karen.osmond@gmail.com>
6702
6703 * linespec.c (find_method): Add new not_found_ptr parameter to
6704 bring in line with symtab_from_filename, decode_variable.
6705 (decode_compound): Likewise. Also propagate not_found_ptr to
6706 find_method.
6707 (decode_line_1): Propagate not_found_ptr to decode_compound.
6708 (cplusplus_error): Now throws NOT_FOUND_ERROR.
6709
6710 2009-06-25 Karen Osmond <karen.osmond@gmail.com>
6711
6712 * MAINTAINERS (Write After Approval): Add self.
6713
6714 2009-06-23 Ulrich Weigand <uweigand@de.ibm.com>
6715
6716 * valops.c (value_one): Reimplement broken decimal-float case.
6717
6718 2009-06-23 Ulrich Weigand <uweigand@de.ibm.com>
6719
6720 * eval.c (evaluate_subexp_standard): Use expression architecture
6721 instead of current_gdbarch.
6722
6723 * infrun.c (handle_inferior_event): Avoid unncessary reference
6724 to current_gdbarch and get_current_frame ().
6725
6726 2009-06-23 Ulrich Weigand <uweigand@de.ibm.com>
6727
6728 * breakpoint.h (set_longjmp_breakpoint): Add THREAD argument.
6729 (enum bptype): Add bp_longjmp_master.
6730
6731 * breakpoint.c (create_longjmp_master_breakpoint): New function.
6732 (update_breakpoints_after_exec): Handle bp_longjmp_master
6733 breakpoints. Call create_longjmp_master_breakpoint.
6734 (print_it_typical, bpstat_stop_status, bpstat_what,
6735 print_one_breakpoint_location, allocate_bp_location, mention,
6736 delete_command, breakpoint_re_set_one): Handle bp_longjmp_master.
6737 (breakpoint_re_set): Call create_longjmp_master_breakpoint.
6738 (create_longjmp_breakpoint): Delete.
6739 (set_longjmp_breakpoint): Add THREAD argument. Reimplement
6740 to install momentary clones of bp_longjmp_master breakpoints.
6741
6742 * infcmd.c (step_1): Pass thread to set_longjmp_breakpoint.
6743
6744 2009-06-23 Cary Coutant <ccoutant@google.com>
6745
6746 * dwarf2read.c (dwarf_decode_lines): Ignore rows where is_stmt is 0.
6747 Set basic_block to 0 after a special opcode.
6748
6749 2009-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
6750
6751 Fix a regression by the mmap patch from 2009-06-16.
6752 * symfile.c (reread_symbols): Move sym_finish and clear_objfile_data
6753 calls before deleting the OBJFILE obstack. Extend the comment.
6754
6755 2009-06-23 Ulrich Weigand <uweigand@de.ibm.com>
6756
6757 * jv-lang.h (JAVA_OBJECT_SIZE): Remove.
6758 (get_java_object_header_size): Add GDBARCH parameter.
6759 * jv-lang.c (get_java_object_header_size): Add GDBARCH parameter.
6760 Use it instead of current_gdbarch.
6761 (evaluate_subexp_java): Replace JAVA_OBJECT_SIZE with call to
6762 get_java_object_header_size.
6763 * jv-valprint.c (java_value_print): Likewise.
6764
6765 2009-06-23 Sami Wagiaalla <swagiaal@redhat.com>
6766
6767 * dwarf2read.c (process_die): Handle import statements
6768 (DW_TAG_imported_declaration, case DW_TAG_imported_module)
6769 (read_import_statement): New.
6770 (read_func_scope): Update using_directives to point to current context
6771 (read_lexical_block_scope): Ditto.
6772 * cp-support.h: Added prototype for cp_add_using.
6773 * cp-namespace.c: Removed local context_stack.
6774 (cp_initialize_namespace): Deleted.
6775 (cp_finalize_namespace): Deleted.
6776 (cp_add_using_directive): Use using_directives instead of using_list.
6777 (cp_add_using): No longer static.
6778 * buildsym.h: Created global using_direct variable.
6779 Created using_direct variable in context_stack.
6780 * buildsym.c (finish_block): Set using directives for the block under
6781 construction.
6782 (start_symtab): Removed call to cp_initialize_namespace().
6783 (end_symtab): Removed call to cp_finalize_namespace().
6784 (push_context): Save and reset using_directives.
6785 * block.c (block_using): Return using directives for given
6786 block instead of static block.
6787
6788 2009-06-23 Ulrich Weigand <uweigand@de.ibm.com>
6789
6790 * target-descriptions.h (struct type): Do not declare.
6791 (struct tdesc_type): Declare.
6792 (tdesc_named_type): Change return type to struct tdesc_type *.
6793 (tdesc_record_type): Remove.
6794 (tdesc_create_vector): Add prototype.
6795 (tdesc_create_union): Likewise.
6796 (tdesc_add_field): Likewise.
6797
6798 * target-descriptions.c (struct tdesc_reg): Replace gdb_type
6799 member by tdesc_type member.
6800 (struct tdesc_type_field, tdesc_type_field): Add type and vector def.
6801 (struct tdesc_type, tdesc_type_p): Likewise.
6802 (struct tdesc_arch_reg, tdesc_arch_reg): Likewise.
6803 (struct tdesc_feature): Change type of "types" to VEC(tdesc_type_p).
6804 (struct tdesc_arch_data): Replace registers member by arch_regs.
6805
6806 (tdesc_predefined_types): Change to array of pre-defined
6807 struct tdesc_type structures. Add "code_ptr" and "data_ptr".
6808 (tdesc_named_type): Return struct tdesc_type * instead of GDB type.
6809 (tdesc_gdb_type): New function.
6810
6811 (target_find_description): Update for data structure changes.
6812 (tdesc_data_cleanup): Likewise.
6813 (tdesc_numbered_register): Likewise.
6814 (tdesc_use_registers): Likewise.
6815 (tdesc_create_reg): Likewise.
6816
6817 (tdesc_find_arch_register): New function.
6818 (tdesc_find_register): Use it.
6819 (tdesc_register_type): Use tdesc_gdb_type to generate GDB type from
6820 tdesc_type on demand; cache generated types in tdesc_arch_reg.
6821
6822 (tdesc_free_type): New function.
6823 (tdesc_free_feature): Call it.
6824
6825 (tdesc_create_vector): New function.
6826 (tdesc_create_union): Likewise.
6827 (tdesc_add_field): Likewise.
6828 (tdesc_record_type): Remove.
6829
6830 (tdesc_type_id): Remove.
6831 (maint_print_c_tdesc_cmd): Update for data structure changes. Update
6832 generated code to create tdesc_type structures instead of GDB types.
6833
6834 * xml-tdesc.c: Do not include "gdbtypes.h".
6835 (struct tdesc_parsing_data): Change type of current_union to
6836 struct tdesc_type *.
6837 (tdesc_start_reg): Do not special-case "code_ptr" or "data_ptr".
6838 (tdesc_start_union): Call tdesc_create_union.
6839 (tdesc_start_field): Call tdesc_add_field.
6840 (tdesc_start_vector): Call tdesc_create_vector.
6841 (tdesc_end_union): Remove.
6842 (feature_children): Remove reference to tdesc_end_union.
6843
6844 * features/arm-with-iwmmxt.c: Regenerate.
6845 * features/mips-linux.c: Regenerate.
6846 * features/mips64-linux.c: Regenerate.
6847 * features/rs6000/powerpc-32.c: Regenerate.
6848 * features/rs6000/powerpc-32l.c: Regenerate.
6849 * features/rs6000/powerpc-403.c: Regenerate.
6850 * features/rs6000/powerpc-403gc.c: Regenerate.
6851 * features/rs6000/powerpc-505.c: Regenerate.
6852 * features/rs6000/powerpc-601.c: Regenerate.
6853 * features/rs6000/powerpc-602.c: Regenerate.
6854 * features/rs6000/powerpc-603.c: Regenerate.
6855 * features/rs6000/powerpc-604.c: Regenerate.
6856 * features/rs6000/powerpc-64.c: Regenerate.
6857 * features/rs6000/powerpc-64l.c: Regenerate.
6858 * features/rs6000/powerpc-7400.c: Regenerate.
6859 * features/rs6000/powerpc-750.c: Regenerate.
6860 * features/rs6000/powerpc-860.c: Regenerate.
6861 * features/rs6000/powerpc-altivec32.c: Regenerate.
6862 * features/rs6000/powerpc-altivec32l.c: Regenerate.
6863 * features/rs6000/powerpc-altivec64.c: Regenerate.
6864 * features/rs6000/powerpc-altivec64l.c: Regenerate.
6865 * features/rs6000/powerpc-e500.c: Regenerate.
6866 * features/rs6000/powerpc-e500l.c: Regenerate.
6867 * features/rs6000/powerpc-isa205-32l.c: Regenerate.
6868 * features/rs6000/powerpc-isa205-64l.c: Regenerate.
6869 * features/rs6000/powerpc-isa205-altivec32l.c: Regenerate.
6870 * features/rs6000/powerpc-isa205-altivec64l.c: Regenerate.
6871 * features/rs6000/powerpc-isa205-vsx32l.c: Regenerate.
6872 * features/rs6000/powerpc-isa205-vsx64l.c: Regenerate.
6873 * features/rs6000/powerpc-vsx32.c: Regenerate.
6874 * features/rs6000/powerpc-vsx32l.c: Regenerate.
6875 * features/rs6000/powerpc-vsx64.c: Regenerate.
6876 * features/rs6000/powerpc-vsx64l.c: Regenerate.
6877 * features/rs6000/rs6000.c: Regenerate.
6878
6879 2009-06-23 Joel Brobecker <brobecker@adacore.com>
6880
6881 * ada-lang.c (decode_packed_array): If the value is a pointer to
6882 an array, then use value_ind to dereference it, not ada_value_ind.
6883 (ada_template_to_fixed_record_type_1): Handle the case where a
6884 dynamic field is an aligner type.
6885 (to_fixed_array_type): Add handling for packed array types.
6886 (ada_get_base_type): Do not follow the XVS type if the type is
6887 an aligner type.
6888 (ada_evaluate_subexp): Split a few statements up for clarity
6889 and debuggability.
6890 <OP_FUNCALL>: Add handling of the case of a packed array that
6891 has already been fixed.
6892
6893 2009-06-23 Joel Brobecker <brobecker@adacore.com>
6894
6895 * ada-lang.c (evaluate_subexp): Delete. Use the version from eval.c.
6896 (evaluate_subexp_type): Reimplement using evaluate_subexp.
6897 * value.h (evaluate_subexp): Add declaration.
6898 * eval.c (evaluate_subexp): Make non-static.
6899 * objc-lang.c (print_object_command): Use evaluate_subexp.
6900
6901 2009-06-23 Paul Pluzhnikov <ppluzhnikov@google.com>
6902
6903 Revert 2009-05-14 breakpoint commit (no longer needed).
6904 * breakpoint.h (breakpoint_re_set_objfile): Remove
6905 * breakpoint.c (breakpoint_re_set_objfile): Likewise
6906 (create_overlay_event_breakpoint): Remove objfile parameter,
6907 iterate over all objfiles.
6908 * objfiles.c (objfile_relocate): Update.
6909 * symfile.c (new_symfile_objfile): Likewise.
6910
6911 2009-06-23 Tom Tromey <tromey@redhat.com>
6912
6913 PR gdb/10309:
6914 * c-lang.c (classify_type): Iterate over typedefs.
6915 * c-valprint.c (textual_element_type): Iterate over typedefs.
6916
6917 2009-06-22 Tristan Gingold <gingold@adacore.com>
6918
6919 * darwin-nat.c (darwin_xfer_partial): Use host_address_to_string
6920 instead of "%p".
6921
6922 2009-06-22 Jan Kratochvil <jan.kratochvil@redhat.com>
6923
6924 PR gdb/9988:
6925 * buildsym.c (block_compar): New function.
6926 (end_symtab): Replace the bubble sort by a qsort based code.
6927
6928 2009-06-22 Sami Wagiaalla <swagiaal@redhat.com>
6929
6930 * MAINTAINERS (Write After Approval): Add self.
6931
6932 2009-06-22 Ulrich Weigand <uweigand@de.ibm.com>
6933
6934 * spu-tdep.c (spu_get_longjmp_target): New function.
6935 (spu_gdbarch_init): Install it.
6936
6937 2009-06-22 H.J. Lu <hongjiu.lu@intel.com>
6938
6939 PR server/10306
6940 * remote.c (getpkt_or_notif_sane_1): Initialize val to -1.
6941
6942 2009-06-21 Michael Snyder <msnyder@vmware.com>
6943
6944 * inferior.h: Update ancient comment.
6945
6946 2009-06-20 Aleksandar Ristovski <aristovski@qnx.com>
6947 Pedro Alves <pedro@codesourcery.com>
6948
6949 * solib-svr4.c (IGNORE_FIRST_LINK_MAP_ENTRY): Avoid dereferencing
6950 NULL pointer.
6951 (scan_dyntag): Skip if input bfd isn't elf flavoured.
6952 (locate_base): Call elf_locate_base even without an exec_bfd.
6953
6954 2009-06-19 Samuel Bronson <naesten@gmail.com>
6955
6956 PR cli/9903:
6957 * cli/cli-decode.c (apropos_cmd): Skip traversing abbreviations
6958 for prefix commands to avoid duplicates in the output.
6959
6960 2009-06-19 Samuel Bronson <naesten@gmail.com>
6961
6962 PR cli/9903:
6963 * cli/cli-decode.c (apropos_cmd): Fix avoidance of double
6964 printing.
6965
6966 2009-06-19 Jerome Guitton <guitton@adacore.com>
6967
6968 * breakpoint.c (expand_line_sal_maybe): When explicit_line,
6969 skip prologue on each sals.
6970 (skip_prologue_sal): Return explicit_line and explicit_pc
6971 unmodified.
6972
6973 2009-06-19 Tristan Gingold <gingold@adacore.com>
6974
6975 * darwin-nat.c (_initialize_darwin_inferior): Remove commented-out
6976 line.
6977
6978 2009-06-19 Tristan Gingold <gingold@adacore.com>
6979 * machoread.c (macho_symtab_read): Adjust for bfd changes.
6980 * darwin-nat.h (struct darwin_exception_msg): New type to describe
6981 a mach exception.
6982 (struct private_thread_info): New type to describe the state of the
6983 thread.
6984 (DEF_VEC_I thread_t): Removed, replaced by ...
6985 (DEF_VEC_O darwin_thread_t): ... this new type.
6986 (struct darwin_inferior): Renamed to ...
6987 (struct private_inferior): ... this type. Fields added.
6988 (darwin_not_port): Moved into the private inferior structure.
6989 * darwin-nat.c: Add includes, improve comments.
6990 Rewrite to handle multiple threads and processes.
6991 (darwin_resume_to): New function and protype.
6992 (darwin_resume, darwin_wait_to, darwin_wait): Ditto.
6993 (darwin_kill_inferior): Add ops argument.
6994 (darwin_pid_to_str): New function.
6995 (darwin_thread_alive): Ditto.
6996 (darwin_inf, darwin_not_port): Removed.
6997 (darwin_inf_fake_stop): New variable.
6998 (msgin, msgout, msg_state, exc_msg): Removed.
6999 (mach_check_error): Use warning instead of error.
7000 (darwin_ptrace): Adjust debug level.
7001 (cmp_thread_t): Fix names (typo).
7002 (darwin_check_new_threads): Argument is now an inferior,
7003 adjust for new structures, add no change check, ignore dead ports,
7004 handle first thread case.
7005 (find_inferior_task_it): New function.
7006 (find_inferior_notify_it): Ditto.
7007 (darwin_find_inferior_by_task): Ditto.
7008 (darwin_find_inferior_by_notify): Ditto.
7009 (darwin_find_thread): Ditto.
7010 (darwin_suspend_inferior): Ditto.
7011 (darwin_resume_inferior): Ditto.
7012 (catch_exception_raise_state): Removed.
7013 (catch_exception_raise_state_identity): Removed.
7014 (darwin_suspend_inferior_it): New function.
7015 (darwin_resume_inferior_it): Ditto.
7016 (darwin_dump_message): New function, extracted from darwin_wait.
7017 (darwin_decode_exception_message): New function.
7018 (darwin_encode_reply): New function.
7019 (catch_exception_raise): Removed.
7020 (darwin_send_reply): New function, extracted from darwin_resume.
7021 (darwin_resume_thread): New function, extracted from darwin_resume.
7022 (struct resume_inferior_threads_param): New type.
7023 (darwin_resume_inferior_threads_it): New function.
7024 (darwin_resume_inferior_threads): New function.
7025 (darwin_suspend_inferior_threads): New function.
7026 (darwin_resume): Mostly rewritten to handle multiple threads and
7027 some corner cases.
7028 (darwin_decode_message): New function extracted from darwin_wait.
7029 (cancel_breakpoint): New function.
7030 (darwin_wait): Mostly rewritten. Handle multiple threads.
7031 (darwin_mourn_inferior): Adjust for per process structures.
7032 (darwin_reply_to_all_pending_messages): New function.
7033 (darwin_stop_inferior): Adjust for per inferior structures.
7034 (darwin_attach_pid): Ditto.
7035 (darwin_init_thread_list): Ditto.
7036 (darwin_attach): Ditto.
7037 (darwin_detach): Ditto.
7038 (darwin_files_info): Now empty.
7039 (darwin_pid_to_str): Adjust returns string to match one expected by
7040 the testsuite.
7041 (darwin_read_write_inferior): Rename err variable to match other uses.
7042 Adjust debug message. Handle submaps.
7043 (darwin_xfer_memory): Adjust for per inferior structures.
7044 (set_enable_mach_exceptions): Ditto.
7045 (darwin_pid_to_exec_file): New function.
7046 (darwin_get_ada_task_ptid): Ditto.
7047 (darwin_supports_multi_process): Ditto.
7048 (_initialize_darwin_inferior): Remove useless assertion, adjust for
7049 per inferior structures. Add new target operations.
7050
7051 2009-06-18 Hui Zhu <teawater@gmail.com>
7052 Michael Snyder <msnyder@vmware.com>
7053
7054 * infrun.c (handle_inferior_event): Improve reverse stepping
7055 through function epilogue.
7056
7057 * infrun.c (handle_inferior_event): Reverse-next through
7058 trampoline.
7059
7060 2009-06-18 Paul Pluzhnikov <ppluzhnikov@google.com>
7061
7062 * dwarf2-frame.c (struct comp_unit): Use bfd_size_type for
7063 dwarf_frame_size.
7064
7065 2009-06-17 Tom Tromey <tromey@redhat.com>
7066
7067 * dwarf2read.c (zlib_decompress_section): Use a cleanup.
7068
7069 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7070
7071 * gdbarch.sh (pointer_to_address): Change to type 'm'.
7072 (address_to_pointer): Likewise.
7073 * gdbarch.c, gdbarch.h: Regenerate.
7074
7075 * inferior.h (unsigned_pointer_to_address): Add GDBARCH argument.
7076 (signed_pointer_to_address): Likewise.
7077 (unsigned_address_to_pointer, address_to_signed_pointer): Likewise.
7078 * findvar.c (unsigned_pointer_to_address): Likewise.
7079 (signed_pointer_to_address): Likewise.
7080 (unsigned_address_to_pointer, address_to_signed_pointer): Likewise.
7081
7082 * avr-tdep.c (avr_address_to_pointer): Likewise.
7083 (avr_pointer_to_address): Likewise.
7084 * iq2000-tdep.c (iq2000_pointer_to_address): Likewise.
7085 (iq2000_address_to_pointer): Likewise.
7086 * m32c-tdep.c (m32c_m16c_address_to_pointer): Likewise.
7087 (m32c_m16c_pointer_to_address): Likewise.
7088 * spu-tdep.c (spu_pointer_to_address): Likewise.
7089 * xstormy16-tdep.c (xstormy16_pointer_to_address): Likewise.
7090 (xstormy16_address_to_pointer): Likewise.
7091
7092 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7093
7094 * printcmd.c (print_scalar_formatted): Always truncate
7095 unsigned data types.
7096
7097 * cli-dump.c (struct callback_data): Change type of load_offset
7098 to CORE_ADDR.
7099 (restore_binary_file): Update type casts.
7100 (restore_command): Parse load_offset as address, not long.
7101
7102 * utils.c (string_to_core_addr): Do not sign-extend value.
7103 * varobj.c (find_frame_addr_in_frame_chain): Truncate frame_base
7104 before comparing against requested frame address.
7105
7106 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7107
7108 * gdbarch.sh (gcore_bfd_target): New gdbarch callback.
7109 * gdbarch.h, gdbarch.c: Regenerate.
7110
7111 * gcore.c (default_gcore_target): Make return value const.
7112 Call gdbarch_gcore_bfd_target if present.
7113 (default_gcore_arch, default_gcore_mach): Use target_gdbarch.
7114
7115 * corelow.c (core_read_description): Call gdbarch_core_read_description
7116 on core_gdbarch instead of current_gdbarch.
7117
7118 * ppc-linux-tdep.c (ppc_linux_init_abi): Install gcore_bfd_target.
7119
7120 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7121
7122 * gdbtypes.c (create_string_type): Receive character type as argument.
7123 * gdbtypes.h (create_string_type): Add character type argument.
7124 * dwarf2read.c (read_tag_string_type): Pass character type to
7125 create_string_type.
7126
7127 * value.h (value_string): Add character type argument.
7128 * valops.c (value_string): Add character type argument. Pass it to
7129 create_string_type. Do not allocate space in inferior.
7130 * valarith.c (value_concat): Pass character type to value_string.
7131
7132 * value.h (value_typed_string): Rename to ...
7133 (value_cstring): ... this.
7134 * valops.c (value_typed_string): Rename to ...
7135 (value_cstring): ... this.
7136 * c-lang.c (evaluate_subexp_c): Update.
7137
7138 * python/python-value.c (builtin_type_pychar): New define.
7139 (convert_value_from_python): Call value_cstring instead
7140 of value_from_string.
7141 * value.c (value_from_string): Remove.
7142 * value.h (value_from_string): Remove.
7143
7144 * eval.c (evaluate_subexp_standard): Pass character type to
7145 value_string. Pass expression architecture to value_nsstring
7146 and lookup_child_selector.
7147 * objc-lang.h (lookup_objc_class): Add GDBARCH parameter.
7148 (lookup_child_selector): Likewise.
7149 (value_nsstring): Likewise.
7150 * objc-lang.c (lookup_objc_class): Add GDBARCH parameter.
7151 Pass character type to value_string..
7152 (lookup_child_selector): Likewise.
7153 (value_nsstring): Add GDBARCH parameter, use it instead of
7154 objfile architecture. Pass architecture to lookup_objc_class
7155 and lookup_child_selector. Pass character type to value_string.
7156 (end_msglist): Pass architecture to lookup_objc_class.
7157 * objc-exp.y: Pass architecture to lookup_objc_class.
7158
7159 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7160
7161 * gdbtypes.h (struct language_defn): Add forward declaration.
7162 (lookup_typename): Add LANGUAGE and GDBARCH parameters.
7163 (lookup_unsigned_typename): Likewise.
7164 (lookup_signed_typename): Likewise.
7165 * gdbtypes.c (lookup_typename): Add LANGUAGE and GDBARCH parameters.
7166 Use them instead of current_language and current_gdbarch.
7167 (lookup_unsigned_typename): Add LANGUAGE and GDBARCH parameters.
7168 Pass them to lookup_typename.
7169 (lookup_signed_typename): Likewise.
7170
7171 * c-exp.y: Pass parse_language and parse_gdbarch to
7172 lookup_unsigned_typename and lookup_signed_typename.
7173 * objc-exp.y: Likewise.
7174 * m2-exp.y: Pass parse_language and parse_gdbarch to lookup_typename.
7175
7176 * c-lang.c (evaluate_subexp_c): Pass expression language and
7177 gdbarch to lookup_typename.
7178 * printcmd.c (printf_command): Pass current language and
7179 gdbarch to lookup_typename.
7180 * python/python-type.c (typy_lookup_typename): Likewise.
7181 Include "language.h".
7182
7183 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7184
7185 * sparc64-nat.c (sparc64_gregset_supplies_p): Add GDBARCH parameter.
7186 Use it instead of current_gdbarch. Pass architecture to
7187 sparc32_gregset_supplies_p.
7188 (sparc64_fpregset_supplies_p): Add GDBARCH parameter. Use it instead
7189 of current_gdbarch. Pass architecture to sparc32_fpregset_supplies_p.
7190 * sparc64nbsd-nat.c (sparc64nbsd_gregset_supplies_p,
7191 sparc64nbsd_fpregset_supplies_p): Likewise.
7192 * sparc-nat.c (sparc_gregset_supplies_p, sparc_fpregset_supplies_p):
7193 Add GDBARCH parameter.
7194 (sparc32_gregset_supplies_p, sparc32_fpregset_supplies_p): Likewise.
7195 (sparc_fetch_inferior_registers): Pass regcache architecture to
7196 sparc_gregset_supplies_p and sparc_fpregset_supplies_p.
7197 (sparc_store_inferior_registers): Likewise.
7198 * sparc-nat.h (sparc_gregset_supplies_p, sparc_fpregset_supplies_p:
7199 Add GDBARCH parameter.
7200 (sparc32_gregset_supplies_p, sparc32_fpregset_supplies_p): Likewise.
7201
7202 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7203
7204 * ada-tasks.c (read_known_tasks_array): Use target_gdbarch instead
7205 of current_gdbarch.
7206 * aix-thread.c (pd_enable): Likewise.
7207 * amd64-linux-nat.c (ps_get_thread_area): Likewise.
7208 * bsd-uthread.c (bsd_uthread_activate): Likewise.
7209 * linux-nat.c (linux_nat_info_proc_cmd): Likewise.
7210 * linux-thread-db.c (enable_thread_event): Likewise.
7211 * monitor.c (monitor_write_memory, monitor_read_memory): Likewise.
7212 * nto-procfs.c (procfs_open): Likewise.
7213 * procfs.c (invalidate_cache, procfs_insert_watchpoint,
7214 info_proc_mappings, info_mappings_callback): Likewise.
7215 * record.c (record_open): Likewise.
7216 * rs6000-nat.c (ARCH64): Likewise.
7217 * solib-darwin.c (darwin_solib_create_inferior_hook): Likewise.
7218 (darwin_bfd_open): Likewise.
7219 * memattr.c (mem_info_command): Likewise.
7220
7221 * windows-nat.c (win32_resume): Use current regcache architecture
7222 instead of current_gdbarch.
7223
7224 * dbug-rom.c (dbug_regname): Remove check against number of
7225 registers in current_gdbarch.
7226 * solib-pa64.c (read_dynamic_info): Remove unused variable.
7227
7228 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7229
7230 * dummy-frame.c (deprecated_pc_in_call_dummy): Add GDBARCH parameter,
7231 use it instead of current_gdbarch.
7232 * frame.h (deprecated_pc_in_call_dummy): Add GDBARCH parameter.
7233 * arm-tdep.c (arm_skip_prologue): Pass architecture to
7234 deprecated_pc_in_call_dummy.
7235
7236 * symtab.c (skip_prologue_using_sal): Add GDBARCH parameter.
7237 Use it instead of current_gdbarch.
7238 * symtab.h (skip_prologue_using_sal): Add GDBARCH parameter.
7239 * breakpoint.c (expand_line_sal_maybe): Pass architecture to
7240 skip_prologue_using_sal.
7241 * arm-tdep.c (skip_prologue_using_sal): Likewise.
7242 * lm32-tdep.c (lm32_skip_prologue): Likewise.
7243 * m32-tdep.c (m32c_skip_prologue): Likewise.
7244 * mips-tdep.c (mips_skip_prologue): Likewise.
7245 * moxie-tdep.c (moxie_skip_prologue): Likewise.
7246 * mt-tdep.c (mt_frame_unwind_cache): Likewise.
7247 * rs6000-tdep.c (rs6000_skip_prologue): Likewise.
7248 * frv-tdep.c (frv_analyze_prologue): Add GDBARCH parameter, pass
7249 it to skip_prologue_using_sal. Update call sites ...
7250 (frv_skip_prologue, frv_frame_unwind_cache): ... here.
7251
7252 * mn10300-tdep.c (struct mn10300_prologue): Add GDBARCH member.
7253 (check_for_saved): Use it instead of current_gdbarch.
7254 (mn10300_analyze_prologue): Set it.
7255
7256 * value.c (using_struct_return): Add GDBARCH parameter. Use it
7257 instead of current_gdbarch.
7258 * value.h (using_struct_return): Add GDBARCH parameter.
7259 * eval.c (evaluate_subexp_standard): Pass architecture to
7260 using_struct_return.
7261 * infcall.c (call_function_by_hand): Likewise.
7262 * stack.c (return_command): Likewise.
7263 * sparc-tdep.c (sparc32_push_dummy_code): Likewise.
7264
7265 * symtab.c (in_prologue): Add GDBARCH parameter. Use it instead of
7266 current_gdbarch.
7267 * symtab.h (in_prologue): Add GDBARCH parameter.
7268 * infrun.c (handle_inferior_event): Pass architecture to in_prologue.
7269
7270 * eval.c (evaluate_subexp_standard): Use expression architecture
7271 instead of current_gdbarch.
7272
7273 * c-lang.c (evaluate_subexp_c): Use expression architecture and
7274 language instead of current_gdbarch and current_language.
7275
7276 * printcmd.c (do_one_display): Use expression architecture instead
7277 of current_gdbarch.
7278
7279 * infcmd.c (print_return_value): Use architecture of stop_regcache
7280 instead of current_gdbarch.
7281 (print_vector_info, print_float_info): Remove GDBARCH argument,
7282 use frame architecture instead.
7283 (vector_info, float_info): Update calls.
7284
7285 * objc-lang.c (objc_skip_trampoline): Use frame architecture
7286 instead of current_gdbarch.
7287
7288 * parse.c (write_dollar_variable): Use parse architecture instead
7289 of current_gdbarch.
7290
7291 * source.c (line_info): Use objfile architecture instead of
7292 current_gdbarch.
7293
7294 * symtab.c (find_function_start_sal): Use gdbarch instead of
7295 current_gdbarch.
7296 (print_msymbol_info): Use objfile architecture instead of
7297 current_gdbarch.
7298
7299 * valops.c (value_assign): Use frame architecture instead of
7300 current_gdbarch.
7301
7302 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7303
7304 * buildsym.c (record_line): Remove call to gdbarch_addr_bits_remove.
7305
7306 * coffread.c (coff_symtab_read): Call gdbarch_addr_bits_remove before
7307 calling record_line.
7308 (enter_linenos): Likewise.
7309 * dbxread.c (process_one_symbol): Likewise.
7310 * dwarf2read.c (dwarf_decode_lines): Likewise.
7311 * mdebugread.c (psymtab_to_symtab_1): Likewise.
7312 * xcoffread.c (enter_line_range): Likewise.
7313
7314 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7315
7316 * ax-gdb.c (gen_bitfield_ref): Add EXP argument, use expression
7317 architecture instead of current_gdbarch.
7318 (gen_struct_ref): Add EXP argument, pass to get_bitfield_ref.
7319 (gen_expr): Pass expression to get_struct_ref.
7320
7321 * symtab.h (struct symbol_ops): Add GDBARCH parameter to
7322 tracepoint_var_ref callback.
7323 * ax-gdb.c (gen_var_ref): Pass architecture to tracepoint_var_ref
7324 symbol operation callback.
7325 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Add GDBARCH parameter.
7326 Use it instead of current_gdbarch.
7327 (locexpr_tracepoint_var_ref): Add GDBARCH parameter. Pass it to
7328 dwarf2_tracepoint_var_ref.
7329 (loclist_tracepoint_var_ref): Likewise.
7330
7331 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7332
7333 * prologue-value.c (make_pv_area): Add ADDR_BIT argument.
7334 Use it instead of address bits of current_gdbarch.
7335 * prologue-value.c (make_pv_area): Add ADDR_BIT argument.
7336 * arm-tdep.c (thumb_analyze_prologue): Pass address bits to
7337 make_pv_area.
7338 (arm_scan_prologue): Likewise.
7339 * m32c-tdep.c (m32c_analyze_prologue): Likewise.
7340 * mep-tdep.c (mep_analyze_prologue): Likewise.
7341 * mn10300-tdep.c (mn10300_analyze_prologue): Likewise.
7342 * s390-tdep.c (s390_analyze_prologue): Likewise.
7343
7344 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7345
7346 * mi/mi-main.c (mi_cmd_data_list_register_names): Use selected
7347 frame architecture instead of current_gdbarch.
7348 (mi_cmd_data_list_changed_registers): Likewise.
7349 (mi_cmd_data_list_register_values): Likewise. Pass selected
7350 frame to get_register.
7351 (get_register): Add FRAME argument, use it as frame to retrieve
7352 registers from (instead of selected frame). Use frame architecture
7353 instead of current_gdbarch.
7354 (mi_cmd_data_write_register_values): Use current regcache
7355 architecture instead of current_gdbarch.
7356
7357 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7358
7359 * tui/tui-regs.c (tui_show_register_group): Remove GDBARCH parameter;
7360 use frame architecture instead. Replace current_gdbarch uses.
7361 (tui_show_registers): Update call.
7362 (tui_get_register): Remove GDBARCH parameter; use frame architecture
7363 instead.
7364 (tui_show_register_group): Update call.
7365 (tui_check_register_values): Likewise.
7366 (tui_register_format): Remove GDBARCH parameter; use frame
7367 architecture instead. Replace current_gdbarch uses.
7368 (tui_get_register): Update call.
7369
7370 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7371
7372 * gdbarch.sh (construct_inferior_arguments): Remove.
7373 * gdbarch.c, gdbarch.h: Regenerate.
7374 * infcmd.c (get_inferior_args): Call construct_inferior_arguments
7375 directly instead of gdbarch_construct_inferior_arguments.
7376 (construct_inferior_arguments): Remove GDBARCH argument.
7377 * inferior.h (construct_inferior_arguments): Likewise.
7378
7379 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7380
7381 * symfile.c (section_is_mapped): Use objfile architecture instead
7382 of current_gdbarch.
7383 (TARGET_LONG_BYTES): Remove.
7384 (read_target_long_array): Add SIZE argument. Use it instead of
7385 TARGET_LONG_BYTES.
7386 (simple_read_overlay_table): Retrieve long size from objfile
7387 architecture; pass it to read_target_long_array.
7388 (simple_read_overlay_region_table): Likewise.
7389 (simple_overlay_update_1): Likewise.
7390
7391 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7392
7393 * infrun.c (cleanup_displaced_step_closure): Remove.
7394 (displaced_step_clear_cleanup): Move to before displaced_step_prepare.
7395 (displaced_step_prepare): Use displaced_step_clear_cleanup instead
7396 of cleanup_displaced_step_closure.
7397 (handle_inferior_event, keep_going): Use thread architecture instead
7398 of current_gdbarch.
7399
7400 2009-06-17 Ulrich Weigand <uweigand@de.ibm.com>
7401
7402 * infrun.c (handle_inferior_event): Use current frame architecture
7403 or thread architecture instead of current_gdbarch. Pass to
7404 handle_step_into_function and handle_step_into_function_backward.
7405 (handle_step_into_function): Add GDBARCH parameter. Use it instead
7406 of current_gdbarch.
7407 (handle_step_into_function_backward): Likewise.
7408 (insert_step_resume_breakpoint_at_frame): Use frame architecture
7409 instead of current_gdbarch.
7410 (insert_step_resume_breakpoint_at_caller): Likewise.
7411
7412 2009-06-17 Pierre Muller <muller@ics.u-strasbg.fr>
7413 Pedro Alves <pedro@codesourcery.com>
7414
7415 * infcmd.c (post_create_inferior): Call breakpoint_re_set after target
7416 is pushed for watchpoint promotion to hardware watchpoint.
7417
7418 2009-06-16 Paul Pluzhnikov <ppluzhnikov@google.com>
7419
7420 * dwarf2read.c (dwarf_info_section, dwarf_abbrev_section)
7421 (dwarf_line_section, dwarf_pubnames_section, dwarf_aranges_section)
7422 (dwarf_loc_section, dwarf_macinfo_section, dwarf_str_section)
7423 (dwarf_ranges_section, dwarf_frame_section)
7424 (dwarf_eh_frame_section): Removed.
7425 (dwarf2_resize_section): Likewise.
7426 (dwarf2_read_section): Now static, use bfd_mmap() if possible.
7427 (dwarf2_get_section_info): New function.
7428 (munmap_section_buffer): Likewise.
7429 (dwarf2_per_objfile_cleanup): Likewise.
7430 (section_is_p): Signature change.
7431 * dwarf2-frame.c (dwarf2_build_frame_info): Use
7432 dwarf2_get_section_info instead of dwarf2_read_section.
7433
7434 2009-06-16 Paul Pluzhnikov <ppluzhnikov@google.com>
7435
7436 * solib.c (symbol_add_stub): New FLAGS parameter.
7437 (solib_read_symbols): FROM_TTY -> FLAGS, call symbol_add_stub
7438 directly.
7439 (solib_add): Defer breakpoint_re_set until after all solibs.
7440 * bsd-uthread.c (bsd_uthread_solib_loaded): Adjust.
7441 * rs6000-nat.c (objfile_symbol_add): Adjust.
7442 * symfile.c (syms_from_objfile): Merge parameters into ADD_FLAGS.
7443 (new_symfile_objfile): Likewise.
7444 (symbol_file_add_with_addrs_or_offsets): Likewise.
7445 (symbol_file_add_from_bfd): Likewise.
7446 (symbol_file_add): Likewise.
7447 * symfile.h (enum symfile_add_flags): New. Adjust prototypes.
7448 * symfile-mem.c (symbol_file_add_from_memory): Adjust.
7449 * windows-nat.c (safe_symbol_file_add_stub): Adjust.
7450 * machoread.c (macho_oso_symfile, macho_symfile_read): Adjust.
7451
7452 2009-06-16 Keith Seitz <keiths@redhat.com>
7453
7454 * linespec.c (collect_methods): Delete.
7455 (add_matching_methods): Reove destructor special case.
7456 (find_method): Call find_methods directly instead of
7457 collect_methods.
7458 * valops.c (value_struct_elt): Remove destructor
7459 special cases.
7460 (check_field): Likewise.
7461 (value_struct_elt_for_reference): Likewise.
7462 (destructor_name_p): Remove misleading comment about dtors
7463 being "special cases".
7464 * gdbtypes.h (get_destructor_fn_field): Remove. No longer needed.
7465 * gdbtypes.c (get_destructor_fn_field): Likewise.
7466
7467 2009-06-16 Pedro Alves <pedro@codesourcery.com>
7468
7469 * mi/mi-main.c (mi_cmd_data_read_memory): Dispatch
7470 TARGET_OJECT_MEMORY reads to the topmost target, not to the
7471 flattened current_target.
7472
7473 2009-06-16 Tristan Gingold <gingold@adacore.com>
7474
7475 * avr-tdep.c (struct gdbarch_tdep): Replace the unused field with
7476 call_length field.
7477 (avr_register_name): Add const to register_names.
7478 (avr_scan_arg_moves): Move inside avr_scan_prologue.
7479 (avr_scan_prologue): Add pc_end argument.
7480 Only read prologue bytes that can be read.
7481 Limit the scan to the known prologue length.
7482 Makes pattern variables static and const.
7483 Fix indentation.
7484 (avr_skip_prologue): Pass func_end argument to avr_scan_prologue.
7485 Fix indentation.
7486 (avr_breakpoint_from_pc): Constify avr_break_insn.
7487 (avr_extract_return_value): Fix function comment.
7488 (avr_frame_unwind_cache): Fix GNU style violations.
7489 Pass current_pc argument to avr_scan_prologue to stop prologue
7490 analysis to the current pc. This fixes the bug with the 'next'
7491 command.
7492 Correctly set the SP register of the previous frame (use call_length).
7493 (avr_frame_prev_register): Fix indentation.
7494 Correctly read PC from the stack on avr6 architectures.
7495 (avr_push_dummy_call): Fix indentation.
7496 (avr_gdbarch_init): Set call_length according to the architecture.
7497
7498 2009-06-15 Phil Muldoon <pmuldoon@redhat.com>
7499
7500 * infcall.c (show_unwind_on_terminating_exception_p): New
7501 function.
7502 (call_function_by_hand): Create breakpoint and clean-up call for
7503 std::terminate.breakpoint. Add unwind_on_terminating_exception_p
7504 gate. Pop frame on breakpoint hit.
7505 (_initialize_infcall): Add add_setshow_boolean_cmd for
7506 unwind-on-terminating-exception.
7507
7508 2009-06-12 Kevin Buettner <kevinb@redhat.com>
7509
7510 * dwarf2read.c (dwarf2_psymtab_to_symtab): Propagate
7511 `has_section_at_zero' flag from stripped objfile to separate,
7512 debug info only, objfile.
7513
7514 2009-06-12 Pedro Alves <pedro@codesourcery.com>
7515
7516 * exec.h (section_table_xfer_memory_partial): Improve description,
7517 mention SECTION_NAME.
7518 * exec.c (section_table_xfer_memory_partial): Remove stale
7519 description.
7520
7521 2009-06-11 Aleksandar Ristovski <aristovski@qnx.com>
7522
7523 * nto-tdep.h (nto_generic_supply_gpregset)
7524 (nto_generic_supply_fpregset, nto_generic_supply_altregset): Remove.
7525 * nto-tdep.c (nto_generic_supply_gpregset)
7526 (nto_generic_supply_fpregset, nto_generic_supply_altregset): Remove.
7527
7528 2009-06-11 Aleksandar Ristovski <aristovski@qnx.com>
7529
7530 * i386-nto-tdep.c (I386_NTO_SIGCONTEXT_OFFSET): Remove define.
7531 (i386nto_sigcontext_addr): Change the way context address is calculated.
7532 (i386nto_init_abi): Remove usage of deprecated sc_reg_offset and
7533 sc_sp_offset and set sc_reg_offset and sc_num_regs.
7534
7535 2009-06-11 Aleksandar Ristovski <aristovski@qnx.com>
7536
7537 * i386-nto-tdep.c (i386_nto_target): Remove definition.
7538 (init_i386nto_ops): Use macros to set fields to global
7539 current_nto_target directly.
7540 (i386nto_init_abi): Remove unused nto_set_target call.
7541 * nto-tdep.h (nto_set_target): Remove unused declaration.
7542 * nto-tdep.c (nto_set_target): Remove unused function.
7543
7544 2009-06-11 Pedro Alves <pedro@codesourcery.com>
7545
7546 * breakpoint.c (break_command_really): Rename local variable
7547 breakpoint_chain to bkpt_chain.
7548
7549 2009-06-11 Aleksandar Ristovski <aristovski@qnx.com>
7550
7551 Add support for XMM registers.
7552 * i386-nto-tdep.c (i386nto_regset_id): Add case for SSE register set.
7553 (i386nto_register_area): Correctly calculate offsets and sizes for
7554 all supported registers.
7555
7556 2009-06-11 Tom Tromey <tromey@redhat.com>
7557
7558 * eval.c (evaluate_subexp_standard) <OP_OBJC_MSGCALL>: Remove
7559 'static' from local variable definitions.
7560
7561 2009-06-11 Pedro Alves <pedro@codesourcery.com>
7562
7563 * symtab.c (append_expanded_sal): Remove unused local variables.
7564
7565 2009-06-11 Pedro Alves <pedro@codesourcery.com>
7566
7567 * infrun.c (sched_multi): New global.
7568 (resume): If sched_multi is set, resume only threads of the
7569 current inferior.
7570 (prepare_to_proceed): Don't switch over to wait_ptid if we're
7571 resuming a different inferior, and sched_multi is off.
7572 (show_schedule_multiple): New.
7573 (_initialize_infrun): Register new "set schedule-multiple" command.
7574 * inferior.h (sched_multi): Declare.
7575 * NEWS: Mention new "schedule-multiple" setting.
7576
7577 2009-06-11 Pedro Alves <pedro@codesourcery.com>
7578
7579 * varobj.c (varobj_create): Properly restore the selected frame.
7580
7581 2009-06-05 Tom Tromey <tromey@redhat.com>
7582
7583 * inferior.c (print_inferior): Make a table, not a list. Emit
7584 table headers.
7585
7586 2009-06-10 Jonas Maebe <jonas.maebe@elis.ugent.be>
7587
7588 * darwin-nat.c (darwin_stop_inferior): Pass 0 as options to
7589 darwin_wait (blocking wait).
7590 (darwin_kill_inferior): Likewise.
7591
7592 2009-06-10 Pedro Alves <pedro@codesourcery.com>
7593
7594 * infrun.c (handle_inferior_event): Update comment around trying
7595 to revert back to a stepping thread that has exited.
7596
7597 2009-06-10 Cary Coutant <ccoutant@google.com>
7598
7599 * dwarf2read.c (dwarf_decode_lines): Recognize and ignore
7600 DW_LNE_set_discriminator.
7601
7602 2009-06-10 Pierre Muller <muller@ics.u-strasbg.fr>
7603
7604 * breakpoint.c: ARI fixes.
7605 (create_overlay_event_breakpoint): Avoid assignment inside if statement.
7606 (print_one_breakpoint_location): Likewise.
7607 (create_longjmp_breakpoint): Likewise.
7608 (tracepoint_save_command): Likewise
7609 (bpstat_find_step_resume_breakpoint): No operator at end of line.
7610 (bpstat_stop_status): Likewise.
7611 (describe_other_breakpoints): Likewise.
7612 (hw_watchpoint_used_count): Likewise.
7613 (expand_line_sal_maybe): Likewise.
7614 (break_command_really): Likewise.
7615 (delete_command): Likewise.
7616 (do_enable_breakpoint): Likewise.
7617 (delete_trace_command): Likewise.
7618 (catch_exception_command_1): Likewise and remove extra parentheses.
7619
7620 2009-06-08 Pierre Muller <muller@ics.u-strasbg.fr>
7621
7622 * breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of
7623 "ubreak" command that does not exist.
7624
7625 2009-06-08 Pierre Muller <muller@ics.u-strasbg.fr>
7626
7627 * cli/cli-decode.c (add_alias_cmd): Correct assertion.
7628
7629 2009-06-07 Pedro Alves <pedro@codesourcery.com>
7630
7631 * hppa-tdep.c (_initialize_hppa_tdep): Add declaration.
7632
7633 2009-06-07 Pedro Alves <pedro@codesourcery.com>
7634
7635 * procfs.h: New.
7636 * proc-utils.h (procfs_first_available): Don't declare here.
7637 * sol-thread.c: Include procfs.h instead of sys/procfs.h and
7638 proc-utils.h.
7639 * procfs.c: Include procfs.h.
7640 (procfs_target): Make it public. Don't register
7641 procfs_can_use_hw_breakpoint here.
7642 (proc_set_watchpoint): Check for PCWATCH or PIOCSWATCH being
7643 defined instead of TARGET_HAS_HARDWARE_WATCHPOINTS.
7644 (procfs_can_use_hw_breakpoint): Remove check of
7645 TARGET_HAS_HARDWARE_WATCHPOINTS.
7646 (procfs_use_watchpoints): Register procfs_can_use_hw_breakpoint
7647 here.
7648 (_initialize_procfs): Don't add the procfs target here.
7649
7650 * i386-sol2-nat.c: Include target.h and procfs.h.
7651 (_initialize_amd64_sol2_nat): Install the procfs target here,
7652 customized with watchpoints support.
7653 * irix5-nat.c: Include target.h.
7654 (_initialize_core_irix5): Rename to ...
7655 (_initialize_irix5_nat): ... this. Install the procfs target
7656 here, customized with watchpoints support.
7657 * alpha-nat.c: Include procfs.h.
7658 (_initialize_core_alpha): Rename to...
7659 (_initialize_alpha_nat): ... this. Install the procfs target
7660 here, customized with watchpoints support.
7661 * sparc-sol2-nat.c: Include target.h and procfs.h.
7662 (_initialize_sparc_sol2_nat): New.
7663
7664 * config/i386/nm-i386sol2.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
7665 * config/sparc/nm-sol2.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
7666 * config/mips/irix5.mh (NAT_FILE): Delete.
7667 * config/mips/irix6.mh (NAT_FILE): Delete.
7668 * config/mips/nm-irix5.h: Delete.
7669
7670 20009-06-07 Pedro Alves <pedro@codesourcery.com>
7671
7672 * auxv.c (procfs_xfer_auxv): Change type of the `object' argument
7673 to enum target_object. Cleanup comments.
7674 * auxv.h: Include "target.h". Cleanup comments to not mention
7675 NATIVE_XFER_AUXV anymore.
7676
7677 2009-06-07 Pedro Alves <pedro@codesourcery.com>
7678
7679 * inferior.h (procfs_first_available): Move declaration to...
7680 * proc-utils.h: ... here.
7681 * sol-thread.c: Include procfs.h and proc-utils.h.
7682
7683 2009-06-07 Pedro Alves <pedro@codesourcery.com>
7684
7685 * inferior.h (proc_iterate_over_mappings): Delete declaration.
7686 * nto-tdep.h (proc_iterate_over_mappings): Delete declaration.
7687 * procfs.c (proc_iterate_over_mappings): Delete.
7688
7689 2009-06-07 Pedro Alves <pedro@codesourcery.com>
7690
7691 * target.h (struct target_ops): Make to_has_all_memory,
7692 to_has_memory, to_has_stack, to_has_registers and to_has_execution
7693 methods instead of variables.
7694 (target_has_all_memory_1, target_has_memory_1, target_has_stack_1)
7695 (target_has_registers_1, target_has_execution_1): Declare
7696 functions.
7697 (target_has_all_memory): Rewrite to call target_has_all_memory_1.
7698 (target_has_memory): Rewrite to call target_has_memory_1.
7699 (target_has_stack): Rewrite to call target_has_all_stack_1.
7700 (target_has_registers): Rewrite to call target_has_registers_1.
7701 (target_has_execution): Rewrite to call target_has_execution_1.
7702 (default_child_has_all_memory, default_child_has_memory)
7703 (default_child_has_stack, default_child_has_registers)
7704 (default_child_has_execution): Declare.
7705 (target_mark_running, target_mark_exited): Delete declarations.
7706 * target.c (default_child_has_all_memory,
7707 default_child_has_memory, default_child_has_stack,
7708 default_child_has_registers, default_child_has_execution): New.
7709 (target_has_all_memory_1, target_has_memory_1, target_has_stack_1,
7710 target_has_registers_1, target_has_execution_1): New.
7711 (add_target): Default the to_has_all_memory, to_has_all_memory,
7712 to_has_memory, to_has_stack, to_has_registers and to_has_execution
7713 callbacks to return 0.
7714 (update_current_target): Do not inherit to_has_all_memory,
7715 to_has_memory, to_has_stack, to_has_registers or to_has_execution.
7716 (target_mark_running, target_mark_exited): Delete.
7717 (memory_xfer_partial): Adjust.
7718 (target_read_memory, target_write_memory, target_search_memory):
7719 Dispatch to the the top-most target, not the flattened
7720 current_target.
7721 (target_info): Adjust.
7722 (init_dummy_target): Install return_zero as callback for
7723 to_has_all_memory, to_has_memory, to_has_stack, to_has_registers,
7724 to_has_execution.
7725 (set_maintenance_target_async_permitted): Use have_live_inferiors
7726 instead of target_has_execution.
7727 * target-memory.c (target_write_memory_blocks): Dispatch memory
7728 writes to the the top-most target, not the flattened
7729 current_target.
7730
7731 * breakpoint.c (insert_breakpoints): Don't check for
7732 target_has_execution here.
7733 (update_global_location_list): Check if there are live inferiors
7734 to debug instead of target_has_execution.
7735 * infcmd.c (kill_command, detach_command): Check if there are
7736 inferiors instead of target_has_execution.
7737 * inferior.h (have_live_inferiors): Declare.
7738 * inferior.c (have_live_inferiors): New.
7739 * infrun.c (normal_stop): Don't check for target_has_execution to
7740 finish the thread states.
7741 * thread.c (is_thread_state, is_stopped, is_exited, is_running)
7742 (any_running, is_executing): Remove checks for
7743 target_has_execution.
7744 * top.c (kill_or_detach): Don't try to kill core inferiors.
7745 (quit_target): Don't check for target_has_execution.
7746
7747 * corelow.c (core_has_memory, core_has_stack, core_has_registers):
7748 New.
7749 (init_core_ops): Install core_has_memory, core_has_stack and
7750 core_has_registers.
7751 * exec.c (exec_has_memory): New.
7752 (init_exec_ops): Install exec_has_memory.
7753 * remote.c (remote_add_inferior): Don't call target_mark_running.
7754 (remote_start_remote): Don't call target_mark_exited or call
7755 target_mark_running.
7756 (remote_open_1): Use have_inferiors instead of
7757 target_has_execution. Don't use target_mark_exited.
7758 (init_remote_ops): Install deafult_child_has_all_memory,
7759 default_child_has_memory, default_child_has_stack,
7760 default_child_has_registers, default_child_has_execution.
7761 * bsd-kvm.c (bsd_kvm_return_one): New.
7762 (bsd_kvm_add_target): Register bsd_kvm_return_one as
7763 to_has_memory, to_has_stack and to_has_registers callbacks.
7764 * remote-m32r-sdi.c (m32r_return_one): New.
7765 (init_m32r_ops): Register it.
7766 * inf-child.c (inf_child_target): Adjust to register
7767 default_child_has_all_memory, default_child_has_memory,
7768 default_child_has_stack, default_child_has_registers,
7769 default_child_has_execution callbacks.
7770 * gnu-nat.c (init_gnu_ops): Likewise.
7771 * go32-nat.c (init_go32_ops): Likewise.
7772 * hpux-thread.c (init_hpux_thread_ops): Likewise.
7773 * monitor.c (init_base_monitor_ops): Likewise.
7774 * nto-procfs.c (init_procfs_ops): Likewise.
7775 * remote-mips.c (_initialize_remote_mips): Likewise.
7776 * windows-nat.c (init_windows_ops): Likewise.
7777 * remote-sim.c (gdbsim_create_inferior): Don't use
7778 target_mark_running or target_mark_exited.
7779 (gdbsim_mourn_inferior): Don't call target_mark_exited.
7780 (init_gdbsim_ops): Adjust to register
7781 default_child_has_all_memory, default_child_has_memory,
7782 default_child_has_stack, default_child_has_registers,
7783 default_child_has_execution callbacks.
7784
7785 * linux-nat.c (linux_nat_xfer_partial): If reading memory, and
7786 there's no inferior selected, defer to a lower stratum.
7787
7788 2009-06-05 Tom Tromey <tromey@redhat.com>
7789
7790 * varobj.c (update_dynamic_varobj_children): Wrap error text in
7791 _().
7792 (install_visualizer): Likewise.
7793 (varobj_set_visualizer): Likewise.
7794
7795 2009-06-05 Marc Khouzam <marc.khouzam@ericsson.com>
7796
7797 * mi/mi-main.c (mi_cmd_exec_continue)
7798 (mi_cmd_exec_interrupt): Adjust parsing of thread group
7799 ids to current reality, where they don't have any 'p' prefix.
7800
7801 2009-06-05 Aleksandar Ristovski <aristovski@qnx.com>
7802
7803 * corelow.c (core_open): Check for core_gdbarch before calling
7804 gdbarch_target_signal_from_host.
7805
7806 2009-06-05 Tom Tromey <tromey@redhat.com>
7807
7808 * c-exp.y (parse_number): Don't use K&R definition.
7809 (yylex): Likewise.
7810 (yyerror): Likewise.
7811
7812 2009-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7813
7814 * varobj.c (varobj_update): Fix out of scope varobjs to not to change.
7815
7816 2009-06-04 Ulrich Weigand <uweigand@de.ibm.com>
7817
7818 * symtab.h: Rename SYMBOL_OPS to SYMBOL_COMPUTED_OPS.
7819 * ax-gdb.c (gen_var_ref): Likewise.
7820 * findvar.c (read_var_value, symbol_read_needs_frame): Likewise.
7821 * printcmd.c (address_info): Likewise.
7822 * dwarf2loc.c (dwarf_expr_frame_base): Likewise.
7823 * dwarf2read.c (dwarf2_symbol_mark_computed): Likewise.
7824 * symtab.h: Rename struct symbol_ops to struct symbol_computed_ops.
7825 * dwarf2loc.h: Likewise.
7826 * dwarf2loc.c (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Likewise.
7827
7828 * symtab.h: (struct symbol_register_ops): New struct definition.
7829 (struct symbol): Make "ops" member a union of symbol_computed_ops and
7830 symbol_register_ops callback pointers.
7831 (SYMBOL_REGISTER_OPS): New macro.
7832 * tracepoint.c: Include "objfiles.h".
7833 (scope_info, collect_symbol): Use SYMBOL_REGISTER_OPS register_number
7834 callback to retrieve register numbers.
7835 * ax-gdb.c (gen_var_ref): Likewise.
7836 * findvar.c (read_var_value): Likewise.
7837 * printcmd.c (address_info): Likewise.
7838
7839 * coffread.c (coff_reg_to_regnum): New function.
7840 (coff_register_funcs): New static variable.
7841 (process_coff_symbol): Do not call gdbarch_sdb_reg_to_regnum.
7842 Install SYMBOL_REGISTER_OPS callbacks.
7843 * mdebugread.c (mdebug_reg_to_regnum): New function.
7844 (mdebug_register_funcs): New static variable.
7845 (parse_symbol): Do not call gdbarch_ecoff_reg_to_regnum.
7846 Install SYMBOL_REGISTER_OPS callbacks.
7847 * stabsread.c (stab_reg_to_regnum): New function.
7848 (stab_register_funcs): New static variable.
7849 (define_symbol): Do not call gdbarch_stab_reg_to_regnum.
7850 Install SYMBOL_REGISTER_OPS callbacks.
7851
7852 2009-06-03 Doug Evans <dje@google.com>
7853
7854 * symfile.c (reread_symbols): Reset psymtabs_addrmap to NULL
7855 after discarding its contents.
7856
7857 2009-06-03 Pedro Alves <pedro@codesourcery.com>
7858
7859 * target.c: Include "exec.h".
7860 (update_current_target): Don't inherit to_sections or
7861 to_sections_end.
7862 (target_get_section_table): New.
7863 (target_section_by_addr): Fetch the section table from the passed
7864 in target.
7865 (memory_xfer_partial): Handle unmapped overlay sections before
7866 anything else. Get the overlay mapped address here. Adjust to
7867 use section_table_xfer_memory_partial.
7868 (get_target_memory): Request a TARGET_OBJECT_RAW_MEMORY object
7869 instead of TARGET_OBJECT_MEMORY.
7870 (target_resize_to_sections): Delete.
7871 (remove_target_sections): Adjust to remove target sections from
7872 `current_target_sections', and use resize_section_table.
7873 * target.h (struct target_ops) <to_sections, to_sections_end>:
7874 Remove fields.
7875 <to_get_section_table>: New method.
7876 (xfer_memory, print_section_info): Delete declarations.
7877 (struct target_section_table): New type.
7878 (target_get_section_table): Declare.
7879 (target_resize_to_sections): Delete declaration.
7880 (remove_target_sections): Delete declaration.
7881 * bfd-target.c (target_bfd_xfer_partial): Get the section table
7882 from to_data.
7883 (target_bfd_get_section_table): New.
7884 (target_bfd_xclose): Adjust.
7885 (target_bfd_reopen): Store the section table in the to_data field.
7886 * corelow.c (core_data): New.
7887 (core_close): Adjust to release core_data and its sections.
7888 (core_open): Allocate core_data, and build its target sections
7889 table.
7890 (deprecated_core_resize_section_table): New.
7891 (core_files_info): Pass core_data to print_section_info.
7892 (core_xfer_partial): Adjust to use
7893 section_table_xfer_memory_partial for TARGET_OBJECT_MEMORY xfers.
7894 (init_core_ops): Do not install a deprecated_xfer_memory callback
7895 anymore.
7896 * solib.c (update_solib_list): Add the shared library sections
7897 to the current target sections table.
7898 * exec.c (current_target_sections_1): New global.
7899 (current_target_sections): New global.
7900 (exec_close_1): New function, refactored from exec_close. Remove
7901 the exec_bfd's sections from the current target sections table.
7902 Adjust to not use to_sections.
7903 (exec_close): Remove all target sections. Call exec_close_1.
7904 (exec_file_clear): Use exec_close_1 instead of unpushing the
7905 target.
7906 (exec_file_attach): Likewise. Adjust to not use to_sections. Add
7907 exec_bfd's sections to the current target sections table. Don't
7908 push the exec_ops target here.
7909 (resize_section_table): New.
7910 (add_target_sections): New.
7911 (remove_target_sections): Moved here.
7912 (section_table_xfer_memory): Adjust to implement the xfer_partial
7913 interface, and rename to...
7914 (section_table_xfer_memory_partial): ... this, replacing the
7915 current function of that same name.
7916 (exec_get_section_table): New.
7917 (exec_xfer_partial): New.
7918 (xfer_memory): Delete.
7919 (print_section_info): Replace the target_ops parameter by a
7920 target_section_table parameter.
7921 (exec_files_info, set_section_command, exec_set_section_address):
7922 Adjust to use the current sections table.
7923 (init_exec_ops): Do not register a deprecated_xfer_memory
7924 callback. Register to_xfer_partial and to_get_section_table
7925 callbacks.
7926 * infrun.c (handle_inferior_event): Update comments around
7927 solib_add.
7928 * rs6000-nat.c (xcoff_relocate_core): Adjust to use
7929 deprecated_core_resize_section_table.
7930 * exec.h (resize_section_table): Declare.
7931 (section_table_xfer_memory_partial): Add const char * argument.
7932 (remove_target_sections): Declare here.
7933 (add_target_sections): Declare.
7934 (print_section_info): Declare here.
7935 * gdbcore.h (deprecated_core_resize_section_table): Declare.
7936
7937 2009-06-03 Ulrich Weigand <uweigand@de.ibm.com>
7938
7939 * value.h (struct internalvar): Remove.
7940 (get_internalvar_integer): Add prototype.
7941 (set_internalvar_integer): Add prototype.
7942 (clear_internalvar): Add prototype.
7943
7944 * value.c (struct internalvar): Move here. Add type member. Remove
7945 endian member. Add union_internalvar member instead of value member.
7946 (init_if_undefined_command): Use intvar->type.
7947 (create_internalvar): Do not initialize value/endian, but type.
7948 (create_internalvar_type_lazy): Call create_internalvar.
7949 (value_of_internalvar): Handle host-side internalvar contents.
7950 (set_internalvar_component): Likewise.
7951 (set_internalvar): Likewise.
7952 (get_internalvar_integer): New function.
7953 (clear_internalvar): Likewise.
7954 (set_internalvar_integer): Likewise.
7955 (preserve_values): Handle host-side internalvar contents.
7956
7957 * breakpoint.c (set_breakpoint_count, set_tracepoint_count): Call
7958 set_internalvar_integer instead of set_internalvar.
7959 * findcmd.c (find_command): Likewise.
7960 * infrun.c (handle_inferior_event): Likewise.
7961 * source.c (forward_search_command, reverse_search_command): Likewise.
7962 * tracepoint.c (set_traceframe_num, set_tracepoint_num,
7963 set_traceframe_context): Likewise.
7964
7965 * printcmd.c (x_command): Call clear_internalvar instead of
7966 set_internalvar.
7967 * tracepoint.c (set_traceframe_context): Likewise.
7968
7969 * breakpoint.c (get_number_trailer): Call get_internalvar_integer
7970 instead of value_of_internalvar.
7971 * linespec.c (decode_dollar): Likewise.
7972
7973 * expprint.c (dump_subexp_body_standard): Use internalvar_name
7974 instead of accessing internalvar private elements.
7975 * valops.c (value_assign): Copy from original source instead of
7976 accessing internalvar private elements.
7977
7978 2009-06-03 Ulrich Weigand <uweigand@de.ibm.com>
7979
7980 * scm-lang.c (builtin_type_scm): Remove.
7981 (scm_lookup_name): Add GDBARCH parameter. Use it instead of
7982 objfile architecture. Use per-architecture builtin_scm_type instead
7983 of builtin_type_scm.
7984 (evaluate_exp): Pass expression architecture to scm_lookup_name.
7985
7986 (scm_get_field): Add SIZE parameter. Use it instead of
7987 TYPE_LENGTH (builtin_type_scm).
7988
7989 (build_scm_types): New function.
7990 (scm_type_data): New variable.
7991 (builtin_scm_type): New function.
7992 (_initialize_scheme_language): Do not initialize builtin_type_scm.
7993 Register build_scm_types as post-init function for scm_type_data.
7994
7995 * scm-exp.c (scm_lreadr): Use per-architecture builtin_scm_type
7996 instead of builtin_type_scm.
7997
7998 * scm-lang.h (SCM_CAR, SCM_CDR): Pass SCM_SIZE to scm_get_field.
7999 (scm_get_field): Add SIZE paramter.
8000 (scm_scmval_print): Remove prototype.
8001 (builtin_type_scm): Remove.
8002 (struct builtin_scm_type): Add structure definition.
8003 (builtin_scm_type): Add prototype.
8004
8005 * scm-valprint.c (scm_inferior_print): Add TYPE parameter. Use it
8006 instead of builtin_core_addr type; do not use objfile architecture.
8007 (scm_scmlist_print): Add TYPE parameter. Use it to define SCM_SIZE.
8008 Pass type to scm_scmval_print.
8009 (scm_ipruk): Add TYPE parameter. Use it to define SCM_SIZE.
8010 (scm_scmval_print): Make static. Add TYPE parameter. Use it to
8011 define SCM_SIZE. Pass type to scm_ipruk and scm_scmlist_print.
8012 (scm_val_print): Pass type to scm_inferior_print and scm_scmval_print.
8013
8014 2009-06-03 Ulrich Weigand <uweigand@de.ibm.com>
8015
8016 * mdebugread.c (mdebug_type_void, mdebug_type_char, mdebug_type_short,
8017 mdebug_type_int, mdebug_type_int_32, mdebug_type_int_64,
8018 mdebug_type_long_32, mdebug_type_long_64, mdebug_type_long_long_64,
8019 mdebug_type_unsigned_char, mdebug_type_unsigned_short,
8020 mdebug_type_unsigned_int_32, mdebug_type_unsigned_int_64,
8021 mdebug_type_unsigned_long_32, mdebug_type_unsigned_long_64,
8022 mdebug_type_unsigned_long_long_64, mdebug_type_adr_32,
8023 mdebug_type_adr_64, mdebug_type_float, mdebug_type_double,
8024 mdebug_type_complex, mdebug_type_double_complex,
8025 mdebug_type_fixed_dec, mdebug_type_float_dec, mdebug_type_string):
8026 Remove.
8027
8028 (basic_type_data): New global variable.
8029 (basic_type): New function.
8030 (parse_type): Remove static basic type map map_bt. Call basic_type
8031 to get basic types instead of using mdebug_type_ variables.
8032
8033 (parse_symbol): Use builtin types instead of mdebug_type_ variables.
8034 (upgrade_type): Likewise.
8035 (parse_procedure): Likewise.
8036 (psymtab_to_symtab_1): Likewise.
8037
8038 (_initialize_mdebugread): Do not initialize mdebug_type_ variables.
8039 Initialize basic_type_data.
8040
8041 2009-06-03 Ulrich Weigand <uweigand@de.ibm.com>
8042
8043 * dfp.h (decimal_binop): Convert LEN_RESULT to input parameter.
8044 * dfp.c (promote_decimal): Remove.
8045 (decimal_binop): Convert LEN_RESULT to input parameter.
8046 Remove call to decimal_binop.
8047 (decimal_compare): Remove call to decimal_binop.
8048
8049 * valarith.c (value_binop): Pass desired result type length
8050 to decimal_binop.
8051
8052 2009-06-01 Tristan Gingold <gingold@adacore.com>
8053
8054 * configure.tgt (avr): Set gdb_sim to use the simulator.
8055
8056 2009-05-29 Doug Evans <dje@google.com>
8057
8058 * infrun.c (prepare_to_proceed): Document. Assert !non_stop.
8059 If scheduler-locking is enabled, we're not going to be singlestepping
8060 any other previously stopped thread.
8061
8062 2009-05-29 Pedro Alves <pedro@codesourcery.com>
8063
8064 * mi/mi-interp.c (mi_on_resume): Initialize `count' to 0.
8065
8066 2009-05-29 Eli Zaretskii <eliz@gnu.org>
8067
8068 * i386-tdep.c (i386_go32_init_abi): Use SVR4 register numbering
8069 for stabs and COFF debug info.
8070
8071 2009-05-28 Pedro Alves <pedro@codesourcery.com>
8072
8073 * infrun.c (handle_inferior_event): When thread hoping, switch
8074 inferior_ptid to the event thread before removing breakpoints from
8075 the target. If not stopping, also try to revert back to a thread
8076 that was doing a "next". Check if that thread still exists before
8077 resuming.
8078 (currently_stepping_thread): Delete and merge with ...
8079 (currently_stepping): ... this.
8080 (currently_stepping_callback): Rename to ...
8081 (currently_stepping_or_nexting_callback): ... this, and also
8082 return true if the thread was stepping over a call (has a
8083 step-resume breakpoint).
8084
8085 2009-05-28 Tom Tromey <tromey@redhat.com>
8086
8087 * python/python.c (gdbpy_parameter): Rename. Fix error message.
8088 (GdbMethods): Change "get_parameter" to "parameter".
8089
8090 2009-05-28 Pierre Muller <muller@ics.u-strasbg.fr>
8091 Paul Pluzhnikov <ppluzhnikov@google.com>
8092
8093 * configure.ac (!have_libpython): Add python-prettyprint source
8094 and object files.
8095 * configure: Regenerate.
8096 * python/python-prettyprint.c: Move "#ifdef HAVE_PYTHON" before
8097 python headers.
8098
8099 2009-05-27 Vladimir Prus <vladimir@codesourcery.com>
8100 Tom Tromey <tromey@redhat.com>
8101 Thiago Jung Bauermann <bauerman@br.ibm.com>
8102
8103 * mi/mi-main.c (mi_cmd_list_features): List "python" feature.
8104 * varobj.h (varobj_set_visualizer): Declare.
8105 (varobj_get_display_hint): Likewise.
8106 (varobj_update_result_t) <children_changed, value_installed>: New
8107 fields.
8108 * mi/mi-cmds.c (mi_cmds): Add var-set-visualizer.
8109 * mi/mi-cmds.h (mi_cmd_var_set_visualizer,
8110 mi_cmd_var_set_child_range): Declare.
8111 * mi/mi-cmd-var.c (mi_cmd_var_set_visualizer): New function.
8112 (mi_cmd_var_list_children): Emit display hint.
8113 (varobj_update_one): Emit display hint. Handle dynamic children.
8114 * python/python.c (GdbMethods): Add "default_visualizer".
8115 * python/python-internal.h (apply_varobj_pretty_printer,
8116 gdbpy_get_varobj_pretty_printer, gdbpy_get_display_hint):
8117 Declare.
8118 (gdbpy_default_visualizer): Likewise.
8119 * varobj.c: Include python.h, python-internal.h.
8120 (PyObject): New typedef.
8121 (struct varobj) <children_requested, pretty_printer>: New fields.
8122 (varobj_create): Call install_default_visualizer.
8123 (instantiate_pretty_printer): New function.
8124 (varobj_set_display_format): Update.
8125 (varobj_get_display_hint): New function.
8126 (update_dynamic_varobj_children): New function.
8127 (varobj_get_num_children): Handle dynamic children.
8128 (varobj_list_children): Likewise.
8129 (install_new_value): Likewise.
8130 (varobj_add_child): New function.
8131 (install_visualizer): Likewise.
8132 (install_default_visualizer): Likewise.
8133 (varobj_set_visualizer): Likewise.
8134 (varobj_update): Handle dynamic children.
8135 (create_child): Use create_child_with_value.
8136 (create_child_with_value): New function.
8137 (value_get_print_value): Call pretty printer. Add value_formatter
8138 argument.
8139 (c_value_of_variable): Update.
8140 (varobj_invalidate): Always free all_rootvarobj.
8141 * python/python-prettyprint.c (apply_varobj_pretty_printer): New
8142 function.
8143 (gdbpy_get_varobj_pretty_printer): Likewise.
8144 (gdbpy_default_visualizer): Likewise.
8145
8146 2009-05-27 Tom Tromey <tromey@redhat.com>
8147 Thiago Jung Bauermann <bauerman@br.ibm.com>
8148 Phil Muldoon <pmuldoon@redhat.com>
8149 Paul Pluzhnikov <ppluzhnikov@google.com>
8150 Vladimir Prus <vladimir@codesourcery.com>
8151
8152 * python/python-value.c (value_object_to_value): New function.
8153 * python/python-internal.h: Include frameobject.h.
8154 (gdbpy_children_cst, gdbpy_to_string_cst, gdbpy_display_hint_cst):
8155 Declare.
8156 (value_object_to_value): Declare.
8157 * printcmd.c (struct format_data) <raw>: New field.
8158 (last_format): Default to 0.
8159 (decode_format): Initialize val.raw. Handle /r flag.
8160 (print_command_1): Initialize fmt.raw and opts.raw.
8161 (output_command): Likewise.
8162 (x_command): Fix initialization of fmt.format. Initialize
8163 fmt.raw.
8164 (display_command): Initialize fmt.raw.
8165 (do_one_display): Set opts.raw.
8166 * python/python.c (gdbpy_to_string_cst, gdbpy_children_cst,
8167 gdbpy_display_hint_cst): New globals.
8168 (_initialize_python): Initialize them. Set gdb.pretty_printers.
8169 * cp-valprint.c: Include python.h.
8170 (cp_print_value): Call apply_val_pretty_printer.
8171 * python/python.h (apply_val_pretty_printer): Declare.
8172 * stack.c (print_this_frame_argument_p): Remove.
8173 (print_frame_args): Compute summary flag. Don't use
8174 print_this_frame_argument_p.
8175 * valprint.c: Include python.h.
8176 (user_print_options): Initialize new fields.
8177 (scalar_type_p): New function.
8178 (val_print): Handle 'raw' and 'summary' modes. Call
8179 apply_val_pretty_printer.
8180 (value_print): Handle 'raw' mode.
8181 * valprint.h (struct value_print_options) <raw, summary>: New
8182 fields.
8183 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-prettyprint.o
8184 (SUBDIR_PYTHON_SRCS): Add python-prettyprint.c.
8185 (python-prettyprint.o): New target.
8186 * python/python-prettyprint.c: New file.
8187
8188 2009-05-27 Tom Tromey <tromey@redhat.com>
8189 Paul Pluzhnikov <ppluzhnikov@google.com>
8190
8191 * mi/mi-main.c (mi_cmd_data_evaluate_expression): Use
8192 value_address.
8193 * cli/cli-dump.c (dump_value_to_file): Use value_address.
8194 * valprint.c (common_val_print): Likewise.
8195 * v850-tdep.c (v850_push_dummy_call): Use value_address.
8196 * tracepoint.c (encode_actions): Use value_address.
8197 * printcmd.c (print_formatted): Use value_address.
8198 (x_command): Likewise.
8199 * p-valprint.c (pascal_object_print_static_field): Use
8200 value_address.
8201 * mn10300-tdep.c (mn10300_push_dummy_call): Use value_address.
8202 * mips-tdep.c (mips_eabi_push_dummy_call): Use value_address.
8203 * m32r-tdep.c (m32r_push_dummy_call): Use value_address.
8204 * jv-valprint.c (java_value_print): Use value_address.
8205 * infcall.c (find_function_addr): Use value_address.
8206 * gnu-v3-abi.c (gnuv3_rtti_type): Use value_address.
8207 * gnu-v2-abi.c (gnuv2_value_rtti_type): Use value_address.
8208 * frv-tdep.c (frv_push_dummy_call): Use value_address.
8209 * frame.c (frame_register_unwind): Use value_address.
8210 (frame_unwind_register_value): Likewise.
8211 * darwin-nat-info.c (info_mach_region_command): Use
8212 value_address.
8213 * cp-valprint.c (cp_print_static_field): Use value_address.
8214 * c-valprint.c (c_value_print): Use value_address.
8215 * breakpoint.c (update_watchpoint): Use value_address.
8216 (can_use_hardware_watchpoint): Likewise.
8217 * ada-valprint.c (ada_val_print_1): Use value_address.
8218 (ada_value_print): Likewise.
8219 * ada-tasks.c (read_fat_string_value): Use value_address.
8220 * jv-lang.c (java_link_class_type): Use set_value_address.
8221 (java_link_class_type): Likewise.
8222 (get_java_utf8_name): Use value_address.
8223 (type_from_class): Likewise.
8224 (java_link_class_type): Likewise.
8225 * findvar.c (value_of_register): Use set_value_address.
8226 (read_var_value): Likewise.
8227 (read_var_value): Likewise.
8228 * eval.c (evaluate_subexp_standard): Use set_value_address.
8229 (evaluate_subexp_standard): Use value_address.
8230 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Use set_value_address.
8231 * ada-lang.c (coerce_unspec_val_to_type): Use set_value_address.
8232 (ada_value_primitive_packed_val): Likewise.
8233 (ensure_lval): Likewise.
8234 (thin_data_pntr): Use value_address.
8235 (desc_bounds): Likewise.
8236 (ada_value_primitive_packed_val): Likewise.
8237 (value_assign_to_component): Likewise.
8238 (ensure_lval): Likewise.
8239 (make_array_descriptor): Likewise.
8240 (ada_to_fixed_value): Likewise.
8241 (unwrap_value): Likewise.
8242 * value.c (deprecated_value_address_hack): Remove.
8243 (value_address): New function.
8244 (value_raw_address): Likewise.
8245 (set_value_address): Likewise.
8246 (value_fn_field): Use set_value_address.
8247 (value_from_contents_and_address): Likewise.
8248 (value_fn_field): Likewise.
8249 (allocate_value_lazy): Don't use VALUE_ADDRESS.
8250 (value_as_address): Use value_address.
8251 (value_static_field): Likewise.
8252 * valops.c (search_struct_field): Use set_value_address.
8253 (value_at): Likewise.
8254 (value_at_lazy): Likewise.
8255 (value_repeat): Likewise.
8256 (value_cast_structs): Use value_address.
8257 (value_cast): Likewise.
8258 (value_fetch_lazy): Likewise.
8259 (value_assign): Likewise.
8260 (value_repeat): Likewise.
8261 (address_of_variable): Likewise.
8262 (value_coerce_array): Likewise.
8263 (value_coerce_function): Likewise.
8264 (value_addr): Likewise.
8265 (search_struct_field): Likewise.
8266 (search_struct_method): Likewise.
8267 (find_method_list): Likewise.
8268 (value_struct_elt_for_reference): Likewise.
8269 (value_full_object): Likewise.
8270 * jv-valprint.c (java_value_print): Use set_value_address.
8271 * value.h (deprecated_value_address_hack): Remove.
8272 (VALUE_ADDRESS): Remove.
8273 (value_address): Declare.
8274 (value_raw_address): Declare.
8275 (set_value_address): Declare.
8276
8277 2009-05-27 Tom Tromey <tromey@redhat.com>
8278 Thiago Jung Bauermann <bauerman@br.ibm.com>
8279 Phil Muldoon <pmuldoon@redhat.com>
8280 Paul Pluzhnikov <ppluzhnikov@google.com>
8281
8282 * python/python.c (_initialize_python): Call
8283 gdbpy_initialize_types.
8284 (GdbMethods): Add "lookup_type".
8285 * python/python-value.c (value_object) <type>: New field.
8286 (valpy_dealloc): Decref type.
8287 (valpy_new): Initialize type.
8288 (valpy_get_type): New function.
8289 (value_to_value_object): Initialize type.
8290 (valpy_cast): New function.
8291 (value_object_getset): Add "type".
8292 (value_object_methods): Add "cast".
8293 * python/python-internal.h (type_to_type_object): Declare.
8294 (type_object_to_type): Likewise.
8295 (gdbpy_initialize_types): Likewise.
8296 (gdbpy_lookup_type): Declare.
8297 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-type.o.
8298 (SUBDIR_PYTHON_SRCS): Add python-type.c.
8299 (python-type.o): New target.
8300 * python/python-type.c: New file.
8301
8302 2009-05-27 Tom Tromey <tromey@redhat.com>
8303 Thiago Jung Bauermann <bauerman@br.ibm.com>
8304 Phil Muldoon <pmuldoon@redhat.com>
8305
8306 * python/python.c: Include objfiles.h, observer.h.
8307 (gdbpy_auto_load): New global.
8308 (gdbpy_current_objfile): Likewise.
8309 (GDBPY_AUTO_FILENAME): New define.
8310 (gdbpy_new_objfile): New function.
8311 (gdbpy_get_current_objfile): Likewise.
8312 (gdbpy_objfiles): Likewise.
8313 (_initialize_python): Add "maint set auto-load". Call
8314 gdbpy_initialize_objfile. Attach objfile observer.
8315 (GdbMethods): New methods current_objfile, objfiles.
8316 * python/python-objfile.c: New file.
8317 * python/python-internal.h (objfile_to_objfile_object): Declare.
8318 (objfpy_get_printers): Likewise.
8319 (gdbpy_initialize_objfile): Likewise.
8320 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-objfile.o.
8321 (SUBDIR_PYTHON_SRCS): Add python-objfile.c.
8322 (python-objfile.o): New target.
8323
8324 2009-05-27 Pedro Alves <pedro@codesourcery.com>
8325
8326 * infrun.c (follow_exec): Clear the stop_requested flag.
8327 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
8328 Add debug output.
8329
8330 2009-05-27 Aleksandar Ristovski <aristovski@qnx.com>
8331
8332 * nto-procfs.c (get_regset): Pass correct pointer.
8333
8334 2009-05-26 Doug Evans <dje@google.com>
8335
8336 * dwarf2read.c (follow_die_ref): Add comment.
8337 (dwarf2_mark_helper): Tweak comment.
8338 (dwarf2_mark): Move description to its proper place.
8339
8340 2009-05-25 Pierre Muller <muller@ics.u-strasbg.fr>
8341
8342 * procfs.c (procfs_wait): Add options parameter.
8343
8344 2009-05-24 Doug Evans <dje@google.com>
8345
8346 Global renaming of find_thread_pid to find_thread_ptid.
8347 * gdbthread.h (find_thread_ptid): Renamed from find_thread_pid.
8348 * thread.c (find_thread_ptid): Renamed from find_thread_pid.
8349 All callers updated.
8350
8351 * infrun.c (follow_fork): Initialize new step_* locals
8352 to avoid "may be used uninitialized" warnings.
8353
8354 2009-05-24 Pedro Alves <pedro@codesourcery.com>
8355
8356 * inflow.c (copy_terminal_info): Deep copy `run_terminal'.
8357
8358 2009-05-24 Pedro Alves <pedro@codesourcery.com>
8359
8360 * gdbthread.h (struct thread_info): New `pending_follow' field.
8361 * thread.c (new_thread): New function.
8362 (add_thread_silent): Use it.
8363 * breakpoint.c (internal_breakpoint_number): New global, moved
8364 from inside...
8365 (create_internal_breakpoint): ... this.
8366 (clone_momentary_breakpoint): New.
8367 * breakpoint.h (clone_momentary_breakpoint): Declare.
8368 * infrun.c (nullify_last_target_wait_ptid): Move declaration
8369 higher.
8370 (pending_follow): Delete.
8371 (follow_fork): Handle pending follow fork event here. Moved the
8372 preserving of thread stepping state here.
8373 (resume): Don't handle pending follow fork events here. Only
8374 install the inferior's terminal modes if we're about to resume it.
8375 (proceed): Handle possible pending follow fork events here.
8376 (init_wait_for_inferior): No need to clear pending_follow anymore,
8377 it's gone.
8378 (handle_inferior_event): Adjust to per-thread `pending_follow'.
8379 Call `follow_fork' to handle following the fork. If the
8380 follow-fork is cancelled, stop stepping.
8381 * linux-nat.c (linux_child_follow_fork): Adjust to per-thread
8382 `pending_follow' events. Remove code that handled preserving the
8383 thread stepping state.
8384 * inf-ptrace.c (inf_ptrace_follow_fork): Ditto.
8385 * inf-ttrace.c (inf_ttrace_follow_fork): Ditto.
8386
8387 2009-05-24 Pierre Muller <muller@ics.u-strasbg.fr>
8388
8389 * symfile.c (add_shared_symbol_files_command): Remove
8390 prototype and function.
8391 (_initialize _symfile): Move "add-shared-symbol-files"
8392 command and "assf" alias.
8393 * windows-nat.c (_initialize_windows_nat): to here.
8394 Change "add-shared-symbol-files" to alias.
8395
8396 * config/i386/cygwin.mh: Remove NAT_FILE.
8397 * config/i386/mingw.mh: Remove NAT_FILE.
8398 * config/i386/mingw64.mh: Remove NAT_FILE.
8399 * config/i386/nm-cygwin.h: Remove file.
8400 * config/i386/nm-cygwin64.h: Remove file.
8401
8402 2009-05-24 Hui Zhu <teawater@gmail.com>
8403
8404 * i386-linux-tdep.c (I386_LINUX_RECORD_SIZE_*,
8405 I386_LINUX_RECORD_IOCTL_*,
8406 I386_LINUX_RECORD_FCNTL_*) Removed.
8407 (i386_linux_init_abi): Change size of record from macros to
8408 numbers.
8409
8410 2009-05-24 Hui Zhu <teawater@gmail.com>
8411
8412 * i386-linux-tdep.c (i386_linux_init_abi): Remove size_char.
8413 * linux-record.c (record_linux_system_call): Ditto.
8414 * linux-record.h (linux_record_tdep): Ditto.
8415
8416 2009-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
8417
8418 Replace the savestring calls by xstrdup calls where possible.
8419 * breakpoint.c (condition_command, set_raw_breakpoint)
8420 (create_catchpoint, update_breakpoint_locations): Replace the
8421 savestring calls by xstrdup calls where possible.
8422 * buildsym.c (start_subfile, patch_subfile_names, record_debugformat)
8423 (record_producer): Likewise.
8424 * coffread.c (coff_start_symtab, complete_symtab): Likewise.
8425 * corefile.c (set_gnutarget): Likewise.
8426 * dbxread.c (add_new_header_file): Likewise.
8427 * demangle.c (set_demangling_command, set_demangling_style): Likewise.
8428 * event-top.c (push_prompt, pop_prompt, command_line_handler)
8429 (set_async_prompt): Likewise.
8430 * infcmd.c (set_inferior_io_terminal, attach_command_post_wait):
8431 Likewise.
8432 * language.c (set_language_command, _initialize_language): Likewise.
8433 * linespec.c (decode_line_2): Likewise.
8434 * rs6000-nat.c (add_vmap): Likewise.
8435 * top.c (set_prompt, init_history, init_main): Likewise.
8436 * tracepoint.c (stringify_collection_list): Likewise.
8437 * varobj.c (varobj_create): Remove variable expr_len. Replace the
8438 savestring calls by xstrdup calls where possible.
8439 (value_of_root, c_name_of_variable, c_describe_child): Replace the
8440 savestring calls by xstrdup calls where possible.
8441 * xcoffread.c (complete_symtab): Likewise.
8442 * cli/cli-script.c (build_command_line, define_command): Likewise.
8443 * cli/cli-setshow.c (do_setshow_command): Likewise.
8444
8445 2009-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
8446
8447 Remove already unreachable code.
8448 * varobj.c (varobj_get_handle): Fix comment when error is called.
8449 All callers updated.
8450
8451 2009-05-23 Eli Zaretskii <eliz@gnu.org>
8452
8453 * README (`configure' options): Document GDB-specific options to
8454 `configure'.
8455
8456 * symtab.c (skip_prologue_using_lineinfo): New function.
8457 (find_function_start_sal): Use it to get to the first line of
8458 function's body that has an entry in the lineinfo table.
8459
8460 * symmisc.c (dump_symtab): Switch the current language to
8461 the language of the symtab we are dumping only if the symtab's
8462 language is neither language_auto nor language_unknown.
8463
8464 * coffread.c (coff_symtab_read): Set language_minimal as the
8465 language for the "_globals_" pseudo-file.
8466 (process_coff_symbol): Set the symbol's language to the language
8467 of current_subfile.
8468
8469 2009-05-22 Pedro Alves <pedro@codesourcery.com>
8470
8471 * target.h (struct section_table): Rename to ...
8472 (struct target_section): ... this.
8473 * exec.c: Adjust all references.
8474 * exec.h: Adjust all references.
8475 * nto-tdep.c: Adjust all references.
8476 * nto-tdep.h: Adjust all references.
8477 * ppc-linux-tdep.c: Adjust all references.
8478 * rs6000-nat.c: Adjust all references.
8479 * s390-tdep.c: Adjust all references.
8480 * solib-darwin.c: Adjust all references.
8481 * solib-frv.c: Adjust all references.
8482 * solib-irix.c: Adjust all references.
8483 * solib-null.c: Adjust all references.
8484 * solib-osf.c: Adjust all references.
8485 * solib-pa64.c: Adjust all references.
8486 * solib-som.c: Adjust all references.
8487 * solib-sunos.c: Adjust all references.
8488 * solib-svr4.c: Adjust all references.
8489 * solib-target.c: Adjust all references.
8490 * solib.c: Adjust all references.
8491 * solist.h: Adjust all references.
8492 * symfile.c: Adjust all references.
8493 * symfile.h: Adjust all references.
8494 * target.c: Adjust all references.
8495
8496 2009-05-22 Hui Zhu <teawater@gmail.com>
8497
8498 Add sys_fcntl argument interfaces to linux_record_tdep.
8499
8500 * linux-record.h (linux_record_tdep): Add fcntl_F_GETLK,
8501 fcntl_F_GETLK64, fcntl_F_SETLK64 and fcntl_F_SETLKW64 to be
8502 interfaces.
8503 * i386-linux-tdep.c (I386_LINUX_RECORD_FCNTL_F_GETLK,
8504 I386_LINUX_RECORD_FCNTL_F_GETLK64,
8505 I386_LINUX_RECORD_FCNTL_F_SETLK64,
8506 I386_LINUX_RECORD_FCNTL_F_SETLKW64): New macros. The values
8507 of I386 Linux sys_fcntl arguments.
8508 (i386_linux_init_abi): Set macros values to linux_record_tdep.
8509 * linux-record.c (record_linux_system_call): Change to use
8510 the interface in linux_record_tdep in sys_fcntl and
8511 sys_fcntl64.
8512
8513 * linux-record.c (record_linux_system_call): Fix the process
8514 record build error about type in CYGWIN.
8515
8516 2009-05-22 Pedro Alves <pedro@codesourcery.com>
8517
8518 * inflow.c (kill_command): Delete left over static declaration.
8519
8520 2009-05-22 Pedro Alves <pedro@codesourcery.com>
8521
8522 * bfd-target.c: Don't include gdb_assert.h or gdb_string.h.
8523 Include exec.h.
8524 (struct section_closure): Delete.
8525 (add_to_section_table): Delete.
8526 (build_target_sections_from_bfd): Delete.
8527 (target_bfd_xfer_partial): Use section_table_xfer_memory_partial.
8528 (target_bfd_reopen): Use build_section_table.
8529 * exec.c (xfer_memory): Move most code except for overlay
8530 debugging support from here...
8531 (section_table_xfer_memory): ... to this new function.
8532 (section_table_xfer_memory_partial): New.
8533 * exec.h (section_table_xfer_memory_partial): Declare.
8534 * bfd-target.h (build_target_sections_from_bfd): Delete
8535 declaration.
8536
8537 2009-05-22 Pedro Alves <pedro@codesourcery.com>
8538
8539 * remote.c (compare_sections_command): Don't declare exec_bfd.
8540 * tracepoint.c: Include "gdbcore.h".
8541 (remote_set_transparent_ranges): Don't declare exec_bfd.
8542
8543 2009-05-21 Pedro Alves <pedro@codesourcery.com>
8544
8545 * aix-thread.c (init_aix_thread_ops): Whitespace.
8546
8547 2009-05-21 Pedro Alves <pedro@codesourcery.com>
8548
8549 * dec-thread.c (dec_thread_wait): Add options parameter. Use it
8550 to call the to_wait method in the target beneath.
8551 * remote-m32r-sdi.c (m32r_wait): Add options parameter.
8552
8553 2009-05-21 Joel Brobecker <brobecker@adacore.com>
8554
8555 * aix-thread.c (aix_thread_wait): Add options parameter. Use it
8556 to call the to_wait method in the target_beneath.
8557
8558 2009-05-21 Pedro Alves <pedro@codesourcery.com>
8559
8560 * linux-nat.c (linux_nat_terminal_inferior)
8561 (linux_nat_terminal_ours): Don't check sync_execution.
8562 * remote.c (remote_terminal_inferior, remote_terminal_ours):
8563 Don't check sync_execution. Update comments.
8564 * target.c (target_terminal_inferior): New.
8565 * target.h (target_terminal_inferior): Delete macro, and declare
8566 as function.
8567 * event-top.c (async_disable_stdin): Make idempotent. Don't give
8568 the target the terminal here.
8569 * inflow.c (terminal_ours_1): Don't return early without setting
8570 `terminal_is_ours'.
8571
8572 2009-05-21 Pedro Alves <pedro@codesourcery.com>
8573
8574 * target.h (TARGET_WNOHANG): New.
8575 * target.c (target_wait): Add `options' argument. Adjust.
8576 (struct target_ops) <to_wait>: Add `options' argument.
8577 (target_wait): Add `options' argument.
8578 * infrun.c (wait_for_inferior): Pass 0 as options to
8579 target_wait (blocking wait).
8580 (fetch_inferior_event): Pass TARGET_WNOHANG as options to
8581 target_wait.
8582 * fork-child.c (startup_inferior): Pass 0 as options to
8583 target_wait (blocking wait).
8584 * linux-nat.c (linux_nat_create_inferior): Remove async masking.
8585 (linux_nat_wait_1): Add `target_options' argument. Use it instead
8586 of checking on target_can_async_p.
8587 (linux_nat_wait): Add `target_options' argument. Adjust.
8588 * remote.c (remote_wait_ns): Add `options' argument. Adjust to
8589 check on TARGET_WNOWAIT instead of checking on remote_is_async_p.
8590 (remote_wait_as): Add `options' argument. Adjust to check on
8591 TARGET_WNOWAIT instead of checking on remote_is_async_p. If doing
8592 a blocking wait, keep waiting until an interesting event comes
8593 out.
8594 (remote_wait): Add `options' argument. Don't loop here if the
8595 target is in async mode, and a blocking wait has been requested.
8596
8597 * top.c (deprecated_target_wait_hook): Add `options' argument.
8598 * linux-thread-db.c (thread_db_wait): Add `options' argument, and
8599 pass it down to the layer beneath.
8600 * inf-ptrace.c (inf_ptrace_wait): Add `options' argument.
8601 * record.c (record_beneath_to_wait): Add `options' argument.
8602 (record_wait): Add `options' argument, and pass it down to the
8603 layer beneath.
8604 * bsd-uthread.c (bsd_uthread_wait): Add `options' argument.
8605 * darwin-nat.c (darwin_wait): Likewise.
8606 * defs.h (deprecated_target_wait_hook): Likewise.
8607 * gnu-nat.c (gnu_wait): Add `options' argument.
8608 * go32-nat.c (go32_wait): Likewise.
8609 * hpux-thread.c (hpux_thread_wait): Add `options' argument, and
8610 pass it down to the layer beneath.
8611 * inf-ttrace.c (inf_ttrace_wait): Add `options' argument.
8612 * monitor.c (monitor_wait): Likewise.
8613 * nto-procfs.c (procfs_wait): Likewise.
8614 * remote-mips.c (mips_wait): Add `options' argument.
8615 * remote-sim.c (gdbsim_wait): Likewise.
8616 * rs6000-nat.c (rs6000_wait): Add `options' argument.
8617 * sol-thread.c (sol_thread_wait): Add `options' argument, and pass
8618 it down to the layer beneath.
8619 * spu-linux-nat.c (spu_child_wait): Add `options' argument.
8620 * windows-nat.c (windows_wait): Likewise.
8621 * tui/tui-hooks.c (tui_target_wait_hook): Likewise. Adjust.
8622
8623 2009-05-21 Pedro Alves <pedro@codesourcery.com>
8624
8625 * mi/mi-interp.c (mi_on_resume): Account for whole process
8626 resumes.
8627
8628 2009-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8629
8630 * m2-exp.y (MAX_FUNC): Fix trailing UNOP_MAX.
8631
8632 2009-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8633
8634 * dwarf2read.c (set_cu_language): Recognize also DW_LANG_C99.
8635
8636 2009-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8637
8638 Fix parsing DW_AT_const_value using DW_FORM_string.
8639 * dwarf2read.c (dwarf2_const_value <DW_FORM_string>): New.
8640
8641 2009-05-20 Joel Brobecker <brobecker@adacore.com>
8642
8643 * aix-thread.c (giter_count): Do not count the main thread.
8644 (giter_accum): Do not include the main thread.
8645
8646 2009-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8647
8648 Remove the PROT parameter from openp.
8649 * source.c (openp): Remove the parameter PROT. Assertion check MODE.
8650 defs.h (openp): Update the prototype.
8651 Update all the openp callers.
8652
8653 2009-05-19 Pedro Alves <pedro@codesourcery.com>
8654
8655 * inflow.c (kill_command): Moved to infcmd.c.
8656 (_initialize_inflow): Don't add the "kill" command or clear
8657 inferior_ptid here.
8658 * infcmd.c (kill_command): Moved here from inflow.c.
8659 (_initialize_infcmd): Add the "kill" command here.
8660
8661 2009-05-19 Pedro Alves <pedro@codesourcery.com>
8662
8663 * fork-child.c: Don't include frame.h. Include terminal.h.
8664 (fork_inferior): Call new_tty_postfork after forking adn adding
8665 the child to the inferior list.
8666 * inferior.h (new_tty_prefork, gdb_has_a_terminal): Don't declare
8667 here.
8668 * inflow.c (struct terminal_info): Remove const qualifier from
8669 `run_terminal' field.
8670 (inferior_thisrun_terminal): Tweak comment.
8671 (inflow_inferior_exit): Release the `run_terminal' field.
8672 (copy_terminal_info): New function.
8673 (new_tty_postfork): New function.
8674 * terminal.h (new_tty_prefork, new_tty, new_tty_postfork,
8675 (copy_terminal_info, gdb_has_a_terminal, gdb_setpgid): Declare.
8676 * inf-ptrace.c: Include terminal.h.
8677 (inf_ptrace_follow_fork): Copy the parent's terminal info to the
8678 child.
8679 * linux-nat.c: Include terminal.h.
8680 (linux_child_follow_fork): Copy the parent's terminal info to the
8681 child.
8682 * inf-ttrace.c: Include terminal.h.
8683 (inf_ttrace_follow_fork): Copy the parent's terminal info to the
8684 child.
8685
8686 2009-05-19 Pedro Alves <pedro@codesourcery.com>
8687
8688 * breakpoint.c (insert_breakpoints, breakpoint_init_inferior)
8689 (update_global_location_list): Use gdbarch_has_global_breakpoints
8690 instead of gdbarch_has_global_solist and
8691 target_supports_multi_process.
8692 * dicos-tdep.c (dicos_init_abi): Set
8693 gdbarch_has_global_breakpoints.
8694 * gdbarch.sh (has_global_solist): Update comment.
8695 (has_global_breakpoints): New.
8696 * remote.c (remote_start_remote): Use
8697 gdbarch_has_global_breakpoints instead of
8698 gdbarch_has_global_solist.
8699 * target.c (target_detach): Use gdbarch_has_global_breakpoints
8700 instead of gdbarch_has_global_solist.
8701 * infcmd.c (attach_command): Use gdbarch_has_global_solist instead
8702 of target_supports_multi_process.
8703
8704 2009-05-18 Paul Pluzhnikov <ppluzhnikov@google.com>
8705
8706 * objc-lang.c (find_methods): Plug a small memory leak.
8707
8708 2009-05-18 Pedro Alves <pedro@codesourcery.com>
8709
8710 * solib-svr4.c: Include observer.h.
8711 (debug_base, debug_loader_offset_p, debug_loader_offset)
8712 (debug_loader_name, main_lm_addr): Move these globals...
8713 (struct svr4_info): ... into this new structure.
8714 (svr4_info_p): New typedef.
8715 (svr4_info): New global.
8716 (get_svr4_info, remove_svr4_info, solib_svr4_inferior_exit): New
8717 functions.
8718 (locate_base, solib_svr4_r_map, solib_svr4_r_brk)
8719 (solib_svr4_r_ldsomap): Add svr4_info argument. Adjust to
8720 per-inferior svr4.
8721 (open_symbol_file_object): Adjust to per-inferior svr4.
8722 (svr4_default_sos, svr4_current_sos, svr4_fetch_objfile_link_map):
8723 Ditto.
8724 (enable_break): Add svr4_info argument. Adjust to per-inferior
8725 svr4.
8726 (enable_break, svr4_solib_create_inferior_hook, svr4_clear_solib):
8727 Adjust to per-inferior svr4.
8728 (_initialize_svr4_solib): Install the solib_svr4_inferior_exit
8729 observer.
8730
8731 2009-05-18 Pedro Alves <pedro@codesourcery.com>
8732
8733 * linux-nat.h (linux_proc_get_tgid): Declare.
8734 * linux-nat.c (linux_proc_get_tgid): New.
8735 * linux-thread-db.c (struct thread_db_info): New field
8736 `need_stale_parent_threads_check'.
8737 (add_thread_db_info): Set it.
8738 (find_new_threads_callback): Ignore stale fork parent threads.
8739 (thread_db_resume): New.
8740 (init_thread_db_ops): Install thread_db_resume.
8741
8742 2009-05-18 Pedro Alves <pedro@codesourcery.com>
8743
8744 * fork-child.c (fork_inferior): Only reset the thread list if this
8745 is the first inferior.
8746 (startup_inferior): If the target support multi-process, tell it
8747 to resume only the new process.
8748 * linux-nat.c (num_lwps): Delete global.
8749 (purge_lwp_list): New function.
8750 (num_lwps): New function.
8751 (add_lwp, delete_lwp): Adjust.
8752 (ptid_match): New.
8753 (iterate_over_lwps): Add filter argument. Handle it.
8754 (linux_nat_attach): Remove FIXME note.
8755 (linux_nat_detach): Adjust to iterate over threads of the inferior
8756 we're detaching from. Adjust to num_lwps being a function. Don't
8757 assume the head of the lwp list is the main thread of the process
8758 we're detaching from. Don't destroy the LWP list.
8759 (resume_callback): Add debug output.
8760 (linux_nat_resume): Handle resuming a single inferior. Allow a
8761 wildcard resume in non-stop mode.
8762 (linux_handle_extended_wait): Don't assume inferior_ptid is the
8763 correct inferior of the parent LWP.
8764 (status_callback): Also check lp->waitstatus.
8765 (select_event_lwp): Add new filter parameter. Handle it.
8766 (linux_nat_filter_event): Adjust to num_lwps being a function.
8767 (linux_nat_wait_1): When adding the first lwp of the inferior, use
8768 an is_lwp check instead of checking for the number of lwps.
8769 (linux_nat_wait_1): Handle waiting for a specific tgid. Handle
8770 pending process exit statuses.
8771 (linux_nat_mourn_inferior): Don't destroy all the LWP info.
8772 Instead delete LWPs of the inferior that we're mourning. Don't
8773 unregister from the event loop here.
8774 (linux_nat_pid_to_str): Use `num_lwps'.
8775 (linux_nat_make_corefile_notes): Adjust to walk over lwps of a
8776 single inferior.
8777 (linux_nat_is_async_p): Check if async was masked out.
8778 (linux_multi_process): New global.
8779 (linux_nat_supports_multi_process): New.
8780 (linux_nat_stop_lwp): Remove LWP filtering. It is done by the
8781 caller.
8782 (linux_nat_stop): Adjust to make iterate_over_lwps itself do the
8783 LWP filtering.
8784 (linux_nat_close): New.
8785 (linux_nat_add_target): Register linux_nat_close and
8786 linux_nat_supports_multi_process.
8787 * linux-nat.h (iterate_over_lwps): Add filter argument.
8788 * linux-thread-db.c (thread_db_handle): Delete.
8789 (proc_handle, thread_agent, td_init_p, td_ta_new_p)
8790 (td_ta_map_id2thr_p, td_ta_map_lwp2thr_p, td_ta_thr_iter_p)
8791 (td_ta_event_addr_p, td_ta_set_event_p, td_ta_event_getmsg_p)
8792 (td_thr_validate_p, td_thr_get_info_p, td_thr_event_enable_p)
8793 (td_thr_tls_get_addr_p, td_create_bp_addr, td_death_bp_addr): No
8794 longer globals, moved to...
8795 (struct thread_db_info): ... this new structure.
8796 (thread_db_list): New.
8797 (add_thread_db_info, get_thread_db_info, delete_thread_db_info):
8798 New.
8799 (have_threads_callback): Filter out threads of all inferiors but
8800 the one specified by the ARGS argument.
8801 (have_threads): Add ptid argument specifying the inferior we're
8802 interested in. Handle it.
8803 (struct thread_get_info_inout): New.
8804 (thread_get_info_callback, thread_from_lwp): Adjust to use it.
8805 (thread_db_attach_lwp): Check that inferior of the passed in
8806 thread is using thread-db. Adjust.
8807 (enable_thread_event): Remove thread_agent parameter. Instead,
8808 get it from the per-inferior thread-db info.
8809 (dladdr_to_soname): Move higher up.
8810 (enable_thread_event_reporting): Adjust to use per-inferior
8811 thread-db info.
8812 (try_thread_db_load_1): Replace `handle' parameter by a
8813 thread_db_info parameter. Adjust to use per-inferior thread-db
8814 info.
8815 (try_thread_db_load): Adjust to use per-inferior thread-db info.
8816 (thread_db_load, disable_thread_event_reporting): Ditto.
8817 (check_for_thread_db): Remove conditional reporting of which
8818 libthread_db is in use.
8819 (thread_db_new_objfile): Add comment about inferior_ptid.
8820 (attach_thread): Adjust to use per-inferior thread-db info.
8821 (thread_db_detach): Adjust to use per-inferior thread-db info.
8822 Remove thread event breakpoints of the current inferior. Only
8823 unpush the thread-db target if there are no more processes using
8824 it.
8825 (check_event): Adjust to use per-inferior thread-db info.
8826 (thread_db_wait): Adjust to use per-inferior thread-db info. Only
8827 unpush the thread-db target if there are no more processes using
8828 it.
8829 (thread_db_mourn_inferior): Adjust to use per-inferior thread-db
8830 info. Mark breakpoints of the current inferior out before
8831 deleting them. Only unpush the thread-db target if there are no
8832 more processes using it.
8833 (find_new_threads_callback): Adjust to use per-inferior thread_db
8834 info.
8835 (thread_db_find_new_threads_1): Add new ptid argument. Adjust to
8836 use per-inferior thread-db info.
8837 (thread_db_find_new_threads): Adjust to use per-inferior thread-db
8838 info.
8839 (thread_db_get_thread_local_address): Adjust.
8840 (thread_db_get_ada_task_ptid): Adjust.
8841 * inf-ptrace.c (inf_ptrace_mourn_inferior): Only unpush the target
8842 if there no more processes left to debug.
8843 * thread.c (set_running, set_executing): Handle resuming all
8844 threads of a single inferior.
8845 * mi/mi-interp.c (mi_output_running_pid): New.
8846 (mi_inferior_count): New.
8847 (mi_on_resume): For backwards compatibility, if resuming all
8848 threads of an inferior, and there is only one inferior, output
8849 "all".
8850
8851 2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
8852
8853 * ada-lang.c (ada_find_any_type): Move check for primitive types ...
8854 (to_fixed_range_type): ... to here.
8855
8856 2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
8857
8858 * ada-lang.c (desc_data_type): Remove, replace by ...
8859 (desc_data_target_type): ... this.
8860 (thin_data_pntr): Use desc_data_target_type instead of desc_data_type.
8861 (ada_is_array_descriptor_type): Likewise.
8862 (ada_type_of_array): Likewise.
8863 (ada_coerce_to_simple_array_type): Likewise.
8864 (ada_array_element_type): Likewise.
8865
8866 2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
8867
8868 * ada-valprint.c (ada_val_print_1): Use val_print_string to print
8869 result of ada_vax_float_print_function inferior call.
8870
8871 2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
8872
8873 * ada-lang.c (ada_coerce_to_simple_array_type): Reimplement to
8874 avoid creating a dummy value.
8875
8876 2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
8877
8878 * p-valprint.c (pascal_val_print): Use extract_typed_address
8879 to extract reference value.
8880
8881 2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
8882
8883 * doublest.c (NAN): Remove unused define.
8884 (extract_floating_by_length, deprecated_extract_floating): Remove.
8885 (store_floating_by_length, deprecated_store_floating): Remove.
8886 (extract_typed_floating): Do not call extract_floating_by_length.
8887 (store_typed_floating): Do not call store_floating_by_length.
8888 (convert_typed_floating): Remove redundant assertions.
8889 * doublest.h (deprecated_extract_floating): Remove.
8890 (deprecated_store_floating): Remove.
8891 * sh64-tdep.c (sh64_register_convert_to_raw): Call
8892 extract_typed_floating instead of deprecated_extract_floating.
8893
8894 2009-05-18 Jon Beniston <jon@beniston.com>
8895
8896 * MAINTAINERS: Add lm32 target.
8897 * Makefile.in: Add lm32 dependencies.
8898 * NEWS: Indicate lm32 is a new target.
8899 * configure.tgt: Add lm32 targets.
8900 * lm32-tdep.c: New file.
8901
8902 2009-05-18 Pedro Alves <pedro@codesourcery.com>
8903
8904 * corelow.c (core_open): Flush the register cache before doing
8905 anything with registers.
8906
8907 2009-05-18 Pedro Alves <pedro@codesourcery.com>
8908
8909 * inflow.h (our_process_group): Remove declaration.
8910 (inferior_process_group): Delete global variable declaration.
8911 (inferior_process_group): New function declaration.
8912 * inflow.c: Include observer.h.
8913 (inferior_ttystate, our_ttystate, tflags_inferior, tflags_ours):
8914 Delete.
8915 (struct terminal_info): New struct.
8916 (our_terminal_info): New global.
8917 (inferior_process_group): New function.
8918 (inferior_thisrun_terminal): Extend description comment.
8919 (gdb_has_a_terminal): Adjust to write to our_terminal_info fields
8920 instead of globals.
8921 (terminal_init_inferior_with_pgrp): Adjust to per-inferior
8922 terminal settings.
8923 (terminal_inferior): Ditto.
8924 (terminal_ours_1): Ditto.
8925 (inflow_new_inferior, inflow_inferior_exit): New functions.
8926 (child_terminal_info): Adjust to per-inferior terminal settings.
8927 (osig_set): New global.
8928 (set_sigint_trap): Adjust to per-inferior terminal settings. Set
8929 or clear `osig_set' accordingly.
8930 (clear_sigint_trap): Check `osig_set' to decide wheater to restore
8931 SIGINT handler, instead of checking the current inferior (which
8932 may be none).
8933 (_initialize_inflow): Attach inflow_new_inferior and
8934 inflow_inferior_exit to the "new_inferior" and "inferior_exit"
8935 notifications, respectively.
8936 * inferior.h (struct terminal_info): Forward declare.
8937 (struct inferior): Add `terminal_info' field.
8938 * inferior.c (delete_inferior_1): Notify the inferior_exit
8939 observers before removing the inferior from the lists and deleting
8940 it.
8941 * inf-ptrace.c (inf_ptrace_stop): `inferior_process_group' is now
8942 a function instead of a variable. Adjust.
8943 * procfs.c (procfs_stop): Ditto.
8944
8945 2009-05-17 Pedro Alves <pedro@codesourcery.com>
8946
8947 * infrun.c (handle_inferior_event): When handling a
8948 TARGET_WAITKIND_FORKED, detach breakpoints from the fork child
8949 immediatelly.
8950 * linux-nat.c (linux_child_follow_fork): Only detach breakpoints
8951 from the child if vforking.
8952 * inf-ptrace.c (inf_ptrace_follow_fork): No need to detach
8953 breakpoints from the child here.
8954
8955 2009-05-17 Pedro Alves <pedro@codesourcery.com>
8956
8957 * infrun.c (pending_follow): Remove execd_pathname member.
8958 (resume): No longer handle TARGET_WAITKIND_EXECD pending follow.
8959 (handle_inferior_event): When handling a TARGET_WAITKIND_EXECD
8960 event, don't copy `execd_pathname' to pending_follow, use the
8961 event copy instead. Release `execd_pathname' once done with
8962 handling the event.
8963
8964 * infrun.c (pending_follow): Remove mention of exec events.
8965
8966 2009-05-17 Hui Zhu <teawater@gmail.com>
8967
8968 * i386-tdep.c (i386_process_record): Make it extern.
8969 (i386_gdbarch_init): Don't call set_gdbarch_process_record
8970 here.
8971 * i386-tdep.h (i386_process_record): Declare.
8972 * i386-linux-tdep.c (i386_linux_init_abi): Call
8973 set_gdbarch_process_record.
8974
8975 2009-05-17 Vladimir Prus <vladimir@codesourcery.com>
8976
8977 Always report varobj as changed when in_scope attribute changes.
8978
8979 * varobj.c (install_new_value): If non-NULL-ness of value
8980 changed, return 1.
8981
8982 2009-05-15 Paul Pluzhnikov <ppluzhnikov@google.com>
8983
8984 * NEWS: Mention set/show libthread-db-search-path.
8985 * gdb_thread_db.h (LIBTHREAD_DB_SEARCH_PATH): New define.
8986 (LIBTHREAD_DB_SO): Moved from linux-thread-db.c
8987 * linux-thread-db.c (libthread_db_search_path): New setting.
8988 (thread_db_handle): New variable (replaces using_thread_db).
8989 (try_thread_db_load_1): New function.
8990 (try_thread_db_load, thread_db_load_search): Likewise.
8991 (dladdr_to_soname): Likewise.
8992 (thread_db_load): Iterate over possibly multiple libthread_db's.
8993 (check_for_thread_db): Attempt to load new libthread_db.
8994 (thread_db_detach, thread_db_wait): Unload libthread_db.
8995 (thread_db_mourn_inferior): Likewise.
8996 (_initialize_thread_db): Add new libthread-db-search-path option.
8997 Defer loading of libthread_db to check_for_thread_db.
8998 * solib.c (libpthread_name_p): New function.
8999 (libpthread_solib_p): Call it.
9000 * solib.h (libpthread_name_p): New prototype.
9001
9002 2009-05-15 Pierre Muller <muller@ics.u-strasbg.fr>
9003
9004 * MAINTAINERS: Update my email address.
9005
9006 2009-05-14 Paul Pluzhnikov <ppluzhnikov@google.com>
9007
9008 * breakpoint.h: Add breakpoint_re_set_objfile prototype.
9009 * breakpoint.c (create_overlay_event_breakpoint): Renamed
9010 from create_overlay_event_breakpoint_1, old
9011 create_overlay_event_breakpoint deleted.
9012 (breakpoint_re_set_objfile): Don't rescan all objfiles
9013 unnecessarily.
9014 (breakpoint_re_set): New function.
9015 * symfile.c (new_symfile_objfile): Call breakpoint_re_set_objfile
9016 instead of breakpoint_re_set.
9017 * objfiles.c (objfile_relocate): Likewise.
9018
9019 2009-05-14 Joel Brobecker <brobecker@adacore.com>
9020
9021 * gdbarch.sh: Add comment documenting the target_gdbarch global.
9022 gdbarch.h does NOT need to be regenerated as the corresponding
9023 change has already been made in a previous commit.
9024
9025 2009-05-14 Pierre Muller <muller@ics.u-strasbg.fr>
9026
9027 Remove all i386 debug register low level macros in config nm files.
9028 (I386_DR_LOW_SET_ADDR, I386_DR_LOW_RESET_ADDR): Remove.
9029 (I386_DR_LOW_GET_STATUS, I386_DR_LOW_SET_CONTROL): Remove.
9030 (I386_USE_GENERIC_WATCHPOIINTS): Remove.
9031
9032 * i386-nat.h: New file (adapted from config/i386/nm-i386.h).
9033 (struct i386_dr_low_type): New type.
9034 (i386_dr_low): New global variable.
9035 * i386-nat.c (TARGET_HAS_DR_LEN_8): Update macro.
9036 (i386_insert_aligned_watchpoint): Replace i386 dr low macros by
9037 i386_dr_low struct variable fields.
9038 (i386_remove_aligned_watchpoint): Likewise.
9039 (i386_stopped_data_address): Likewise.
9040 (i386_stopped_by_hwbp): Likewise.
9041 (show_debug_regs_command_added): New static variable.
9042 (add_show_debug_regs_command): New static function.
9043 (i386_use_watchpoints): Call add_show_debug_regs_command if not done.
9044 (i386_set_debug_register_length): New function.
9045 (_initialize_i386_nat): Delete.
9046
9047 * amd64-linux-nat.c: Include "i386-nat.h".
9048 (amd64_linux_dr_set_control): Change to static.
9049 (amd64_linux_dr_get_status): Change to static.
9050 (amd64_linux_dr_set_addr,amd64_linux_dr_reset_addr): Likewise.
9051 (_initialize_amd64_linux_nat): Set i386_dr_low variable fields.
9052
9053 * go32-nat.c: Include "i386-nat.h".
9054 (go32_set_addr): Change to static.
9055 (go32_set_dr7): Change to static. Change arg type to unisgned long.
9056 (go32_get_dr6): Change to static. Change return type to unisnged long.
9057 (init_go32_ops): Set i386_dr_low variable fields.
9058 * i386-linux-nat.c: Include "i386-nat.h".
9059 (i386_linux_dr_set_control, i386_linux_dr_get_status): Change to static.
9060 (i386_linux_dr_set_addr, i386_linux_dr_reset_addr): Idem.
9061 (_initialize_i386_linux_nat): Set i386_dr_low variable fields.
9062 * i386bsd-nat.h: Declare functions used for
9063 i386_dr_low fields in i386fbsd-nat.c.
9064 * i386fbsd-nat.c: Include "i386-nat.h".
9065 (_initialize_i386fbsd_nat): Set i386_dr_low variable fields.
9066 * windows-nat.c: Include "i386-nat.h".
9067 (cygwin_set_dr, cygwin_get_dr6, cygwin_set_dr7): Add prototypes.
9068 Change to static.
9069 (cygwin_get_dr6): Change return type to unisnged long.
9070 (cygwin_set_dr7): Change arg type to unisgned long.
9071 (init_windows_ops): Set i386_dr_low function fields.
9072
9073 * amd64-windows-nat.c (_initialize_amd64_windows_nat): Call
9074 i386_set_debug_register_length.
9075 * i386-windows-nat.c (_initialize_i386_windows_nat): Likewise.
9076
9077 * config/i386/nm-cygwin.h: Remove all I386_* macros.
9078 * config/i386/nm-cygwin64.h: Likewise.
9079 * config/i386/nm-fbsd.h: Likewise.
9080 * config/i386/nm-linux.h: Likewise.
9081 * config/i386/nm-i386.h: Remove completely.
9082 * config/i386/nm-go32.h: Remove completely.
9083 * config/i386/nm-linux64.h: Remove completely.
9084 * config/i386/go32.mh (NAT_FILE): Remove entry.
9085 * config/i386/linux64.h (NAT_FILE): Change to config/nm-linux.h.
9086
9087 2009-05-14 Jon Beniston <jon@beniston.com>
9088
9089 * MAINTAINERS: Add Jon Beniston to write after approval list.
9090
9091 2009-05-13 Paul Pluzhnikov <ppluzhnikov@google.com>
9092
9093 * objc-lang.c (objc_objfile_data): New variable.
9094 (find_methods): Skip objfiles without Obj-C methods.
9095 (_initialize_objc_lang): New function.
9096
9097 2009-05-13 Joel Brobecker <brobecker@adacore.com>
9098
9099 * c-lang.c (print_wchar): Remove unnecessary cast.
9100
9101 2009-05-12 Jim Blandy <jimb@red-bean.com>
9102
9103 * MAINTAINERS: Remove self as m32c target maintainer.
9104
9105 2009-05-12 Pedro Alves <pedro@codesourcery.com>
9106
9107 * cli/cli-decode.c (deprecated_add_set_cmd): Delete.
9108 * command.h (deprecated_add_set_cmd): Delete declaration.
9109 * gnu-nat.c (_initialize_gnu_nat): Replace 'maint gnu-debug' with
9110 'set debug gnu-nat' and 'show debug gnu-nat'.
9111 * i386-nat.c (_initialize_i386_nat): Replace 'maint
9112 show-debug-registers' with 'maint set show-debug-registers' and
9113 'maint show show-debug-registers'.
9114 * mips-linux-nat.c (_initialize_mips_linux_nat): Replace 'maint
9115 show-debug-registers' with 'maint set show-debug-registers' and
9116 'maint show show-debug-registers'.
9117
9118 2009-05-12 Joel Brobecker <brobecker@adacore.com>
9119
9120 * c-lang.c (print_wchar): Convert w into a gdb_wchar_t before
9121 pushing it on the output obstack.
9122
9123 2009-05-11 Joel Brobecker <brobecker@adacore.com>
9124
9125 Fix internal error on breaking at a multi-locations caller source line.
9126 * breakpoint.c (parse_breakpoint_sals): Set EXPLICIT_PC for the `break'
9127 command with no parameters.
9128
9129 2009-05-11 Pedro Alves <pedro@codesourcery.com>
9130
9131 * linux-nat.c (enum sigchld_state): Delete.
9132 (linux_nat_async_events_state): Delete.
9133 (struct waitpid_result): Delete.
9134 (waitpid_queue): Delete.
9135 (queued_waitpid_1): Delete.
9136 (async_file_flush): New.
9137 (queued_waitpid, push_waitpid): Delete.
9138 (async_file_mark): New.
9139 (drain_queued_events): Delete.
9140 (my_waitpid): Remove locally queued events handling.
9141 (linux_test_for_tracefork): Upjust.
9142 (linux_child_follow_fork): Ditto.
9143 (sync_sigchld_action): Delete.
9144 (blocked_mask): Reinstate.
9145 (async_sigchld_action): Rename to...
9146 (sigchld_action): ... this.
9147 (block_child_signals): New.
9148 (restore_child_signals_mask): New.
9149 (lin_lwp_attach_lwp): Adjust.
9150 (linux_nat_create_inferior): Ditto.
9151 (linux_nat_attach): Also use lp->status in async mode.
9152 (get_pending_status): Don't use queued_waitpid.
9153 (linux_nat_detach): Don't drain locally queued events.
9154 (linux_nat_resume): Allow pending wait statuses stored lp->status
9155 in async mode. If returning early due to a pending event,
9156 re-register the event source.
9157 (stop_wait_callback): Allow pending wait statuses stored
9158 lp->status in async mode.
9159 (pipe_to_local_event_queue, local_event_queue_to_pipe): Delete.
9160 (linux_nat_wait): Rename to ...
9161 (linux_nat_wait_1): ... this. Allow pending wait statuses stored
9162 lp->status in async mode. Always add WNOHANG to the waitpid
9163 options in async mode.
9164 (linux_nat_wait): New.
9165 (kill_callback): Don't drain locally queued events.
9166 (sigchld_handler): Rewrite.
9167 (linux_nat_is_async_p, linux_nat_can_async_p): Fix comments to
9168 refer to "set target-async".
9169 (linux_nat_async_mask): If in non-stop, and re-enabling async
9170 mode, re-register the target event source in the event loop.
9171 (linux_nat_event_pipe_pop, linux_nat_event_pipe_push)
9172 (get_pending_events, async_sigchld_handler)
9173 (linux_nat_async_events): Delete.
9174 (handle_target_event): New.
9175 (linux_nat_async_file_handler): Delete.
9176 (linux_async_pipe): New.
9177 (linux_nat_async): Only re-register in the event loop if not
9178 registered yet. Always notify the event-loop once if enabling the
9179 event source.
9180 (linux_nat_stop_lwp): Rewrite to handle pending events stored in
9181 lp->status, not in the locally queued event list.
9182 (linux_nat_stop): Don't mask out async event handling.
9183 (linux_nat_setup_async): Delete.
9184 (_initialize_linux_nat): Adjust.
9185 (lin_thread_get_thread_signals): blocked_mask is global again.
9186 Adjust.
9187
9188 2009-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
9189
9190 Unify target macros.
9191
9192 * target.h (STOPPED_BY_WATCHPOINT): Delete, replaced by ...
9193 (target_stoppped_by_watchpoint): New macro.
9194 (HAVE_STEPPABLE_WATCHPOINT): Delete, replaced by ...
9195 (target_have_steppable_watchpoint): New macro.
9196 (HAVE_CONTINUABLE_WATCHPOINT): Delete, replace by ...
9197 (target_have_continuable_watchpoint): New macro.
9198 (TARGET_CAN_USE_HARDWARE_WATCHPOINT):Delete, replaced by ...
9199 (target_can_use_hardware_watchpoint): New macro.
9200 (TARGET_REGION_OK_FOR_HW_WATCHPOINT):Delete, replaced by ...
9201 (target_region_ok_for_hw_watchpoint): New macro.
9202
9203 * breakpoint.c (update_watchpoint): Use new macros.
9204 (bpstat_alloc): Likewise.
9205 (create_breakpoint): Likewise.
9206 (watch_command_1): Likewise.
9207 (can_use_hardware_watchpoint): Likewise.
9208 (do_enable_breakpoint): Likewise.
9209 * infrun.c (handle_inferior_event): Adapt to new macros.
9210 * mips-tdep.c (mips_gdbarch_init): Update comments.
9211 * procfs.c (procfs_set_watchpoint): Update comment.
9212 (procfs_insert_watchpoint): Adapt to new macros.
9213 * remote-m32r-sdi.c (m32r_stop):
9214 * remote-mips.c (mips_remove_breakpoint):
9215 * target.c (debug_to_region_ok_for_hw_watchpoint): Update to new macros.
9216 (debug_to_stopped_by_watchpoint): Likewise.
9217
9218
9219 2009-05-10 Pierre Muller <muller@ics.u-strasbg.fr>
9220
9221 * src/gdb/target.h: Remove all tests for already defined
9222 macros. All macros defined here should not be set in config
9223 headers anymore.
9224
9225 2009-05-08 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
9226
9227 * ppc-linux-nat.c (have_ptrace_getsetregs): New variable.
9228 (have_ptrace_getsetfpregs): Likewise.
9229 fetch_all_gp_regs): New function.
9230 (fetch_gp_regs): New function.
9231 (fetch_all_fp_regs): Likewise.
9232 (fetch_fp_regs): New function.
9233 (fetch_ppc_registers): Using the new methods to fetch general-
9234 purpose and floating-pointer registers.
9235 (store_all_gp_regs): New function.
9236 (store_gp_regs): Likewise.
9237 (store_all_fp_regs): New function.
9238 (store_fp_regs): Likewise.
9239 (store_ppc_registers): Using the new methods to store general-
9240 purpose and floating-pointer registers.
9241
9242 2009-05-08 Doug Evans <dje@google.com>
9243
9244 * linux-nat.c (linux_xfer_siginfo): Delete unused locals lp, n.
9245
9246 2009-05-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
9247
9248 * MAINTAINERS (Write After Approval): Add self.
9249
9250 2009-05-07 Joel Brobecker <brobecker@adacore.com>
9251
9252 * gdbarch.h (target_gdbarch): Add comment documenting this global.
9253
9254 2009-05-06 Joel Brobecker <brobecker@adacore.com>
9255
9256 * acinclude.m4 (AM_ICONV): Prefer in-tree libiconv if present over
9257 system iconv.
9258 * configure: Regenerate.
9259
9260 2009-05-06 Joel Brobecker <brobecker@adacore.com>
9261
9262 * utils.c: Add include of gdb_usleep.h.
9263 (defaulted_query): Detect false EOF conditions that happen
9264 on terminals opened with the O_NONBLOCK flag when there is
9265 nothing to read.
9266
9267 2009-05-06 Pedro Alves <pedro@codesourcery.com>
9268
9269 * inferior.c (add_inferior): Move observer_notify_new_inferior
9270 call to ...
9271 (add_inferior_silent): ... here.
9272
9273 2009-05-06 Pierre Muller <muller@ics.u-strasbg.fr>
9274 Pedro Alves <pedro@codesourcery.com>
9275
9276 * procfs.c (procfs_insert_watchpoint, procfs_remove_watchpoint)
9277 (procfs_region_ok_for_hw_watchpoint, procfs_use_watchpoints): New
9278 functions.
9279 (procfs_stopped_by_watchpoint): Made static, ptid argument
9280 removed.
9281 (_initialize_procfs): Register new watchpoint related target
9282 functions.
9283 * config/i386/nm-i386sol2.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT)
9284 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT, STOPPED_BY_WATCHPOINT)
9285 (HAVE_CONTINUABLE_WATCHPOINT): Delete.
9286 (target_insert_watchpoint, target_remove_watchpoint): Delete.
9287 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
9288 declarations.
9289 * config/mips/nm-irix5.h (STOPPED_BY_WATCHPOINT)
9290 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
9291 (target_insert_watchpoint, target_remove_watchpoint): Delete.
9292 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
9293 declarations.
9294 * config/sparc/nm-sol2.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
9295 (HAVE_CONTINUABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT): Delete.
9296 (target_insert_watchpoint, target_remove_watchpoint): Delete.
9297 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
9298 declarations.
9299
9300 2009-05-06 Hui Zhu <teawater@gmail.com>
9301
9302 * i386-tdep.c (i386_process_record): Change bzero to memset.
9303
9304 2009-05-06 Hui Zhu <teawater@gmail.com>
9305
9306 * NEWS: Add item for process record and replay.
9307
9308 2009-05-05 Maxim Grigoriev <maxim2405@gmail.com>
9309
9310 * xtensa-tdep.c (xtensa_frame_cache): Use pc instead of cache->pc.
9311
9312 2009-05-05 Ulrich Weigand <uweigand@de.ibm.com>
9313
9314 * inferior.h (read_pc, write_pc): Remove.
9315 * regcache.c (read_pc, write_pc): Remove.
9316
9317 * infrun.c (displaced_step_fixup): Use regcache_read_pc instead
9318 of read_pc.
9319 (handle_inferior_event): Use regcache_read_pc instead of read_pc
9320 when determining value of stop_pc. Replace subsequent uses of
9321 read_pc by inspecting already-retrieved stop_pc value.
9322 (keep_going): Use regcache_read_pc instead of read_pc.
9323
9324 * breakpoint.c (watchpoint_check): Use current frame architecture
9325 and PC instead of current_gdbarch and read_pc ().
9326 * tracepoint.c (set_traceframe_context): Replace PC argument
9327 with FRAME argument.
9328 (trace_start_command, finish_tfind_command): Update calls.
9329 (finish_tfind_command): Compare frame IDs to identify transitions
9330 between frames.
9331 (trace_find_pc_command): Use regcache_read_pc instead of read_pc.
9332 * rs6000-nat.c (exec_one_dummy_insn): Pass in regcache instead
9333 of gdbarch. Use regcache_read_pc and regcache_write_pc instead
9334 of read_pc and write_pc.
9335 (store_register): Make regcache argument non-const. Update call
9336 to exec_one_dummy_insn.
9337
9338 * thread.c (switch_to_thread): Use regcache_read_pc instead of read_pc.
9339 * infcmd.c (post_create_inferior): Likewise.
9340 * solib-darwin.c (darwin_solib_create_inferior_hook): Likewise.
9341 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
9342 * solib-sunos.c (sunos_solib_create_inferior_hook): Likewise.
9343 * solib-svr4.c (enable_break, svr4_relocate_main_executable): Likewise.
9344 * linux-fork.c (fork_load_infrun_state): Likewise.
9345 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Likewise.
9346 * record.c (record_wait): Likewise.
9347 * procfs.c (procfs_wait): Likewise.
9348 * remote-mips.c (common_open, mips_wait): Likewise.
9349 * remote-m32r-sdi.c (m32r_resume): Likewise.
9350
9351 * symfile.c (generic_load): Use regcache_write_pc instead of write_pc.
9352 * monitor.c (monitor_create_inferior, monitor_load): Likewise.
9353 * m32r-rom.c (m32r_load, m32r_upload_command): Likewise.
9354 * remote-m32r-sdi.c (m32r_create_inferior, m32r_load): Likewise.
9355 * remote-mips.c (mips_create_inferior, mips_load): Likewise.
9356
9357 * solib-darwin.c: Include "regcache.h".
9358 * solib-pa64.c: Include "regcache.h".
9359 * solib-svr4.c: Include "regcache.h.".
9360
9361 * symfile.c: Do not mention read_pc or write_pc in comments.
9362 * dink32-rom.c: Likewise.
9363 * m32r-rom.c: Likewise.
9364 * mips-tdep.c: Likewise.
9365
9366 2009-05-05 Ulrich Weigand <uweigand@de.ibm.com>
9367
9368 * fork-child.c (startup_inferior): Move setting stop_pc ...
9369 * infcmd.c (post_create_inferior): ... to here.
9370
9371 2009-05-04 Michael Snyder <msnyder@vmware.com>
9372
9373 * NEWS: Add item for reverse debugging commands.
9374
9375 2009-05-04 Pedro Alves <pedro@codesourcery.com>
9376
9377 * go32-nat.c (go32_stop): Delete.
9378 (go32_kill_inferior): Rewrite to only call go32_mourn_inferior.
9379 (go32_create_inferior): Don't call go32_stop or
9380 go32_kill_inferior.
9381 (go32_mourn_inferior): Inline go32_stop and go32_kill_inferior
9382 here.
9383 (init_go32_ops): Don't register go32_stop.
9384
9385 2009-05-02 Eli Zaretskii <eliz@gnu.org>
9386
9387 * dbxread.c (read_dbx_symtab): Avoid compiler warnings for
9388 sym_name.
9389
9390 * infcall.c (find_function_addr): Avoid compiler warnings for
9391 funaddr.
9392
9393 2009-05-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9394
9395 * dictionary.c (dict_hashed_vector, dict_hashed_expandable_vector)
9396 (dict_linear_vector, dict_linear_expandable_vector): Fix a comment typo.
9397
9398 2009-05-01 Doug Evans <dje@google.com>
9399
9400 * linux-thread-db.c (thread_db_pid_to_str): Delete unused assignment
9401 to thread_info.
9402
9403 2009-05-01 Eli Zaretskii <eliz@gnu.org>
9404
9405 * record.c (_initialize_record): Reformat and clarify doc strings
9406 for stop-at-limit and insn-number-max.
9407
9408 * go32-nat.c: Add comments about dirty secrets of DJGPP debugging.
9409
9410 2009-05-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9411
9412 Make specifiable the make_function_type type memory ownership.
9413 * gdbtypes.c (make_function_type): New parameter `objfile', use it
9414 explicitely instead of TYPE-initialized removed local variable
9415 `objfile'. Describe `objfile' it in the function comment.
9416 (lookup_function_type): Update make_function_type callers.
9417 * gdbtypes.h (make_function_type): Update the prototype.
9418 * jv-lang.c (java_link_class_type): Update make_function_type callers.
9419 * dwarf2read.c (read_subroutine_type): Likewise.
9420 * stabsread.c (read_type): Likewise.
9421
9422 2009-05-01 Eli Zaretskii <eliz@gnu.org>
9423
9424 * go32-nat.c (go32_pid_to_str): Call normal_pid_to_str instead of
9425 printing a bogus "Thread <main>".
9426 (go32_thread_alive): Don't return 1 for null_ptid.
9427
9428 * i386-tdep.c (i386_go32_init_abi): Override the number of
9429 registers due to non-support of SSE.
9430
9431 2009-04-30 Anthony Green <green@moxielogic.com>
9432
9433 * configure.tgt: Link the moxie simulator in with gdb.
9434
9435 2009-04-30 Paul Pluzhnikov <ppluzhnikov@google.com>
9436
9437 * elfread.c (elf_symtab_read): Don't assume .data and .rodata
9438 are present.
9439
9440 2009-04-30 Hui Zhu <teawater@gmail.com>
9441 Michael Snyder <msnyder@vmware.com>
9442
9443 I386 Linux process record and replay support.
9444
9445 * i386-linux-tdep.c (i386_linux_record_tdep): New variable.
9446 This struct has the argument for the function
9447 "record_linux_system_call".
9448 (i386_linux_intx80_sysenter_record): New function. Parse the
9449 system call instruction and call function
9450 "record_linux_system_call" to record execute log.
9451 (i386_linux_init_abi): Initialize "i386_linux_record_tdep".
9452 Set "i386_linux_intx80_sysenter_record" to
9453 "i386_intx80_record" and "i386_sysenter_record".
9454
9455 2009-04-30 Hui Zhu <teawater@gmail.com>
9456 Michael Snyder <msnyder@vmware.com>
9457
9458 I386 architecture process record and replay support.
9459
9460 * i386-tdep.c (PREFIX_REPZ, PREFIX_REPNZ, PREFIX_LOCK,
9461 PREFIX_DATA, PREFIX_ADDR): New macros. Help decode the i386
9462 instruction set.
9463 (aflag, dflag, override, modrm, mod, reg, rm, ot,
9464 i386_record_pc): New variables. Ditto.
9465 (i386_record_modrm, i386_record_lea_modrm_addr,
9466 i386_record_lea_modrm): New functions. Ditto.
9467 (i386_process_record): New function. Parse the instruction in
9468 address "addr" and record the values of registers and memory
9469 that will be changed by this instruction.
9470 (i386_gdbarch_init): Set "i386_process_record" to GDBARCH
9471 "process_record" interface.
9472 * i386-tdep.h (gdbarch_tdep): New function pointers
9473 "i386_intx80_record" and "i386_sysenter_record" that point to
9474 the function that can record "intx80" and "sysenter" execute
9475 log.
9476
9477 2009-04-30 Hui Zhu <teawater@gmail.com>
9478 Michael Snyder <msnyder@vmware.com>
9479
9480 * infrun.c (use_displaced_stepping): Return false if process
9481 record and replay target is used.
9482 (proceed): Call function "record_not_record_set" if pocess
9483 record and replay target is used.
9484
9485 2009-04-30 Hui Zhu <teawater@gmail.com>
9486 Michael Snyder <msnyder@vmware.com>
9487
9488 Linux process record and replay support.
9489
9490 * Makefile.in (ALLDEPFILES): Add linux-record.c.
9491 (ALL_TARGET_OBS): Add linux-record.o.
9492 * configure.tgt (x86_64-*-linux*): Add linux-record.o.
9493 (i[34567]86-*-linux*): Add linux-record.o.
9494 * linux-record.c, linux-record.h: New file.
9495
9496 2009-04-30 Hui Zhu <teawater@gmail.com>
9497 Michael Snyder <msnyder@vmware.com>
9498
9499 Process record and replay target.
9500
9501 * Makefile.in (SFILES): Add record.c.
9502 (COMMON_OBS): Add record.o.
9503 * record.c, record.h: New file.
9504
9505 2009-04-30 Hui Zhu <teawater@gmail.com>
9506 Michael Snyder <msnyder@vmware.com>
9507
9508 * target.h (strata): New stratum "record_stratum".
9509
9510 2009-04-30 Hui Zhu <teawater@gmail.com>
9511 Michael Snyder <msnyder@vmware.com>
9512
9513 GDBARCH interface for process record and replay.
9514
9515 * gdbarch.sh (process_record): This interface point to the
9516 function that records the inferior execute log.
9517
9518 2009-04-29 Doug Evans <dje@google.com>
9519
9520 * i386-nat.c (child_post_startup_inferior): Delete, unused.
9521
9522 2009-04-29 Pedro Alves <pedro@codesourcery.com>
9523
9524 * breakpoint.c (print_exception_catchpoint): Access `b' directly
9525 instead of `b->loc->owner'.
9526 (print_mention_exception_catchpoint): Ditto.
9527
9528 2009-04-29 Jan Kratochvil <jan.kratochvil@redhat.com>
9529
9530 * macrocmd.c (info_macro_command): Print -Dname=value if LINE is zero.
9531
9532 2009-04-27 Tom Tromey <tromey@redhat.com>
9533
9534 * c-exp.y (yylex): Handle '[' and ']' like '(' and ')'.
9535
9536 2009-04-27 Jerome Guitton <guitton@adacore.com>
9537
9538 * symtab.c (append_exact_match_to_sals): New function, extracted
9539 from expand_line_sal.
9540 (expand_line_sal): Use append_exact_match_to_sals to append exact
9541 matches. If none found, append all best items.
9542
9543 2009-04-27 Jerome Guitton <guitton@adacore.com>
9544
9545 * main.c (captured_main): Move gdbinit lookups after gdb_init.
9546
9547 2009-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9548
9549 PR gdb/9675:
9550 * dwarf2read.c (unsigned_int_compar, inherit_abstract_dies): New.
9551 (read_func_scope): Call inherit_abstract_dies.
9552
9553 2009-04-25 Eli Zaretskii <eliz@gnu.org>
9554
9555 * Makefile.in (ALLDEPFILES): Remove duplicate entries for
9556 sparc-sol2-nat.c and sparc-sol2-tdep.c.
9557
9558 * stack.c (_initialize_stack) <disassemble-next-line>: Doc fix.
9559
9560 2009-04-24 Pierre Muller <muller@ics.u-strasbg.fr>
9561
9562 ARI change: Use "/* ARI: rule */" pattern.
9563 * utils.c: Update ARI patterns.
9564 * gdb_dirent.h: Likewise.
9565
9566 2009-04-23 Anthony Green <green@moxielogic.com>
9567
9568 * MAINTAINERS: Add moxie target.
9569 * configure.tgt: Add moxie-*-elf target.
9570 * moxie-tdep.c: New file.
9571 * moxie-tdep.h: New file.
9572
9573 2009-04-23 Joel Brobecker <brobecker@adacore.com>
9574
9575 * ada-lang.c: Remove an extra empty line. No code change.
9576
9577 2009-04-23 Jan Kratochvil <jan.kratochvil@redhat.com>
9578
9579 Fix double free on error inserting the breakpoint instruction.
9580 * breakpoint.c (create_breakpoints): Move the
9581 update_global_location_list call to ...
9582 (break_command_really): ... here together with the second local call
9583 both unified after all the cleanups.
9584
9585 2009-04-23 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
9586 Tom Tromey <tromey@redhat.com>
9587
9588 * configure, config.in: Regenerate.
9589 * configure.ac: Support for relocatable GDB datadir. Use
9590 GDB_AC_WITH_DIR. Always define TARGET_SYSTEM_ROOT_RELOCATABLE.
9591 * acinclude.m4 (GDB_AC_WITH_DIR): New defun.
9592 * top.c (init_main): Add "set data-directory".
9593 * defs.h (gdb_datadir): Declare.
9594 * main.c (gdb_datadir): New global.
9595 (captured_main): Initialize gdb_datadir. Use relocate_directory.
9596 (relocate_path): New function.
9597 (relocate_directory): Likewise.
9598 (get_init_files): Use relocate_path.
9599 (README): Mention --with-gdb-datadir.
9600
9601 2009-04-23 Joel Brobecker <brobecker@adacore.com>
9602
9603 * ada-tasks (task_command_1): Call target_find_new_threads.
9604
9605 2009-04-23 Joel Brobecker <brobecker@adacore.com>
9606
9607 * stack.c (do_gdb_disassembly): Print the exception message if an
9608 error was thrown while trying to perform the disassembly.
9609
9610 2009-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9611
9612 * varobj.c (free_variable): Replace free_current_contents by xfree.
9613
9614 2009-04-22 Kazu Hirata <kazu@codesourcery.com>
9615
9616 * arm-linux-nat.c (fetch_register, store_register): Use
9617 ARM_CPSR_GREGNUM instead of ARM_CPSR_REGNUM.
9618 * arm-linux-tdep.c (arm_linux_supply_gregset,
9619 arm_linux_collect_gregset): Likewise.
9620 * arm-linux-tdep.h (ARM_CPSR_GREGNUM): New.
9621 * arm-tdep.h (ARM_CPSR_REGNUM): Remove.
9622
9623 2009-04-22 Hui Zhu <teawater@gmail.com>
9624
9625 * stack.c (_initialize_stack): Set the default of
9626 disassemble-next-line to off.
9627
9628 2009-04-21 Tom Tromey <tromey@redhat.com>
9629
9630 * acinclude.m4: Use AS_HELP_STRING, not AC_HELP_STRING.
9631 * configure.ac: Use AS_HELP_STRING, not AC_HELP_STRING.
9632
9633 2009-04-21 Andreas Schwab <schwab@linux-m68k.org>
9634
9635 * configure.ac: Add quotes to not lose brackets in help text.
9636 * configure: Rebuild.
9637
9638 2009-04-21 Andreas Schwab <schwab@linux-m68k.org>
9639
9640 * configure.ac: Don't postprocess Makefile in config.status.
9641 Substitute GDB_NM_FILE. Don't substitute nm_h.
9642 * Makefile.in (GDB_NM_FILE): Substitute.
9643 (TAGS): Use $(GDB_NM_FILE) instead of $(NAT_FILE).
9644 * configure: Regenerate.
9645 * gnulib/Makefile.in: Regenerate.
9646
9647 2009-04-21 Joseph Myers <joseph@codesourcery.com>
9648
9649 * configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
9650 --with-htmldir): New.
9651 * configure: Regenerate.
9652
9653 2009-04-21 Tom Tromey <tromey@redhat.com>
9654
9655 * configure: Rebuild.
9656 * configure.ac: Use lower case for start of help strings. Clean
9657 up --with-sysroot help.
9658
9659 2009-04-21 Tom Tromey <tromey@redhat.com>
9660
9661 * configure: Rebuild.
9662 * acinclude.m4 (AM_ICONV): Use AC_HELP_STRING.
9663 * configure.ac: Use AC_HELP_STRING. Use upper case for variables
9664 in help.
9665
9666 2009-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
9667
9668 ARI fix: remove "%p".
9669 * ia64-tdep.c (ia64_frame_this_id): Use host_address_to_string function.
9670 (ia64_sigtramp_frame_this_id): Ditto.
9671 (ia64_libunwind_frame_this_id): Ditto.
9672 (ia64_libunwind_sigtramp_frame_this_id): Ditto.
9673 * symmisc.c (maintenance_info_psymtabs): Ditto.
9674
9675 2009-04-21 Joseph Myers <joseph@codesourcery.com>
9676
9677 * configure.ac (--with-relocated-sources): New.
9678 * configure, config.in: Regenerate.
9679 * source.c (add_substitute_path_rule): Remove static.
9680 * source.h (add_substitute_path_rule): Declare.
9681 * main.c: Include "source.h".
9682 (captured_main): Add substitution rule if RELOC_SRCDIR.
9683
9684 2009-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
9685
9686 * gnu-nat.h (proc_debug): Add missing continuation line in macro.
9687
9688 2009-04-20 David Daney <ddaney@caviumnetworks.com>
9689
9690 * NEWS: Mention MIPS/Linux hardware watchpoint support.
9691
9692 2009-04-20 David Daney <ddaney@caviumnetworks.com>
9693
9694 * mips-linux-nat.c (command.h, gdbcmd.h, gdb_assert.h): New #includes.
9695 (maint_show_dr, super_close): New variables.
9696 (super_fetch_registers, super_store_registers): Make static.
9697 (PTRACE_GET_WATCH_REGS, PTRACE_SET_WATCH_REGS, W_BIT, R_BIT, I_BIT)
9698 (W_MASK, R_MASK, I_MASK, IRW_MASK, MAX_DEBUG_REGISTER): Define.
9699 (pt_watch_style): Define new enum.
9700 (mips32_watch_regs, mips64_watch_regs, pt_watch_regs, mips_watchpoint):
9701 Define new structs.
9702 (watch_readback_valid, watch_readback, current_watches, watch_mirror):
9703 New variables.
9704 (get_irw_mask, get_reg_mask, get_num_valid, get_watchlo)
9705 (set_watchlo, get_watchhi, set_watchhi, mips_show_dr)
9706 (mips_linux_read_watch_registers, mips_linux_can_use_hw_breakpoint)
9707 (mips_linux_stopped_by_watchpoint, mips_linux_stopped_data_address)
9708 (type_to_irw, fill_mask, try_one_watch)
9709 (mips_linux_region_ok_for_hw_watchpoint, write_watchpoint_regs)
9710 (mips_linux_new_thread, populate_regs_from_watches)
9711 (mips_linux_insert_watchpoint, mips_linux_remove_watchpoint)
9712 (mips_linux_close): New functions.
9713 (_initialize_mips_linux_nat): Register watchpoint functions with
9714 the target_ops. Add show-debug-regs maintenance command.
9715
9716 2009-04-20 David Daney <ddaney@caviumnetworks.com>
9717
9718 * infrun.c (handle_inferior_event): Move gegisters_changed call down.
9719
9720 2009-04-19 Pedro Alves <pedro@codesourcery.com>
9721
9722 * NEWS: Mention gdbserver support for x86 Windows CE.
9723
9724 2009-04-19 Eli Zaretskii <eliz@gnu.org>
9725
9726 * config/djgpp/fnchange.lst: Fix typos.
9727
9728 Set default host and target charsets in the DJGPP port.
9729
9730 * config/djgpp/config.sed (am_cv_langinfo_codeset)
9731 (bash_cv_langinfo_codeset, ac_cv_header_nl_types_h): Set to "yes"
9732 in all configure scripts that define ac_cv_env_CPP_value.
9733
9734 * go32-nat.c (dos_codepage, nl_langinfo): New functions.
9735 Include langinfo.h.
9736
9737 * config/djgpp/nl_types.h: New file.
9738
9739 * config/djgpp/langinfo.h: New file.
9740
9741 * config/i386/go32.mh (MH_CFLAGS): Add $(srcdir)/config/djgpp.
9742
9743 2009-04-18 Carlos O'Donell <carlos@codesourcery.com>
9744
9745 * Makefile.in (MAKEHTML): Set to makeinfo --html.
9746 (MAKEHTMLFLAGS): Set to empty.
9747
9748 2009-04-18 Eli Zaretskii <eliz@gnu.org>
9749
9750 * NEWS: Mention all new set/show commands added since GDB 6.8 was
9751 released.
9752
9753 * go32-nat.c (go32_sysinfo): Check if the call to
9754 __dpmi_get_capabilities fills the buffer with information, and
9755 don't use the buffer if not.
9756
9757 2009-04-17 Tom Tromey <tromey@redhat.com>
9758
9759 * charset.c (_initialize_charset): Add special case for "646".
9760
9761 2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
9762
9763 * configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
9764 * configure: Regenerate.
9765 * Makefile.in: Set datarootdir, docdir, htmldir, and pdfdir from
9766 configure substitutions.
9767 (FLAGS_TO_PASS): Add datarootdir, docdir, and htmldir.
9768
9769 2009-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
9770
9771 ARI fix: Do not use %p, replace by call to host_address_to_string
9772 for host pointers.
9773 * darwin-nat.c (darwin_xfer_partial): Apply change.
9774 * gnu-nat.c (inf_continue, gnu_xfer_memory): Ditto.
9775 * gnu-nat.h (proc_debug): Ditto.
9776 * symmisc.c (maintenance_info_symtabs): Ditto.
9777 (maintenance_info_psymtabs): Ditto.
9778 * windows-nat.c (handle_load_dll): Ditto.
9779 (handle_unload_dll, info_w32_command, handle_exception): Ditto.
9780 * xtensa-tdep.c (xtensa_unwind_pc): Ditto.
9781
9782 2009-04-17 Joseph Myers <joseph@codesourcery.com>
9783
9784 * configure.tgt (i[34567]86-*-linux*): Use 64-bit configuration if
9785 --enable-64-bit-bfd.
9786 (sparc-*-linux*): Likewise.
9787
9788 2009-04-17 Eli Zaretskii <eliz@gnu.org>
9789
9790 * go32-nat.c (go32_sysinfo): Update list of Windows versions of
9791 the NT family.
9792
9793 2009-04-16 Pedro Alves <pedro@codesourcery.com>
9794
9795 * remote.c (remote_query_attached): Fix pasto in packet_ok result
9796 checking.
9797
9798 2009-04-16 Joel Brobecker <brobecker@adacore.com>
9799
9800 * procfs.c (solib_mappings_callback, find_memory_regions_callback):
9801 Revert the previous change. Might not be correct, actually.
9802
9803 2009-04-16 Joel Brobecker <brobecker@adacore.com>
9804
9805 * ada-lang.h (ada_adjust_exception_stop, ada_print_exception_stop)
9806 (ada_get_current_task, ada_print_exception_breakpoint_nontask)
9807 (ada_print_exception_breakpoint_task, ada_reset_thread_registers):
9808 Remove declaration. These are non-existent functions.
9809
9810 2009-04-16 Joel Brobecker <brobecker@adacore.com>
9811
9812 * procfs.c (solib_mappings_callback, find_memory_regions_callback):
9813 Fix a compilation warning on mips-irix due to casting from
9814 a pointer of different size.
9815
9816 2009-04-16 Joel Brobecker <brobecker@adacore.com>
9817
9818 * ada-lang.c (symtab_for_sym): Delete.
9819 (user_select_syms): Use sym->symtab instead of calling symtab_for_sym.
9820
9821 2009-04-16 Joel Brobecker <brobecker@adacore.com>
9822
9823 * ada-lang.c (extract_string): Delete.
9824 (ada_main_name): Reimplement using target_read_string instead of
9825 extract_string.
9826
9827 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
9828
9829 * m68klinux-nat.c: Remove obsolete comment.
9830 (fetch_register, store_register): Don't call
9831 gdbarch_cannot_fetch_register or gdbarch_cannot_store_register,
9832 which are always nops here.
9833
9834 2009-04-14 Tom Tromey <tromey@redhat.com>
9835
9836 * c-lang.c (c_emit_char): Use INTERMEDIATE_ENCODING.
9837 (c_printstr): Likewise.
9838 * charset.c: Include gdb_wait.h.
9839 (make_wchar_iterator): Use INTERMEDIATE_ENCODING.
9840 (find_charset_names): Use pexecute. Handle libiconv's output.
9841 Detect errors.
9842 (_initialize_charset): Use xstrdup.
9843 * gdb_wchar.h: Check HAVE_BTOWC. Split PHONY_ICONV and wchar
9844 cases.
9845 (INTERMEDIATE_ENCODING): New define.
9846 * configure, config.in: Rebuild.
9847 * configure.ac: Check for btowc.
9848
9849 2009-04-15 Tom Tromey <tromey@redhat.com>
9850
9851 * c-lang.c (evaluate_subexp_c): Correctly handle EVAL_SKIP.
9852
9853 2009-04-15 Eli Zaretskii <eliz@gnu.org>
9854
9855 * utils.c (parse_escape): Initialize target_char to pacify GCC.
9856
9857 2009-04-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9858
9859 * c-lang.c (c_get_string): Fix xfree crash on a failed string read.
9860
9861 2009-04-14 Pierre Muller <muller@ics.u-strasbg.fr>
9862
9863 ARI fix: sprintf rule.
9864 * ada-exp.y (convert_char_literal): Replace sprintf by xsnprintf.
9865 * ada-lang.c (add_angle_brackets): Use xstrprintf.
9866 (ada_decode): Replace sprintf by xsnprintf.
9867 (find_old_style_renaming_symbol): Ditto.
9868 (ada_to_fixed_type_1, ada_enum_name): Ditto.
9869
9870
9871 2009-04-14 Joel Brobecker <brobecker@adacore.com>
9872
9873 * target.c (target_mourn_inferior): Call bfd_cache_close_all
9874 after having executed the target mourn_inferior routine.
9875
9876 2009-04-14 Eli Zaretskii <eliz@gnu.org>
9877
9878 * config/djgpp/djconfig.sh (DEPDIR): Define to "_deps", if
9879 undefined.
9880
9881 2009-04-13 David Daney <ddaney@caviumnetworks.com>
9882
9883 * infrun.c (maybe_software_singlestep): New function.
9884 (resume): Call maybe_software_singlestep.
9885 (handle_inferior_event): Same.
9886
9887 2009-04-13 Tom Tromey <tromey@redhat.com>
9888
9889 * python/python-frame.c (frapy_richcompare): Return
9890 Py_NotImplemented, not an error. Handle Py_NE as well.
9891
9892 2009-04-13 Eli Zaretskii <eliz@gnu.org>
9893
9894 * charset.c (EILSEQ): Define if not defined by system headers.
9895
9896 2009-04-11 Eli Zaretskii <eliz@gnu.org>
9897
9898 * config/djgpp/config.sed: Tweak ac_config_files in intl/configure
9899 to be consistent with renaming config.intl.in into config_intl.in.
9900
9901 * go32-nat.c (go32_attach, go32_detach): Fix prototypes to be
9902 consistent with the change from 2008-11-09.
9903
9904 2009-04-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9905
9906 * gdbtypes.c: Remove excessive parentheses at the return keywords.
9907 * varobj.c (varobj_invalidate): Fix indentation.
9908 * varobj.c (varobj_invalidate): Fix formatting text width.
9909
9910 2009-04-08 Vladimir Prus <vladimir@codesourcery.com>
9911
9912 Implement -exec-jump.
9913
9914 * mi/mi-cmds.h (mi_cmd_exec_jump): Declare.
9915 * mi/mi-main.c (mi_cmd_exec_jump): New.
9916 * mi/mi-cmds.c (mi_cmds): Register exec-jump.
9917
9918 2009-04-07 Doug Evans <dje@google.com>
9919
9920 * symfile.c (symbol_file_clear): Fix indentation.
9921
9922 2009-04-06 Mark Kettenis <kettenis@gnu.org>
9923
9924 * sparc64nbsd-nat.c (sparc64nbsd_supply_pcb): Fix comment.
9925
9926 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
9927
9928 * ppc-linux-nat.c (ppc_linux_target_wordsize): New function.
9929 (ppc_linux_auxv_parse): New function.
9930 (ppc_linux_read_description): Use ppc_linux_target_wordsize.
9931 (_initialize_ppc_linux_nat): Install ppc_linux_auxv_parse.
9932
9933 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
9934
9935 * spu-linux-nat.c (spu_bfd_open): Set filename of in-memory
9936 BFD to contents of SPU name note.
9937 (spu_symbol_file_add_from_memory): Call symbol_file_add_from_bfd
9938 with "from_tty" argument 1 instead of 0.
9939
9940 2009-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9941
9942 * dwarf2read.c
9943 (new_symbol <DW_TAG_variable> <!DW_AT_location> <DW_AT_external>):
9944 Create the symbol in local scope.
9945 * symtab.h (cu->list_in_scope <LOC_UNRESOLVED>): New comment part.
9946
9947 2009-04-02 Keith Seitz <keiths@redhat.com>
9948
9949 * stabsread.c (read_member_functions): GCC may emit an extra space
9950 at the end of the names "__base_ctor" and "__base_dtor"; so ignore
9951 whitespace when looking for these functions.
9952
9953 2009-04-01 Joel Brobecker <brobecker@adacore.com>
9954
9955 Change the default value for "set print frame-arguments" to scalars.
9956
9957 * stack.c (print_frame_arguments): Set initial value to "scalars".
9958
9959 2009-04-01 Aleksandar Ristovski <aristovski@qnx.com>
9960
9961 * mips-tdep.c (mips_numeric_register_alieses): New definition.
9962 (mips_gdbarch_init): Add user registers from
9963 mips_numeric_register_aliases.
9964
9965 2009-04-01 Joel Brobecker <brobecker@adacore.com>
9966
9967 * linux-nat.c (linux_nat_filter_event): Minor comment reformatting.
9968
9969 2009-04-01 Joel Brobecker <brobecker@adacore.com>
9970
9971 * linux-nat.c (linux_nat_filter_events): Do not delete the lwp if
9972 this is the last one.
9973
9974 2009-04-01 Pedro Alves <pedro@codesourcery.com>
9975
9976 * remote.c (append_resumption): New.
9977 (remote_vcont_resume): Use it.
9978
9979 2009-04-01 Joel Brobecker <brobecker@adacore.com>
9980
9981 * windows-nat.c (+windows_get_ada_task_ptid): New function.
9982 (init_windows_ops): Set windows_ops.to_get_ada_task_ptid.
9983
9984 2009-03-31 Daniel Jacobowitz <dan@codesourcery.com>
9985 Keith Seitz <keiths@redhat.com>
9986 Jan Kratochvil <jan.kratochvil@redhat.com>
9987
9988 PR gdb/6817
9989 * Makefile.in (dbxread.o): Update.
9990 * dbxread.c (read_dbx_symtab): Use cp_canonicalize_string.
9991 * dwarf2read.c (GDB_FORM_cached_string): New.
9992 (read_partial_die): Use dwarf2_canonicalize_name.
9993 (dwarf2_linkage_name): Use dwarf2_name.
9994 (dwarf2_canonicalize_name): New.
9995 (dwarf2_name): Use dwarf2_canonicalize_name.
9996 (dwarf_form_name, dump_die): Handle GDB_FORM_cached_string.
9997 * stabsread.c (define_symbol, read_type): Use cp_canonicalize_string.
9998 * symtab.c (lookup_symbol_in_language): Canonicalize input before
9999 searching.
10000 * cp-name-parser.y: operator() requires two parameters,
10001 according to libiberty.
10002 * minsyms.c (lookup_minimal_symbol): Canonicalize input
10003 before searching.
10004 * NEWS: Update.
10005
10006 2009-03-31 Joel Brobecker <brobecker@adacore.com>
10007
10008 Provide support for (Ada) task-specific breakpoints.
10009
10010 * ada-lang.h (ada_get_task_number): Add declaration.
10011 (breakpoint_ada_task_match): Delete declaration.
10012 * ada-tasks.c (ada_get_task_number): Make non-static.
10013 * breakpoint.h (struct breakpoint): Add field "task".
10014 * breakpoint.c (print_one_breakpoint_location): Add handling of
10015 task-specific breakpoints.
10016 (create_breakpoint, create_breakpoints, find_condition_and_thread):
10017 New parameter "task".
10018 (break_command_really): Update calls to find_condition_and_thread
10019 and create_breakpoints.
10020 (breakpoint_re_set_one): Update call to find_condition_and_thread.
10021 Set b->task.
10022
10023 2009-03-31 Joel Brobecker <brobecker@adacore.com>
10024
10025 * ada-tasks.c (short_task_info): Eliminate the "Running" task state.
10026
10027 2009-03-31 Pedro Alves <pedro@codesourcery.com>
10028
10029 * remote.c (remote_notice_new_inferior): Use ptid_is_pid. Check
10030 if the thread's ptid without a thread id field is in the list
10031 before calling thread_change_ptid.
10032 (extended_remote_attach_1): In non-stop mode, do not rely on
10033 querying the current thread, instead, query the thread list, and
10034 select the first thread of the process.
10035 * gdbthread.h (first_thread_of_process): Declare.
10036 * thread.c (first_thread_of_process): Define.
10037
10038 2009-03-30 Stan Shebs <stan@codesourcery.com>
10039
10040 Make tracepoints into a type of breakpoint.
10041 * breakpoint.h (enum bptype): Add bp_tracepoint.
10042 (struct breakpoint): Add fields step_count, pass_count, actions.
10043 (get_tracepoint, get_tracepoint_by_number): Declare.
10044 (all_tracepoints): Declare.
10045 * breakpoint.c: Include tracepoint.h, readline.h.
10046 (ALL_TRACEPOINTS): Move here from tracepoint.c.
10047 (tracepoint_count): Ditto.
10048 (should_be_inserted): GDB does not insert tracepoints itself.
10049 (print_it_typical): Add tracepoint case.
10050 (bpstat_what): Ditto.
10051 (print_one_breakpoint_location): Ditto, and add printing for
10052 pass count, step count, and action list.
10053 (user_settable_breakpoint): Add tracepoint case.
10054 (allocate_bp_location): Ditto.
10055 (set_breakpoint_location_function): Ditto.
10056 (disable_breakpoints_in_shlibs): Ditto.
10057 (mention): Ditto.
10058 (break_command_really): Add argument traceflag, use to choose
10059 basic breakpoint type.
10060 (break_command_1): Pass extra argument.
10061 (set_breakpoint, handle_gnu_v3_exceptions): Ditto.
10062 (breakpoint_re_set_one): Add tracepoint case.
10063 (disable_command, enable_command): Ditto.
10064 (set_tracepoint_count): Move here from tracepoint.c.
10065 (trace_command): Move here from tracepoint.c and use
10066 break_command_really.
10067 (tracepoints_info): Move here from tracepoint.c and call
10068 breakpoints_info.
10069 (enable_trace_command): Move here from tracepoint.c and call
10070 enable_command.
10071 (disable_trace_command): Move here from tracepoint.c and call
10072 disable_command.
10073 (delete_trace_command): Move here from tracepoint.c and call
10074 delete_breakpoint.
10075 (trace_pass_command): Move here from tracepoint.c.
10076 (get_tracepoint_by_number): Ditto.
10077 (tracepoint_save_command): Ditto.
10078 (get_tracepoint): New function.
10079 (all_tracepoints): New function.
10080 (_initialize_breakpoint): Move tracepoint init from tracepoint.c,
10081 deprecate "enable trace" and "disable trace" commands.
10082 * tracepoint.h (struct tracepoint): Remove.
10083 (tracepoint_chain): Remove decl.
10084 (deprecated_create_tracepoint_hook): Remove decl.
10085 (deprecated_delete_tracepoint_hook): Remove decl.
10086 (deprecated_modify_tracepoint_hook): Remove decl.
10087 (ALL_TRACEPOINTS, ALL_TRACEPOINTS_SAFE): Remove.
10088 (free_actions): Update signature.
10089 (validate_actionline): Update signature.
10090 (end_actions_pseudocommand): Declare.
10091 (while_stepping_pseudocommand): Declare.
10092 * tracepoint.c: Include breakpoint.h.
10093 (tracepoint_chain, tracepoint_count): Remove.
10094 (free_actions, make_cleanup_free_actions): Update signature.
10095 (trace_command, set_raw_tracepoint): Remove.
10096 (trace_mention): Remove.
10097 (tracepoints_info): Remove.
10098 (tracepoint_operation, map_args_over_tracepoints): Remove.
10099 (get_tracepoint_by_number): Remove.
10100 (enable_trace_command, disable_trace_command): Remove.
10101 (delete_trace_command, trace_pass_command): Remove.
10102 (trace_actions_command, read_actions): Update signature.
10103 (validate_actionline): Update signature, use bp loc.
10104 (encode_actions): Ditto.
10105 (download_tracepoint): New function, body of trace_start_command.
10106 (trace_start_command): Call it, use all_tracepoints.
10107 (tracepoint_save_command): Remove.
10108 (tracepoint_dump_command): Use get_tracepoint.
10109 (end_actions_pseudocommand): Make globally visible.
10110 (while_stepping_pseudocommand): Ditto.
10111 (_initialize_tracepoint): Move command definitions to breakpoint.c.
10112
10113 2009-03-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
10114
10115 Expose frames to Python.
10116 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-frame.o.
10117 (SUBDIR_PYTHON_SRCS): Add python-frame.c.
10118 (python-frame.o): New target.
10119 * python/python-frame.c: New file.
10120 * python/python-internal.h (gdbpy_frames, gdbpy_newest_frame,
10121 gdbpy_frame_stop_reason_string, gdbpy_selected_frame,
10122 gdbpy_initialize_frames): New prototypes.
10123 * python/python.c (_initialize_python): Call gdbpy_initialize_frames.
10124 (GdbMethods): Add `selected_frame' and `frame_stop_reason_string'
10125 entries.
10126 * stack.c (find_frame_funname): New function, factored out of
10127 print_frame.
10128 (print_frame): Call find_frame_funname.
10129 * stack.h (find_frame_funname): Add prototype.
10130
10131 2009-03-29 Thiago Jung Bauermann <bauerman@br.ibm.com>
10132
10133 Remove unused value_object attribute `owned_by_gdb'.
10134 * python/python-value.c (value_object): Remove owned_by_gdb
10135 attribute.
10136 (valpy_dealloc): Remove reference to self->owned_by_gdb.
10137 (valpy_new): Likewise.
10138 (value_to_value_object): Likewise.
10139
10140 2009-03-29 Thiago Jung Bauermann <bauerman@br.ibm.com>
10141
10142 Change gdb.Value.address from a method to an attribute.
10143 * python/python-value.c (value_object): Add `address' element.
10144 (valpy_dealloc): Decrement reference to self->address if set.
10145 (valpy_new): Initialize val_obj->address.
10146 (valpy_address): Rename to ...
10147 (valpy_get_address): ... this. Change signature from method to
10148 attribute. Update self->address if not set.
10149 (value_to_value_object): Initialize val_obj->address.
10150 (value_object_getset): Add `address' element.
10151 (value_object_methods): Remove `address' element.
10152
10153 2009-03-29 Andreas Schwab <schwab@linux-m68k.org>
10154
10155 * observer.sh: Set LANG/LC_ALL to C, not c.
10156
10157 2009-03-28 Kevin Buettner <kevinb@redhat.com>
10158
10159 * mn10300-tdep.c (mn10300_gdbarch_init): For mn10300, by default,
10160 `char' is unsigned.
10161
10162 2009-03-28 Pedro Alves <pedro@codesourcery.com>
10163
10164 * remote.c (remote_stop_ns): If multi-process extensions are off,
10165 and GDB is requesting the whole process to stop, sent "vCont;t",
10166 not "vCont;t:-1"
10167
10168 2009-03-28 Pedro Alves <pedro@codesourcery.com>
10169
10170 * inf-loop.c (inferior_event_handler): Avoid calling is_running on
10171 null inferior_ptid.
10172
10173 2009-03-27 Eli Zaretskii <eliz@gnu.org>
10174
10175 * config/djgpp/fnchange.lst: Update to fix ARI-reported problems.
10176
10177 2009-03-26 Doug Evans <dje@google.com>
10178
10179 * thread.c (do_restore_current_thread_cleanup): Redo test for
10180 whether to restore old->inferior_ptid.
10181
10182 2009-03-26 Tom Tromey <tromey@redhat.com>
10183
10184 * breakpoint.c (resolve_sal_pc): Preserve original line number
10185 when skipping prologue.
10186
10187 2009-03-26 Doug Evans <dje@google.com>
10188
10189 * thread.c (inferior_thread) Remove "extern" in definition.
10190
10191 2009-03-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
10192
10193 Add gdb.Value.is_optimized_out attribute.
10194 * python/python-value.c (valpy_get_is_optimized_out): New
10195 function.
10196 (value_object_getset): New variable.
10197 (value_object_type): Initialize tp_getset element.
10198
10199 2009-03-26 Joel Brobecker <brobecker@adacore.com>
10200
10201 Recognize missing DW_AT_location as <value optimized out>.
10202 * dwarf2read.c
10203 (new_symbol <DW_TAG_variable> <!DW_AT_location> <!DW_AT_external>):
10204 Call add_symbol_to_list.
10205
10206 2009-03-25 Tom Tromey <tromey@redhat.com>
10207
10208 * gdbtypes.h (CHECK_TYPEDEF): Don't yield a value.
10209 * stack.c (print_this_frame_argument_p): Use check_typedef.
10210
10211 2009-03-25 Tom Tromey <tromey@redhat.com>
10212
10213 * configure: Rebuild.
10214 * acinclude.m4 (AM_ICONV): Set am_cv_use_build_libiconv.
10215 Rearrange flags setting. Add comments.
10216
10217 2009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
10218
10219 * config/i386/nm-i386.h: Remove code within
10220 I386_WATCHPOINTS_IN_TARGET_VECTOR conditional.
10221 * config/i386/nm-cygwin.h: Remove I386_WATCHPOINTS_IN_TARGET_VECTOR
10222 macro.
10223 * config/i386/nm-cygwin64.h: Ditto.
10224 * config/i386/nm-fbsd.h: Ditto.
10225 * config/i386/nm-go32.h: Ditto.
10226 * config/i386/nm-linux.h: Ditto.
10227 * config/i386/nm-linux64.h: Ditto.
10228
10229 2009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
10230
10231 ARI fix: "xasprintf" rule.
10232 * printcmd.c (sym_info): Replace xasprintf by xstrprintf.
10233
10234 2009-03-25 Pedro Alves <pedro@codesourcery.com>
10235
10236 * remote.c (remote_start_remote): In non-stop mode, call
10237 init_wait_for_inferior before adding threads and inferiors.
10238
10239 2009-03-25 Joel Brobecker <brobecker@adacore.com>
10240
10241 * breakpoint.c (breakpoint_thread_match): Split a large condition
10242 into several smaller conditions. No behavior change.
10243
10244 2009-03-25 Pedro Alves <pedro@codesourcery.com>
10245
10246 * infrun.c (infrun_thread_thread_exit): New.
10247 (_initialize_infrun): Attach it to the thread_exit observer.
10248 * thread.c (delete_thread_1): Always call the observer, passing it
10249 the silent flag.
10250 * mi/mi-interp.c (mi_thread_exit): Add "silent" parameter. If
10251 SILENT, return immediately.
10252
10253 2009-03-25 Pedro Alves <pedro@codesourcery.com>
10254
10255 * infrun.c (normal_stop): Use has_stack_frames instead of
10256 target_has_stack.
10257 * mi/mi-main.c (mi_execute_command): Avoid calling inferior_thread
10258 when there is no thread selected.
10259 (mi_cmd_execute): Don't special case commands that can run without
10260 a valid selected thread.
10261 * top.c (execute_command): Don't special case commands that can
10262 run without a valid selected thread. Use has_stack_frames.
10263 * infcmd.c (ensure_valid_thread): New.
10264 (continue_1, step_1, jump_command, signal_command): Use it.
10265 (detach_command): Error out if there's no selected thread/inferior.
10266 * thread.c (print_thread_info): Allow having no thread selected.
10267 (switch_to_thread): Don't read the PC if there is no current thread.
10268 (do_restore_current_thread_cleanup): Don't record the current
10269 frame if there is no current thread.
10270 (make_cleanup_restore_current_thread): Don't read frame info if
10271 there is no selected thread.
10272 (_initialize_thread): Don't mark commands as
10273 "no_selected_thread_ok".
10274 * frame.c (get_current_frame): Error out if there is no valid
10275 selected thread.
10276 (has_stack_frames): Return false if there is no valid
10277 selected thread.
10278 * cli/cli-cmds.c (init_cli_cmds): Don't mark commands as
10279 "no_selected_thread_ok".
10280 * cli/cli-decode.c (set_cmd_no_selected_thread_ok)
10281 (get_cmd_no_selected_thread_ok): Delete.
10282 * cli/cli-decode.h (CMD_NO_SELECTED_THREAD_OK): Delete.
10283 (set_cmd_no_selected_thread_ok, get_cmd_no_selected_thread_ok):
10284 Delete declaration.
10285 * stack.c (get_selected_block): Use has_stack_frames.
10286
10287 2009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
10288
10289 Fix size of FPSCR in Power 7 processors.
10290 * ppc-linux-nat.c (PPC_FEATURE_ARCH_2_05): Remove #define.
10291 (PPC_FEATURE_HAS_DFP): New #define.
10292 (ppc_linux_read_description): Check for DFP feature instead of
10293 ISA 2.05 to decide on size of the FPSCR.
10294
10295 2009-03-25 Kevin Buettner <kevinb@redhat.com>
10296
10297 * mn10300-tdep.c (trad-frame.h): Don't include.
10298 (prologue-value.h): Include.
10299 (mn10300_frame_unwind_cache, set_reg_offsets): Delete.
10300 (struct mn10300_prologue): Define.
10301 (push_reg, translate_rreg, check_for_saved): New functions.
10302 (mn10300_analyze_prologue): Rewrite, using prologue-value
10303 machinery. Handle more instructions than before. Permit
10304 instructions to occur in any order.
10305 (mn10300_skip_prologue): Find the extents of the function
10306 in question; mn10300_analyze_prologue no longer does this.
10307 (mn10300_analyze_frame_prologue): New function.
10308 (mn10300_frame_base): New function.
10309 (mn10300_frame_this_id): Rewrite, no longer using trad-frame
10310 implementation.
10311 (mn10300_frame_prev_register): Likewise.
10312 (mn10300_frame_base_address, mn10300_frame_base struct): Delete.
10313 (mn10300_unwind_pc, mn10300_unwind_sp): Rename `next_frame' to
10314 `this_frame'.
10315 (mn10300_frame_unwind_init): Don't call frame_base_set_default().
10316
10317 2009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
10318
10319 Fix completer problem for filename completion on the first try.
10320
10321 * gdb/completer.h (gdb_completion_word_break_characters): New function.
10322 * gdb/completer.c: Include gdb_assert.h.
10323 (complete_line_internal_reason): New enum.
10324 (complete_line_internal): Change last argument type to
10325 complete_line_internal_reason.
10326 Modify function to handle the different complete_line_internal_reason
10327 argument values.
10328 (complete_line): Adapt to change in complete_line_internal.
10329 (command_completer): Ditto.
10330 (gdb_completion_word_break_characters): Implement new function.
10331 * top.c (init_main): Set rl_completion_word_break_hook to
10332 gdb_completion_word_break_characters.
10333
10334
10335 2009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
10336
10337 ARI fix: "strlen d_name" rule.
10338 * linux-nat.c (linux_nat_xfer_osdata): Use NAMELEN macro.
10339
10340
10341 2009-03-24 Tom Tromey <tromey@redhat.com>
10342 Pedro Alves <pedro@codesourcery.com>
10343
10344 * configure, config.in: Rebuild.
10345 * configure.ac: Check for libiconvlist.
10346 * charset.c: Check HAVE_LIBICONVLIST.
10347 * acinclude.m4 (AM_ICONV): Don't subst LIBICONV, LIBICONV_INCLUDE,
10348 LIBICONV_LIBDIR. Update CPPFLAGS and LIBS.
10349 * Makefile.in (LIBICONV, LIBICONV_INCLUDE, LIBICONV_LIBDIR):
10350 Remove.
10351 (INTERNAL_CFLAGS_BASE): Update.
10352 (INTERNAL_LDFLAGS): Update.
10353 (CLIBS): Update.
10354
10355 2009-03-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10356
10357 * configure.ac: Initialize the variable $PREFER_CURSES.
10358 * configure: Regenerated.
10359
10360 2009-03-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10361
10362 * configure.ac: Enable $PREFER_CURSES even with default $ENABLE_TUI.
10363 * configure: Regenerated.
10364
10365 2009-03-24 Pierre Muller <muller@ics.u-strasbg.fr>
10366
10367 ARI fix: "strerror" rule.
10368 * darwin-nat.c (darwin_ptrace): Use safe_strerror.
10369 (darwin_stop_inferior, darwin_attach, darwin_detach): Ditto.
10370
10371 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10372
10373 * ada-exp.y (get_symbol_field_type): Make sure to resolve typedefs
10374 before looking up the fields inside our struct type.
10375
10376 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10377
10378 * ada-lang.c (resolve_subexp) [UNOP_QUAL]: Resolve typedefs before
10379 trying to resolve the type qualification.
10380
10381 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10382
10383 * ada-lang.c (ada_evaluate_subexp) [UNOP_IN_RANGE]: make sure
10384 we try to apply the attribute on the real type, rather than
10385 its associated typedef.
10386
10387 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10388
10389 * ada-lang.c (ada_evaluate_subexp) [OP_ATR_MODULUS]: Use check_typdef
10390 to make sure we try to get the modulus of the actual type, not the
10391 associated typedef.
10392
10393 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10394
10395 * ada-lang.c (ada_evaluate_subexp): [OP_ATR_FIRST, OP_ATR_LAST]
10396 [OP_ATR_LENGTH]: When using the attribute on a type, make sure
10397 to get the real type, not the associated typedef.
10398
10399 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10400
10401 * ada-lang.c (ada_get_field_index): Add handling of the case
10402 when TYPE is a typedef of a struct.
10403
10404 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10405
10406 Add gdb_usleep as a portable version of usleep based on gdb_select.
10407 * gdb_usleep.h, gdb_usleep.c: New files.
10408 * Makefile.in (SFILES): Add gdb_usleep.c.
10409 (HFILES_NO_SRCDIR): Add gdb_usleep.h.
10410 (COMMON_OBS): Add gdb_usleep.o.
10411 * ser-unix.c (hardwire_send_break): Replace call to gdb_select
10412 by call to gdb_usleep.
10413
10414 2009-03-23 Joel Brobecker <brobecker@adacore.com>
10415
10416 * buildsym.c (end_symtab): If we ignore the subfiles, then
10417 unlink the associated symtabs if they were already allocated.
10418
10419 2009-03-23 Jerome Guitton <guitton@adacore.com>
10420
10421 Provide a way to force building of GDB with libcurses.
10422 * configure.ac: Add --with-curses.
10423 * configure: Regenerated.
10424
10425 2009-03-23 Tom Tromey <tromey@redhat.com>
10426
10427 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_uninit>: Fix typo in
10428 error message.
10429
10430 2009-03-23 Paul Pluzhnikov <ppluzhnikov@google.com>
10431
10432 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Use
10433 solib_contains_address_p instead of searching.
10434
10435 2009-03-23 Tom Tromey <tromey@redhat.com>
10436
10437 * charset.c (ICONV_CONST) <PHONY_ICONV>: Define.
10438 (iconv): Make 'inbuf' argument const.
10439 (convert_between_encodings): Use ICONV_CONST.
10440 (wchar_iterate): Likewise.
10441
10442 2009-03-22 Christopher Faylor <me+cygwin@cgf.cx>
10443
10444 * windows-nat.c (AdjustTokenPrivileges): Implement macro wraparound for
10445 dynamically loaded function.
10446 (LookupPrivilegeValueA): Ditto.
10447 (OpenProcessToken): Ditto.
10448 (AdjustTokenPrivileges): Rename and define placeholder for address of
10449 dynamically loaded function.
10450 (LookupPrivilegeValueA): Ditto.
10451 (OpenProcessToken): Ditto.
10452 (set_process_privilege): Remove check for loaded functions.
10453 (bad_OpenProcessToken): Define.
10454 (_initialize_loadable): Load token functions from advapi here, setting
10455 OpenProcessToken function to a dummy static function which always return
10456 error if OS doesn't support this functionality.
10457
10458 2009-03-22 Nicolas Roche <roche@adacore.com>
10459 Christopher Faylor <me+cygwin@cgf.cx>
10460
10461 * win32-nat.c (ctrl_c_handler): New function.
10462 (win32_wait): Register ctrl_c_handler as Ctrl-C handler if the inferior
10463 is run in a separate console.
10464
10465 2009-03-22 Christopher Faylor <me+cygwin@cgf.cx>
10466
10467 * windows-nat.c (DebugActiveProcessStop): Implement macro wraparound
10468 for dynamically loaded function.
10469 (DebugBreakProcess): Ditto.
10470 (DebugSetProcessKillOnExit): Ditto.
10471 (EnumProcessModules): Ditto.
10472 (GetModuleFileNameExA): Ditto.
10473 (GetModuleInformation): Ditto.
10474 (DebugActiveProcessStop): Rename and define placeholder for address of
10475 dynamically loaded function.
10476 (DebugBreakProcess): Ditto.
10477 (DebugSetProcessKillOnExit): Ditto.
10478 (EnumProcessModules): Ditto.
10479 (GetModuleFileNameExA): Ditto.
10480 (GetModuleInformation): Ditto.
10481 (psapi_loaded): Delete.
10482 (get_module_name): Don't check psapi_loaded, just rely on the fact that
10483 dynamically loaded functions will return failure if they weren't
10484 previously found.
10485 (has_detach_ability): Delete.
10486 (windows_attach): Remove call to has_detach_ability (). Just rely on
10487 functions being callable.
10488 (bad_DebugActiveProcessStop): Define.
10489 (bad_DebugBreakProcess): Ditto.
10490 (bad_DebugSetProcessKillOnExit): Ditto.
10491 (bad_EnumProcessModules): Ditto.
10492 (bad_GetModuleFileNameExA): Ditto.
10493 (bad_GetModuleInformation): Ditto.
10494 (_initialize_loadable): Rename from _initialize_psapi. Initialize all
10495 dynamic storage here, setting nonexistent functions to dummy static
10496 functions which always return error.
10497
10498 2009-03-22 Pedro Alves <pedro@codesourcery.com>
10499
10500 * mi/mi-interp.c (mi_interpreter_init): Attach mi_about_to_proceed
10501 to the about_to_proceed observer notification.
10502 (mi_about_to_proceed): New.
10503 (mi_on_resume): Only output ^running and the prompt here if the
10504 target was proceeded.
10505 * breakpoint.c (breakpoint_proceeded): New static.
10506 (breakpoint_about_to_proceed): New.
10507 (_initialize_breakpoints): Attach breakpoint_about_to_proceed to
10508 the about_to_proceed observer notification.
10509 * inferior.h (breakpoint_proceeded): Delete declaration.
10510 * infrun.c (clear_proceed_status): Don't set breakpoint_proceeded.
10511 Notify the about_to_proceed observers.
10512 (struct inferior_status): Delete breakpoint_proceeded member.
10513 (save_inferior_status): Don't save it.
10514 (restore_inferior_status): Don't restore it.
10515 * mi-main.h (mi_proceeded): Declare.
10516 * mi/mi-main.c (mi_cmd_execute): Clear mi_proceeded before running
10517 a command.
10518
10519 2009-03-22 Pedro Alves <pedro@codesourcery.com>
10520
10521 * gdbthread.h (struct thread_info): Add in_infcall member.
10522 * infcall.c (run_inferior_call): Save, set and restore in_infcall.
10523 Remove reverences to suppress_resume_observer. Refresh
10524 `call_thread' after returning from `proceed'.
10525 * infcmd.c (suppress_resume_observer): Delete.
10526 * inferior.h (suppress_resume_observer): Delete declaration.
10527 * mi/mi-interp.c (mi_on_resume): Suppress output while calling an
10528 inferior function.
10529 * thread.c (set_running): Remove references to
10530 suppress_resume_observer.
10531 * infrun.c (struct inferior_status): Add in_infcall member.
10532 (save_inferior_status): Save it.
10533 (restore_inferior_status): Restore it.
10534
10535 2009-03-22 Pedro Alves <pedro@codesourcery.com>
10536
10537 * infcall.c (run_inferior_call): Remove references to
10538 suppress_stop_observer.
10539 * infcmd.c (suppress_stop_observer): Delete.
10540 (finish_command_continuation): Remove NOTE. Don't clear
10541 suppress_stop_observer anymore.
10542 (finish_command_continuation_free_arg): Likewise.
10543 (finish_forward): Remove references to suppress_stop_observer.
10544 Call normal_stop observer if we haven't already.
10545 * inferior.h (suppress_stop_observer): Delete.
10546 * infrun.c (normal_stop): When deciding to suppress the
10547 normal_stop observer, check for proceed_to_finish instead of
10548 suppress_stop_observer.
10549
10550 2009-03-22 Pedro Alves <pedro@codesourcery.com>
10551
10552 * symfile.c (symfile_relocate_debug_section): Remove check for
10553 SEC_DEBUGGING.
10554
10555 2009-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10556 Jim Blandy <jimb@red-bean.com>
10557 Thiago Jung Bauermann <bauerman@br.ibm.com>
10558 Tom Tromey <tromey@redhat.com>
10559
10560 Miscellaneous fixes to the Python code.
10561 * python/python-cmd.c (cmdpy_init): Accept keyword
10562 arguments.
10563 * python/python-value.c (valpy_string): Accept keyword
10564 arguments.
10565 (valpy_binop): Use `break' to exit from the TRY_CATCH block.
10566 Do not call value_to_value_object on NULL RES_VAL.
10567 (value_object_methods): Change `string' entry to also accept
10568 keyword arguments.
10569 (convert_value_from_python): Return a copy of the value if obj is
10570 a gdb.Value object.
10571 (value_object_methods): Mark the `string' method as accepting
10572 keywords, and show method "prototype" in the doc string.
10573 * python/python.c (get_parameter): Don't return inside a
10574 TRY_CATCH.
10575
10576 2009-03-20 Tom Tromey <tromey@redhat.com>
10577
10578 Add support for convenience functions in Python.
10579 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-function.o.
10580 (SUBDIR_PYTHON_SRCS): Add python-function.c.
10581 (python-function.o): New target.
10582 * eval.c: Include "python/python.h" and <ctype.h>.
10583 (evaluate_subexp_standard): Handle values of type
10584 TYPE_CODE_INTERNAL_FUNCTION.
10585 * gdbtypes.h (type_code): Add TYPE_CODE_INTERNAL_FUNCTION.
10586 * parse.c (write_exp_string): Remove duplicate word in comment.
10587 * python/python-function.c: New file.
10588 * python/python-internal.h (gdbpy_initialize_functions): Add
10589 prototype.
10590 * python/python.c (_initialize_python): Call
10591 gdbpy_initialize_functions.
10592 * valprint.c (value_check_printable): Handle values of type
10593 TYPE_CODE_INTERNAL_FUNCTION.
10594 * value.c: Include "cli/cli-decode.h".
10595 (internal_function): New struct.
10596 (functionlist, internal_fn_type): New static variables.
10597 (lookup_only_internalvar,
10598 lookup_internalvar): Add const qualifier to name argument.
10599 (create_internalvar): Likewise. Initialize new field.
10600 (set_internal_var): Fix typo in comment. Don't allow assignment
10601 to canonical variable.
10602 (value_create_internal_function, value_internal_function_name,
10603 call_internal_function, function_command, function_destroyer,
10604 add_internal_function): New functions.
10605 (_initialize_values): Create `function' placeholder command.
10606 Initialize internal_fn_type.
10607 * value.h (lookup_only_internalvar, create_internalvar,
10608 lookup_internalvar): Add const qualifier to name argument.
10609 (internal_function_fn, add_internal_function, call_internal_function,
10610 value_internal_function_name): Add prototypes.
10611 (struct internalvar) <canonical>: New field.
10612
10613 2009-03-20 Tom Tromey <tromey@redhat.com>
10614
10615 * c-lang.c (evaluate_subexp_c): Call check_typedef.
10616
10617 2009-03-20 Tom Tromey <tromey@redhat.com>
10618 Julian Brown <julian@codesourcery.com>
10619
10620 PR i18n/7220, PR i18n/7821, PR exp/8815, PR exp/9103,
10621 PR i18n/9401, PR exp/9613:
10622 * NEWS: Update
10623 * value.h (value_typed_string): Declare.
10624 (val_print_string): Update.
10625 * valprint.h (print_char_chars): Update.
10626 * valprint.c (print_char_chars): Add type argument. Update.
10627 (val_print_string): Likewise.
10628 * valops.c (value_typed_string): New function.
10629 * utils.c (host_char_to_target): New function.
10630 (parse_escape): Use host_char_to_target, host_hex_value. Update.
10631 Remove '^' case.
10632 (no_control_char_error): Remove.
10633 * typeprint.c (print_type_scalar): Update.
10634 * scm-valprint.c (scm_scmval_print): Update.
10635 * scm-lang.h (scm_printchar, scm_printstr): Update.
10636 * scm-lang.c (scm_printchar): Add type argument.
10637 (scm_printstr): Likewise.
10638 * printcmd.c (print_formatted): Update.
10639 (print_scalar_formatted): Update.
10640 (printf_command) <wide_string_arg, wide_char_arg>: New constants.
10641 Handle '%lc' and '%ls'.
10642 * parser-defs.h (struct typed_stoken): New type.
10643 (struct stoken_vector): Likewise.
10644 (write_exp_string_vector): Declare.
10645 * parse.c (write_exp_string_vector): New function.
10646 * p-valprint.c (pascal_val_print): Update.
10647 * p-lang.h (is_pascal_string_type, pascal_printchar,
10648 pascal_printstr): Update.
10649 * p-lang.c (is_pascal_string_type): Remove 'char_size' argument.
10650 Add 'char_type' argument.
10651 (pascal_emit_char): Add type argument.
10652 (pascal_printchar): Likewise.
10653 (pascal_printstr): Likewise.
10654 * objc-lang.c (objc_emit_char): Add type argument.
10655 (objc_printchar): Likewise.
10656 (objc_printstr): Likewise.
10657 * macroexp.c (get_character_constant): Handle unicode characters.
10658 Use c_parse_escape.
10659 (get_string_literal): Handle unicode strings. Use
10660 c_parse_escape.
10661 * m2-valprint.c (print_unpacked_pointer): Update.
10662 (m2_print_array_contents): Update.
10663 (m2_val_print): Update.
10664 * m2-lang.c (m2_emit_char): Add type argument.
10665 (m2_printchar): Likewise.
10666 (m2_printstr): Likewise.
10667 * language.h (struct language_defn) <la_printchar>: Add type
10668 argument.
10669 <la_printstr, la_emitchar>: Likewise.
10670 (LA_PRINT_CHAR): Likewise.
10671 (LA_PRINT_STRING): Likewise.
10672 (LA_EMIT_CHAR): Likewise.
10673 * language.c (unk_lang_emit_char): Add type argument.
10674 (unk_lang_printchar): Likewise.
10675 (unk_lang_printstr): Likewise.
10676 * jv-valprint.c (java_val_print): Update.
10677 * jv-lang.c (java_emit_char): Add type argument.
10678 * f-valprint.c (f_val_print): Update.
10679 * f-lang.c (f_emit_char): Add type argument.
10680 (f_printchar): Likewise.
10681 (f_printstr): Likewise.
10682 * expprint.c (print_subexp_standard): Update.
10683 * charset.h (target_wide_charset): Declare.
10684 (c_target_char_has_backslash_escape, c_parse_backslash,
10685 host_char_print_literally, host_char_to_target,
10686 target_char_to_host, target_char_to_control_char): Remove.
10687 (enum transliterations): New type.
10688 (convert_between_encodings): Declare.
10689 (HOST_ESCAPE_CHAR): New define.
10690 (host_letter_to_control_character, host_hex_value): Declare.
10691 (enum wchar_iterate_result): New enum.
10692 (struct wchar_iterator): Declare.
10693 (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
10694 wchar_push_back): Declare.
10695 * charset-list.h: New file.
10696 * c-valprint.c (textual_name): New function.
10697 (textual_element_type): Handle wide character types.
10698 (c_val_print): Pass original type to textual_element_type. Handle
10699 wide character types.
10700 (c_value_print): Use textual_element_type. Pass original type of
10701 value to val_print.
10702 * c-lang.h (enum c_string_type): New type.
10703 (c_printchar, c_printstr): Update.
10704 * c-lang.c (classify_type): New function.
10705 (print_wchar): Likewise.
10706 (c_emit_char): Add type argument. Handle wide characters.
10707 (c_printchar): Likewise.
10708 (c_printstr): Add type argument. Handle wide and multibyte
10709 character sets.
10710 (convert_ucn): New function.
10711 (emit_numeric_character): Likewise.
10712 (convert_octal): Likewise.
10713 (convert_hex): Likewise.
10714 (ADVANCE): New macro.
10715 (convert_escape): New function.
10716 (parse_one_string): Likewise.
10717 (evaluate_subexp_c): Likewise.
10718 (exp_descriptor_c): New global.
10719 (c_language_defn): Use exp_descriptor_c.
10720 (cplus_language_defn): Likewise.
10721 (asm_language_defn): Likewise.
10722 (minimal_language_defn): Likewise.
10723 (charset_for_string_type): New function.
10724 * c-exp.y (%union): Add 'svec' and 'tsval'.
10725 (CHAR): New token.
10726 (exp): Add CHAR production.
10727 (string_exp): Rewrite.
10728 (exp) <string_exp>: Rewrite.
10729 (tempbuf): Now global.
10730 (tempbuf_init): New global.
10731 (parse_string_or_char): New function.
10732 (yylex) <tempbuf>: Now global.
10733 <tokptr, tempbufindex, tempbufsize, token_string, class_prefix>:
10734 Remove.
10735 Handle 'u', 'U', and 'L' prefixes. Call parse_string_or_char.
10736 (c_parse_escape): New function.
10737 * auxv.c (fprint_target_auxv): Update.
10738 * ada-valprint.c (ada_emit_char): Add type argument.
10739 (ada_printchar): Likewise.
10740 (ada_print_scalar): Update.
10741 (printstr): Add type argument. Update calls to ada_emit_char.
10742 (ada_printstr): Add type argument.
10743 (ada_val_print_array): Update.
10744 (ada_val_print_1): Likewise.
10745 * ada-lang.c (emit_char): Add type argument.
10746 * ada-lang.h (ada_emit_char, ada_printchar, ada_printstr): Add
10747 type arguments.
10748 * gdb_locale.h: Include langinfo.h.
10749 * charset.c (_initialize_charset): Set default host charset from
10750 the locale. Don't register charsets. Add target-wide-charset
10751 commands. Call find_charset_names.
10752 (struct charset, struct translation): Remove.
10753 (GDB_DEFAULT_HOST_CHARSET): Remove.
10754 (GDB_DEFAULT_TARGET_WIDE_CHARSET): New define.
10755 (target_wide_charset_name): New global.
10756 (show_host_charset_name): Handle "auto".
10757 (show_target_wide_charset_name): New function.
10758 (host_charset_enum, target_charset_enum): Remove.
10759 (charset_enum): New global.
10760 (all_charsets, register_charset, lookup_charset, all_translations,
10761 register_translation, lookup_translation): Remove.
10762 (simple_charset, ascii_print_literally, ascii_to_control): Remove.
10763 (iso_8859_print_literally, iso_8859_to_control,
10764 iso_8859_family_charset): Remove.
10765 (ebcdic_print_literally, ebcdic_to_control,
10766 ebcdic_family_charset): Remove.
10767 (struct cached_iconv, check_iconv_cache, cached_iconv_convert,
10768 register_iconv_charsets): Remove.
10769 (target_wide_charset_be_name, target_wide_charset_le_name): New
10770 globals.
10771 (identity_either_char_to_other): Remove.
10772 (set_be_le_names, validate): New functions.
10773 (backslashable, backslashed, represented): Remove.
10774 (default_c_target_char_has_backslash_escape): Remove.
10775 (default_c_parse_backslash, iconv_convert): Remove.
10776 (ascii_to_iso_8859_1_table, ascii_to_ebcdic_us_table,
10777 ascii_to_ibm1047_table, iso_8859_1_to_ascii_table,
10778 iso_8859_1_to_ebcdic_us_table, iso_8859_1_to_ibm1047_table,
10779 ebcdic_us_to_ascii_table, ebcdic_us_to_iso_8859_1_table,
10780 ebcdic_us_to_ibm1047_table, ibm1047_to_ascii_table,
10781 ibm1047_to_iso_8859_1_table, ibm1047_to_ebcdic_us_table): Remove.
10782 (table_convert_char, table_translation, simple_table_translation):
10783 Remove.
10784 (current_host_charset, current_target_charset,
10785 c_target_char_has_backslash_escape_func,
10786 c_target_char_has_backslash_escape_baton): Remove.
10787 (c_parse_backslash_func, c_parse_backslash_baton): Remove.
10788 (host_char_to_target_func, host_char_to_target_baton): Remove.
10789 (target_char_to_host_func, target_char_to_host_baton): Remove.
10790 (cached_iconv_host_to_target, cached_iconv_target_to_host):
10791 Remove.
10792 (lookup_charset_or_error, check_valid_host_charset): Remove.
10793 (set_host_and_target_charsets): Remove.
10794 (set_host_charset, set_target_charset): Remove.
10795 (set_host_charset_sfunc, set_target_charset_sfunc): Rewrite.
10796 (set_target_wide_charset_sfunc): New function.
10797 (show_charset): Print target wide character set.
10798 (host_charset, target_charset): Rewrite.
10799 (target_wide_charset): New function.
10800 (c_target_char_has_backslash_escape): Remove.
10801 (c_parse_backslash): Remove.
10802 (host_letter_to_control_character): New function.
10803 (host_char_print_literally): Remove.
10804 (host_hex_value): New function.
10805 (target_char_to_control_char): Remove.
10806 (cleanup_iconv): New function.
10807 (convert_between_encodings): New function.
10808 (target_char_to_host): Remove.
10809 (struct wchar_iterator): Define.
10810 (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
10811 wchar_push_back): New functions.
10812 (do_cleanup_iterator): New function.
10813 (char_ptr): New typedef.
10814 (charsets): New global.
10815 (add_one, find_charset_names): New functions.
10816 (default_charset_names): New global.
10817 (auto_host_charset_name): Likewise.
10818 * aclocal.m4, config.in, configure: Rebuild.
10819 * configure.ac: Call AM_LANGINFO_CODESET.
10820 (GDB_DEFAULT_HOST_CHARSET): Default to UTF-8.
10821 (AM_ICONV): Invoke earlier.
10822 * acinclude.m4: Include codeset.m4. Subst LIBICONV_INCLUDE and
10823 LIBICONV_LIBDIR. Check for libiconv in build tree.
10824 * Makefile.in (LIBICONV_LIBDIR, LIBICONV_INCLUDE): New macros.
10825 (INTERNAL_CFLAGS_BASE): Add LIBICONV_INCLUDE.
10826 (INTERNAL_LDFLAGS): Add LIBICONV_LIBDIR.
10827 * gdb_obstack.h (obstack_grow_wstr): New define.
10828 * gdb_wchar.h: New file.
10829 * defs.h: Include it.
10830
10831 2009-03-20 Tom Tromey <tromey@redhat.com>
10832 Jan Kratochvil <jan.kratochvil@redhat.com>
10833
10834 * dwarf2read.c (process_die): Handle DW_TAG_typedef.
10835 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Strip a single
10836 typedef.
10837 * ada-lang.c (decode_packed_array_type): Call CHECK_TYPEDEF on the
10838 SYMBOL_TYPE result.
10839 * ada-typeprint.c (print_array_type): Do the NULL check
10840 unconditionally.
10841
10842 2009-03-19 Tom Tromey <tromey@redhat.com>
10843
10844 * utils.c (do_obstack_free): New function.
10845 (make_cleanup_obstack_free): Likewise.
10846 * defs.h (make_cleanup_obstack_free): Declare.
10847
10848 2009-03-18 Doug Evans <dje@google.com>
10849
10850 * linux-nat.c (linux_nat_find_memory_regions): Result of PIDGET is an
10851 int, not a long long.
10852 (linux_nat_info_proc_cmd): Store pid in long instead of long long.
10853
10854 * expprint.c (dump_raw_expression): Print note if non-NULL.
10855
10856 * printcmd.c (display_uses_solib_p): Redo loop, scan element list
10857 backwards.
10858
10859 2009-03-18 Nathan Sidwell <nathan@codesourcery.com>
10860
10861 * Makefile.in: Update license to GPLv3.
10862 * ada-exp.y: Update license to GPLv3.
10863 * ada-lex.l: Update license to GPLv3.
10864 * c-exp.y: Update license to GPLv3.
10865 * cp-name-parser.y: Update license to GPLv3.
10866 * darwin-nat-info.c: Update license to GPLv3.
10867 * f-exp.y: Update license to GPLv3.
10868 * gdb_thread_db.h: Update license to GPLv3.
10869 * hppanbsd-nat.c: Update license to GPLv3.
10870 * hppanbsd-tdep.c: Update license to GPLv3.
10871 * hppaobsd-tdep.c: Update license to GPLv3.
10872 * jv-exp.y: Update license to GPLv3.
10873 * m2-exp.y: Update license to GPLv3.
10874 * objc-exp.y: Update license to GPLv3.
10875 * p-exp.y: Update license to GPLv3.
10876 * reply_mig_hack.awk: Update license to GPLv3.
10877 * reverse.c: Update license to GPLv3.
10878 * xtensa-xtregs.c: Update license to GPLv3.
10879
10880 2009-03-18 Pedro Alves <pedro@codesourcery.com>
10881
10882 * remote.c (remote_close): Don't call generic_mourn_inferior.
10883 (remote_mourn_1): Call generic_mourn_inferior after closing the
10884 target.
10885
10886 2009-03-18 Pedro Alves <pedro@codesourcery.com>
10887
10888 * remote.c (remote_start_remote): Add missing call to
10889 init_wait_for_inferior in non-stop mode.
10890
10891 2009-03-18 Pedro Alves <pedro@codesourcery.com>
10892
10893 * breakpoint.c (bpstat_should_step): Only consider software
10894 watchpoints that have a location.
10895
10896 2009-03-17 Joel Brobecker <brobecker@adacore.com>
10897
10898 Add a target_ops parameter to the to_kill method in struct target_ops.
10899
10900 * target.h (struct target_ops): Add a "target_ops *" parameter to
10901 method to_kill.
10902 (target_kill): Remove macro. Add declaration.
10903 * target.c (debug_to_kill): Delete, no longer necessary.
10904 (target_kill): New function.
10905 (update_current_target): Stop inheriting the to_kill method.
10906 Do not de_fault it to no_process either.
10907 (setup_target_debug): Do not set current_target.to_kill.
10908 * gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
10909 linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
10910 remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
10911 accordingly.
10912
10913 2009-03-17 Doug Evans <dje@google.com>
10914
10915 * amd64-linux-nat.c (si_timerid,si_overrun): Provide definition for
10916 glibc 2.3.2 and earlier.
10917
10918 2009-03-17 Joel Brobecker <brobecker@adacore.com>
10919
10920 * frame.c (get_prev_frame_1): Do not perform the inner_frame
10921 sanity check if this_frame is not NORMAL.
10922 (frame_id_inner): Update the description of this function.
10923
10924 2009-03-17 Hui Zhu <teawater@gmail.com>
10925
10926 * stack.c: Change the introduce of "disassemble-next-line".
10927
10928 2009-03-17 Pedro Alves <pedro@codesourcery.com>
10929
10930 * mi/mi-main.h (mi_print_timing_maybe): Add strict prototype,
10931 declare as extern.
10932
10933 2009-03-17 Hui Zhu <teawater@gmail.com>
10934
10935 * stack.c: Include valprint.h.
10936 (disassemble_next_line): New enum.
10937 (show_disassemble_next_line): New function. Show the current
10938 value of disassemble-next-line.
10939 (gdb_disassembly_stub_args): New struct for argument passing
10940 between function do_gdb_disassembly and function
10941 gdb_disassembly_stub.
10942 (gdb_disassembly_stub): New function. Helper for
10943 gdb_disassembly.
10944 (do_gdb_disassembly): New function. Use TRY_CATCH to catch
10945 the exception from the gdb_disassembly because it will be
10946 broken by filter sometime.
10947 (print_frame_info): If disassemble-next-line is set to auto
10948 or on and doesn't have the line debug messages for $pc,
10949 output the next instruction.
10950 If disassemble-next-line is set to on and there is line debug
10951 messages, output assembly codes for next line.
10952 (_initialize_stack): Make the "set disassemble-next-line"
10953 command an auto-boolean command. Change its class to
10954 class_stack. Place it in the top level set list. Extend help
10955 to describe the auto mode.
10956
10957 2009-03-17 Pedro Alves <pedro@codesourcery.com>
10958
10959 * infrun.c (normal_stop): Don't overwrite old_chain.
10960
10961 2009-03-16 Joel Brobecker <brobecker@adacore.com>
10962
10963 * remote-mips.c (mips_load): Replace call to regcache_set_valid_p,
10964 which is undefined, by call to regcache_invalidate, which should
10965 do what the original author wanted to do.
10966
10967 2009-03-16 Joel Brobecker <brobecker@adacore.com>
10968
10969 * remote-mips.c (mips_mourn_inferior): Add missing ops parameter.
10970 (mips_create_inferior): Likewise.
10971
10972 2009-03-16 Joel Brobecker <brobecker@adacore.com>
10973
10974 * go32-nat.c (go32_create_inferior): Add missing ops parameter.
10975
10976 2009-03-16 Joel Brobecker <brobecker@adacore.com>
10977
10978 * darwin-nat.c (darwin_resume): Fix a compiler warning when
10979 building on x86_64-darwin.
10980
10981 2009-03-16 Tristan Gingold <gingold@adacore.com>
10982
10983 * configure.tgt: Add handling for x86_64-darwin.
10984
10985 2009-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
10986
10987 * auxv.c (fprint_target_auxv): New TAG for AT_RANDOM.
10988
10989 2009-03-15 Joel Brobecker <brobecker@adacore.com>
10990
10991 * aix-thread.c (aix_thread_thread_alive, aix_thread_pid_to_str):
10992 Use the ops parameter to get to the target beneath, rather than
10993 using the current_target global. Using the current_target global
10994 was an unintended accident.
10995
10996 2009-03-15 Joel Brobecker <brobecker@adacore.com>
10997
10998 Fix an error happening while loading symbols from a core file
10999 (on AIX).
11000
11001 * rs6000-nat.c (xcoff_relocate_symtab): Use target_has_execution
11002 to detect whether we're debugging a core file or not.
11003
11004 2009-03-15 Joel Brobecker <brobecker@adacore.com>
11005
11006 Modernize the aix-thread later by getting rid of the base_target
11007 global. This brings back to life the AIX port which was otherwise
11008 crashing all the time.
11009
11010 * aix-thread.c (base_target): Delete.
11011 (pd_enable): Do not set base_target.
11012 (aix_thread_attach): Use find_target_beneath instead of base_target.
11013 (aix_thread_detach, aix_thread_resume, aix_thread_wait)
11014 (aix_thread_fetch_registers, aix_thread_store_registers),
11015 (aix_thread_xfer_partial, aix_thread_mourn_inferior)
11016 (aix_thread_thread_alive, aix_thread_pid_to_str): Likewise.
11017 (aix_thread_kill): Delete. Does not seem necessary.
11018 (init_aix_thread_ops): Do not set aix_thread_ops.to_kill.
11019
11020 2009-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11021
11022 * stack.c (return_command <retval_exp>): New variables retval_expr
11023 and old_chain. Inline parse_and_eval to initialize retval_expr. Check
11024 RETVAL_EXPR for UNOP_CAST and set RETURN_TYPE to the RETURN_VALUE type
11025 if RETURN_TYPE is NULL.
11026
11027 2009-03-14 Pedro Alves <pedro@codesourcery.com>
11028
11029 * remote.c (PACKET_qAttached): New.
11030 (remote_query_attached): New.
11031 (remote_add_inferior): Add new `attached' argument. Handle it.
11032 (remote_notice_new_inferior, remote_start_remote): Adjust to pass
11033 -1 to remote_add_inferior in new parameter.
11034 (extended_remote_attach_1): Adjust to pass 1 to
11035 remote_add_inferior in the new parameter.
11036 (extended_remote_create_inferior_1): Adjust to pass 0 to
11037 remote_add_inferior in the new parameter.
11038 (_initialize_remote): Add "set/show remote query-attached-packet"
11039 commands.
11040
11041 2009-03-13 Tom Tromey <tromey@redhat.com>
11042
11043 * symtab.c (lookup_symbol_in_language): Use a cleanup.
11044
11045 2009-03-13 Doug Evans <dje@google.com>
11046
11047 * exceptions.h: Clean up some comments on catch_exceptions usage.
11048 * exceptions.c: Ditto. Plus mark catch_errors as superseded by
11049 catch_exceptions.
11050
11051 2009-02-17 Joel Brobecker <brobecker@adacore.com>
11052
11053 The following patch helps getting rid of a warning inside solib-som.c.
11054
11055 * source.c (source_full_path_of): Constify parameter filename.
11056 * defs.h (source_full_path_of): Update declaration accordingly.
11057
11058 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11059
11060 * ada-lang.c (ada_evaluate_subexp): Merge case BINOP_REM and
11061 BINOP_MOD cases with the handling of case BINOP_DIV and BINOP_MUL.
11062 Remove useless op value checks when EVAL_AVOID_SIDE_EFFECTS.
11063
11064 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11065
11066 * ada-lang.c (ada_evaluate_subexp) <BINOP_DIV>: make sure to
11067 promote the operands when noside is EVAL_AVOID_SIDE_EFFECTS.
11068
11069 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11070
11071 * ada-tasks.c (ada_task_is_alive): Move up and make static.
11072 * ada-lang.h (ada_task_is_alive): Remove declaration.
11073
11074 2009-03-12 Jerome Guitton <guitton@adacore.com>
11075
11076 * ada-lang.c (ada_delta): Change the type of numerators and
11077 denominators to DOUBLEST, as they may not fit into a long.
11078 (scaling_factor): Ditto.
11079
11080 2009-03-12 Jerome Guitton <guitton@adacore.com>
11081
11082 * language.c (lang_bool_type): Set lai->bool_type_symbol to NULL.
11083
11084 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11085
11086 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: For tagged
11087 types, if we are unable to determine the actual symbol type
11088 from its tag, then use the static approximation instead.
11089
11090 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11091
11092 Fix crash printing packed record with packed array.
11093
11094 * ada-lang.c (ada_modulus_from_name): New function.
11095 (ada_modulus): In the case where the type length is bigger than
11096 the size of the type used to hold the bounds, try determining
11097 the modulus from the type name.
11098 (ada_value_primitive_packed_val): Fix bug in the computation of
11099 ntarg causing an out-of-buffer invalid access.
11100
11101 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11102
11103 Fix segfault when printing short_integer'last.
11104
11105 * ada-lang.c (ada_find_any_type): Search in the primitive types
11106 if a symbol could not be found.
11107
11108 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11109
11110 * ada-tasks.c (task_states,long_task_states): Add new states
11111 Activating and Acceptor_Delay_Sleep. Update the description
11112 of state Acceptor_Sleep.
11113
11114 2009-03-12 Jonas Maebe <jonas.maebe@elis.ugent.be> (obvious change)
11115
11116 Fix a build failure on Darwin following some changes in
11117 the profile of some target_ops methods.
11118
11119 * darwin-nat.c (darwin_kill_inferior): Add target_ops parameter
11120 where missing.
11121 (darwin_stop_inferior, darwin_detach): Likewise.
11122
11123 2009-03-12 Vladimir Prus <vladimir@codesourcery.com>
11124
11125 Include token in ^running notification for CLI commands.
11126
11127 * mi/mi-main.c (mi_execute_command): Set current_token here.
11128 (mi_cmd_execute): Do not set current_token here.
11129
11130 2009-03-12 Vladimir Prus <vladimir@codesourcery.com>
11131
11132 Fix MI timings.
11133
11134 * mi/mi-main.c (mi_print_timing_maybe): New.
11135 (captured_mi_execute_command): Simplify. Output timings to
11136 CLI commands, too.
11137 (mi_execute_async_cli_command): Do not print timings.
11138 * mi/mi-main.h (mi_print_timing_maybe): Declare.
11139 * mi/mi-interp.c (mi_on_normal_stop): Call mi_print_timing_maybe.
11140
11141 2009-03-12 Jerome Guitton <guitton@adacore.com>
11142
11143 * xcoffread.c (process_linenos): Check if the line in the
11144 include table refers to the main source file and, if so,
11145 add them to the main subfile.
11146
11147 2009-03-12 Joel Brobecker <brobecker@adacore.com>
11148
11149 Fix a build failure on AIX introduced after a change in the profile
11150 of some of the "methods" in the target_ops structure.
11151 * aix-thread.c: Add missing target_ops parameter throughout.
11152
11153 Implement Ada task switching on AIX.
11154 * aix-thread.c (aix_thread_get_ada_task_ptid): New function.
11155 (init_aix_thread_ops): Set aix_thread_ops.to_get_ada_task_ptid.
11156
11157 2009-03-11 Daniel Jacobowitz <dan@codesourcery.com>
11158
11159 * breakpoint.c (bpstat_check_breakpoint_conditions): Use
11160 value_mark and value_free_to_mark.
11161 * objfiles.c (free_objfile): Call objfile_free_data before
11162 freeing the BFD.
11163
11164 2009-03-10 Hui Zhu <teawater@gmail.com>
11165
11166 * disasm.c (gdb_disassembly): Remove unused argument
11167 "line_num".
11168 * disasm.h (gdb_disassembly): Ditto.
11169 * cli/cli-cmds.c (print_disassembly): Ditto.
11170 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Ditto.
11171
11172 2009-03-09 Paul Pluzhnikov <ppluzhnikov@google.com>
11173
11174 * solib.c (solib_contains_address_p): New function.
11175 (solib_name_from_address): Use it.
11176 * printcmd.c (display_uses_solib_p): Use it.
11177 * solib.h (solib_contains_address_p): Declare it.
11178
11179 2009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11180
11181 * varobj.c (free_variable): Call value_free.
11182
11183 2009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11184
11185 PR gdb/9873:
11186 * dwarf2read.c (dwarf_decode_macros): New variable `at_commandline'.
11187 Move the variable `macinfo_type' out of the loop. Create a new
11188 processing pass before the current one to pre-create `current_file'.
11189 New complaint on misplaced zero/non-zero definitions/includes.
11190 Skip first DW_MACINFO_start_file with `at_commandline' set.
11191
11192 2008-03-09 Vladimir Prus <vladimir@codesourcery.com>
11193
11194 * solib.c (reload_shared_libraries): Give
11195 inferior a chance to reset solib breakpoint.
11196 Reinit frame cache.
11197
11198 2009-03-08 Christopher Faylor <me+cygwin@cgf.cx>
11199
11200 * windows-nat.c (dr): Redefine to use largest possible integer which
11201 holds a pointer.
11202 (cygwin_set_dr): Avoid coercion.
11203
11204 2009-03-08 Oswald Buddenhagen <oswald.buddenhagen@trolltech.de>
11205
11206 * windows-nat.c (windows_create_inferior): Implement --tty handling on
11207 non-cygwin.
11208
11209 2009-03-06 Paul Pluzhnikov <ppluzhnikov@google.com>
11210
11211 Rename solib_address to solib_name_from_address.
11212 * breakpoint.c (insert_bp_location, disable_breakpoints_in_shlibs)
11213 (disable_breakpoints_in_unloaded_shlib): Update.
11214 * printcmd.c (display_uses_solib_p): Likewise.
11215 * stack.c (print_frame): Likewise.
11216 * solib.c: Rename.
11217 * solib.h: Rename.
11218
11219 2009-03-05 Paul Pluzhnikov <ppluzhnikov@google.com>
11220
11221 * printcmd.c (do_one_display): Reparse exp_string.
11222 (display_uses_solib_p): New function.
11223 (clear_dangling_display_expressions): New function.
11224 (_initialize_printcmd): Add observer.
11225 * solib.c (no_shared_libraries): Swap order of calls to
11226 clear_solib and objfile_purge_solibs.
11227
11228 2009-03-05 Joel Brobecker <brobecker@adacore.com>
11229
11230 Implement the target-specific part of Ada tasking support
11231 on Tru64.
11232
11233 * dec-thread.c (dec_thread_get_ada_task_ptid): New function.
11234 (init_dec_thread_ops): Set the to_get_ada_task_ptid method.
11235
11236 2009-03-05 Joel Brobecker <brobecker@adacore.com>
11237
11238 Get rid of the global "base_target" and use "find_target_beneath"
11239 to find the underlying target.
11240 * dec-thread.c (base_target): Delete.
11241 (enable_dec_thread): Remove assignement to base_target.
11242 (dec_thread_detach, dec_thread_wait, dec_thread_wait)
11243 (dec_thread_fetch_registers, dec_thread_store_registers)
11244 (dec_thread_mourn_inferior, dec_thread_pid_to_str):
11245 Update the function profile if necessary.
11246 Use find_target_beneath to call the same method but from
11247 the underlying target, removing the need for "base_target".
11248
11249 * dec-thread.c (dec_thread_get_regsets, dec_thread_set_regsets):
11250 Fix a copy/paste error in a few debug traces...
11251
11252 * solib-osf.c (init_so): Use a simpler method for computing
11253 the size of lm_info structure. This also gets rid of warning
11254 emitted by the compiler.
11255
11256 2009-03-05 Pedro Alves <pedro@codesourcery.com>
11257
11258 * breakpoint.c (check_duplicates_for): Skip permanent breakpoints
11259 duplicates of permanent breakpoints.
11260
11261 2009-03-04 Pedro Alves <pedro@codesourcery.com>
11262
11263 * inferior.h (notice_new_inferior): Declare.
11264 * infcmd.c (notice_new_inferior): New.
11265 * remote.c (remote_add_inferior, remote_add_thread): New.
11266 (notice_new_inferiors): Rename to...
11267 (remote_notice_new_inferior): ... this. Add RUNNING argument.
11268 Use remote_add_thread instead of add_thread, passing it the
11269 RUNNING argument. Add an inferior with remote_add_inferior. If
11270 we just learned about an inferior, call notice_new_inferior.
11271 (record_currthread): Adjust.
11272 (remote_threads_info): Adjust to use remote_notice_new_inferior.
11273 (remote_start_remote, extended_remote_attach_1): Use
11274 remote_add_inferior.
11275 (process_stop_reply): Adjust. Call remote_notice_new_inferior
11276 after handling expedited registers and watchpoint state.
11277 (extended_remote_create_inferior_1): Use remote_add_inferior.
11278
11279 2009-03-04 Aleksandar Ristovski <aristovski@qnx.com>
11280
11281 * infcmd.c (registers_info): Remove register number case.
11282
11283 2009-03-03 Pedro Alves <pedro@codesourcery.com>
11284
11285 * top.c (quit_target): Check for target_has_execution before
11286 killing or detaching from inferiors.
11287
11288 2009-03-02 Joel Brobecker <brobecker@adacore.com>
11289
11290 Remove some unused routines.
11291
11292 * ada-lang.c (is_suppressed_name, ada_suppress_symbol_printing):
11293 Delete.
11294 * ada-lang.c (ada_task_list_iterator_ftype)
11295 (iterate_over_live_ada_tasks): Delete.
11296 * ada-tasks.c (ada_get_environment_task, iterate_over_live_ada_tasks):
11297 Delete.
11298
11299 2009-03-01 Doug Evans <dje@google.com>
11300
11301 * symtab.c: Remove trailing whitespace throughout the file.
11302 (expand_line_sal): Fix some typos and whitespace.
11303
11304 * Makefile.in (clean): rm -f $(DEPDIR)/*.
11305
11306 * Makefile.in (GDB_CFLAGS): Add -I$(srcdir)/common.
11307 (init.c): signals/ -> common/.
11308 (signals.o): Update.
11309 * target.h (target_signal_to_string,target_signal_to_string)
11310 (target_signal_from_name,target_signal_to_host_p)
11311 (target_signal_from_host,target_signal_to_host): Move to ...
11312 * common/gdb_signals.h: ... here. New file.
11313 * common/signals.c: Moved here from signals/signals.c.
11314 #include gdb_signals.h, remove #include of target.h in gdb case.
11315 (target_signal_from_command,default_target_signal_to_host)
11316 (default_target_signal_from_host): Move inside #ifndef GDBSERVER.
11317
11318 Include thread ID in target_wait debugging output.
11319 * infrun.c (print_target_wait_results): New function.
11320 (wait_for_inferior,fetch_inferior_event): Call it.
11321
11322 2009-02-27 Pedro Alves <pedro@codesourcery.com>
11323
11324 * gdb_proc_service.h (struct ps_prochandle): Replace pid_t field
11325 with a ptid_t field.
11326 * linux-thread-db.c (thread_get_info_callback): Build the ptid
11327 using the pid stored in proc_handle.ptid.
11328 (thread_from_lwp, thread_db_attach_lwp, enable_thread_event)
11329 (check_for_thread_db, thread_db_detach, check_event)
11330 (thread_db_mourn_inferior, find_new_threads_callback)
11331 (thread_db_find_new_threads_1): Adjust.
11332 * proc-service.c (ps_xfer_memory, ps_lgetregs, ps_lsetregs)
11333 (ps_lgetfpregs, ps_lsetfpregs, ps_getpid): Adjust.
11334
11335 2009-02-27 Phil Muldoon <pmuldoon@redhat.com>
11336
11337 * valprint.c (read_string): Rework clean-up logic. Use
11338 free_current_contents to clean-up buffer.
11339
11340 2009-02-27 Andreas Schwab <schwab@linux-m68k.org>
11341
11342 * MAINTAINERS: Update e-mail address.
11343
11344 2009-02-26 Phil Muldoon <pmuldoon@redhat.com>
11345
11346 * python/python-utils.c (python_string_to_unicode): Always return
11347 a new reference.
11348 (python_string_to_target_string): Decrement transient python
11349 instance.
11350 (python_string_to_host_string): Likewise.
11351
11352 2007-02-26 Pedro Alves <pedro@codesourcery.com>
11353
11354 * mips-linux-nat.c (mips64_linux_fetch_registers): Pass `ops' to
11355 call to super_fetch_registers.
11356 (mips64_linux_store_registers): Pass `ops' to call to
11357 super_store_registers.
11358
11359 2009-02-25 Doug Evans <dje@google.com>
11360
11361 * breakpoint.c (insert_bp_location): Add \n to overlay breakpoint
11362 error message.
11363
11364 * breakpoint.c (disable_breakpoints_in_shlibs): Delete local
11365 disabled_shlib_breaks, unused.
11366
11367 * printcmd.c (build_address_symbolic): Fix comment.
11368
11369 2009-02-25 Hui Zhu <teawater@gmail.com>
11370
11371 * cli/cli-script.c (define_command): Add _() to query.
11372 * gnu-nat.c (inf_validate_task_sc): Ditto.
11373 * infcmd.c (kill_if_already_running): Ditto.
11374 (jump_command): Ditto.
11375 (attach_command): Ditto.
11376 * inflow.c (kill_command): Ditto.
11377 * infrun.c (handle_command): Ditto.
11378 * maint.c (maintenance_dump_me): Ditto.
11379 * memattr.c (mem_delete_command): Ditto.
11380 * monitor.c (monitor_interrupt_query): Ditto.
11381 * nto-procfs.c (interrupt_query): Ditto.
11382 * printcmd.c (undisplay_command): Ditto.
11383 * remote-mips.c (mips_kill): Ditto.
11384 * remote.c (interrupt_query): Ditto.
11385 * solib-irix.c (irix_open_symbol_file_object): Ditto.
11386 * solib-osf.c (osf_open_symbol_file_object): Ditto.
11387 * solib-pa64.c (pa64_open_symbol_file_object): Ditto.
11388 * solib-som.c (som_open_symbol_file_object): Ditto.
11389 * solib-svr4.c (open_symbol_file_object): Ditto.
11390 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
11391 * target.c (kill_or_be_killed): Ditto.
11392 * tracepoint.c (delete_trace_command): Ditto.
11393 * top.c (quit_confirm): Add _() to s that will be used
11394 in query.
11395
11396 2009-02-24 Pierre Muller <muller@ics.u-strasbg.fr>
11397
11398 Fix windows-nat.c compilation failure.
11399
11400 * windows-nat.c (windows_thread_alive): Fix forward declaration.
11401 (get_windows_debug_event): Add ops parameter to call to windows_resume.
11402
11403 2009-02-23 Pedro Alves <pedro@codesourcery.com>
11404
11405 * remote-sim.c (gdbsim_resume): Add target_ops* argument.
11406
11407 2009-02-23 Jay Krell <jay.krell@cornell.edu> (tiny change)
11408
11409 * symtab.c (find_line_symtab): Initialize exact to avoid
11410 a compiler warning.
11411
11412 2009-02-23 Pedro Alves <pedro@codesourcery.com>
11413
11414 * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass
11415 `ops' to recursive call.
11416
11417 2009-02-23 Pedro Alves <pedro@codesourcery.com>
11418
11419 * corelow.c (get_core_registers): Adjust.
11420 (core_file_thread_alive): Rename to...
11421 (core_thread_alive): ... this.
11422 (core_pid_to_str): Try gdbarch_core_pid_to_str first.
11423 (init_core_ops): Adjust.
11424 (coreops_suppress_target): Delete.
11425 (_initialize_corelow): Unconditionally add core_ops.
11426 * procfs.c: Include "inf-child.h".
11427 (procfs_ops): Delete.
11428 (init_procfs_ops): Delete. Reimplement as...
11429 (procfs_target): ... this, inheriting from inf-child.
11430 (procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
11431 (procfs_prepare_to_store): Delete.
11432 (procfs_store_registers, procfs_resume): Adjust.
11433 (procfs_open): Delete.
11434 (procfs_suppress_run): Delete.
11435 (procfs_can_run): Delete.
11436 (procfs_mourn_inferior): Adjust.
11437 (procfs_init_inferior): Add target_ops parameter. Adjust.
11438 (procfs_create_inferior): Don't pass procfs_init_inferior to
11439 fork_inferior. Instead call it after fork_inferior returns.
11440 (procfs_find_new_threads): Adjust.
11441 (_initialize_procfs): Adjust to use procfs_target instead of
11442 init_procfs_ops.
11443 * sol-thread.c (orig_core_ops, sol_core_ops): Delete.
11444 (lwp_to_thread): Use target_thread_alive.
11445 (sol_thread_open): Delete.
11446 (sol_thread_attach): Delete.
11447 (sol_thread_detach, sol_thread_resume, sol_thread_wait)
11448 (sol_thread_fetch_registers, sol_thread_store_registers): Adjust
11449 to use find_target_beneath.
11450 (sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
11451 (sol_thread_xfer_partial): Adjust to use find_target_beneath.
11452 (sol_thread_files_info, sol_thread_kill_inferior): Delete.
11453 (check_for_thread_db): New.
11454 (sol_thread_notice_signals, sol_thread_create_inferior): Delete.
11455 (sol_thread_new_objfile): Call check_for_thread_db.
11456 (sol_thread_mourn_inferior): Adjust to use find_target_beneath.
11457 (sol_thread_can_run): Delete.
11458 (sol_thread_alive): Adjust to use find_target_beneath.
11459 (sol_thread_stop): Delete.
11460 (rw_common): Use target_write_memory or target_read_memory.
11461 (ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
11462 (ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
11463 (solaris_pid_to_str): Remove check for libthread_db initialization
11464 failing.
11465 (sol_find_new_threads): Remove check for libthread_db
11466 initialization failing, or for an invalid inferior_ptid. Adjust
11467 to use find_target_beneath.
11468 (sol_core_open, sol_core_close, sol_core_detach,
11469 sol_core_files_info, sol_find_memory_regions,
11470 sol_make_note_section, ignore): Delete.
11471 (init_sol_thread_ops): Make it a thread_stratum target. Remove
11472 unneeded callback settings.
11473 (init_sol_core_ops): Delete.
11474 (_initialize_sol_thread): No longer call init_sol_core_ops, set
11475 procfs_suppress_run, or hack with core_ops.
11476
11477 * target.h (struct target_ops): Add a target_ops * parameter to
11478 to_resume, to_fetch_registers, to_store_registers, to_thread_alive
11479 and to_find_new_threads.
11480 (target_fetch_registers, target_store_registers)
11481 (target_thread_alive, target_find_new_threads): Redeclare as
11482 function.
11483
11484 * target.c (update_current_target): Do not inherit or de_fault
11485 to_resume, to_fetch_registers, to_store_registers,
11486 to_thread_alive, to_find_new_threads.
11487 (target_resume): Adjust.
11488 (target_thread_alive, target_find_new_threads): New.
11489 (debug_to_resume, debug_to_fetch_registers): Delete.
11490 (target_fetch_registers): New.
11491 (debug_to_store_registers): Delete.
11492 (target_store_registers): New.
11493 (debug_to_thread_alive, debug_to_find_new_threads): Delete.
11494 (setup_target_debug): Adjust.
11495
11496 * gdbcore.h (core_ops): Delete declaration.
11497
11498 * inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
11499 inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
11500 i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
11501 hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
11502 nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
11503 alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
11504 bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
11505 hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
11506 ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
11507 m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
11508 mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
11509 ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
11510 shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
11511 vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
11512
11513 * gdbarch.sh (core_pid_to_str): New gdbarch callback.
11514 * gdbarch.h, gdbarch.c: Regenerate.
11515
11516 * sol2-tdep.c: Include "inferior.h".
11517 (sol2_core_pid_to_str): New.
11518 * sol2-tdep.h (sol2_core_pid_to_str): Declare.
11519
11520 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
11521 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
11522 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
11523 * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
11524
11525 2009-02-22 Doug Evans <dje@google.com>
11526
11527 * exec.c (exec_file_attach): Fix comment.
11528
11529 2009-02-22 Pedro Alves <pedro@codesourcery.com>
11530
11531 Silence a few -Wmissing-prototypes warnings.
11532
11533 PR build/9877:
11534 * alpha-linux-tdep.c (alpha_linux_regset_from_core_section): Make
11535 it static.
11536 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Declare.
11537 * amd64fbsd-tdep.c (amd64fbsd_init_abi): Make it static.
11538 * amd64nbsd-tdep.c (_initialize_amd64nbsd_ndep): Rename to ...
11539 (_initialize_amd64nbsd_tdep): ... this.
11540 * arm-linux-tdep.c (arm_linux_software_single_step): Make it static.
11541 (_initialize_arm_linux_tdep): Declare.
11542 * armbsd-tdep.c (armbsd_fpreg_offset): Make it static.
11543 * armnbsd-tdep.c (_initialize_arm_netbsd_tdep): Declare.
11544 * armobsd-tdep.c (_initialize_armobsd_tdep): Declare.
11545 * avr-tdep.c (avr_return_value): Make it static.
11546 (avr_frame_unwind_cache): Ditto.
11547 * bsd-uthread.c (bsd_uthread_inferior_created): Ditto.
11548 (bsd_uthread_solib_loaded): Ditto.
11549 (bsd_uthread_solib_unloaded): Ditto.
11550 (bsd_uthread_target): Ditto.
11551 (_initialize_bsd_uthread): Declare.
11552 * cris-tdep.c (crisv32_single_step_through_delay): Make it static.
11553 (cris_frame_unwind_cache): Ditto.
11554 * frv-tdep.c (frv_return_value): Ditto.
11555 * h8300-tdep.c (h8300_use_struct_convention): Ditto.
11556 (h8300h_use_struct_convention): Ditto.
11557 * hppa-tdep.c (hppa_sign_extend, hppa_low_hppa_sign_extend):
11558 Ditto.
11559 * hppa-tdep.h (hppa_low_sign_extend, hppa_sign_extend): Delete
11560 declarations.
11561 * hppabsd-tdep.c: Include hppabsd-tdep.h.
11562 (hppabsd_find_global_pointer): Make it static.
11563 * hppabsd-tdep.h: New.
11564 * hppanbsd-tdep.c: Include hppabsd-tdep.h.
11565 (hppabsd_init_abi): Remove declaration.
11566 (_initialize_hppabsd_tdep): Remove declaration.
11567 (_initialize_hppanbsd_tdep): Declare.
11568 * hppaobsd-tdep.c: Include hppabsd-tdep.h.
11569 (hppabsd_init_abi): Delete declaration.
11570 (hppaobsd_init_abi): Make it static.
11571 * i386-nto-tdep.c (_initialize_i386nto_tdep): Declare.
11572 * i386nbsd-tdep.c (_initialize_i386nbsd_tdep): Declare.
11573 * ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Declare.
11574 * ia64-tdep.c (ia64_register_reggroup_p): Make it static.
11575 * iq2000-tdep.c (_initialize_iq2000_tdep): Declare.
11576 * m32c-tdep.c (m32c_register_reggroup_p): Make it static.
11577 (m32c_analyze_prologue, m32c_virtual_frame_pointer): Ditto.
11578 (_initialize_m32c_tdep): Declare.
11579 * m32r-rom.c (_initialize_m32r_rom): Declare.
11580 * m32r-tdep.c (m32r_skip_prologue): Make it static.
11581 (m32r_return_value): Ditto.
11582 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Make it static.
11583 (m68hc11_return_value): Ditto.
11584 * m68klinux-tdep.c (_initialize_m68k_linux_tdep): Declare.
11585 * m88k-tdep.c (m88k_frame_cache): Make it static.
11586 * mep-tdep.c (mep_gdb_print_insn): Ditto.
11587 (mep_return_value): Ditto.
11588 (_initialize_mep_tdep): Declare.
11589 * mips-irix-tdep.c (_initialize_mips_irix_tdep): Declare.
11590 * mips-linux-tdep.c (supply_64bit_reg): Make it static.
11591 (mips_linux_syscall_next_pc): Ditto.
11592 (_initialize_mips_linux_tdep): Declare.
11593 * mips-tdep.c (mips_single_step_through_delay): Make it static.
11594 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Declare.
11595 * mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Declare.
11596 * mn10300-tdep.c (_initialize_mn10300_tdep): Declare.
11597 * mt-tdep.c (_initialize_mt_tdep): Declare.
11598 * nbsd-tdep.c: Include nbsd-tdep.h.
11599 * nto-tdep.c (find_load_phdr): Make it static.
11600 (_initialize_nto_tdep): Declare.
11601 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Make it
11602 static.
11603 (_initialize_ppc_linux_tdep): Declare.
11604 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint)
11605 (m32r_insert_watchpoint, m32r_remove_watchpoint)
11606 (m32r_stopped_data_address, m32r_stopped_by_watchpoint): Make
11607 static.
11608 * rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Declare.
11609 * rs6000-nat.c: Include xcoffread.h.
11610 (find_toc_address): Don't extern declare get_toc_offset. Adjust
11611 to call xcoff_get_to_offset.
11612 * rs6000-tdep.c (ppc_vsx_support_p, ppc_displaced_step_fixup)
11613 (rs6000_skip_main_prologue, rs6000_in_solib_return_trampoline)
11614 (rs6000_skip_trampoline_code): Make static.
11615 * s390-tdep.c (s390_regset_from_core_section): Ditto.
11616 * sh-tdep.c (sh_register_reggroup_p): Ditto.
11617 * shnbsd-tdep.c (shnbsd_regset_from_core_section): Ditto.
11618 (_initialize_shnbsd_tdep): Declare.
11619 * solib-frv.c (displacement_from_map): Make static.
11620 (_initialize_frv_solib): Declare.
11621 * solib-irix.c (fetch_lm_info): Make static.
11622 (_initialize_irix_solib): Declare.
11623 * solib-som.c: Include solib-som.h.
11624 (som_solib_select): Line break.
11625 * sparc-tdep.c (sparc_regset_from_core_section): Make static.
11626 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Rename to ...
11627 (_initialize_sparcnbsd_tdep): ... this.
11628 * spu-tdep.c (spu_software_single_step): Make it static.
11629 (_initialize_spu_tdep): Declare.
11630 * vax-tdep.c (vax_frame_cache): Make it static.
11631 * xcoffread.c: Include xcoffread.h.
11632 (get_toc_offset): Rename to ...
11633 (xcoff_get_toc_offset): ... this.
11634 (_initialize_xcoffread): Declare.
11635 * xcoffread.h: New.
11636 * xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Declare.
11637 * xtensa-tdep.c (xtensa_skip_prologue, xtensa_derive_tdep): Make
11638 static.
11639 (_initialize_xtensa_tdep): Declare.
11640
11641 2008-02-21 Pedro Alves <pedro@codesorcery.com>
11642
11643 Silence a few -Wmissing-prototypes warnings.
11644
11645 PR build/9877:
11646 * amd64-nat.c: Include "amd64-nat.h".
11647 * fork-child.c (_initialize_fork_child): Ditto.
11648 * gcore.c (_initialize_gcore): Ditto.
11649 * inf-ptrace.c: Include "inf-ptrace.h".
11650 (inf_ptrace_store_registers): Make it static.
11651 * linux-nat.c (linux_nat_terminal_ours): Make it static.
11652 (_initialize_linux_nat): Declare before definition.
11653 * linux-tdep.c: Include "linux-tdep.h".
11654 * linux-thread-db.c (_initialize_thread_db): Declare before
11655 definition.
11656 * proc-service.c (_initialize_proc_service): Ditto.
11657 * remote.c (remote_send_printf): Make it static.
11658 * solib.c: Include "solib.h".
11659 * symfile-mem.c (_initialize_symfile_mem): Declare before
11660 definition.
11661 * ada-lang.c (ada_la_decode, ada_match_name)
11662 (ada_suppress_symbol_printing, ada_is_array_type)
11663 (ada_value_ptr_subscript, ada_array_length)
11664 (ada_to_static_fixed_value): Make them static.
11665 (_initialize_ada_language): Declare before definition.
11666 * ada-tasks.c (ada_get_task_number, ada_get_environment_task)
11667 (ada_task_list_changed, ada_new_objfile_observer): Make them
11668 static.
11669 (_initialize_tasks): Declare before definition.
11670 * addrmap.c (_initialize_addrmap): Declare before definition.
11671 * auxv.c (default_auxv_parse): Make it static.
11672 * bfd-target.c (target_bfd_xfer_partial, target_bfd_xclose): Make
11673 them static.
11674 * breakpoint.c (remove_sal): Add line break.
11675 (expand_line_sal_maybe): Make it static.
11676 * cp-name-parser.y: Include "cp-support.h".
11677 * cp-valprint.c (cp_find_class_member): Make it static.
11678 * eval.c (value_f90_subarray): Ditto.
11679 * exceptions.c (print_any_exception): Ditto.
11680 * findcmd.c (_initialize_mem_search): Declare before definition.
11681 * frame.c (frame_observer_target_changed): Make it static.
11682 * gnu-v3-abi.c (gnuv3_find_method_in): Make it static.
11683 * inf-child.c: Include "inf-child.h".
11684 * inferior.h (valid_inferior_id): Rename to ...
11685 (valid_gdb_inferior_id): ... this.
11686 * infrun.c (infrun_thread_stop_requested, siginfo_make_value):
11687 Make them static.
11688 * jv-lang.c (java_language_arch_info): Make it static.
11689 * m2-typeprint.c (m2_get_discrete_bounds): Ditto.
11690 * osdata.c (info_osdata_command): Make it static.
11691 * regcache.c (regcache_observer_target_changed): Make it static.
11692 * reverse.c (_initialize_reverse): Declare before definition.
11693 * stabsread.c (cleanup_undefined_types_noname)
11694 (cleanup_undefined_types_1): Make them static.
11695 * symfile.c (place_section): Make it static.
11696 * symtab.c (find_pc_sect_psymtab_closer): Make it static.
11697 * target-descriptions.c (_initialize_target_descriptions): Declare
11698 before definition.
11699 * target.c (default_get_ada_task_ptid, find_default_can_async_p)
11700 (find_default_is_async_p, find_default_supports_non_stop): Make
11701 them static.
11702 (target_supports_non_stop): Add prototype.
11703 (dummy_pid_to_str): Make it static.
11704 * utils.c (_initialize_utils): Declare before definition.
11705 * ada-exp.y (_initialize_ada_exp): Declare before definition.
11706 * solib-svr4.c (HAS_LM_DYNAMIC_FROM_LINK_MAP): Add a prototype.
11707 * target.h (struct target_ops): Add a prototype to the
11708 to_can_execute_reverse callback.
11709 * macroscope.c (_initialize_macroscope): Declare before definition.
11710 * cp-namespace.c (_initialize_cp_namespace): Declare before definition.
11711 * python/python.c (_initialize_python): Declare before definition.
11712 * tui/tui-command.c: Include "tui/tui-command.h".
11713 * tui/tui-data.c (init_content_element, init_win_info): Make them
11714 static.
11715 * tui/tui-disasm.c: Include "tui/tui-disasm.h".
11716 * tui/tui-interp.c (_initialize_tui_interp): Declare before
11717 definition.
11718 * tui/tui-layout.c: Include "tui/tui-layout.h".
11719 (_initialize_tui_layout): Declare before definition.
11720 * tui/tui-regs.c: Include "tui/tui-regs.h".
11721 (tui_display_reg_element_at_line): Make it static.
11722 (_initialize_tui_regs): Declare before definition.
11723 * tui/tui-stack.c (_initialize_tui_stack): Declare before
11724 definition.
11725 * tui/tui-win.c: Include "tui/tui-win.h".
11726 (_initialize_tui_win): Declare before definition.
11727 (tui_sigwinch_handler): Make it static. Wrap in ifdef SIGWINCH.
11728 * tui/tui-win.h (tui_sigwinch_handler): Delete declaration.
11729 (tui_get_cmd_list): Add a prototype.
11730 * tui/tui-windata.c: Include tui-windata.h.
11731 * tui/tui-wingeneral.c (box_win): Make it static.
11732 * cli/cli-logging.c (show_logging_command): Make it static.
11733 (_initialize_cli_logging): Declare before definition.
11734 * mi/mi-common.c (_initialize_gdb_mi_common): Declare before
11735 definition.
11736
11737 2009-02-20 Pierre Muller <muller@ics.u-strasbg.fr>
11738
11739 Extend use of i386_use_watchpoints to all i386 native files
11740 using hardware watchpoints.
11741 * go32-nat.c (init_go32_ops): Call i386_use_watchpoints.
11742 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Ditto.
11743 * windows-nat.c (init_windows_ops): Ditto.
11744 * config/i386/nm-cygwin.h: Define I386_WATCHPOINTS_IN_TARGET_VECTOR.
11745 * config/i386/nm-cygwin64.h: Ditto.
11746 * config/i386/nm-fbsd.h: Ditto.
11747 * config/i386/nm-go32.h: Ditto.
11748
11749 2009-02-19 Joel Brobecker <brobecker@adacore.com>
11750
11751 * ada-typeprint.c (ada_typedef_print): Remove. Unused.
11752
11753 2009-02-18 Vladimir Prus <vladimir@codesourcery.com>
11754
11755 * mi/mi-interp.c (mi_solib_loaded, mi_solib_unloaded): New.
11756 (mi_interpreter_init): Register the above.
11757 * solib.c (clear_solib): Notify solib unload.
11758 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Do not
11759 disable breakpoints on a.out targets.
11760
11761 2009-02-17 Vladimir Prus <vladimir@codesourcery.com>
11762
11763 * observer.c (observer_test_first_notification_function)
11764 (observer_test_second_notification_function)
11765 (observer_test_third_notification_function): Adjust prototype.
11766
11767 2009-02-17 Pedro Alves <pedro@codesourcery.com>
11768
11769 * Makefile.in (ALL_64_TARGET_OBS): Add amd64-dicos-tdep.o.
11770 (ALL_TARGET_OBS): Add dicos-tdep.o.
11771 (ALLDEPFILES): Add amd64-dicos-tdep.c and dicos-tdep.c.
11772 * configure.tgt (i[34567]86-*-dicos*): Add dicos-tdep.o to
11773 gdb_target_obs.
11774 (x86_64-*-dicos*): Add dicos-tdep.o and amd64-dicos-tdep.o to
11775 gdb_target_obs.
11776 * dicos-tdep.h, dicos-tdep.c: New.
11777 * amd64-dicos-tdep.c: New.
11778 * i386-dicos-tdep.c: Don't include solib.h, solib-target.h or
11779 inferior.h. Include dicos-tdep.h.
11780 (i386_dicos_init_abi): Call dicos_init_abi.
11781 (i386_dicos_bfd_has_symbol_p): Delete.
11782 (i386_dicos_osabi_sniffer): Use dicos_load_module_p.
11783
11784 * NEWS: Mention x86-64 DICOS target support.
11785
11786 2009-02-16 Doug Evans <dje@google.com>
11787
11788 * amd64-tdep.c (amd64_skip_prefixes): Renamed from skip_prefixes.
11789 All callers updated.
11790 (amd64_get_insn_details): Handle more 3-byte opcode insns.
11791 (amd64_breakpoint_p): Delete.
11792 (amd64_displaced_step_fixup): When fixing up after stepping an int3,
11793 don't back up pc to the start of the int3.
11794 * i386-tdep.c: #include opcode/i386.h.
11795 (i386_skip_prefixes): New function.
11796 (i386_absolute_jmp_p): Constify argument.
11797 (i386_absolute_call_p,i386_ret_p,i386_call_p,i386_syscall_p): Ditto.
11798 (i386_breakpoint_p): Delete.
11799 (i386_displaced_step_fixup): Handle unnecessary or redundant prefixes.
11800 When fixing up after stepping an int3, don't back up pc to the start
11801 of the int3.
11802
11803 2009-02-16 Pedro Alves <pedro@codesourcery.com>
11804
11805 * corelow.c (core_close): Don't hardcode the core's pid.
11806 (core_open): Find core threads before calling
11807 post_create_inferior.
11808 (add_to_thread_list, get_core_register_section): Take into account
11809 systems where the regset section names encode the pid of the
11810 inferior.
11811
11812 * gdbarch.sh (core_reg_section_encodes_pid): New gdbarch setting.
11813 * gdbarch.h, gdbarch.c: Regenerate.
11814
11815 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
11816 * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
11817 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
11818 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
11819
11820 2009-02-14 Vladimir Prus <vladimir@codesourcery.com>
11821
11822 Include frame information for *stopped due to CLI commands.
11823
11824 * ada-tasks.c (ada_normal_stop_observer): Adjust prototype.
11825 * infcmd.c (finish_command_continuation): Pass '1' for
11826 'print_frame' parameter to the observer.
11827 * infrun.c (normal_stop): Don't print mi-specific information
11828 here. Pass 'stop_print_frame' to the 'print_frame' parameter
11829 of the observer.
11830 * mi/mi-interp.c (mi_on_normal_stop): Adjust prototype.
11831 If we need to print frame, and current uiout is not the MI one,
11832 print frame again.
11833
11834 2009-02-13 Pierre Muller <muller@ics.u-strasbg.fr>
11835
11836 * xtensa-tdep.c (call0_analyze_prologue): Delete BSZ macro.
11837 Replace BSZ macro uses by XTENSA_ISA_BSZ macro.
11838
11839 2009-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11840
11841 PR fortran/9806
11842 * dwarf2read.c (process_die <DW_TAG_module>, read_module)
11843 (scan_partial_symbols <DW_TAG_module>, add_partial_module): New.
11844
11845 2009-02-11 Pierre Muller <muller@ics.u-strasbg.fr>
11846
11847 * dwarf2read.c (read_base_type): Set code to TYPE_CODE_CHAR
11848 for DW_ATE_signed_char and DW_ATE_unsigned_char
11849 for pascal language.
11850
11851 2009-02-11 Jim Meyering <meyering@redhat.com>
11852 Jan Kratochvil <jan.kratochvil@redhat.com>
11853
11854 Avoid NULL dereference.
11855 * stack.c (return_command): Guard use of SYMBOL_TYPE (thisfun).
11856 New variable func_type.
11857
11858 2009-02-11 Pedro Alves <pedro@codesourcery.com>
11859
11860 * gdbarch.c: Regenerate.
11861
11862 2009-02-10 Pierre Muller <muller@ics.u-strasbg.fr>
11863
11864 * p-lang.c (is_pascal_string_type): Fix comment.
11865 Determine exact size of char elements for GPC
11866 strings.
11867 (pascal_printstr): Handle char width of 2 or 4.
11868 * p-valprint.c (pascal_val_print): Handle char
11869 of width 2 or 4.
11870
11871 2009-02-07 Daniel Jacobowitz <dan@codesourcery.com>
11872
11873 * dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and highpc
11874 inside the loop. Only call addrmap_set_empty if the compilation unit
11875 had DW_AT_high_pc and DW_AT_low_pc. Update call to
11876 scan_partial_symbols.
11877 (scan_partial_symbols): Take NEED_PC argument and pass it along with
11878 LOWPC and HIGHPC.
11879 (add_partial_namespace): Take NEED_PC argument and pass it through.
11880 (add_partial_subprogram): Take NEED_PC argument. Update the addrmap
11881 if necessary.
11882
11883 2009-02-07 Pedro Alves <pedro@codesourcery.com>
11884
11885 * NEWS: Mention inspecting extra signal information, $_siginfo,
11886 and the qXfer:siginfo:read and qXfer:siginfo:write packets.
11887
11888 2009-02-07 Pedro Alves <pedro@codesourcery.com>
11889
11890 * linux-nat.c (PTRACE_SETSIGINFO): Define if PTRACE_GETSIGINFO
11891 isn't defined.
11892
11893 2009-02-06 Pedro Alves <pedro@codesourcery.com>
11894
11895 * amd64-linux-nat.c (compat_int_t, compat_uptr_t, compat_time_t)
11896 (compat_timer_t, compat_clock_t, struct compat_timeval)
11897 (compat_sigval_t, compat_siginfo_t): New types.
11898 (cpt_si_pid, cpt_si_uid, cpt_si_timerid, cpt_si_overrun)
11899 (cpt_si_status, cpt_si_utime, cpt_si_stime, cpt_si_ptr)
11900 (cpt_si_addr, cpt_si_band, cpt_si_fd): New defines.
11901 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
11902 (amd64_linux_siginfo_fixup): New.
11903 * linux-nat.c (linux_nat_siginfo_fixup): New.
11904 (siginfo_fixup): New.
11905 (linux_xfer_siginfo): Use siginfo_fixup to convert between the
11906 siginfo layout expected by ptrace and the siginfo layout of the
11907 inferior.
11908 (linux_nat_set_siginfo_fixup): New.
11909 * linux-nat.h (linux_nat_set_siginfo_fixup): Declare.
11910
11911 2009-02-06 Pedro Alves <pedro@codesourcery.com>
11912
11913 * target.h (enum target_object): Add new TARGET_OBJECT_SIGNAL_INFO.
11914 * infrun.c (siginfo_value_read, siginfo_value_write): New.
11915 (siginfo_value_funcs): New.
11916 (siginfo_make_value): New.
11917 (_initialize_infrun): Create the $_siginfo convenience variable.
11918 * gdbtypes.h (append_composite_type_field_aligned): Declare.
11919 * gdbtypes.c (append_composite_type_field): Rename to...
11920 (append_composite_type_field_aligned): ... this. Add ALIGNMENT
11921 argument. Handle it.
11922 (append_composite_type_field): Rewrite on top of
11923 append_composite_type_field_aligned.
11924 * value.h (internalvar_make_value): New typedef.
11925 (struct internalvar) <make_value>: New field.
11926 (create_internalvar_type_lazy): Declare.
11927 * value.c (create_internalvar): Clear make_value.
11928 (create_internalvar_type_lazy): New.
11929 (value_of_internalvar): If make_value is set use it.
11930 (preserve_values): Skip internal variables that don't have a
11931 value.
11932 * gdbarch.sh (get_siginfo_type): New.
11933 * gdbarch.h, gdbarch.c: Regenerate.
11934
11935 * linux-tdep.h, linux-tdep.c: New.
11936 * amd64-linux-tdep.c: Include "linux-tdep.h".
11937 (amd64_linux_init_abi): Register linux_get_siginfo_type and
11938 linux_get_siginfo_mapper.
11939 * i386-linux-tdep.c: Include "linux-tdep.h".
11940 (i386_linux_init_abi): Register linux_get_siginfo_type and
11941 linux_get_siginfo_mapper.
11942 * arm-linux-tdep.c: Include "linux-tdep.h".
11943 (i386_linux_init_abi): Register linux_get_siginfo_type and
11944 linux_get_siginfo_mapper.
11945
11946 * linux-nat.c (linux_xfer_siginfo): New.
11947 (linux_nat_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
11948 * remote.c (PACKET_qXfer_siginfo_read)
11949 (PACKET_qXfer_siginfo_write): New.
11950 (feature remote_protocol_features): Add "qXfer:siginfo:read" and
11951 "qXfer:siginfo:write" features.
11952 (remote_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
11953 (_initialize_remote): Add "set/show remote read-siginfo-object"
11954 and "set/show remote write-siginfo-object" commands.
11955
11956 * Makefile.in (ALL_TARGET_OBS): Add linux-tdep.o.
11957 (HFILES_NO_SRCDIR): Add linux-tdep.h.
11958 (ALLDEPFILES): Add linux-tdep.c.
11959
11960 * configure.tgt (arm*-*-linux* | arm*-*-uclinux*)
11961 (i[34567]86-*-linux*, x86_64-*-linux*): Add linux-tdep.o to
11962 gdb_target_obs.
11963
11964 2009-02-06 Jim Blandy <jimb@codesourcery.com>
11965 Daniel Jacobowitz <dan@codesourcery.com>
11966 Vladimir Prus <vladimir@codesourcery.com>
11967 Pedro Alves <pedro@codesourcery.com>
11968
11969 * defs.h (enum lval_type): New value: lval_computed.
11970 * value.h (struct lval_funcs): New type.
11971 (allocate_computed_value, value_computed_funcs)
11972 (value_computed_closure): New declarations.
11973 * value.c (struct value): Add a structure to the location union
11974 for computed lvalues, containing 'funcs' and 'closure' members.
11975 (allocate_computed_value, value_computed_funcs)
11976 (value_computed_closure): New functions.
11977 (value_free): For computed lvalues, call the closure's
11978 'free_closure' function before freeing the value itself.
11979 (value_copy): If we're copying an lval_computed value, call the
11980 closure's 'copy_closure' function.
11981 (set_value_component_location): If the original value is a
11982 computed lvalue, then call the closure's 'copy_closure' function.
11983 (value_of_internalvar): If an internal variable's value is a
11984 computed lvalue, make retrieving its value produce an equivalent
11985 computed lvalue.
11986 * valops.c (value_fetch_lazy): Unlazy computed lvalues by calling
11987 their read function.
11988 (value_assign): Assign to computed lvalues by calling their write
11989 function.
11990
11991 2009-02-06 Pedro Alves <pedro@codesourcery.com>
11992
11993 * linux-nat.c (linux_nat_wait): Adjust.
11994 (linux_nat_pid_to_str): Adjust. Remove call to thread_db_init.
11995 * linux-nat.h (thread_db_init): Delete declaration.
11996 * linux-thread-db.c (target_beneath): Delete.
11997 (thread_db_init): Delete.
11998 (thread_db_detach): Use find_target_beneath.
11999 (thread_db_wait): Adjust interface. Use find_target_beneath.
12000 (thread_db_mourn_inferior): Use find_target_beneath.
12001 (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
12002 (thread_db_async_mask): Delete.
12003 (thread_db_pid_to_str): Adjust interface. Use
12004 find_target_beneath.
12005 (thread_db_get_thread_local_address): Adjust interface. Use
12006 find_target_beneath.
12007 (init_thread_db_ops): Delete references to delete functions.
12008 * target.c (update_current_target): Don't inherit or default
12009 to_wait. Don't inherit to_pid_to_str and
12010 to_get_thread_local_address.
12011 (target_translate_tls_address): Look for a pushed target that
12012 implements to_get_thread_local_address, and use it instead of
12013 checking for target_get_thread_local_address_p.
12014 (target_wait, target_pid_to_str): Reimplement as functions.
12015 (dummy_pid_to_str): New.
12016 (init_dummy_target): Register it.
12017 (debug_to_wait): Delete.
12018 * target.h (struct target_ops): Make to_wait, to_pid_to_str and
12019 to_get_thread_local_address accept a pointer to struct target_ops.
12020 (target_wait): Delete macro, and declare as function.
12021 (target_pid_to_str): Likewise.
12022 (target_get_thread_local_address)
12023 (target_get_thread_local_address_p): Delete.
12024 (noprocess): Add NORETURN and ATTR_NORETURN tags.
12025 * inf-ptrace.c (inf_ptrace_wait): Adjust.
12026 (inf_ptrace_pid_to_str): New.
12027 (inf_ptrace_target): Use inf_ptrace_pid_to_str.
12028 * aix-thread.c (aix_thread_wait, aix_thread_pid_to_str): Adjust.
12029 * bsd-kvm.c (bsd_kvm_pid_to_str): Adjust.
12030 * bsd-uthread.c (bsd_uthread_wait, bsd_uthread_pid_to_str):
12031 Adjust.
12032 * corelow.c (core_pid_to_str): Adjust.
12033 * darwin-nat.c (darwin_wait, darwin_pid_to_str): Adjust.
12034 * dec-thread.c (dec_thread_wait, dec_thread_pid_to_str): Adjust.
12035 * gnu-nat.c (gnu_wait, gnu_pid_to_str): Adjust.
12036 * go32-nat.c (go32_wait, go32_pid_to_str): Adjust.
12037 * hpux-thread.c (hpux_thread_wait): Adjust.
12038 * inf-ttrace.c (inf_ttrace_wait, inf_ttrace_pid_to_str): Adjust.
12039 * monitor.c (monitor_wait, monitor_pid_to_str): Adjust.
12040 * nto-procfs.c (procfs_wait, procfs_pid_to_str): Adjust.
12041 * procfs.c (procfs_pid_to_str): Adjust.
12042 * remote-m32r-sdi.c (m32r_wait, m32r_pid_to_str): Adjust.
12043 * remote-mips.c (mips_wait): Adjust.
12044 * remote-sim.c (gdbsim_wait, gdbsim_pid_to_str): Adjust.
12045 * remote.c (remote_wait, remote_pid_to_str)
12046 (remote_get_thread_local_address): Adjust.
12047 * rs6000-nat.c (rs6000_wait): Adjust.
12048 * sol-thread.c (procfs_pid_to_str): Adjust declaration.
12049 (sol_thread_wait, solaris_pid_to_str): Adjust.
12050 * spu-linux-nat.c (spu_child_wait): Adjust.
12051 * windows-nat.c (windows_wait, windows_pid_to_str): Adjust.
12052
12053 2009-02-06 Tom Tromey <tromey@redhat.com>
12054
12055 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-cmd.o.
12056 (SUBDIR_PYTHON_SRCS): Add python-cmd.c.
12057 (python-cmd.o): New target.
12058 * cli/cli-decode.c (set_cmd_completer): Add self parameter to
12059 completer prototype.
12060 (add_cmd): Initialize destroyer member of cmd_list_element. Use
12061 make_symbol_completion_list_fn as completer.
12062 (delete_cmd): Call destroyer if one is set.
12063 * cli/cli-decode.h (cmd_list_element): Add cmd parameter to
12064 completer member. Add destroyer member.
12065 (set_cmd_completer): Add self parameter to
12066 completer prototype.
12067 * command.h (set_cmd_completer): Add cmd parameter to
12068 completer prototype.
12069 * completer.c (noop_completer, filename_completer,
12070 location_completer, expression_completer, command_completer): Adapt
12071 to new completer prototype.
12072 (complete_line_internal): Pass new parameter to completer function.
12073 * completer.h (noop_completer, filename_completer,
12074 location_completer, expression_completer, command_completer): Adapt
12075 prototypes to new completer prototype.
12076 * interps.c (interpreter_completer): Adapt to new completer
12077 prototype.
12078 * python/python-cmd.c: New file.
12079 * python/python-internal.h (gdbpy_initialize_commands): Add
12080 prototype.
12081 (gdbpy_doc_cst): Add forward declaration.
12082 * python/python.c (gdbpy_doc_cst): Declare.
12083 (_initialize_python): Call gdbpy_initialize_commands. Initialize
12084 gdbpy_doc_cst.
12085 * symtab.c (make_symbol_completion_list_fn): New function.
12086 * symtab.h (make_symbol_completion_list_fn): Add prototype.
12087
12088 2009-02-06 Pedro Alves <pedro@codesourcery.com>
12089
12090 * target.c (target_get_osdata): Check for equal or higher than
12091 process_stratum, not dummy_stratum.
12092
12093 2009-02-06 Pedro Alves <pedro@codesourcery.com>
12094
12095 * remote.c (extended_remote_can_run): Delete.
12096 (init_remote_ops): Don't register it.
12097 * target.c (target_get_osdata): Don't check for target_can_run.
12098 Instead any target that has already been pushed, otherwise
12099 fallback to the default run target.
12100
12101 2009-02-06 Pedro Alves <pedro@codesourcery.com>
12102
12103 * target.c (target_create_inferior, target_detach)
12104 (target_mourn_inferior, target_attach, target_close): Do target
12105 debug output.
12106 (debug_to_attach, debug_to_detach, debug_to_create_inferior)
12107 (debug_to_mourn_inferior, debug_to_close): Delete.
12108 (setup_target_debug): Adjust.
12109
12110 2009-02-05 Pedro Alves <pedro@codesourcery.com>
12111
12112 * target.h (target_stopped_data_address_p): Delete declaration,
12113 and don't define as macro.
12114 * target.c (target_stopped_data_address_p): Delete.
12115
12116 2009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
12117 Tom Tromey <tromey@redhat.com>
12118
12119 * python/python-utils.c (target_string_to_unicode): New function.
12120 * python/python-internal.h (target_string_to_unicode): New prototype.
12121 * python/python-value.c (valpy_string): New function.
12122 (value_object_methods): Add `string' entry.
12123
12124 2009-02-05 Pedro Alves <pedro@codesourcery.com>
12125
12126 * target.h (target_tid_to_str): Delete.
12127 * thread.c (print_thread_info, thread_apply_all_command)
12128 (thread_apply_command, thread_command, do_captured_thread_select):
12129 Use target_pid_to_str instead of target_tid_to_str.
12130 * linux-fork.c (delete_fork_command): Likewise.
12131
12132 2009-02-05 Pedro Alves <pedro@codesourcery.com>
12133
12134 * frame.c (has_stack_frames): Make public.
12135 (get_prev_frame): Don't allow a NULL this_frame anymore.
12136 * frame.h (has_stack_frames): Declare.
12137 * varobj.c (find_frame_addr_in_frame_chain): Don't ever pass NULL
12138 to get_prev_frame, instead start at get_current_frame.
12139 (varobj_create): Check has_stack_frames before getting any frame;
12140 eliminate one usage of deprecated_safe_get_selected_frame.
12141
12142 2009-02-05 Tom Tromey <tromey@redhat.com>
12143 Thiago Jung Bauermann <bauerman@br.ibm.com>
12144
12145 * python/python.c (GdbMethods): Move to bottom of file.
12146 (get_parameter, execute_gdb_command, gdbpy_write,
12147 gdbpy_flush): Remove forward declarations.
12148 (eval_python_from_control_command): Fix error checking of function
12149 PyRun_SimpleString. Fix error string.
12150 (python_command): Likewise.
12151 (execute_gdb_command): Added from_tty argument.
12152
12153 2009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
12154
12155 * language.h (language_dfn): Add la_get_string member.
12156 (LA_GET_STRING): New macro.
12157 (default_get_string): New prototype.
12158 * language.c (default_get_string): New function.
12159 (unknown_language_defn, auto_language_defn, local_language_defn): Use
12160 default_get_string for la_get_string.
12161 * c-lang.c (c_get_string): New function.
12162 (c_language_defn, cplus_language_defn, asm_language_defn): Use
12163 c_get_string for la_get_string.
12164 (minimal_language_defn): Likewise
12165 * ada-lang.c (ada_language_defn): Likewise.
12166 * f-lang.c (f_language_defn): Use default_get_string for
12167 la_get_string.
12168 * jv-lang.c (java_language_defn): Likewise.
12169 * m2-lang.c (m2_language_defn): Likewise.
12170 * objc-lang.c (objc_language_defn): Likewise.
12171 * p-lang.c (p_language_defn): Likewise.
12172 * scm-lang.c (scm_language_defn): Likewise.
12173 * typeprint.c (type_to_string): New function.
12174 * value.h (type_to_string): New prototype.
12175 * valprint.c (val_print_string): Factor out code for reading string
12176 from the inferior into its own function. Put 2 spaces after period
12177 in comments.
12178 (read_string): New function.
12179 * valprint.h (read_string): New prototype.
12180
12181 2009-01-07 Pierre Muller <muller@ics.u-strasbg.fr>
12182 Tom Tromey <tromey@redhat.com>
12183
12184 PR breakpoints/8079:
12185 * breakpoint.c (print_one_breakpoint): Use exp_string field
12186 to display expression of watchpoints.
12187 (mention): Likewise.
12188 (watch_command_1): Remove trailing whitespace from expression.
12189 * printcmd.c (struct display) <exp_string>: New field.
12190 (display_command): Set exp_string.
12191 (free_display): Free exp_string.
12192 (clear_displays): Use free_display.
12193 (do_one_display): Print exp_string.
12194 (display_info): Likewise.
12195
12196 2009-02-04 Tom Tromey <tromey@redhat.com>
12197 Thiago Jung Bauermann <bauerman@br.ibm.com>
12198 Phil Muldoon <pmuldoon@redhat.com>
12199
12200 * python/python-internal.h (gdbpy_get_value_from_history): Rename
12201 prototype to gdbpy_history.
12202 (gdbpy_is_string): Declare.
12203 (python_string_to_host_string): Declare.
12204 * python/python-utils.c (gdbpy_is_string): New function.
12205 (unicode_to_encoded_string): New function.
12206 (unicode_to_target_string): Use it.
12207 (python_string_to_host_string): New function.
12208 * python/python-value.c (valpy_address): New function.
12209 (convert_value_from_python): Use gdbpy_is_string. Change to throw
12210 Python exception instead of a GDB exception on error. Properly check
12211 Python booleans.
12212 (valpy_getitem): Convert field name to host string. Handle array
12213 accesses. Adapt to new behaviour of convert_value_from_python.
12214 (valpy_new): Adapt to new behaviour of convert_value_from_python.
12215 (enum valpy_opcode) <VALPY_LSH, VALPY_RSH, VALPY_BITAND,
12216 VALPY_BITXOR, VALPY_BITOR>: New constants.
12217 (valpy_binop): Update. Adapt to new behaviour of
12218 convert_value_from_python.
12219 (valpy_invert): New function.
12220 (valpy_lsh): Likewise.
12221 (valpy_rsh): Likewise.
12222 (valpy_and): Likewise.
12223 (valpy_or): Likewise.
12224 (valpy_xor): Likewise.
12225 (valpy_richcompare): Call convert_value_from_python instead of doing
12226 conversions itself.
12227 (is_intlike, valpy_int, valpy_long, valpy_float): New functions.
12228 (gdbpy_get_value_from_history): Rename
12229 function to gdbpy_history.
12230 (gdbpy_initialize_values): Don't set tp_new.
12231 (value_object_type): Add valpy_new.
12232 (value_object_methods): Add `address' entry.
12233 (value_object_as_number): Update for new methods.
12234 * python/python.c (GdbMethods): Rename entry from
12235 `get_value_from_history' to `history'.
12236
12237 2009-02-04 Jerome Guitton <guitton@adacore.com>
12238
12239 * ada-lang.c (ada_template_to_fixed_record_type_1): Check size
12240 of type to guard against a crash.
12241
12242 2009-02-04 Jerome Guitton <guitton@adacore.com>
12243
12244 * value.c (value_from_contents_and_address): Always return
12245 a lval_memory value, even if address is null.
12246
12247 2009-02-04 Tristan Gingold <gingold@adacore.com>
12248
12249 * i386-darwin-tdep.c (i386_darwin_sigcontext_addr): New function.
12250 (amd64_darwin_sigcontext_addr): Ditto.
12251 (darwin_dwarf_signal_frame_p): Ditto.
12252 (i386_darwin_init_abi): Handle signal frames, use the const for
12253 sc_num_regs.
12254 (x86_darwin_init_abi_64): Ditto.
12255
12256 2009-02-04 Tristan Gingold <gingold@adacore.com>
12257
12258 * i386-tdep.c (i386_sigtramp_p): Make it public.
12259 * i386-tdep.h (i386_sigtramp_p): Declare.
12260
12261 2009-02-04 Tristan Gingold <gingold@adacore.com>
12262
12263 * machoread.c (macho_symfile_read): Read minsymtab also from
12264 shared libraries.
12265 (macho_symfile_read): Try to read dwarf2 frame info from main
12266 object file, but not from OSO files.
12267 (macho_symfile_offsets): Update section names for latest BFD
12268 changes.
12269 * i386-darwin-tdep.c (i386_darwin_init_abi): Call set_solib_ops.
12270 (x86_darwin_init_abi_64): Ditto.
12271 * solib-darwin.c: New file.
12272 * solib-darwin.h: New file.
12273 * configure.tgt: Add solib.o solib-darwin.o for Darwin.
12274
12275 2009-02-04 Tristan Gingold <gingold@adacore.com>
12276
12277 * solist.h (struct target_so_ops): Comment fallback behavior for
12278 operation same.
12279
12280 2009-02-03 Tom Tromey <tromey@redhat.com>
12281
12282 * completer.c (add_struct_fields): Check type_name against NULL
12283 before use.
12284
12285 2009-02-03 Joel Brobecker <brobecker@adacore.com>
12286
12287 * MAINTAINERS: Update Elena's email address.
12288
12289 2009-02-02 Joel Brobecker <brobecker@adacore.com>
12290
12291 * breakpoint (update_watchpoint): Minor comment adjustment.
12292
12293 2009-02-02 Tom Tromey <tromey@redhat.com>
12294
12295 PR gdb/9594:
12296 * completer.c (count_struct_fields): Count method names.
12297 (add_struct_fields): Add matching method names.
12298
12299 2009-02-02 Doug Evans <dje@google.com>
12300
12301 * configure.ac (gdbkt): Check both no_tcl/no_tk first, before
12302 doing any further tcl/tk configury. Don't configure gdbtk if
12303 tcl or tk check fails.
12304 * aclocal.m4: Regenerate.
12305 * configure: Regenerate.
12306
12307 2009-02-02 Tom Tromey <tromey@redhat.com>
12308
12309 PR exp/9059:
12310 * valops.c (find_overload_match): Follow typedefs before taking
12311 address of object argument.
12312
12313 2009-02-01 Doug Evans <dje@google.com>
12314
12315 * target.h (target_waitstatus_to_string): Declare.
12316 * target.c (target_waitstatus_to_string): New function. Copied from
12317 debug_to_wait. Add missing entries for TARGET_WAITKIND_SYSCALL_ENTRY,
12318 TARGET_WAITKIND_SYSCALL_RETURN, TARGET_WAITKIND_IGNORE,
12319 TARGET_WAITKIND_NO_HISTORY.
12320 (debug_to_wait): Call it.
12321 * infrun.c (wait_for_inferior): If debug_infrun, print result of
12322 target_wait.
12323 (fetch_inferior_event): Ditto.
12324
12325 2009-01-30 Tom Tromey <tromey@redhat.com>
12326
12327 * Makefile.in (HFILES_NO_SRCDIR): Remove i386-cygwin-tdep.h.
12328
12329 2009-01-30 Vladimir Prus <vladimir@codesourcery.com>
12330
12331 PR 8145.
12332 * thread.c (do_captured_list_thread_ids): Report the current
12333 thread id.
12334
12335 2009-01-30 Vladimir Prus <vladimir@codesourcery.com>
12336
12337 * breakpoint.c (create_breakpoint, create_breakpoints)
12338 (break_command_really, set_breakpoint): New parameter enabled.
12339 (create_breakpoint, break_command_really): Make breakpoint
12340 disabled if so requested.
12341 * breakpoint.h (set_breakpoint): New parameter enabled.
12342 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle the -d option.
12343
12344 2009-01-28 Doug Evans <dje@google.com>
12345
12346 * amd64-tdep.h (amd64_displaced_step_copy_insn): Declare.
12347 (amd64_displaced_step_fixup): Declare.
12348 * amd64-tdep.c: #include opcode/i386.h, dis-asm.h.
12349 (amd64_arch_regmap): Move out of amd64_analyze_stack_align
12350 and make static global.
12351 (amd64_arch_regmap_len): New static global.
12352 (amd64_arch_reg_to_regnum): New function.
12353 (struct amd64_insn): New struct.
12354 (struct displaced_step_closure): New struct.
12355 (onebyte_has_modrm,twobyte_has_modrm): New static globals.
12356 (rex_prefix_p,skip_prefixes)
12357 (amd64_insn_length_fprintf,amd64_insn_length_init_dis)
12358 (amd64_insn_length,amd64_get_unused_input_int_reg)
12359 (amd64_get_insn_details,fixup_riprel,fixup_displaced_copy)
12360 (amd64_displaced_step_copy_insn)
12361 (amd64_absolute_jmp_p,amd64_absolute_call_p,amd64_ret_p)
12362 (amd64_call_p,amd64_breakpoint_p,amd64_syscall_p)
12363 (amd64_displaced_step_fixup): New functions.
12364 * amd64-linux-tdep.c: #include arch-utils.h.
12365 (amd64_linux_init_abi): Install displaced stepping support.
12366
12367 2009-01-28 Daniel Jacobowitz <dan@codesourcery.com>
12368 Jerome Guitton <guitton@adacore.com>
12369
12370 * configure, config.in: Regenerated.
12371 * configure.ac: Add --with-system-gdbinit.
12372 * main.c (get_init_files): New.
12373 (captured_main): Use get_init_files. Load system gdbinit before
12374 $HOME/.gdbinit.
12375 (print_gdb_help): Print location of init files.
12376
12377 2009-01-28 Pedro Alves <pedro@codesourcery.com>
12378
12379 * corefile.c (generic_search): Delete disabled code.
12380 * gdbcore.h (generic_search): Delete declaration.
12381
12382 2009-01-26 Pedro Alves <pedro@codesourcery.com>
12383
12384 * linux-nat.c (linux_child_follow_fork): Copy attach_flag from the
12385 parent to the child.
12386 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
12387 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise. Use
12388 remove_breakpoints to remove breakpoints from the parent.
12389
12390 2009-01-26 Pedro Alves <pedro@codesourcery.com>
12391
12392 PR backtrace/9458, PR backtrace/8864:
12393 * frame.c (create_new_frame): Update the frame's cached PC before
12394 finding its unwinder. Use frame_id_build to build the new frame's
12395 id.
12396 * stack.c (parse_frame_specification_1): Correct setting ``addrs''
12397 array values from the ``args'' array values.
12398
12399 2009-01-26 Pedro Alves <pedro@codesourcery.com>
12400
12401 * gdbtypes.c (alloc_type, alloc_type_instance, create_range_type)
12402 (create_array_type, create_set_type, init_flags_type)
12403 (copy_type_recursive): Replace pairs of calls to XALLOC and memset
12404 with a call to XZALLOC or XCALLOC, and pairs of calls to
12405 obstack_alloc and memset with a call to OBSTACK_ZALLOC.
12406
12407 2009-01-26 Pedro Alves <pedro@codesourcery.com>
12408
12409 Add "maint set|show internal-error|internal-warning quit|corefile
12410 ask|yes|no" commands.
12411
12412 PR gdb/7580:
12413 * utils.c (internal_problem_ask, internal_problem_yes)
12414 (internal_problem_no, internal_problem_modes): New.
12415 (struct internal_problem): Remove FIXME. Make should_quit and
12416 should_dump_core types to char *.
12417 (internal_vproblem, internal_error_problem)
12418 (internal_warning_problem): Adjust.
12419 (set_internal_problem_cmd, show_internal_problem_cmd): New dummy
12420 functions.
12421 (add_internal_problem_command): New.
12422 (_initialize_utils): New.
12423
12424 2009-01-25 Pedro Alves <pedro@codesourcery.com>
12425
12426 * infcmd.c (program_info): Use paddress instead of casting stop_pc
12427 to unsigned long.
12428
12429 2009-01-24 Pedro Alves <pedro@codesourcery.com>
12430
12431 * infrun.c (normal_stop): Don't call
12432 deprecated_update_frame_pc_hack.
12433 * frame.c (deprecated_update_frame_pc_hack)
12434 (deprecated_update_frame_base_hack): Delete, and ...
12435 (create_new_frame): ... inline here.
12436 * frame.h (deprecated_update_frame_pc_hack)
12437 (deprecated_update_frame_base_hack): Delete declarations.
12438
12439 2009-01-23 Pedro Alves <pedro@codesourcery.com>
12440
12441 * cli/cli-decode.c (add_setshow_zuinteger_cmd): New.
12442 * cli/cli-setshow.c (do_setshow_command): Handle it.
12443 * command.h (enum var_types): Add var_zuinteger.
12444 (add_setshow_zuinteger_cmd): Declare.
12445
12446 * valprint.c (_initialize_valprint): Change the set input-radix
12447 and set output-radix commands to zuinteger type.
12448
12449 2009-01-23 Pedro Alves <pedro@codesourcery.com>
12450
12451 PR gdb/9664:
12452 * infrun.c (normal_stop): Tag threads as stopped, and run the
12453 hook-stop before printing the stack frame.
12454
12455 2009-01-22 Pedro Alves <pedro@codesourcery.com>
12456
12457 PR c++/9631:
12458 * gnu-v3-abi.c (gnuv3_baseclass_offset): Call check_typedef on
12459 vbasetype.
12460
12461 2009-01-20 Kazu Hirata <kazu@codesourcery.com>
12462
12463 * gdb/procfs.c (info_mappings_callback): Cast map->pr_size to
12464 unsigned long.
12465
12466 2009-01-20 Daniel Jacobowitz <dan@codesourcery.com>
12467
12468 PR gdb/9346
12469 * infcmd.c (signal_command): Do not specify a resume PC.
12470
12471 2009-01-19 Doug Evans <dje@google.com>
12472
12473 * dummy-frame.c (dummy_frame): Replace regcache member with
12474 caller_state.
12475 (dummy_frame_push): Replace caller_regcache arg with caller_state.
12476 All callers updated.
12477 (remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
12478 (dummy_frame_pop): Rewrite. Verify requested frame is in the
12479 dummy frame stack. Restore program state.
12480 (cleanup_dummy_frames): Rewrite.
12481 (dummy_frame_sniffer): Update. Make static.
12482 * dummy-frame.h (regcache,frame_info): Delete forward decls.
12483 (inferior_thread_state): New forward decl.
12484 (dummy_frame_push): Update prototype.
12485 * frame.c (frame_pop): dummy_frame_pop now does all the work for
12486 DUMMY_FRAMEs.
12487 * infcall.c (breakpoint_auto_delete_contents): Delete.
12488 (get_function_name,run_inferior_call): New fns.
12489 (call_function_by_hand): Simplify by moving some code to
12490 get_function_name, run_inferior_call. Inferior function call wrapped
12491 in TRY_CATCH so there's less need for cleanups and all exits from
12492 proceed are handled similarily. Detect program exit.
12493 Detect program stopping in a different thread.
12494 Make error messages more consistent.
12495 * inferior.h (inferior_thread_state): Declare (opaque type).
12496 (save_inferior_thread_state,restore_inferior_thread_state,
12497 make_cleanup_restore_inferior_thread_state,
12498 discard_inferior_thread_state, get_inferior_thread_state_regcache):
12499 Declare.
12500 (save_inferior_status): Update prototype.
12501 * infrun.c: (normal_stop): When stopped for the completion of an
12502 inferior function call, verify the expected stack frame kind.
12503 (inferior_thread_state): New struct.
12504 (save_inferior_thread_state,restore_inferior_thread_state,
12505 do_restore_inferior_thread_state_cleanup,
12506 make_cleanup_restore_inferior_thread_state,
12507 discard_inferior_thread_state,
12508 get_inferior_thread_state_regcache): New functions.
12509 (inferior_status): Move stop_signal, stop_pc, registers to
12510 inferior_thread_state. Remove restore_stack_info.
12511 (save_inferior_status): Remove arg restore_stack_info.
12512 All callers updated. Remove saving of state now saved by
12513 save_inferior_thread_state.
12514 (restore_inferior_status): Remove restoration of state now done by
12515 restore_inferior_thread_state.
12516 (discard_inferior_status): Remove freeing of registers, now done by
12517 discard_inferior_thread_state.
12518
12519 2009-01-18 Pedro Alves <pedro@codesourcery.com>
12520
12521 * tui/tui-disasm.c (tui_vertical_disassem_scroll): Scroll one line
12522 at a time, times NUM_TO_SCROLL.
12523 * tui/tui-winsource.c (tui_horizontal_source_scroll): Don't try to
12524 fetch the selected frame if there is no stack.
12525
12526 2009-01-18 Pedro Alves <pedro@codesourcery.com>
12527
12528 PR gdb/9747:
12529 * gdbthread.h (finish_thread_state, finish_thread_state_cleanup):
12530 Declare.
12531 * thread.c (finish_thread_state, finish_thread_state_cleanup): New.
12532 * infrun.c (wait_for_inferior, fetch_inferior_event): If an error
12533 is thrown while handling an event, finish the thread state.
12534 (normal_stop): Use finish_thread_state cleanup.
12535 * infcmd.c (run_command_1): If an error is thrown while starting
12536 the inferior, finish the thread state.
12537
12538 2009-01-18 Pedro Alves <pedro@codesourcery.com>
12539
12540 * tui/tui-winsource.c (tui_update_breakpoint_info): In asm layout,
12541 skip breakpoints without a location (pending breakpoints).
12542
12543 2009-01-18 Pedro Alves <pedro@codesourcery.com>
12544
12545 PR build/9186:
12546 * hppa-hpux-tdep.c (hppa_hpux_write_pc): Remove 'return'.
12547
12548 2009-01-18 Nick Roberts <nickrob@snap.net.nz>
12549
12550 * thread.c (thread_command): Move call to annotate_thread_changed
12551 to...
12552 (do_captured_thread_select): ... here, to avoid printing an
12553 annotation if the thread change generates an exception.
12554
12555 2009-01-16 Joel Brobecker <brobecker@adacore.com>
12556
12557 * NEWS: Document x86_64/MinGW as a new native configuration.
12558
12559 2009-01-16 Joel Brobecker <brobecker@adacore.com>
12560
12561 * NEWS: Move the documentation of "info os processes" to
12562 the appropriate section (documenting the new commands).
12563
12564 2009-01-15 Doug Evans <dje@google.com>
12565
12566 * target.h (target_signal_to_string): Make return type const char *.
12567 (target_signal_to_name): Ditto.
12568 (target_signal_from_name): Make arg const char *.
12569 * infrun.c (sig_print_info): Update.
12570 * signals/signals.c (signals): Make array and struct members const.
12571 (target_signal_to_string): Make return type const char *.
12572 (target_signal_to_name): Ditto.
12573 (target_signal_from_name): Make arg const char *.
12574
12575 2009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
12576 Tristan Gingold <gingold@adacore.com>
12577
12578 * solist.h (struct target_so_ops): New member bfd_open.
12579 (solib_find): Add prototype.
12580 (solib_bfd_fopen): Add prototype.
12581 * solib.c (solib_find, solib_bfd_fopen): New functions, extracted
12582 from solib_bfd_open.
12583 (solib_bfd_open): Use ops->bfd_open override if present. Call
12584 solib_find and solib_bfd_open otherwise.
12585
12586 * objfiles.h (OBJF_KEEPBFD): New define.
12587 * objfiles.c (free_objfile): Do not close BFD if OBJF_KEEPBFD
12588 objfile flag is set.
12589 * solib.c (symbol_add_stub): Do not allocate second BFD for
12590 shared library; use OBJF_KEEPBFD flag on solib objfile.
12591
12592 2009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
12593
12594 * frame.c (get_frame_arch): Abort if called with NULL this_frame.
12595
12596 2009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
12597
12598 * value.h (address_of_variable): Add prototype.
12599 (locate_var_value): Remove prototype.
12600
12601 * findvar.c (read_var_value): Do not attempt to default frame
12602 to selected frame.
12603 (locate_var_value): Remove function.
12604 * valops.c (value_of_variable): Retrieve selected frame for
12605 symbols that require a frame when called with NULL block.
12606 * valops.c (address_of_variable): New function.
12607
12608 * eval.c (evaluate_subexp_for_address): Call address_of_variable
12609 instead of calling locate_var_value.
12610 (evaluate_subexp_with_coercion): Likewise.
12611
12612 2009-01-14 Daniel Jacobowitz <dan@codesourcery.com>
12613
12614 * NEWS: Document "define" for prefixed commands.
12615 * cli/cli-cmds.c (show_user): Update calls to show_user_1. Call
12616 show_user_1 for prefix commands.
12617 * cli/cli-decode.c (help_cmd_list): Recurse for "help user-defined".
12618 * cli/cli-script.c (validate_comname): Rewrite to handle prefix
12619 commands. Return the containing command list.
12620 (define_command, document_command): Update to handle prefix commands.
12621 (show_user_1): Add prefix and name arguments. Handle prefix
12622 commands.
12623 * cli/cli-script.h (show_user_1): Update prototype.
12624
12625 2009-01-14 Kai Tietz <kai.tietz@onevision.com>
12626
12627 * ser-mingw.c (console_select_thread): Add return to make
12628 compiler happy.
12629 (pipe_select_thread): Likewise.
12630 (file_select_thread): Likewise.
12631
12632 2009-01-14 Pedro Alves <pedro@codesourcery.com>
12633
12634 * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
12635 previous change.
12636
12637 2009-01-14 Pedro Alves <pedro@codesourcery.com>
12638
12639 * remote.c (extended_remote_mourn_1): Invalidate our notion of
12640 current general thread.
12641
12642 2009-01-14 Pedro Alves <pedro@codesourcery.com>
12643
12644 * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups
12645 without a live selected thread.
12646
12647 2009-01-14 Joel Brobecker <brobecker@adacore.com>
12648
12649 Update the copyright notice of some of the files I missed
12650 in the previous copyright update.
12651
12652 2009-01-14 Joel Brobecker <brobecker@adacore.com>
12653
12654 * windows-nat.c (handle_unload_dll): Use %p to print the DLL
12655 base address instead of casting it to DWORD.
12656
12657 2009-01-13 Ulrich Weigand <uweigand@de.ibm.com>
12658
12659 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Do not call get_frame_arch
12660 for NULL frame pointers.
12661
12662 2009-01-13 Mark Kettenis <kettenis@gnu.org>
12663
12664 * utils.c (host_address_to_string): Reimplement in a way that
12665 avoids the cast of the address to long.
12666
12667 2009-01-13 Joel Brobecker <brobecker@adacore.com>
12668
12669 * mdebugread.c (parse_symbol): Save the symbol private data
12670 using SYMBOL_VALUE_BYTES instead of SYMBOL_VALUE.
12671 (psymtab_to_symtab_1): Likewise.
12672 (parse_procedure): Declare variable "e" only in the scope
12673 where it is used. Extract the symbol private data using
12674 SYMBOL_VALUE_BYTES.
12675
12676 2009-01-13 Jim Blandy <jimb@codesourcery.com>
12677
12678 Abstract out common code for copying value locations.
12679
12680 * value.h (set_value_component_location): New declaration.
12681 * value.c (set_value_component_location): New function.
12682 (value_primitive_field): Use it.
12683 * valarith.c (value_subscript, value_subscripted_rvalue): Same.
12684 * valops.c (search_struct_field, value_slice): Same.
12685 * ada-lang.c (coerce_unspec_val_to_type)
12686 (ada_value_primitive_packed_val): Same.
12687
12688 2009-01-13 Joel Brobecker <brobecker@adacore.com>
12689
12690 * MAINTAINERS (GLOBAL MAINTAINERS): Add Tom Tromey.
12691
12692 2009-01-12 Christopher Faylor <me+cygwin@cgf.cx>
12693
12694 * amd64-windows-nat.c Rename gdb-specific win32_* to windows_*
12695 throughout.
12696 * i386-cygwin-tdep.c: Ditto.
12697 * i386-windows-nat.c: Ditto.
12698 * windows-nat.h: Ditto.
12699 * windows-tdep.c: Ditto.
12700 * windows-tdep.h: Ditto.
12701 * windows-nat.c: Ditto.
12702 (cygwin_load_start): Redefine as CORE_ADDR.
12703 (cygwin_load_end): Ditto.
12704 (windows_make_so): Coerce result of address arithmetic to uintptr_t
12705 before coercing to CORE_ADDR to avoid a compiler warning.
12706 (handle_exception): Define addr as CORE_ADDR and coerce
12707 ExceptionAddress to uintptr_t before assigining to avoid a compiler
12708 warning.
12709 * config/djgpp/fnchange.lst: Add mappings for recently renamed windows
12710 files.
12711
12712 2009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
12713
12714 Fix linking with --enable-targets=all:
12715 * Makefile.in (ALL_TARGET_OBS): Add windows-tdep.o.
12716 (HFILES_NO_SRCDIR): Add windows-tdep.h.
12717 (ALLDEPFILES): Add windows-tdep.c.
12718
12719 2009-01-11 Chris Faylor <me.gdb@cgf.cx>
12720
12721 * win32-nat.h: Delete.
12722 * windows-nat.h: Rename from win32-nat.h.
12723 * win32-nat.c: Delete.
12724 * windows-nat.c: Rename from win32-nat.c.
12725 * win32-termcap.c: Delete.
12726 * windows-termcap.c: Rename from win32-termcap.c.
12727 * amd64-windows-nat.c: Handle rename from win32-nat.h -> windows-nat.h.
12728 * configure.ac: Handle rename from win32-termcap.c ->
12729 windows-termcap.c.
12730 * configure: Regenerate.
12731 * gdb_curses.h: Change comment to reflect rename from win32-termcap.c
12732 -> windows-termcap.c.
12733 * i386-cygwin-tdep.c: Handle rename from win32-tdep.h ->
12734 windows-tdep.h.
12735 * i386-windows-nat.c: Refect rename from win32-nat.h -> windows-nat.h.
12736 * windows-nat.c: Ditto. Also reflect rename from from win32-tdep.h ->
12737 windows-tdep.h.
12738 (win32_make_so): Handle cygwin compiler warning due to change of
12739 load_addr from DWORD to LPVOID.
12740 (handle_load_dll): Use %p in format string to properly print address
12741 and avoid a compiler warning.
12742 (DEBUG_EXCEPTION_SIMPLE): Ditto.
12743 (handle_exception): Ditto.
12744 * windows-tdep.c: Handle rename from win32-tdep.h -> windows-tdep.h.
12745 * config/i386/cygwin.mh: Handle rename from win32-nat.o ->
12746 windows-nat.o.
12747 * config/i386/mingw.mh: Ditto.
12748 * config/i386/mingw64.mh: Ditto.
12749
12750 2009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
12751
12752 * f-typeprint.c (f_type_print_varspec_suffix): Convert the autovariable
12753 arrayprint_recurse_level to a parameter. Update all the callers. New
12754 comment at autovariables.
12755
12756 2009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
12757
12758 * gdbtypes.c (make_qualified_type, replace_type): Reformat to the GNU
12759 coding style.
12760
12761 2009-01-11 Joel Brobecker <brobecker@adacore.com>
12762
12763 * target.c (target_xfer_partial): Use host_address_to_string to
12764 print the address of readbuf and writebuf. Cast the address of
12765 elements inside the myaddr buffer into intptr_t.
12766 (deprecated_debug_xfer_memory): Use paddress to print memaddr.
12767 Cast the address of elements inside the myaddr buffer into
12768 intptr_t.
12769
12770 2009-01-11 Joel Brobecker <brobecker@adacore.com>
12771
12772 * amd64-windows-nat.c, amd64-windows-tdep.c: New files.
12773 * config/i386/mingw64.mh, config/i386/nm-cygwin64.h: New files.
12774 * configure.host, configure.tgt: Add handling for x86_64/windows.
12775 * config/djgpp/fnchange.lst: Add entries for amd64-windows-nat.c
12776 and amd64-windows-tdep.c.
12777
12778 2009-01-11 Joel Brobecker <brobecker@adacore.com>
12779
12780 * win32-tdep.h, win32-tdep.c: New files.
12781 * i386-cygwin-tdep.h: Delete.
12782 * i386-cygwin-tdep.c: Include win32-tdep.h instead of
12783 i386-cygwin-tdep.h.
12784 (win32_xfer_shared_library): Delete. Moved to win32-tdep.c.
12785 * win32-nat.c: Likewise.
12786 * configure.tgt: Add win32-tdep.o to the list of target object
12787 files for i386-cygwin and i386-mingw targets.
12788
12789 2009-01-11 Joel Brobecker <brobecker@adacore.com>
12790
12791 * win32-nat.h: New file.
12792 * win32-nat.c (mappings): Initialize to NULL.
12793 (win32_set_context_register_offsets): New function.
12794 * i386-windows-nat.c: New file.
12795 (mappings): Moved here from win32-nat.c.
12796 (_initialize_i386_windows_nat): New function.
12797 * config/i386/mingw.mh (NATDEPFILES): Add i386-windows-nat.o.
12798 * config/i386/cygwin.mh (NATDEPFILES): Likewise.
12799
12800 2009-01-09 Andreas Schwab <schwab@suse.de>
12801
12802 * Makefile.in (init.c): Set LANG/LC_ALL to C, not c.
12803
12804 2009-01-09 Daniel Jacobowitz <dan@codesourcery.com>
12805
12806 * gdbtypes.c (append_composite_type_field): Correct the location of
12807 appended fields.
12808
12809 2009-01-09 Pedro Alves <pedro@codesourcery.com>
12810
12811 * defs.h (deprecated_error_hook): Delete declaration.
12812 * interps.c (clear_interpreter_hooks): Adjust.
12813 * remote-sim.c (gdb_os_error): Don't try to call
12814 deprecated_error_hook. No need to call exit anymore.
12815 * top.c (deprecated_error_hook): Delete.
12816
12817 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12818
12819 * arch-utils.c (gdbarch_update_p): Use host_address_to_string
12820 to print the address of the gdbarch pointer.
12821
12822 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12823
12824 * gdbarch.sh: Fix all the compilation errors on amd64-windows
12825 due to casting a pointer to a long when printing a function
12826 address. Instead, use host_address_to_string to convert our
12827 address to a string.
12828 * gdbarch.c: Regenerate.
12829
12830 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12831
12832 * event-top.c (async_disconnect, async_stop_sig): use "raise"
12833 instead of "kill" to raise a signal.
12834
12835 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12836
12837 * win32-nat.c (get_module_name): Change the type of parameter
12838 "base_address" to LPVOID. Remove unnecessary cast.
12839 (struct lm_info): Change type of load_addr to LPVOID.
12840 (win32_make_so): Change the type of parameter "load_addr"
12841 to LPVOID. Remove some unnecessary casts.
12842 (handle_unload_dll): Change the type of "lpBaseOfDll" to LPVOID.
12843 (win32_xfer_shared_libraries): Add missing cast.
12844
12845 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12846
12847 * win32-nat.c (has_detach_ability, set_process_privilege):
12848 Cast the result of GetProcAddress to (void *) to avoid
12849 a compilation warning.
12850
12851 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12852
12853 * win32-nat.c (CONTEXT_EXTENDED_REGISTERS): Define to 0 if not
12854 already defined.
12855
12856 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12857
12858 * win32-nat.c (get_image_name, win32_xfer_memory): Fix type
12859 definition of local variable "done".
12860 (info_w32_command, handle_exception): Remove unnecessary cast.
12861
12862 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12863
12864 * win32-nat.c (kernel32_DebugSetProcessKillOnExit): Renames
12865 DebugSetProcessKillOnExit. Update all uses in this file.
12866 (kernel32_DebugActiveProcessStop): Renames DebugActiveProcessStop.
12867 Update all uses in this file.
12868
12869 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12870
12871 * win32-nat.c (do_initial_win32_stuff): Add new ops parameter,
12872 and use it when pushing the target.
12873 (win32_attach, win32_create_inferior): Update call to
12874 do_initial_win32_stuff.
12875 (win32_detach, win32_mourn_inferior): Use our ops parameter
12876 instead of the global win32_ops to unpush the target.
12877
12878 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12879
12880 * ser-mingw.c (ser_windows_open): Use proper type when casting
12881 in call to _open_osfhandle.
12882
12883 2009-01-09 Kai Tietz <kai.tietz@onevision.com>
12884
12885 * coff-pe-read.c (read_pe_exported_syms): Fix typo.
12886
12887 2009-01-09 Joel Brobecker <brobecker@adacore.com>
12888
12889 * CONTRIBUTE: Minor reformatting.
12890
12891 2009-01-08 Kai Tietz <kai.tietz@onevision.com>
12892
12893 * MAINTAINERS: Add myself to Write After Approval.
12894 * coff-pe-read.c (read_pe_exported_syms): Enable read of PE+
12895 export directory.
12896
12897 2009-01-08 Nathan Froyd <froydnj@codesourcery.com>
12898
12899 * remote-sim.c (gdb_os_error): Mark as a noreturn function.
12900 Call exit to make it obvious to GCC.
12901
12902 2009-01-08 Tom Tromey <tromey@redhat.com>
12903
12904 PR breakpoints/9350:
12905 * varobj.c (varobj_invalidate): Unconditionally free
12906 all_rootvarobj.
12907 * symfile.c (syms_from_objfile): Free local_addr when returning
12908 normally.
12909 * exec.c (exec_file_attach): Do cleanups before returning.
12910 (exec_file_command): Likewise.
12911 * corefile.c (reopen_exec_file): Do cleanups before returning.
12912 * breakpoint.c (insert_breakpoint_locations): Do cleanups before
12913 returning.
12914 (do_vec_free): New function.
12915 (update_global_location_list): Make a cleanup for old_locations.
12916 Do cleanups before returning. Remove unused variable 'e'.
12917 (find_condition_and_thread): Free result of parsing the
12918 expression.
12919 (print_it_typical): Do cleanups before returning.
12920 (breakpoint_re_set_one): Always free sals.sals.
12921
12922 2009-01-08 Joel Brobecker <brobecker@adacore.com>
12923 Emi Suzuki <emi-suzuki@tjsys.co.jp>
12924
12925 * breakpoint.c (do_enable_breakpoint): Use update_watchpoint for
12926 watchpoints.
12927
12928 2009-01-07 Doug Evans <dje@google.com>
12929
12930 * top.c (gdb_prompt_string): Delete, unused.
12931
12932 2009-01-07 Pedro Alves <pedro@codesourcery.com>
12933
12934 Delete ONE_PROCESS_WRITETEXT leftovers.
12935
12936 * breakpoint.c (insert_bp_location): Delete process_warning
12937 argument. Adjust.
12938 (insert_breakpoint_locations): Adjust.
12939 (reattach_breakpoints): Adjust.
12940 * infrun.c (normal_stop): Drop "It might be running in another
12941 process" notice.
12942
12943 2009-01-07 Stan Shebs <stan@codesourcery.com>
12944
12945 * config/pa/linux.mh (XDEPFILES): Remove.
12946
12947 2009-01-07 Doug Evans <dje@google.com>
12948
12949 * cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
12950
12951 2009-01-07 Jan Kratochvil <jan.kratochvil@redhat.com>
12952
12953 * f-typeprint.c (f_type_print_base <TYPE_CODE_STRUCT>): Fix output
12954 spacing, a regression from 2008-04-22.
12955
12956 2009-01-07 Joel Brobecker <brobecker@adacore.com>
12957
12958 * utils.c (gdb_print_host_address): Adjust implementation to
12959 reuse host_address_to_string. Move comment explaining the conversion
12960 from host address to string from here...
12961 (host_address_to_string): ... to there.
12962
12963 2009-01-07 Emi Suzuki <emi-suzuki@tjsys.co.jp>
12964
12965 * MAINTAINERS: Add myself for write after approval privileges.
12966
12967 2009-01-06 Tom Tromey <tromey@redhat.com>
12968
12969 * value.c (set_internalvar): Use value_free, not xfree.
12970
12971 2009-01-06 Jim Blandy <jimb@red-bean.com>
12972
12973 Check return values of functions declared with warn_unused_result
12974 attribute in GLIBC 2.8.
12975 * cli/cli-cmds.c (pwd_command): Check return value from getcwd.
12976 * inflow.c (check_syscall): New function.
12977 (new_tty): Use check_syscall to check return values from open and dup.
12978 * linux-nat.c (linux_nat_info_proc_cmd): Check return value from fgets.
12979 * main.c (captured_main): Call cwd after setting up gdb_stderr;
12980 check for errors from getcwd.
12981 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Check return value from getcwd.
12982 * ui-file.c (stdio_file_write): Ignore return value from fwrite.
12983 (stdio_file_fputs): Same.
12984 * utils.c (internal_vproblem): abort if last-ditch error message
12985 write fails.
12986
12987 * top.c (gdb_init): Don't set the current directory here; that's
12988 already been done in captured_main.
12989
12990 2009-01-06 Sandra Loosemore <sandra@codesourcery.com>
12991
12992 * ser-tcp.c: Adjust includes.
12993 (tcp_set_cmdlist, tcp_show_cmdlist): Declare.
12994 (tcp_auto_retry, tcp_retry_limit): Declare.
12995 (TIMEOUT): Remove, in favor of tcp_retry_limit.
12996 (POLL_INTERVAL): Increase to 5, in favor of backoff logic.
12997 (wait_for_connect): New function.
12998 (net_open): Use it. Add auto-retry logic.
12999 (set_tcp_cmd, show_tcp_cmd): New functions.
13000 (_initialize_ser_tcp): Initialize new "set/show tcp auto-retry"
13001 and "set/show tcp connect-timeout" commands.
13002 * NEWS: Document new commands.
13003
13004 2009-01-05 Tom Tromey <tromey@redhat.com>
13005
13006 * python/python-internal.h (Py_ssize_t): Define as int.
13007
13008 2009-01-05 Jim Blandy <jimb@red-bean.com>
13009
13010 * MAINTAINERS: Fix my e-mail address as steering committee member.
13011
13012 2009-01-03 Joel Brobecker <brobecker@adacore.com>
13013
13014 Updated copyright notices for most files.
13015
13016 2009-01-03 Joel Brobecker <brobecker@adacore.com>
13017
13018 * top.c (print_gdb_version): Update copyright year.
13019
13020 2009-01-03 Joel Brobecker <brobecker@adacore.com>
13021
13022 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2008.
13023
13024 2009-01-01 Pedro Alves <pedro@codesourcery.com>
13025
13026 PR breakpoints/9681:
13027 * exceptions.h (enum errors): New error type, MEMORY_ERROR.
13028 * corefile.c (memory_error): Rewrite to throw a MEMORY_ERROR.
13029 * breakpoint.c (fetch_watchpoint_value): Ignore MEMORY_ERRORs, but
13030 retrow all other exceptions.
13031
13032 For older changes see ChangeLog-2008.
13033 \f
13034 Local Variables:
13035 mode: change-log
13036 left-margin: 8
13037 fill-column: 74
13038 version-control: never
13039 coding: utf-8
13040 End:
This page took 0.337098 seconds and 3 git commands to generate.