gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2
3 Fix printing parameters of inlined functions.
4 * ada-lang.c (is_known_support_routine)
5 (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter
6 for find_frame_funname.
7 * python/py-frame.c (frapy_name): Likewise.
8 * stack.c (find_frame_funname): New parameter funcp. Update the
9 function comment. Fill it in.
10 (print_frame): New variable func. Initialize it by
11 find_frame_funname. Print arguments only if FUNC is not NULL. Use
12 FUNC as the parameter of print_args_stub.
13 * stack.h (find_frame_funname): New parameter funcp. Remove the
14 function declaration comment.
15
16 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
17
18 PR corefiles/12071.
19 * inferior.c (have_live_inferiors): New variables old_chain, inf and
20 tp. Iterate INFERIOR_LIST and call target_has_execution.
21
22 2010-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
23
24 Fix GDB crash on inferior calls with self-referencing classes.
25 * gnu-v3-abi.c (gnuv3_pass_by_reference): Do not call itself on static
26 member fields.
27
28 2010-09-29 Doug Evans <dje@google.com>
29
30 Workaround for gcc/45682.
31 * dwarf2read.c (partial_die_info): New fields fixup_called,
32 linkage_name.
33 (guess_partial_die_structure_name): Renamed from guess_structure_name.
34 Move definition next to use. Use linkage_name to determine if class
35 is in a namespace. All callers updated.
36 (fixup_partial_die): Return early if already called.
37 Set fixup_called when done.
38 (guess_full_die_structure_name): New function.
39 (determine_prefix): Call it for class/struct/union dies if c++ and
40 .debug_types section is present and parent is DW_TAG_compile_unit.
41
42 2010-09-28 Joel Brobecker <brobecker@adacore.com>
43
44 * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a.
45 (sparc-*-rtems*): Delete. Now redundant with sparc-*-*.
46
47 2010-09-28 Joel Brobecker <brobecker@adacore.com>
48
49 * NEWS: Announce Ravenscar Profile support.
50
51 2010-09-28 Joel Brobecker <brobecker@adacore.com>
52 Jerome Guitton <guitton@adacore.com>
53
54 * ravenscar-thread.c, ravenscar-thread.h, ravenscar-sparc-thread.c:
55 New files.
56 * configure.tgt (sparc-*-*): Add ravenscar-thread.o and
57 ravenscar-sparc-thread.o to gdb_target_obs.
58
59 2010-09-28 Joel Brobecker <brobecker@adacore.com>
60
61 * ada-tasks.c (iterate_over_live_ada_tasks): New function.
62 * ada-lang.h (iterate_over_live_ada_tasks): Declare.
63
64 2010-09-27 Pierre Muller <muller@ics.u-strasbg.fr>
65
66 * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
67 (amd64_windows_init_abi): Register amd64_skip_main_prologue as gdbarch
68 skip_main_prologue method.
69
70 2010-09-27 Tom Tromey <tromey@redhat.com>
71
72 * dwarf2read.c (dwarf2_read_index): Only allow version 3.
73 (write_psymbols): Add 'psyms_seen' and 'is_static' arguments.
74 Only emit a given psymbol once.
75 (struct signatured_type_index_data) <psyms_seen>: New field.
76 (write_one_signatured_type): Update.
77 (cleanup_htab): New function.
78 (write_psymtabs_to_index): Update. Create psyms_seen hash. Bump
79 version to 3.
80 (save_gdb_index_command): Update index documentation.
81
82 2010-09-27 Tom Tromey <tromey@redhat.com>
83
84 * bcache.c (expand_hash_table): Use hash_function, not hash.
85
86 2010-09-27 Tom Tromey <tromey@redhat.com>
87
88 * gdb_wchar.h: Change minimum libiconv to 0x108.
89
90 2010-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
91
92 Fix lost siginfo_t for inferior calls.
93 * infrun.c
94 (struct inferior_thread_state) <siginfo_gdbarch, siginfo_data>: New.
95 (save_inferior_thread_state): New variables regcache, gdbarch and
96 siginfo_data. Initialize SIGINFO_DATA if gdbarch_get_siginfo_type_p.
97 Move INF_STATE allocation later, pre-clear it. Initialize REGISTERS
98 using REGCACHE.
99 (restore_inferior_thread_state): New variables regcache and gdbarch.
100 Restore SIGINFO_DATA for matching GDBARCH. Restore REGISTERS using
101 REGCACHE. Free also SIGINFO_DATA.
102
103 2010-09-24 Tom Tromey <tromey@redhat.com>
104
105 * dwarf2read.c (dw2_expand_symtabs_matching): Add missing
106 MAYBE_SWAPs.
107 (dw2_map_symbol_names): Likewise.
108
109 2010-09-24 Sami Wagiaalla <swagiaal@redhat.com>
110
111 * valops.c (find_oload_champ_namespace_loop): replace incorrect
112 discard_cleanups do_cleanups.
113
114 2010-09-24 Pedro Alves <pedro@codesourcery.com>
115
116 PR gdb/11842
117
118 * amd64-linux-nat.c (compat_siginfo_from_siginfo)
119 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
120 si_code is < 0. Check for si_code == SI_TIMER before checking for
121 si_code < 0.
122
123 2010-09-24 Pedro Alves <pedro@codesourcery.com>
124
125 * objfiles.h (ALL_OBJSECTIONS): Handle breaks in the inner loop.
126
127 2010-09-22 Joel Brobecker <brobecker@adacore.com>
128
129 * ada-tasks.c (read_atcb): Do not compute the task ptid when
130 debugging a core file.
131
132 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
133
134 Code cleanup.
135 * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove.
136 (free_objfile) <objfile->name != NULL>: Remove the conditional around
137 xfree.
138 * objfiles.h (struct objfile) <name>: New comment it is never NULL.
139 * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>:
140 Remove.
141 * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name>
142 Remove the conditional.
143 * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
144
145 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
146
147 * main.c: Include objfiles.h.
148 (captured_main): New variable objfile. Call
149 load_auto_scripts_for_objfile for ALL_OBJFILES.
150
151 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
152
153 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
154 DW_TAG_constant.
155
156 2010-09-22 Joel Brobecker <brobecker@adacore.com>
157
158 * dwarf2read.c (scan_partial_symbols): Add handling of
159 DW_TAG_constant DIEs.
160 (add_partial_symbol, load_partial_dies, new_symbol): Likewise.
161
162 2010-09-22 Joel Brobecker <brobecker@adacore.com>
163
164 * configure.ac: Add support for --enable-gdbserver.
165 * configure: Regenerate.
166
167 2010-09-22 Sami Wagiaalla <swagiaal@redhat.com>
168
169 PR C++/12028
170 * valops.c (find_oload_champ_namespace_loop): removed incorrect
171 'old_cleanups' reassignment.
172
173 2010-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
174
175 * charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
176 characters.
177
178 2010-09-16 Phil Muldoon <pmuldoon@redhat.com>
179
180 PR mi/11407
181 * mi/mi-cmd-stack.c (list_args_or_locals): Catch exceptions from
182 read_var_value and common_val_print and print a warning.
183
184 2010-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
185
186 * MAINTAINERS (GLOBAL MAINTAINERS) <Jan Kratochvil>: Move the entry to
187 keep the list in alphabetical order. Use longer e-mail address.
188
189 2010-09-15 Tom Tromey <tromey@redhat.com>
190
191 * MAINTAINERS (GLOBAL MAINTAINERS): Add Jan Kratochvil.
192
193 2010-09-15 Tom Tromey <tromey@redhat.com>
194
195 * charset.c (iconv_open): New define.
196 (iconv): Likewise.
197 (iconv_close): Likewise.
198 (phony_iconv_open): Add "phony_" prefix.
199 (phony_iconv_close): Likewise.
200 (phony_iconv): Likewise.
201 * gdb_wchar.h: Check _LIBICONV_VERSION, __STDC_ISO_10646__.
202 Change how INTERMEDIATE_ENCODING is defined.
203
204 2010-09-15 Doug Evans <dje@google.com>
205
206 * dwarf2read.c (struct die_info): Fix comment.
207
208 2010-09-15 Alan Modra <amodra@gmail.com>
209
210 PR 4606
211 * gcore.c (gcore_create_callback): Clear SEC_HAS_CONTENTS rather
212 than setting SEC_NEVER_LOAD on sections that need not be copied.
213
214 2010-09-14 Tom Tromey <tromey@redhat.com>
215
216 * psympriv.h (add_psymbol_to_list, init_psymbol_list)
217 (start_psymtab_common, allocate_psymtab, discard_psymtab):
218 Declare.
219 * symfile.h (extend_psymbol_list): Remove.
220 (add_psymbol_to_list, init_psymbol_list, start_psymtab_common)
221 (allocate_psymtab, discard_psymtab): Move to psympriv.h.
222 * psymtab.c (extend_psymbol_list): Move earlier. Now static.
223
224 2010-09-14 Jan Kratochvil <jan.kratochvil@redhat.com>
225
226 * dwarf2read.c (dw2_map_ada_symtabs): Remove the internal_error.
227 Update the comment.
228
229 2010-09-14 Tom Tromey <tromey@redhat.com>
230
231 PR symtab/8399:
232 * dwarf2loc.c (locexpr_describe_location_piece): Don't call error
233 for unrecognized frame base expression.
234
235 2010-09-14 Tom Tromey <tromey@redhat.com>
236
237 PR exp/11803:
238 * value.c (value_static_field): Use value_of_variable.
239
240 2010-09-14 Pierre Muller <muller@ics.u-strasbg.fr>
241
242 * m32r-rom.c: Replace winsock.h with winsock2.h header.
243 * remote-m32r-sdi.c: Replace winsock.h by winsock2.h.
244
245 2010-09-13 Sami Wagiaalla <swagiaal@redhat.com>
246
247 PR symtab/11992:
248 * c-exp.y (classify_name): Check is_a_member_of_this before returning
249 UNKNOWN_CPP_NAME.
250
251 2010-09-13 Joel Brobecker <brobecker@adacore.com>
252
253 * NEWS: Add x86-lynxos to the list of platforms supported by
254 gdbserver.
255
256 2010-09-13 Joel Brobecker <brobecker@adacore.com>
257
258 * NEWS: Announce GDBserver support for version 5.x of ppc-lynxos.
259
260 2010-09-13 Tom Tromey <tromey@redhat.com>
261
262 * Makefile.in (HFILES_NO_SRCDIR): Add progspace.h.
263
264 2010-09-13 H.J. Lu <hongjiu.lu@intel.com>
265
266 * i386-tdep.c (i386_ymm_type): Set type name to
267 builtin_type_vec256i.
268
269 2010-09-12 Michael Snyder <msnyder@vmware.com>
270
271 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
272
273 2010-09-12 H.J. Lu <hongjiu.lu@intel.com>
274
275 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
276
277 2010-09-11 H.J. Lu <hongjiu.lu@intel.com>
278
279 * amd64-tdep.c (amd64_register_name): Removed.
280 (amd64_init_abi): Don't call set_gdbarch_register_name.
281
282 * i386-tdep.c (i386_ymmh_regnum_p): Make it static.
283
284 * i386-tdep.h (i386_ymmh_regnum_p): Removed.
285
286 2010-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
287 Paul Bolle <pebolle@tiscali.nl>
288
289 Redirect also uiout and stdtarg{,err} in execute_command_to_string.
290 * cli-logging.c (struct saved_output_files) <targerr>: New.
291 (set_logging_redirect, pop_output_files, handle_redirections):
292 Redirect also gdb_stdtargerr.
293 * defs.h (struct ui_out, make_cleanup_ui_out_redirect_pop): New
294 declarations.
295 * event-top.c (gdb_setup_readline, gdb_disable_readline): Redirect
296 also gdb_stdtargerr.
297 * top.c (execute_command_to_string): Move make_cleanup_ui_file_delete
298 to the top. Redirect also gdb_stdlog, gdb_stdtarg and gdb_stdtargerr.
299 Use ui_out_redirect, register make_cleanup_ui_out_redirect_pop.
300 * tui/tui-io.c (tui_setup_io): Redirect also gdb_stdtargerr.
301 * utils.c (do_ui_out_redirect_pop, make_cleanup_ui_out_redirect_pop):
302 New functions.
303
304 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
305
306 * hppa-tdep.c (unwind_command): Use host_address_to_string function
307 to display a host address.
308 * monitor.c (monitor_read_memory): Likewise.
309 * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
310
311 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
312
313 * coffread.c (struct coff_symbol): Change c_value type from `long' to
314 `CORE_ADDRESS' as it might contain target addresses.
315
316 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
317
318 * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
319 before cast to pointer to avoid warning.
320
321 2010-09-09 Kevin Buettner <kevinb@redhat.com>
322
323 * v850-tdep.c (v850_gdbarch_init): Change the v850's `char'
324 type to be signed.
325
326 2010-09-09 Ulrich Weigand <uweigand@de.ibm.com>
327
328 * dwarf2read.c (fixup_partial_die): Do not set dummy name for
329 anonymous class partial DIEs.
330
331 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
332
333 * dwarf2read.c (dwarf2_compute_name): Check that the first
334 argument is a pointer.
335
336 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
337
338 * dwarf2read.c (read_func_scope, read_structure_type)
339 (read_common_block): Check for a NULL return from new_symbol.
340
341 2010-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
342
343 * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
344
345 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
346
347 * dwarf2read.c (read_structure_type): Move processing of
348 fields and member functions from here...
349 (process_structure_scope): ... to here.
350
351 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
352
353 * gnu-v3-abi.c (gnuv3_print_method_ptr): Do not use
354 the domain type.
355 (gnuv3_make_method_ptr): Likewise.
356
357 2010-09-08 Tom Tromey <tromey@redhat.com>
358
359 * breakpoint.c (create_breakpoint): Add missing _().
360
361 2010-09-08 Doug Evans <dje@google.com>
362
363 * dwarf2-frame.h (dwarf2_frame_build_info): Delete, unused.
364
365 2010-09-08 Tom Tromey <tromey@redhat.com>
366
367 Revert:
368 2010-09-01 Tom Tromey <tromey@redhat.com>
369 * dwarf2read.c, gdbtypes.c, psymtab.c, symfile.h, symtab.c,
370 symtab.h: Revert earlier change.
371
372 2010-09-09 Sami Wagiaalla <swagiaal@redhat.com>
373
374 * psymtab.c (add_psymbol_to_bcache): Initialize
375 obj_section.
376 memset psymbol.ginfo.value to 0.
377
378 2010-09-06 Pedro Alves <pedro@codesourcery.com>
379
380 * infrun.c (resume): Extend comment on ignoring single-step
381 requests on vfork parents waiting for a vfork-done.
382
383 2010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
384 Pedro Alves <pedro@codesourcery.com>
385
386 * corelow.c (core_open): Use target_signal_from_host if CORE_GDBARCH
387 is NULL.
388 * fork-child.c (startup_inferior) <resume_signal>: Use enum
389 target_signal type.
390 * linux-nat.c (linux_nat_resume): Use target_signal_to_host before
391 calling strsignal. Use enum target_signal type for saved_signo.
392 (linux_handle_extended_wait) <signo>: Use enum target_signal type.
393 (linux_nat_wait_1): Use enum target_signal type for signo. Use
394 target_signal_to_host before calling strsignal.
395 * remote-m32r-sdi.c (m32r_wait, m32r_detach): Replace 0 by
396 TARGET_SIGNAL_0.
397
398 2010-09-06 Pedro Alves <pedro@codesourcery.com>
399 Jan Kratochvil <jan.kratochvil@redhat.com>
400
401 * common/signals.c (ANY): Remove.
402 (SET): No longer use ANY.
403
404 2010-09-06 Yao Qi <yao@codesourcery.com>
405
406 * infrunc(resume): When inferior is waiting_for_vfork_done,
407 clear step and don't use displaced stepping.
408
409 2010-09-04 Daniel Jacobowitz <dan@codesourcery.com>
410
411 * breakpoint.c (can_use_hardware_watchpoint): Handle the first
412 value specially.
413
414 2010-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
415
416 Code cleanup - split print_stop_reason.
417 * infrun.c (enum inferior_stop_reason): Remove.
418 (print_stop_reason): Remove by splitting into ...
419 (print_exited_reason, print_signal_exited_reason)
420 (print_no_history_reason, print_signal_received_reason)
421 (print_end_stepping_range_reason): ... these new functions. Update
422 the preceding comment.
423 (handle_inferior_event): Change the calls to print_exited_reason,
424 print_signal_exited_reason, print_no_history_reason,
425 print_signal_received_reason, print_end_stepping_range_reason.
426 (handle_step_into_function, handle_step_into_function_backward):
427 Change the calls to print_end_stepping_range_reason.
428
429 2010-09-03 Jan Kratochvil <jan.kratochvil@redhat.com>
430
431 * breakpoint.c (save_breakpoints): Use RETURN_MASK_ALL.
432 * cli-out.c: Include vec.h.
433 (cli_field_fmt, cli_spaces, cli_text, cli_message, cli_flush): New
434 variable stream, initialize it, use it.
435 (cli_redirect): New function comment. Replace the stream and
436 original_stream fields by the new streams field. Remove the
437 original_stream != NULL conditional, assert error on NULL instead.
438 (out_field_fmt, field_separator): New variable stream, initialize it, use it.
439 (cli_out_data_ctor): Assert non-NULL stream. Replace the stream and
440 original_stream fields by the new streams field.
441 (cli_out_set_stream): Replace the stream field by the new streams
442 field.
443 * cli-out.h: Include vec.h.
444 (ui_filep): New typedef, call DEF_VEC_P for it.
445 (struct cli_ui_out_data): Replace the stream and original_stream
446 fields by the new streams field.
447 * cli/cli-logging.c (set_logging_redirect): Call ui_out_redirect with
448 NULL first. Extend the comment.
449 (handle_redirections): Call ui_out_redirect with output.
450 * python/py-breakpoint.c (bppy_get_commands): Move ui_out_redirect
451 calls outside of the TRY_CATCH block.
452
453 2010-09-03 Joel Brobecker <brobecker@adacore.com>
454
455 GDB 7.2 released.
456
457 2010-09-02 Joel Brobecker <brobecker@adacore.com>
458
459 Back out the following change:
460 | 2010-06-29 Hui Zhu <teawater@gmail.com>
461 | * record.c (set_record_pic_cmdlist,
462 | show_record_pic_cmdlist): New variables.
463 | (set_record_pic_command,
464 | show_record_pic_command): New functions.
465 | (record_pic_function, record_pic_line, record_pic_enum,
466 | set_record_pic_type, record_pic_hide_nofunction,
467 | record_pic_hide_nosource, record_pic_hide_same): New variables.
468 | (record_pic_fputs): New function.
469 | (function_list, node_list, edge_list): New struct.
470 | (function_list, node_list, edge_list): New variables.
471 | (record_pic_cleanups, record_pic_node,
472 | record_pic_edge, cmd_record_pic): New functions.
473 | (_initialize_record): Add new commands for record pic.
474
475 2010-09-02 Daniel Jacobowitz <dan@codesourcery.com>
476
477 * config.in, configure: Regenerated.
478 * configure.ac: Check for waitpid.
479 * ser-pipe.c (pipe_close): Wait for the program to exit.
480
481 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
482
483 * cli/cli-logging.c: Include gdb_assert.h.
484 (set_logging_overwrite): New function.
485 (logging_redirect): New comment.
486 (logging_no_redirect_file, set_logging_redirect)
487 (pop_output_files) <logging_no_redirect_file>: New.
488 (handle_redirections) <!logging_redirect>: New variable
489 no_redirect_file. Remove file autoclose for tee_file_new. No longer
490 discard cleanup for the close of former OUTPUT. Set
491 LOGGING_NO_REDIRECT_FILE.
492 (handle_redirections) <logging_redirect>: gdb_assert
493 LOGGING_NO_REDIRECT_FILE.
494 (show_logging_command) <logging_redirect handling>: Adjust messages
495 for SAVED_FILENAME not NULL.
496 (_initialize_cli_logging): Install set_logging_overwrite and
497 set_logging_redirect.
498
499 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
500
501 * iq2000-tdep.c (iq2000_scan_prologue): Initialize SAL.END.
502
503 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
504
505 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT): Convert it to the no- form.
506 (monitor.o): Replace $(INTERNAL_WARN_CFLAGS) by $(INTERNAL_CFLAGS) and
507 add $(GDB_WARN_CFLAGS_NO_FORMAT).
508 (printcmd.o): Replace $(INTERNAL_CFLAGS_BASE) by $(INTERNAL_CFLAGS).
509
510 2010-09-02 Yao Qi <yao@codesourcery.com>
511
512 * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
513 number from a WIFSIGNALED status.
514
515 2010-09-01 Tom Tromey <tromey@redhat.com>
516
517 * symtab.h (lookup_type_symbol): Declare.
518 * symtab.c (lookup_symbol_in_language_full): Rename from
519 lookup_symbol_in_language. Add 'for_type' argument.
520 (lookup_symbol_in_language): New function.
521 (lookup_type_symbol): Likewise.
522 (lookup_symbol_aux): Add 'for_type' argument.
523 (match_symbol_aux): New function.
524 (lookup_symbol_aux_symtabs): Use expand_one_symtab_matching.
525 (match_transparent_type): New function.
526 (basic_lookup_transparent_type): Use expand_one_symtab_matching.
527 * symfile.h (struct quick_symbol_functions)
528 <pre_expand_symtabs_matching>: Remove.
529 <expand_one_symtab_matching>: New field.
530 * psymtab.c (expand_one_symtab_matching_psymtabs): New function.
531 (pre_expand_symtabs_matching_psymtabs): Remove.
532 (psym_functions): Update.
533 * gdbtypes.c (lookup_typename): Use lookup_type_symbol.
534 * dwarf2read.c (dw2_lookup_symbol): Update comment.
535 (dw2_pre_expand_symtabs_matching): Remove.
536 (dw2_expand_one_symtab_matching): New function.
537 (dwarf2_gdb_index_functions): Update.
538
539 2010-09-01 Joel Brobecker <brobecker@adacore.com>
540
541 * NEWS: Add entry announcing GDBserver support on powerpc-lynxos.
542
543 2010-09-01 Marc Khouzam <marc.khouzam@ericsson.com>
544
545 * mi/mi-main.c (mi_cmd_list_target_features): Add `reverse'
546 as a feature reported by -list-target-features.
547
548 2010-09-01 Joel Brobecker <brobecker@adacore.com>
549
550 * features/Makefile (WHICH): Add rs6000/powerpc-32.
551 (powerpc-32.o, powerpc-32.c): New rules.
552 (clean): Also remove powerpc-32.c.
553 * regformats/rs6000/powerpc-32.dat: Generate.
554
555 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
556
557 * symfile.c (reread_symbols): Use psymbol_bcache_free, and
558 psymbol_bcache_init.
559 * psymtab.h (psymbol_bcache_init): New function prototype.
560 (psymbol_bcache_free): New function prototype.
561 (psymbol_bcache_get_bcache): New function prototype.
562 * psymtab.c (psymbol_bcache_init): New function.
563 (psymbol_bcache_free): New function.
564 (psymbol_bcache_full): New function.
565 (psymbol_bcache_get_bcache): New function.
566 (add_psymbol_to_bcache): use psymbol_bcache_full.
567 * objfiles.h (psymbol_cache): Change type of psymbol_cache to
568 psymbol_bcache.
569 * symmisc.c (print_symbol_bcache_statistics): Updated.
570 (print_objfile_statistics): Updated.
571 * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
572 psymbol_cache.
573 (free_objfile): Use psymbol_bcache_free.
574
575 2010-08-31 Tom Tromey <tromey@redhat.com>
576
577 PR c++/11961:
578 * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
579 Don't set TYPE_NAME on the type.
580
581 2010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
582
583 * infrun.c (set_exec_direction_func): Error out if target does not
584 support reverse execution.
585
586 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
587
588 Make linux_get_siginfo_type `type *' unique.
589 * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
590 (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
591 (linux_get_siginfo_type): New variable linux_gdbarch_data. Initialize
592 it. Use linux_gdbarch_data->siginfo_type as a persistent storage.
593 (_initialize_linux_tdep): New.
594
595 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
596
597 Code cleanup.
598 * defs.h (find_memory_region_ftype): New typedef.
599 (exec_set_find_memory_regions): Use it.
600 * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
601 * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
602 * gcore.c (objfile_find_memory_regions): Likewise.
603 * gnu-nat.c (gnu_find_memory_regions): Likewise.
604 * linux-nat.c (linux_nat_find_memory_regions): Likewise.
605 * procfs.c (iterate_over_mappings_cb_ftype): Remove.
606 (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
607 find_memory_region_ftype.
608 (insert_dbx_link_bpt_in_region): Likewise.
609 (iterate_over_mappings): Likewise. Drop the comment part about the
610 function prototype.
611 (find_memory_regions_callback): Use find_memory_region_ftype.
612 (proc_find_memory_regions): Likewise.
613 (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
614 find_memory_region_ftype.
615 * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
616 * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
617
618 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
619
620 * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
621 'static partial_symbol psymbol'.
622 (psymbol_hash): New function.
623 (psymbol_compare): New function.
624 * bcache.c (hash_continue): New.
625 (hash): Use hash_continue.
626 * bcache.c: Add hash_function and compare_function
627 pointers to bcache struct.
628 (bcache_full): Use bcache->hash_function, and
629 bcache->compare_function.
630 (bcache_compare): New function.
631 (bcache_xmalloc): Take hash_function and
632 compare_function arguments and initialize the
633 bcach's pointers.
634 Updated comment.
635 * objfiles.c (allocate_objfile): Updated.
636 * symfile.c (reread_symbols): Updated.
637 * python/py-type.c (typy_richcompare): Updated.
638
639 2010-08-30 Andre Poenitz <andre.poenitz@nokia.com>
640 Tom Tromey <tromey@redhat.com>
641
642 PR python/11792:
643 * python/py-value.c (valpy_get_dynamic_type): New function.
644 (value_object_getset): Add "dynamic_type".
645 (valpy_get_type): Fail on error.
646
647 2010-08-30 Yao Qi <yao@codesourcery.com>
648
649 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
650 (arm_linux_syscall_next_pc): New.
651 (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead.
652 (arm_linux_init_abi): Initialize syscall_next_pc.
653 * arm-tdep.c (thumb_get_next_pc_raw): Get next pc of SWI in Thumb mode.
654 (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
655 * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc.
656 Declare arm_frame_is_thumb.
657
658 2010-08-30 Jan Kratochvil <jan.kratochvil@redhat.com>
659
660 Code cleanup.
661 * breakpoint.c (bpstat_alloc): Remove unused prototype.
662 (bpstat_alloc): Change parameters cbs to bs_link_pointer. Adjust the
663 code.
664 (bpstat_stop_status): Change root_bs into bs_head and bs_link. Adjust
665 calls of bpstat_alloc. Remove explicit bs chain termination.
666
667 2010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
668
669 Code cleanup.
670 * linux-nat.c (pull_pid_from_list): Rename status to statusp.
671 (my_waitpid): Likewise.
672
673 2010-08-27 Doug Evans <dje@google.com>
674
675 * dwarf2read.c (dw2_require_line_header): Read from .debug_types
676 as appropriate.
677
678 2010-08-27 Tom Tromey <tromey@redhat.com>
679
680 * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
681 TYPE_FIELD_IGNORE_BITS.
682
683 2010-08-27 Doug Evans <dje@google.com>
684
685 * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
686 the order they're defined in. munmap .debug_types buffer.
687
688 2010-08-26 Doug Evans <dje@google.com>
689
690 * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
691 (dw2_forget_cached_source_info): Rename local cu to per_cu.
692 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
693 (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
694 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
695 (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
696 (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
697 (dwarf2_free_objfile, write_one_signatured_type): Ditto.
698 (write_psymtabs_to_index): Ditto.
699
700 2010-08-26 Pedro Alves <pedro@codesourcery.com>
701
702 * NEWS: Mention libthread_db debugging with core files.
703
704 2010-08-26 Doug Evans <dje@google.com>
705
706 * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
707 forward decl. Pass pst->dirname to dwarf_decode_lines.
708 (psymtab_include_file_name): New function.
709 (dwarf_decode_lines): Call it. Update comments.
710
711 2010-08-25 Pedro Alves <pedro@codesourcery.com>
712
713 * dwarf2read.c (inherit_abstract_dies): Handle origin die's
714 compilation unit being different from target die's.
715
716 2010-08-24 Doug Evans <dje@google.com>
717
718 PR symtab/11942
719 * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
720 debug_types_type_hash.
721 (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
722 All uses updated.
723 (lookup_die_type): Renamed from tag_type_to_tag. First look in
724 appropriate type_hash table. All callers updated.
725 (allocate_signatured_type_table): Renamed from
726 allocate_signatured_type_hash_table. All callers updated.
727 (create_signatured_type_table_from_index): Renamed from
728 create_signatured_type_hash_from_index. All callers updated.
729 (read_die_type): Add comment. Move actual reading to ...
730 (read_die_type_1): ... here. New function.
731 (follow_die_ref_or_sig): Tweak comment.
732 (set_die_type): Rewrite to use appropriate choice of
733 debug_info_type_hash or debug_types_type_hash.
734 (get_die_type_at_offset): New function.
735 (get_die_type): Call it.
736
737 2010-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
738
739 * python/py-type.c (typy_richcompare): Initialize worklist.
740
741 2010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
742 Kazu Hirata <kazu@codesourcery.com>
743 Jonathan Larmour <jifl@eCosCentric.com>
744
745 * arm-tdep.c: Include features/arm-with-m.c.
746 (arm_psr_thumb_bit): New. Update all uses of CPSR_T to
747 call this function.
748 (arm_pc_is_thumb): Add a gdbarch argument. Update all callers.
749 Check is_m after force-mode.
750 (arm_gdbarch_init): Check the binary before the target description.
751 Add check for M profile attribute. If we have an M-profile device,
752 but no target register description, use arm-with-m. Recognize the
753 new org.gnu.gdb.arm.m-profile feature and its xpsr register.
754 (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
755 * arm-tdep.h (XPSR_T): Define.
756 (struct gdbarch_tdep): Add is_m member.
757 * features/arm-m-profile.xml, features/arm-with-m.c,
758 features/arm-with-m.xml: New files.
759
760 2010-08-23 Doug Evans <dje@google.com>
761
762 * dwarf2read.c (read_structure_type): Add comment.
763 (read_enumeration_type): Add comment.
764 (process_enumeration_scope): Move definition of some locals
765 closer to their use.
766 (read_namespace_type): Add comment.
767 (set_die_type): Fix typo in comment.
768
769 2010-08-23 Tom Tromey <tromey@redhat.com>
770
771 PR python/11145:
772 * python/py-value.c: Include expression.h.
773 (valpy_do_cast): New function.
774 (valpy_cast): Use it.
775 (valpy_dynamic_cast): New function.
776 (valpy_reinterpret_cast): Likewise.
777 (value_object_methods): Add dynamic_cast, reinterpret_cast.
778
779 2010-08-23 Tom Tromey <tromey@redhat.com>
780
781 PR python/11391:
782 * python/py-value.c (valpy_nonzero): Don't throw error for other
783 Value types.
784
785 2010-08-23 Tom Tromey <tromey@redhat.com>
786
787 PR python/10676:
788 * python/py-type.c: Include bcache.h, vec.h.
789 (struct type_equality_entry): New.
790 (compare_strings): New function.
791 (check_types_equal): Likewise.
792 (check_types_worklist): Likewise.
793 (typy_richcompare): Likewise.
794 (type_object_type): Set tp_richcompare field.
795
796 2010-08-23 Tom Tromey <tromey@redhat.com>
797
798 PR python/10953:
799 * python/py-type.c (typy_fields): Call check_typedef.
800 (typy_template_argument): Add TRY_CATCH.
801
802 2010-08-23 Tom Tromey <tromey@redhat.com>
803
804 PR python/11915:
805 * python/py-type.c (typy_array): New function.
806 (type_object_methods): Add "array".
807
808 2010-08-20 Pedro Alves <pedro@codesourcery.com>
809
810 * python/python.c: Include "serial.h".
811 (gdbpy_event_fds): Change type to `struct serial *' a array from
812 int array.
813 (gdbpy_run_events): Change parameters. Use serial_readchar in
814 place of read.
815 (gdbpy_post_event): Use serial_write in place of write.
816 (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
817 serial_async in place of add_file_handler.
818
819 2010-08-20 Pedro Alves <pedro@codesourcery.com>
820
821 * serial.h (gdb_pipe, serial_pipe): Declare.
822 * serial.c (serial_interface_lookup): Take a const char pointer.
823 (serial_fdopen): Rename to ...
824 (serial_fdopen_ops): ... this. Add an OPS parameter and use it.
825 Call the OPS' fdopen function if there is one.
826 (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
827 (serial_pipe): New.
828 (struct serial_ops) <fdopen>: New field.
829
830 * ser-mingw.c (free_pipe_state):
831 (free_pipe_state): Close output on non-pex pipes.
832 (pipe_windows_fdopen): New.
833 (gdb_pipe): New.
834 (_initialize_ser_windows): Register pipe_windows_fdopen.
835 * ser-go32.c (gdb_pipe): New.
836 * ser-pipe.c (pipe_close): Close file descriptor even if there's
837 no state pointer.
838 (pipe_ops): Delete.
839 (gdb_pipe): New.
840
841 2010-08-20 Keith Seitz <keiths@redhat.com>
842
843 PR symtab/11465:
844 * dwarf2read.c (struct delayed_method_info): New struct.
845 (struct dwarf2_cu): Add vector method_list.
846 (scan_partial_symbols): Count methods for union, class, structure,
847 and interface types.
848 (add_to_method_list): New function.
849 (free_delayed_list): New function.
850 (compute_delayed_physnames): New function.
851 (process_full_comp_unit): Make a cleanup for the CU's delayed
852 physname list, compute the delayed physnames, and free the
853 the list.
854 (dwarf2_add_member_fn): For C++ and Java, delay the computation
855 of the physname until after the CU is read.
856
857 * dwarf2read.c (read_structure_type): Check if the current
858 DIE's type was already completed after dwarf2_full_name
859 was called.
860
861 2010-08-19 Stan Shebs <stan@codesourcery.com>
862
863 * NEWS: Mention some additional changes.
864
865 2010-08-19 Tom Tromey <tromey@redhat.com>
866
867 * Makefile.in (install-python): Add DESTDIR.
868
869 2010-08-19 Doug Evans <dje@google.com>
870
871 PR exp/11926
872 * parser-defs.h (parse_float, parse_c_float): Declare.
873 * parse.c (parse_float, parse_c_float): New function.
874 * c-exp.y (parse_number): Call parse_c_float.
875 * objc-exp.y (parse_number): Ditto.
876 * p-exp.y (parse_number): Ditto. Use ANSI/ISO-style definition.
877 * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
878
879 2010-08-19 Joel Brobecker <brobecker@adacore.com>
880
881 * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
882 the arguments in the correct order.
883 * symtab.c (maybe_add_partial_symtab_filename): Declare
884 the arguments in the correct order.
885
886 2010-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
887
888 * varobj.c (varobj_create): Replace variable old_fi with old_id,
889 initialize it by null_frame_id, wrap its usage by get_frame_id,
890 frame_id_p and frame_find_by_id.
891
892 2010-08-18 Tom Tromey <tromey@redhat.com>
893
894 PR python/11900:
895 * configure: Rebuild.
896 * configure.ac: Add install-python to CONFIG_INSTALL.
897 * Makefile.in (install-python): New.
898
899 2010-08-18 Doug Evans <dje@google.com>
900
901 * gdb_assert.h (gdb_assert_not_reached): New macro.
902 (gdb_assert_fail): Fix typo in comment.
903 * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
904 gdb_assert (0).
905 * darwin-nat.c (darwin_check_new_threads): Ditto.
906 * dwarf2read.c (dwarf2_get_section_info): Ditto.
907 (munmap_section_buffer): Ditto.
908 * m32c-tdep.c (make_types): Ditto.
909 (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
910 * macroexp.c (get_character_constant): Ditto.
911 (get_string_literal): Ditto.
912 * mep-tdep.c (mep_pseudo_cr_size): Ditto.
913 (mep_pseudo_cr_index, mep_register_type): Ditto.
914 (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
915 (mep_get_insn, mep_analyze_prologue): Ditto.
916 * objfiles.c (qsort_cmp): Ditto.
917 * prologue-value.c (pv_is_identical): Ditto.
918 * record.c (record_get_loc): Ditto.
919 * value.c (value_static_field): Ditto.
920 * xtensa-tdep.c (call0_track_op): Ditto.
921
922 2010-08-18 Tom Tromey <tromey@redhat.com>
923
924 PR symtab/11919:
925 * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
926 * parse.c (parse_field_expression): Use RETURN_MASK_ERROR. Move
927 name-copying lower. Document exception behavior.
928 * completer.c (expression_completer): Catch exceptions from
929 parse_field_expression.
930
931 2010-08-18 Pedro Alves <pedro@codesourcery.com>
932
933 PR corefile/8210
934
935 * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
936 workaround on core files.
937 (try_thread_db_load_1): Don't try enabling thread event reporting
938 on core files.
939 (thread_db_load): Allow thread_db on core files.
940 (attach_thread): Don't check thread signals on core files, nor try
941 really attaching to the thread, nor enabling thread event event
942 reporting.
943 (thread_db_detach): Don't try disabing thread event reporting or
944 removing thread event breakpoints when debugging a core file.
945 (find_new_threads_callback): Don't try enabling thread event
946 reporting on core files.
947 (thread_db_find_new_threads_2): Don't look for a stopped lwp when
948 debugging a core file.
949 (thread_db_find_new_threads): Don't update thread
950 cores (processors) when debugging a core (dump).
951
952 2010-08-18 Pedro Alves <pedro@codesourcery.com>
953
954 PR corefile/8210
955
956 * corelow.c (add_to_thread_list): Don't use
957 gdbarch_core_reg_section_encodes_pid. Use bfd_core_file_pid.
958 (get_core_register_section): Don't use
959 gdbarch_core_reg_section_encodes_pid.
960
961 * gdbarch.sh (core_reg_section_encodes_pid): Delete.
962 * gdbarch.h, gdbarch.c: Regenerate.
963 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
964 gdbarch_core_reg_section_encodes_pid.
965 * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
966 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
967 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
968
969 2010-08-18 Yao Qi <yao@codesourcery.com>
970
971 * MAINTAINERS : Add myself under Write After Approval.
972
973 2010-08-17 Tom Tromey <tromey@redhat.com>
974
975 * NEWS: Mention template parameter support.
976
977 2010-08-17 Pedro Alves <pedro@codesourcery.com>
978
979 PR breakpoints/11371
980
981 * breakpoint.c (decref_bp_location): Assert the reference count is
982 sane.
983
984 2010-08-17 Pedro Alves <pedro@codesourcery.com>
985
986 PR breakpoints/11371
987
988 * breakpoint.c (breakpoint_init_inferior): Decrement the
989 location's reference count instead of deleting right away.
990 (bpstat_free): Decrement the location's reference count. Make
991 static.
992 (bpstat_copy): Increment the location's reference count.
993 (bpstat_find_breakpoint): Adjust.
994 (bpstat_num): Adjust.
995 (print_it_typical): Adjust. Use the breakpoint pointer in the
996 bpstat instead of the location's owner.
997 (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
998 Adjust to record the location's owner in the bpstat.
999 (watchpoint_check): Use the breakpoint pointer in the bpstat
1000 instead of the location's owner.
1001 (bpstat_check_breakpoint_conditions): Don't handle
1002 bp_watchpoint_scope here. Use the breakpoint pointer in the
1003 bpstat instead of the location's owner.
1004 (bpstat_stop_status): Defer inferior function calls to after
1005 building the bpstat list. Handle bp_watchpoint_scope here. Use
1006 the breakpoint pointer in the bpstat instead of the location's
1007 owner.
1008 (bpstat_what): Use the breakpoint pointer in the bpstat instead of
1009 the location's owner.
1010 (free_bp_location): Don't walk bpstats clearing locations.
1011 (incref_bp_location): New.
1012 (decref_bp_location): New.
1013 (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
1014 instead of the location's owner.
1015 (update_global_location_list): Clear the location's owner, and
1016 decrement the location's reference count instead of deleting it
1017 right away.
1018 (breakpoint_retire_moribund): Decrement the location's reference
1019 count instead of deleting it right away.
1020 (bpstat_remove_bp_location): Delete.
1021 (bpstat_remove_breakpoint): New.
1022 (bpstat_remove_bp_location_callback): Delete.
1023 (bpstat_remove_breakpoint_callback): New.
1024 (delete_breakpoint): Iterate over all threads' stop_bpstat's
1025 clearing references to the breakpoint that is being deleted.
1026
1027 * breakpoint.h (struct bp_location) <refc>: New field.
1028 <owner>: Update comments.
1029 (bpstat_free): Delete declaration.
1030 (struct bpstats): Change the type of the breakpoint_at field to
1031 struct breakpoint point, from struct bp_location pointer. Add new
1032 field bp_location_at.
1033
1034 2010-08-16 Tom Tromey <tromey@redhat.com>
1035
1036 * NEWS: Fix typo.
1037
1038 2010-08-16 Tom Tromey <tromey@redhat.com>
1039
1040 * NEWS: Mention watch -location.
1041
1042 2010-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1043
1044 * breakpoint.c (update_watchpoint): Add source empty line. Prefer
1045 EXP_STRING_REPARSE to EXP_STRING.
1046 (watch_command_1): Set also EXP_STRING_REPARSE.
1047 (delete_breakpoint): Free also EXP_STRING_REPARSE.
1048 * breakpoint.h (struct breakpoint): New field exp_string_reparse.
1049 Update comment for exp_string.
1050
1051 2010-08-16 Tom Tromey <tromey@redhat.com>
1052
1053 * value.c (release_value): Clear 'next' pointer.
1054 * breakpoint.c (watch_command_1): Add 'just_location' argument.
1055 (watch_command_wrapper): Update.
1056 (watch_maybe_just_location): New function.
1057 (watch_command): Update.
1058 (rwatch_command_wrapper): Update.
1059 (rwatch_command): Update.
1060 (awatch_command_wrapper): Update.
1061 (awatch_command): Update.
1062 (check_for_argument): New function.
1063 (_initialize_breakpoint): Update help text.
1064
1065 2010-08-14 Ulrich Weigand <uweigand@de.ibm.com>
1066
1067 * arm-tdep.c (arm_push_dummy_call): Handle pointers to
1068 typedef'ed function types correctly.
1069
1070 2010-08-13 Tom Tromey <tromey@redhat.com>
1071
1072 * python/python-internal.h (gdbpy_get_hook_function): Don't
1073 declare.
1074
1075 2010-08-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1076
1077 * cli/cli-logging.c (logging_overwrite, logging_redirect): Make them
1078 static.
1079
1080 2010-08-13 Ken Werner <ken.werner@de.ibm.com>
1081
1082 * python/python.c (gdbpy_solib_name): Remove the const qualifier of
1083 the format strings to be compatible with Python 2.4.
1084
1085 2010-08-13 Vladimir Prus <vladimir@codesourcery.com>
1086
1087 Easier and more stubborn MI memory read commands.
1088
1089 * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
1090 and data-write-memory-bytes.
1091 * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
1092 (mi_cmd_data_write_memory_bytes): New.
1093 * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
1094 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
1095 New.
1096 (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
1097 * target.c (target_read_until_error): Remove.
1098 (read_whatever_is_readable, free_memory_read_result_vector)
1099 (read_memory_robust): New.
1100 * target.h (target_read_until_error): Remove.
1101 (struct memory_read_result, free_memory_read_result_vector)
1102 (read_memory_robust): New.
1103
1104 2010-08-13 Hui Zhu <teawater@gmail.com>
1105
1106 * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
1107 (read_comp_unit): Initialize back_to.
1108
1109 2010-08-12 Daniel Jacobowitz <dan@codesourcery.com>
1110 Pedro Alves <pedro@codesourcery.com>
1111
1112 * dwarf2read.c: Include "c-lang.h" and "valprint.h".
1113 (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
1114 (struct partial_die_info) <has_template_arguments>: New field.
1115 <num_attrs>: Change type to unsigned char.
1116 <building_fullname>: New field.
1117 (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only
1118 allocate a CU if we don't have one already. Add a cleanup for the
1119 CU.
1120 (partial_die_full_name): Handle template arguments not in
1121 DW_AT_name.
1122 (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
1123 (load_full_comp_unit): Only allocate a CU if we don't have one
1124 already.
1125 (do_ui_file_peek_last): New.
1126 (dwarf2_compute_name): Handle template parameters not in
1127 DW_AT_name.
1128 (read_comp_unit): Read and free abbrevs if not read yet.
1129 (load_partial_dies): Handle template arguments not in DW_AT_name.
1130 (find_partial_die): If we have a CU, but no a partial dies yet,
1131 also read in the CU.
1132 (dwarf2_const_value_attr): New, abstracted out from
1133 dwarf2_const_value.
1134 (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
1135 dwarf2_const_value_attr.
1136 (determine_prefix): Detect and break loops created by RCVT's debug
1137 info.
1138 (maybe_queue_comp_unit): Bail out early if reading partial
1139 symbols.
1140 (follow_die_offset): Load full CU if we have no dies.
1141 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
1142 * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
1143
1144 2010-08-11 Tom Tromey <tromey@redhat.com>
1145 Phil Muldoon <pmuldoon@redhat.com>
1146
1147 * python/python.c (gdbpy_run_events): New function.
1148 (gdbpy_post_event): Likewise.
1149 (gdbpy_initialize_events): Likewise.
1150 (_initialize_python): Call gdbpy_initialize_events.
1151
1152 2010-08-11 Ken Werner <ken.werner@de.ibm.com>
1153
1154 * gdb/valarith.c (vector_binop): New function.
1155 (scalar_binop): Likewise.
1156 (value_binop): Call scalar_binop or vector_binop depending on the types.
1157 * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
1158 (evaluate_subexp_with_coercion): Add vector check to not convert vectors
1159 to pointers.
1160 * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
1161
1162 2010-08-11 Brad Roberts <braddr@puremagic.com>
1163
1164 * d-lang.c (extract_identifiers): Handle multiple digits.
1165
1166 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1167
1168 Code cleanup.
1169 * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
1170 Rename to dummy_frame_unwind.
1171 (dummy_frame_unwind): Remove.
1172 * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
1173 * frame-unwind.c (frame_unwind_init): Use address of
1174 dummy_frame_unwind and inline_frame_unwind.
1175 * frame.c (create_sentinel_frame): Use address of
1176 sentinel_frame_unwind.
1177 * inline-frame.c (inline_frame_unwinder): Rename to
1178 inline_frame_unwind.
1179 (inline_frame_unwind): Remove.
1180 * inline-frame.h (inline_frame_unwind): Reference directly the struct.
1181 * sentinel-frame.c (sentinel_frame_unwinder): Rename to
1182 sentinel_frame_unwind.
1183 (sentinel_frame_unwind): Remove.
1184 * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
1185 struct.
1186
1187 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1188
1189 Code cleanup.
1190 * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
1191 and returned value. New comment from frame-unwind.h.
1192 * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
1193 Extend the comment.
1194 * frame.c (get_frame_id, frame_unwind_register_value)
1195 (create_new_frame, get_prev_frame_1, frame_unwinder_is)
1196 (get_frame_type, frame_unwind_arch): Do not use the return value of
1197 frame_unwind_find_by_frame.
1198
1199 2010-08-11 Phil Muldoon <pmuldoon@redhat.com>
1200 Thiago Jung Bauermann <bauerman@br.ibm.com>
1201 Tom Tromey <tromey@redhat.com>
1202
1203 * python/python.c (gdbpy_solib_address): New function.
1204 (gdbpy_decode_line): Likewise.
1205
1206 2010-08-10 Tom Tromey <tromey@redhat.com>
1207
1208 Revert gdb-add-index addition:
1209 * Makefile.in (install-only): Don't install gdb-add-index.
1210 * gdb-add-index.sh: Remove.
1211
1212 2010-08-09 Kevin Buettner <kevinb@redhat.com>
1213
1214 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
1215 `target_has_execution' check with `to_has_memory' check.
1216 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
1217 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
1218 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
1219
1220 2010-08-09 Kevin Buettner <kevinb@redhat.com>
1221
1222 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
1223 (resume_siggnal, resume_step): Move these static globals...
1224 (struct sim_inferior_data): ...into this new struct.
1225 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
1226 New static globals.
1227 (gdb_callback, callbacks_initialized): Move these globals to
1228 a point earlier in the file.
1229 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
1230 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
1231 (gdbsim_close_inferior, gdbsim_resume_inferior)
1232 (gdbsim_stop_inferior): New functions.
1233 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
1234 New constants.
1235 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
1236 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
1237 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
1238 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
1239 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
1240 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
1241 new local variable `sim_data' in each of these functions. Use
1242 `sim_data' to reference former globals `program_loaded',
1243 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
1244 `resume_step'.
1245 (gdbsim_open): Remove local variable `argv'. Put results of call
1246 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
1247 make a cleanup for it. Free it though when a sim instance cannot
1248 be obtained.
1249 (gdbsim_close): Free sim_argv and null it out as appropriate.
1250 Close sim instances in all inferiors.
1251 (gdbsim_cntrl_c): Stop all inferiors.
1252 (gdbsim_wait):
1253 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
1254
1255 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1256
1257 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
1258 function after symbol construction is complete.
1259 Do the same for template symbol addition to template_symbols list.
1260
1261 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1262
1263 * symtab.c (symbol_get_demangled_name): Remove assertion and
1264 return NULL when language_specific.cplus_specific is not initialized.
1265 * stabsread.c (define_symbol): Set the name before calling
1266 cp_scan_for_anonymous_namespaces.
1267
1268 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1269
1270 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
1271 SYMBOL_SET_LANGUAGE.
1272 (symbol_init_language_specific): Renamed to symbol_set_language.
1273 * symtab.c (symbol_init_language_specific): Removed redundant check
1274 for language_cplus.
1275 Renamed to symbol_set_language.
1276 * stabsread.c (define_symbol): Updated.
1277 (read_enum_type): Updated
1278 * psymtab.c (add_psymbol_to_bcache): Updated.
1279 * minsyms.c (install_minimal_symbols): Updated.
1280 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
1281 SYMBOL_LANGUAGE to set the language.
1282 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
1283 * mdebugread.c (new_symbol): Ditto.
1284 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
1285 * dwarf2read.c (new_symbol_full): Ditto.
1286 * jv-lang.c (add_class_symbol): Ditto.
1287
1288 2010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1289
1290 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
1291 (make_cleanup_restore_page_info)
1292 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
1293 * gdbcmd.h (execute_command_to_string): New declaration.
1294 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
1295 (make_cleanup_restore_ui_file): Move to utils.c
1296 (execute_gdb_command) <to_string>: Move ...
1297 * top.c (execute_command_to_string): ... here. Call
1298 set_batch_flag_and_make_cleanup_restore_page_info.
1299 * utils.c (make_cleanup_restore_integer): New source file blank line.
1300 (make_cleanup_restore_uinteger): New.
1301 (struct restore_ui_file_closure, do_restore_ui_file)
1302 (make_cleanup_restore_ui_file): Move here from python/python.c.
1303 (init_page_info) <batch_flag>
1304 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
1305 (set_batch_flag_and_make_cleanup_restore_page_info): New.
1306
1307 2010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
1308
1309 * thread.c (add_thread_silent): Use null_ptid instead of
1310 minus_one_ptid while getting rid of stale inferior_ptid.
1311
1312 2010-08-06 Corinna Vinschen <vinschen@redhat.com>
1313
1314 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
1315 Throughout, call read_encoded_value with ptr_size rather than addr_size.
1316 (decode_frame_entry_1): Remove redundant setting of
1317 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
1318 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
1319 on examined frame section. Add comment to explain why.
1320 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
1321 comment to explain usage.
1322 * gdbarch.c: Regenerate.
1323 * gdbarch.h: Regenerate.
1324
1325 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
1326
1327 2010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1328
1329 Code cleanup.
1330 * varobj.c (varobj_create): Move variables fi, old_fi and block to
1331 a more inner block.
1332
1333 2010-08-05 Pedro Alves <pedro@codesourcery.com>
1334
1335 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
1336 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
1337 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
1338 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
1339 linux-tdep.o to gdb_target_obs.
1340
1341 2010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
1342
1343 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
1344 argument.
1345
1346 2010-08-05 Hui Zhu <teawater@gmail.com>
1347
1348 * mips-linux-tdep.c(regset.h): New include.
1349 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
1350 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
1351 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
1352 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
1353 mips_linux_regset_from_core_section): New functions.
1354 (fetch_core_registers, regset_core_fns): Deleted.
1355 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
1356 Deleted regset_core_fns.
1357 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
1358 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
1359 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
1360 and fpregset64.
1361
1362 2010-08-04 Pedro Alves <pedro@codesourcery.com>
1363
1364 * s390-tdep.c: Include linux-tdep.h.
1365 (s390_gdbarch_init): Call linux_init_abi.
1366
1367 2010-08-04 Pedro Alves <pedro@codesourcery.com>
1368
1369 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
1370 instead of printing "Thread" here.
1371 * linux-tdep.c: Include inferior.h.
1372 (linux_core_pid_to_str): New.
1373 (linux_init_abi): New.
1374 * linux-tdep.h (linux_init_abi): Declare.
1375 * alpha-linux-tdep.c: Include linux-tdep.h.
1376 (alpha_linux_init_abi): Call linux_init_abi.
1377 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
1378 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
1379 * frv-linux-tdep.c: Include linux-tdep.h
1380 (frv_linux_init_abi): Call linux_init_abi.
1381 * hppa-linux-tdep.c: Include linux-tdep.h
1382 (hppa_linux_init_abi): Call linux_init_abi.
1383 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
1384 * ia64-linux-tdep.c: Include linux-tdep.h.
1385 (ia64_linux_init_abi): Call linux_init_abi.
1386 * m32r-linux-tdep.c: Include linux-tdep.h.
1387 (m32r_linux_init_abi): Call linux_init_abi.
1388 * m68klinux-tdep.c: Include linux-tdep.h.
1389 (m68k_linux_init_abi): Call linux_init_abi.
1390 * microblaze-linux-tdep.c: Include linux-tdep.h.
1391 (microblaze_linux_init_abi): Call linux_init_abi.
1392 * mips-linux-tdep.c: Include linux-tdep.h.
1393 (mips_linux_init_abi): Call linux_init_abi.
1394 * mn10300-linux-tdep.c: Include linux-tdep.h.
1395 (am33_linux_init_osabi): Call linux_init_abi. Rename the
1396 'gdbinfo' parameter to 'info'.
1397 * ppc-linux-tdep.c: Include linux-tdep.h.
1398 (ppc_linux_init_abi): Call linux_init_abi.
1399 * sh-linux-tdep.c: Include linux-tdep.h.
1400 (sh_linux_init_abi): Call linux_init_abi.
1401 * sparc-linux-tdep.c: Include linux-tdep.h.
1402 (sparc32_linux_init_abi): Call linux_init_abi.
1403 * sparc64-linux-tdep.c: Include linux-tdep.h.
1404 (sparc64_linux_init_abi): Call linux_init_abi.
1405 * xtensa-linux-tdep.c: Include linux-tdep.h.
1406 (xtensa_linux_init_abi): Call linux_init_abi.
1407 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
1408 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
1409 callback.
1410
1411 2010-08-03 Doug Evans <dje@google.com>
1412
1413 * breakpoint.c (bpdisp_text): Constify bpdisps.
1414 * solib-svr4.c (solib_break_names): Constify.
1415 (bkpt_names, main_name_list): Constify.
1416 (match_main): Constify soname arg.
1417 (bfd_lookup_symbol): Remove unnecessary forward decl.
1418 Constify symname arg.
1419 (enable_break): Constify bkpt_namep.
1420 * symtab.c (search_symbols): Constify types, types2, types3, types4.
1421 (symtab_symbol_info): Constify classnames.
1422
1423 2010-08-03 Phil Muldoon <pmuldoon@redhat.com>
1424
1425 * NEWS: Document Python value inferior function calls.
1426
1427 2010-08-02 Doug Evans <dje@google.com>
1428
1429 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
1430
1431 2010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
1432
1433 * linux-thread-db.c (libthread_db_debug): New variable.
1434 (thread_db_find_new_threads_silently): Control verbosity with it.
1435 (try_thread_db_load_1, try_thread_db_load): Likewise.
1436 (find_new_threads_once): Likewise.
1437 (_initialize_thread_db): Set/show it.
1438
1439 2010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1440
1441 * common/signals.c (signals): Move the content to signals.def.
1442 Include it. Remove the INDENT comments.
1443
1444 2010-07-30 Tom Tromey <tromey@redhat.com>
1445
1446 * Makefile.in (install-only): Install gdb-add-index.
1447 * gdb-add-index.sh: New file.
1448
1449 2010-07-31 Renquan Cheng <crq@gcc.gnu.org>
1450
1451 * MAINTAINERS: Add myself for write after approval privileges.
1452
1453 2010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1454
1455 * symfile.c (addr_section_name): New function.
1456 (addrs_section_compar): Use it.
1457 (addr_info_make_relative): Use it. Move variable sect_name into a more
1458 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
1459
1460 2010-07-30 Tom Tromey <tromey@redhat.com>
1461
1462 * configure: Rebuild.
1463 * configure.ac: Add missing case for Python 2.7.
1464
1465 2010-07-29 DJ Delorie <dj@redhat.com>
1466
1467 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
1468 conditions.
1469
1470 2010-07-29 Pedro Alves <pedro@codesourcery.com>
1471
1472 * PROBLEMS: Remove mention of all problems.
1473
1474 2010-07-28 Pedro Alves <pedro@codesourcery.com>
1475
1476 PR build/11848
1477 * configure.ac: Check for wresize.
1478 * configure, config.in: Regenerate.
1479 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
1480 with HAVE_WRESIZE.
1481
1482 2010-07-28 Tom Tromey <tromey@redhat.com>
1483
1484 PR python/11060:
1485 * python/py-type.c (typy_legacy_template_argument): New function,
1486 extracted from typy_template_argument.
1487 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
1488 value when needed.
1489
1490 2010-07-28 Oleg Nesterov <oleg@redhat.com>
1491
1492 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
1493
1494 2010-07-27 Tom Tromey <tromey@redhat.com>
1495
1496 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
1497
1498 2010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1499
1500 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
1501 handling DW_AT_object_pointer, and workaround GCC PR 43053.
1502
1503 2010-07-28 Tom Tromey <tromey@redhat.com>
1504
1505 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
1506
1507 2010-07-28 Joel Brobecker <brobecker@adacore.com>
1508
1509 * remote.c (remote_download_tracepoint): Add missing gettext markup.
1510 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
1511
1512 2010-07-28 Joel Brobecker <brobecker@adacore.com>
1513
1514 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
1515 down, just before the block that parse the breakpoint addr_string.
1516
1517 2010-07-28 Tom Tromey <tromey@redhat.com>
1518
1519 PR c++/9946:
1520 * symfile.c (reread_symbols): Clear template_symbols.
1521 * symtab.h (struct symbol) <is_cplus_template_function>: New
1522 field.
1523 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
1524 (struct template_symbol): New.
1525 * symtab.c (lookup_symbol_aux_local): Use
1526 cp_lookup_symbol_imports_or_template.
1527 * objfiles.h (struct objfile) <template_symbols>: New field.
1528 * objfiles.c (relocate_one_symbol): New function.
1529 (objfile_relocate1): Use it. Relocate isolated symbols.
1530 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
1531 template_arguments>: New fields.
1532 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
1533 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
1534 (TYPE_TEMPLATE_ARGUMENT): Likewise.
1535 (lookup_typename): Update.
1536 * gdbtypes.c (lookup_typename): Constify "block" argument.
1537 * dwarf2read.c: Include vec.h.
1538 (symbolp): New typedef.
1539 (read_func_scope): Read template arguments. Allocate a
1540 template_symbol when needed.
1541 (read_structure_type): Read template arguments.
1542 (new_symbol_full): New function, from new_symbol. Handle
1543 DW_TAG_template_type_param and DW_TAG_template_value_param.
1544 (new_symbol): Rewrite as wrapper.
1545 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
1546 * cp-namespace.c: Include language.h.
1547 (search_symbol_list): New function.
1548 (cp_lookup_symbol_imports_or_template): Likewise.
1549
1550 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
1551
1552 * tui/tui-win.c (make_visible_with_new_height): Resize and move
1553 the command window to the new size and position.
1554
1555 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
1556
1557 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
1558 coordinates.
1559
1560 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
1561
1562 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
1563 after a detecting a resize.
1564 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
1565 call.
1566
1567 2010-07-28 Pedro Alves <pedro@codesourcery.com>
1568
1569 * configure.ac: Check for resize_term.
1570 * configure, config.in: Regenerate.
1571
1572 2010-07-27 Joel Brobecker <brobecker@adacore.com>
1573
1574 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
1575
1576 2010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
1577
1578 * dwarf2read.c (read_string): Rename to ...
1579 (read_direct_string): ... this.
1580 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
1581 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
1582
1583 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1584
1585 * linux-nat.c (linux_nat_lp_status_is_event): New function.
1586 (count_events_callback, select_event_lwp_callback)
1587 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
1588
1589 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1590
1591 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
1592 (_initialize_ia64_linux_nat): Install it.
1593 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
1594 (linux_nat_set_status_is_event): New.
1595 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
1596 cancel_breakpoints_callback, linux_nat_filter_event)
1597 (linux_nat_wait_1): Use linux_nat_status_is_event.
1598 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
1599
1600 2010-07-27 Tom Tromey <tromey@redhat.com>
1601
1602 * NEWS: Mention labels, .gdb_index.
1603
1604 2010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
1605
1606 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
1607 "start,+length" form of arguments.
1608 * NEWS: Add "Changed commands" (disassemble) section for "Changes
1609 since GDB 7.1"; and merge two separated paragraphs of disassemble
1610 description in "Changes in GDB 7.0".
1611
1612 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1613
1614 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
1615 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
1616 (fputs_maybe_filtered): Do not do filtering also on
1617 ! INPUT_FROM_TERMINAL_P.
1618
1619 2010-07-27 Joel Brobecker <brobecker@adacore.com>
1620
1621 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
1622 in warning message.
1623
1624 2010-07-27 Phil Muldoon <pmuldoon@redhat.com>
1625
1626 * python/py-value.c (valpy_call): New Function.
1627
1628 2010-07-27 Ken Werner <ken.werner@de.ibm.com>
1629
1630 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
1631 types_list_elements variables.
1632
1633 2010-07-26 Tom Tromey <tromey@redhat.com>
1634
1635 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
1636 TLS with DW_OP_const4u or DW_OP_const8u.
1637
1638 2010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
1639
1640 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
1641 VSX registers contents.
1642
1643 2010-07-26 Jerome Guitton <guitton@adacore.com>
1644
1645 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
1646 its adress is null. Add comment to explain why.
1647 (new_symbol): Ditto.
1648
1649 2010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1650
1651 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
1652 the host signal first.
1653
1654 2010-07-23 Tom Tromey <tromey@redhat.com>
1655
1656 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
1657 type_comp_units>: New fields.
1658 (dw2_get_cu): New function.
1659 (create_cus_from_index): Remove unused argument.
1660 (create_signatured_type_hash_from_index): New function.
1661 (create_addrmap_from_index): Update.
1662 (dwarf2_read_index): Handle version 2.
1663 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
1664 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
1665 (dw2_print_stats, dw2_expand_all_symtabs)
1666 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
1667 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
1668 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
1669 (allocate_signatured_type_hash_table): New function.
1670 (add_signatured_type_cu_to_list): Likewise.
1671 (create_debug_types_hash_table): Use them. Set type_comp_units.
1672 (read_signatured_type): Ensure section data is available.
1673 (add_address_entry): Don't record empty ranges.
1674 (struct signatured_type_index_data): New.
1675 (write_one_signatured_type): New function.
1676 (write_psymtabs_to_index): Write type CUs.
1677 (save_gdb_index_command): Update comment.
1678 (process_type_comp_unit): Move inititalization of
1679 from_debug_types...
1680 (create_debug_types_hash_table): ... here.
1681
1682 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1683
1684 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
1685 cleanup and generating of gdb script to it.
1686 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
1687 and terminal size. Convert $tmpfile to a series of -ex-es.
1688
1689 2010-07-23 Keith Seitz <keiths@redhat.com>
1690
1691 * symtab.c (basic_lookup_transparent_type): Call pre-expand
1692 hook for STATIC_BLOCK types, too.
1693
1694 2010-07-23 Keith Seitz <keiths@redhat.com>
1695
1696 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
1697 and vector definition.
1698
1699 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1700
1701 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
1702
1703 2010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1704
1705 * dwarf2read.c: Include completer.h.
1706 (save_gdb_index_command): Use matching usage command name.
1707 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
1708 Set filename_completer for it.
1709
1710 2010-07-22 Tom Tromey <tromey@redhat.com>
1711
1712 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
1713 type signature's per-CU data.
1714
1715 2010-07-22 Pedro Alves <pedro@codesourcery.com>
1716
1717 * NEWS: Mention target reported shared libraries support by
1718 default.
1719
1720 2010-07-21 Pedro Alves <pedro@codesourcery.com>
1721
1722 PR symtab/11827
1723
1724 Revert:
1725 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
1726 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
1727 and DW_TAG_volatile_type.
1728 (new_symbol): Likewise.
1729
1730 2010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
1731
1732 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
1733 function symbols before overload resolution.
1734
1735 2010-07-21 Pedro Alves <pedro@codesourcery.com>
1736
1737 * breakpoint.c (bptype_string): New, abstracted out from
1738 print_one_breakpoint_location.
1739 (print_one_breakpoint_location): Adjust.
1740 (breakpoint_1): Adjust the type column width dynamically.
1741
1742 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1743
1744 * symfile.c (find_separate_debug_file_by_debuglink): Remove
1745 a gdb_assert call, new comment.
1746
1747 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1748
1749 * linux-nat.c (linux_handle_extended_wait): Handle case when
1750 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
1751
1752 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1753
1754 Code cleanup.
1755 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
1756 linux_nat_wait_1. Use always LP->STATUS afterwards.
1757
1758 2010-07-20 Hui Zhu <teawater@gmail.com>
1759
1760 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
1761 (inf_ptrace_attach): Ditto.
1762
1763 2010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1764
1765 Make core files the process_stratum.
1766 * corefile.c (core_target): New variable.
1767 (core_file_command): Remove variable t, use core_target.
1768 * corelow.c (core_ops): Make it static.
1769 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
1770 * defs.h (make_cleanup_unpush_target): New prototype.
1771 * gdbarch.h: Regenerate.
1772 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
1773 * gdbcore.h (core_target): New declaration.
1774 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
1775 variables ops_already_pushed and back_to. Use push_target,
1776 make_cleanup_unpush_target and discard_cleanups calls.
1777 * record.c (record_open): Replace core_stratum by a core_bfd check.
1778 * target.c (target_is_pushed): New function.
1779 (find_core_target): Remove.
1780 * target.h (enum strata) <core_stratum>: Remove.
1781 (target_is_pushed): New declaration.
1782 (find_core_target): Remove declaration.
1783 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
1784 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
1785
1786 2010-07-19 Hui Zhu <teawater@gmail.com>
1787
1788 * breakpoint.c (single_step_breakpoints_inserted): New
1789 function.
1790 * breakpoint.h (single_step_breakpoints_inserted): Extern.
1791 * infrun.c (maybe_software_singlestep): Add check code.
1792 * record.c (record_resume): Add code for software single step.
1793 (record_wait): Ditto.
1794
1795 2010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1796
1797 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
1798 a more inner block. Remove its unused declaration initializer.
1799
1800 2010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
1801
1802 * NEWS: Mention support for the new ptrace interface and hardware
1803 accelerated watchpoint conditions on powerpc-linux.
1804
1805 2010-07-16 Ozkan Sezer <sezeroz@gmail.com>
1806
1807 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
1808 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
1809 and host_address_to_string() and %s for pointers.
1810 (debug_to_remove_breakpoint): Likewise.
1811 (debug_to_region_ok_for_hw_watchpoint): Likewise.
1812 (debug_to_can_accel_watchpoint_condition): Likewise.
1813 (debug_to_stopped_data_address): Likewise.
1814 (debug_to_watchpoint_addr_within_range): Likewise.
1815 (debug_to_insert_hw_breakpoint): Likewise.
1816 (debug_to_remove_hw_breakpoint): Likewise.
1817 (debug_to_insert_watchpoint): Likewise.
1818 (debug_to_remove_watchpoint): Likewise.
1819
1820 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
1821
1822 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
1823 argument.
1824 (cplus_specific): New struct.
1825 * symtab.c (symbol_set_demangled_name): Updated.
1826 Use cplus_specific for cplus symbols.
1827 (symbol_get_demangled_name): Retrive the name from the cplus_specific
1828 struct for cplus symbols.
1829 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
1830 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
1831 * symtab.c (symbol_init_cplus_specific): New function.
1832
1833 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
1834
1835 * symtab.h (symbol_set_demangled_name): New function.
1836 (symbol_get_demangled_name): New function.
1837 * symtab.c (symbol_set_demangled_name): New function.
1838 (symbol_get_demangled_name): New function.
1839 (symbol_init_language_specific): Use demangled_name setter and getter.
1840 (symbol_set_names): Ditto.
1841 (symbol_natural_name): Ditto.
1842 (symbol_demangled_name): Ditto.
1843 * dwarf2read.c (new_symbol): Ditto.
1844
1845 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
1846
1847 * symtab.h: Renamed cplus_specific to mangled_lang.
1848 * symtab.c (symbol_init_language_specific): Updated.
1849 (symbol_set_names): Updated.
1850 (symbol_natural_name): Updated.
1851 (symbol_demangled_name): Updated.
1852 * ada-lang.c (ada_decode_symbol): Updated.
1853 * dwarf2read.c (new_symbol): Updated.
1854
1855 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
1856
1857 * valops.c (value_assign): Do not call to value_coerce_to_target.
1858 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
1859
1860 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
1861
1862 * MAINTAINERS: Add myself for write after approval privileges.
1863
1864 2010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
1865
1866 * c-valprint.c (c_val_print): Add embedded_offset to address in
1867 call to val_print_array_elements.
1868
1869 2010-07-13 Tom Tromey <tromey@redhat.com>
1870
1871 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
1872
1873 2010-07-13 Tom Tromey <tromey@redhat.com>
1874
1875 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
1876 objfile.
1877
1878 2010-07-13 Tom Tromey <tromey@redhat.com>
1879
1880 * symfile.c (set_initial_language): Update.
1881 (deduce_language_from_filename): Argument type now const.
1882 * symtab.h (find_main_filename): Update.
1883 (deduce_language_from_filename): Update.
1884 * symtab.c (find_main_filename): Make result const.
1885 * dwarf2read.c (dw2_find_symbol_file): Change return type.
1886 * psymtab.c (find_symbol_file_from_partial): Change return type.
1887 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
1888 Make result const.
1889
1890 2010-07-13 Tom Tromey <tromey@redhat.com>
1891
1892 * breakpoint.c (save_cmdlist): No longer static.
1893 * gdbcmd.h (save_cmdlist): Declare.
1894 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
1895 OBJF_READNOW on objfile if readnow_symbol_files.
1896 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
1897 (elf_sym_fns_gdb_index): New global.
1898 * dwarf2read.c: Include exceptions.h.
1899 (offset_type): New.
1900 (struct mapped_index): New.
1901 (dwarf2_per_cu_data_ptr): New typedef.
1902 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
1903 New fields.
1904 (GDB_INDEX_SECTION): New define.
1905 (struct dwarf2_per_cu_quick_data): New.
1906 (struct dwarf2_per_cu_data) <objfile>: New field.
1907 <psymtab>: Removed.
1908 <v>: New field.
1909 (byte_swap): New function.
1910 (MAYBE_SWAP): New macro.
1911 (INDEX_SUFFIX): New macro.
1912 (dw2_do_instantiate_symtab): New function.
1913 (dw2_instantiate_symtab): Likewise.
1914 (create_cus_from_index): Likewise.
1915 (create_addrmap_from_index): Likewise.
1916 (mapped_index_string_hash): Likewise.
1917 (find_slot_in_mapped_hash): Likewise.
1918 (dwarf2_read_index): Likewise.
1919 (dw2_setup): Likewise.
1920 (dw2_require_line_header): Likewise.
1921 (dw2_require_full_path): Likewise.
1922 (dw2_find_last_source_symtab): Likewise.
1923 (dw2_forget_cached_source_info): Likewise.
1924 (dw2_lookup_symtab): Likewise.
1925 (dw2_lookup_symbol): Likewise.
1926 (dw2_do_expand_symtabs_matching): Likewise.
1927 (dw2_pre_expand_symtabs_matching): Likewise.
1928 (dw2_print_stats): Likewise.
1929 (dw2_dump): Likewise.
1930 (dw2_relocate): Likewise.
1931 (dw2_expand_symtabs_for_function): Likewise.
1932 (dw2_expand_all_symtabs): Likewise.
1933 (dw2_expand_symtabs_with_filename): Likewise.
1934 (dw2_find_symbol_file): Likewise.
1935 (dw2_map_ada_symtabs): Likewise.
1936 (dw2_expand_symtabs_matching): Likewise.
1937 (dw2_find_pc_sect_symtab): Likewise.
1938 (dw2_map_symbol_names): Likewise.
1939 (dw2_map_symbol_filenames): Likewise.
1940 (dw2_has_symbols): Likewise.
1941 (dwarf2_gdb_index_functions): New global.
1942 (dwarf2_initialize_objfile): New function.
1943 (process_psymtab_comp_unit): Update.
1944 (add_partial_subprogram): Likewise.
1945 (dwarf2_psymtab_to_symtab): Likewise.
1946 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
1947 (process_full_comp_unit): Update.
1948 (find_file_and_directory): New function.
1949 (read_file_scope): Use find_file_and_directory.
1950 (dwarf2_per_cu_objfile): Update.
1951 (dwarf2_per_cu_addr_size): Update.
1952 (dwarf2_per_cu_offset_size): Update.
1953 (dwarf2_free_objfile): Free the index, if needed.
1954 (dwarf2_per_objfile_free): Unmap the index, if needed.
1955 (struct strtab_entry): New.
1956 (hash_strtab_entry): New function.
1957 (eq_strtab_entry): Likewise.
1958 (create_strtab): Likewise.
1959 (add_string): Likewise.
1960 (struct symtab_index_entry): New.
1961 (struct mapped_symtab): New.
1962 (hash_symtab_entry): New function.
1963 (eq_symtab_entry): Likewise.
1964 (delete_symtab_entry): Likewise.
1965 (create_index_table): Likewise.
1966 (create_mapped_symtab): Likewise.
1967 (cleanup_mapped_symtab): Likewise.
1968 (find_slot): Likewise.
1969 (hash_expand): Likewise.
1970 (add_index_entry): Likewise.
1971 (add_indices_to_cpool): Likewise.
1972 (write_hash_table): Likewise.
1973 (add_address_entry): Likewise.
1974 (write_psymbols): Likewise.
1975 (write_obstack): Likewise.
1976 (unlink_if_set): Likewise.
1977 (write_psymtabs_to_index): Likewise.
1978 (save_gdb_index_command): Likewise.
1979 (_initialize_dwarf2_read): Install "save gdb-index"
1980 command.
1981 (create_all_comp_units): Initialize 'objfile' field of CU.
1982 (dwarf2_locate_sections): Check for .gdb_index.
1983 * psymtab.h (dwarf2_gdb_index_functions): Declare.
1984 * symfile.h (dwarf2_initialize_objfile): Declare.
1985
1986 2010-07-13 Tom Tromey <tromey@redhat.com>
1987
1988 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
1989 (basic_lookup_transparent_type): Likewise.
1990 * symfile.h (struct quick_symbol_functions)
1991 <pre_expand_symtabs_matching>: New field.
1992 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
1993 (psym_functions): Update.
1994
1995 2010-07-13 Tom Tromey <tromey@redhat.com>
1996
1997 PR breakpoints/8357:
1998 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
1999 * linespec.c (decode_line_1): Update comment. Call decode_label.
2000 (decode_label): New function.
2001 (symbol_found): Handle LOC_LABEL.
2002 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
2003 domain. Call add_symbol_to_list.
2004
2005 2010-07-13 Tom Tromey <tromey@redhat.com>
2006
2007 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
2008 * dwarf2loc.c (find_location_expression): Use
2009 dwarf2_per_cu_text_offset.
2010 (dwarf2_evaluate_loc_desc): Likewise.
2011 (dwarf2_loc_desc_needs_frame): Likewise.
2012 (compile_dwarf_to_ax): Likewise.
2013 (loclist_describe_location): Likewise.
2014 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
2015 (dwarf2_per_cu_objfile): Update comment.
2016
2017 2010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2018
2019 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
2020 * p-lang.c (pascal_printstr): Likewise.
2021
2022 2010-07-09 Tom Tromey <tromey@redhat.com>
2023
2024 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
2025 'hint' if it is NULL.
2026
2027 2010-07-09 Hui Zhu <teawater@gmail.com>
2028
2029 * source.c (print_source_lines_base): Add check for noprint.
2030
2031 2010-07-08 Joel Brobecker <brobecker@adacore.com>
2032
2033 * python/python-config.py: Resync with Python 2.7 version of this
2034 script.
2035
2036 2010-07-08 Joel Brobecker <brobecker@adacore.com>
2037
2038 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
2039
2040 2010-07-07 Joel Brobecker <brobecker@adacore.com>
2041
2042 * NEWS: Create a new section for the next release branch.
2043 Rename the section of the current branch, now that it has
2044 been cut.
2045
2046 2010-07-07 Joel Brobecker <brobecker@adacore.com>
2047
2048 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
2049 * version.in: Bump version to 7.2.50.20100707-cvs.
2050
2051 2010-07-07 Tom Tromey <tromey@redhat.com>
2052
2053 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
2054 LOC_COMPUTED symbol.
2055 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
2056 (dwarf2_loc_desc_needs_frame): Likewise.
2057 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
2058 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
2059 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
2060 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
2061 'offset' argument.
2062 (struct dwarf2_frame_cache) <text_offset>: New field.
2063 (dwarf2_frame_cache): Set new field.
2064 (dwarf2_frame_prev_register): Update.
2065 (dwarf2_frame_sniffer): Update.
2066 (dwarf2_frame_base_sniffer): Update.
2067 (dwarf2_frame_find_fde): Add 'out_offset' argument.
2068
2069 2010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
2070 Thiago Jung Bauermann <bauerman@br.ibm.com>
2071
2072 Support for hw accelerated condition watchpoints in booke powerpc.
2073
2074 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
2075 and move to eval.c. Change callers.
2076 (insert_bp_location): Pass watchpoint condition in
2077 target_insert_watchpoint.
2078 (remove_breakpoint_1) Pass watchpoint condition in
2079 target_remove_watchpoint.
2080 (watchpoint_locations_match): Call
2081 target_can_accel_watchpoint_condition.
2082 * eval.c: Include wrapper.h.
2083 (fetch_subexp_value): Moved from breakpoint.c.
2084 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
2085 Formatting fix.
2086 (can_use_watchpoint_cond_accel): New function.
2087 (calculate_dvc): Likewise.
2088 (num_memory_accesses): Likewise.
2089 (check_condition): Likewise.
2090 (ppc_linux_can_accel_watchpoint_condition): Likewise
2091 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
2092 check_condition and calculate_dvc.
2093 (ppc_linux_remove_watchpoint): Likewise.
2094 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
2095 ppc_linux_can_accel_watchpoint_condition
2096 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
2097 condition.
2098 (debug_to_remove_watchpoint): Likewise.
2099 (debug_to_can_accel_watchpoint_condition): New function.
2100 (update_current_target): Set to_can_accel_watchpoint_condition.
2101 (setup_target_debug): Set to_can_accel_watchpoint_condition.
2102 * target.h: Add opaque declaration for struct expression.
2103 (struct target_ops) <to_insert_watchpoint>,
2104 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
2105 <to_can_accel_watchpoint_condition>: New member.
2106 condition. Update all callers and implementations.
2107 (target_can_accel_watchpoint_condition): New macro.
2108 * value.c (free_value_chain): New function.
2109 * value.h (fetch_subexp_value): New prototype.
2110 (free_value_chain): Likewise.
2111
2112 2010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
2113
2114 * linux-nat.c (linux_nat_do_thread_registers): Use section size
2115 from gdbarch_core_regset_sections also for .reg if present.
2116
2117 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
2118 section size for .reg.
2119 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
2120 (ppc_linux_vmx_regset_sections): Likewise.
2121 (ppc_linux_fp_regset_sections): Likewise.
2122 (ppc64_linux_vsx_regset_sections): New variable.
2123 (ppc64_linux_vmx_regset_sections): Likewise.
2124 (ppc64_linux_fp_regset_sections): Likewise.
2125 (ppc_linux_init_abi): Install core_regset_section lists appropriate
2126 for current word size.
2127
2128 2010-07-06 Joel Brobecker <brobecker@adacore.com>
2129
2130 * server.c (myresume): Make static.
2131
2132 2010-07-06 Tom Tromey <tromey@redhat.com>
2133
2134 * configure, config.in: Rebuild.
2135 * configure.ac (HAVE_LIBPYTHON2_7): New define.
2136 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
2137
2138 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
2139
2140 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
2141 "clear".
2142
2143 2010-07-06 Ken Werner <ken.werner@de.ibm.com>
2144
2145 * gdbtypes.h (floatformats_ieee_half): Add declaration.
2146 * gdbtypes.c (floatformats_ieee_half): New variable.
2147 * doublest.c (floatformat_from_length): Set format to
2148 gdbarch_half_format if length matches.
2149 * gdbarch.sh (half_bit): New architecture method.
2150 (half_format): Likewise.
2151 * gdbarch.h: Regenerate.
2152 * gdbarch.c: Likewise.
2153
2154 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2155 Joel Brobecker <brobecker@adacore.com>
2156
2157 Fix re-run of PIE executable, PR shlibs/11776.
2158 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
2159 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
2160
2161 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2162 Joel Brobecker <brobecker@adacore.com>
2163
2164 * auxv.c (memory_xfer_auxv): Update attach comment.
2165 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
2166 svr4_relocate_main_executable.
2167 (svr4_solib_create_inferior_hook): Make the call to
2168 svr4_relocate_main_executable unconditional.
2169
2170 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2171 Joel Brobecker <brobecker@adacore.com>
2172
2173 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
2174
2175 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2176 Joel Brobecker <brobecker@adacore.com>
2177
2178 Fix attaching to PIEs prelinked on the disk after the process was
2179 started.
2180 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
2181 Verify it against bfd_get_arch_size. Try to match arbitrary
2182 displacement for the phdrs comparison.
2183
2184 2010-07-02 Tom Tromey <tromey@redhat.com>
2185
2186 PR exp/11780:
2187 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
2188 value as optimized-out.
2189
2190 2010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
2191 Thiago Jung Bauermann <bauerman@br.ibm.com>
2192
2193 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
2194 represent?" question in comment. Change comment to a proper sentence.
2195
2196 2010-07-02 Ken Werner <ken.werner@de.ibm.com>
2197
2198 * c-valprint.c (c_val_print): Fix printing of character vectors.
2199
2200 2010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2201
2202 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
2203 create_breakpoint prototype.
2204
2205 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2206
2207 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
2208 usefulness suggestion of multiple breakpoints at same location.
2209
2210 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2211
2212 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
2213
2214 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2215
2216 * dwarf2loc.c (locexpr_tracepoint_var_ref)
2217 (loclist_tracepoint_var_ref): Handle optimized out values.
2218
2219 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2220
2221 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
2222 unnecessary space in string.
2223 * filesystem.c (_initialize_filesystem): Ditto.
2224 * frame.c (_initialize_frame): Ditto.
2225 * infcmd.c (step_once): Ditto.
2226 * infrun.c (_initialize_infrun): Ditto.
2227 * linux-nat.c (linux_child_follow_fork): Ditto.
2228 * maint.c (maintenance_deprecate): Ditto.
2229 * memattr.c (_initialize_mem): Ditto.
2230 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2231 * monitor.c (monitor_open): Ditto.
2232 * procfs.c (procfs_xfer_memory): Ditto.
2233 * reverse.c (bookmarks_info): Ditto.
2234 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
2235 * stack.c (_initialize_stack): Ditto.
2236 * tracepoint.c (_initialize_tracepoint): Ditto.
2237 * xtensa-tdep.c (xtensa_supply_gregset,
2238 xtensa_regset_from_core_section): Ditto.
2239
2240 2010-07-01 Tom Tromey <tromey@redhat.com>
2241
2242 * value.h (struct lval_funcs) <check_any_valid>: Rename from
2243 check_all_valid.
2244 * value.c (value_entirely_optimized_out): Invert result. Update
2245 for new function name.
2246
2247 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2248
2249 Static tracepoints support.
2250
2251 * NEWS: Mention new support for static tracepoints.
2252 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
2253 qXfer:statictrace:read.
2254 (New features in the GDB remote stub, GDBserver): Mention static
2255 tracepoints support using an UST based backend.
2256 (New commands): Mention "info static-tracepoint-markers" and
2257 "strace".
2258 * breakpoint.c (is_marker_spec): New.
2259 (is_tracepoint): Handle static tracepoints.
2260 (validate_commands_for_breakpoint): Static tracepoints can't do
2261 while-stepping.
2262 (static_tracepoints_here): New.
2263 (bpstat_what): Handle static tracepoints.
2264 (print_one_breakpoint_location, allocate_bp_location, mention):
2265 Ditto.
2266 (create_breakpoint_sal): Ditto.
2267 (decode_static_tracepoint_spec): New.
2268 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
2269 `type_wanted'. Adjust. Handle static tracepoint marker
2270 locations.
2271 (break_command_1): Adjust.
2272 (update_static_tracepoint): New.
2273 (update_breakpoint_locations): Handle static tracepoints.
2274 (breakpoint_re_set_one): Handle static tracepoint marker
2275 locations.
2276 (disable_command, enable_command): Handle static tracepoints.
2277 (trace_command, ftrace_command): Adjust.
2278 (strace_command): New.
2279 (create_tracepoint_from_upload): Adjust.
2280 (save_breakpoints): Handle static tracepoints.
2281 (_initialize_breakpoint): Install the "strace" command.
2282 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
2283 (struct breakpoint): New fields static_trace_marker_id and
2284 static_trace_marker_id_idx.
2285 (breakpoints_here_p): Declare.
2286 (create_breakpoint): Adjust.
2287 (static_tracepoints_here): Declare.
2288 * remote.c (struct remote_state) <static_tracepoints>: New field.
2289 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
2290 (remote_static_tracepoint_marker_at): New.
2291 (remote_static_tracepoint_markers_by_strid): New.
2292 (remote_static_tracepoint_feature): New.
2293 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
2294 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
2295 (remote_supports_static_tracepoints): New.
2296 (remote_download_tracepoint): Download static tracepoints.
2297 (init_remote_ops): Install remote_static_tracepoint_marker_at and
2298 remote_static_tracepoint_markers_by_strid.
2299 (_initialize_remote): Install set|show remote static-tracepoints,
2300 and set|show remote read-sdata-object commands.
2301 * target.c (update_current_target): Inherit and default
2302 to_static_tracepoint_marker_at, and
2303 to_static_tracepoint_markers_by_strid.
2304 * target.h (static_tracepoint_marker): Forward declare.
2305 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
2306 (static_tracepoint_marker_p): New typedef.
2307 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
2308 (struct target_ops): New fields to_static_tracepoint_marker_at and
2309 to_static_tracepoint_markers_by_strid.
2310 (target_static_tracepoint_marker_at)
2311 (target_static_tracepoint_markers_by_strid): New.
2312 * tracepoint.c: Include source.h.
2313 (validate_actionline): Handle $_sdata.
2314 (struct collection_list): New field strace_data.
2315 (add_static_trace_data): New.
2316 (clear_collection_list): Clear strace_data.
2317 (stringify_collection_list): Account for a possible static trace
2318 data collection.
2319 (encode_actions_1): Encode an $_sdata collection.
2320 (parse_tracepoint_definition): Handle static tracepoints.
2321 (parse_static_tracepoint_marker_definition): New.
2322 (release_static_tracepoint_marker): New.
2323 (print_one_static_tracepoint_marker): New.
2324 (info_static_tracepoint_markers_command): New.
2325 (sdata_make_value): New.
2326 (_initialize_tracepoint): Create the $_sdata convenience variable.
2327 Add the "info static-tracepoint-markers" command.
2328 Mention $_sdata in the "collect" command's help output.
2329 * tracepoint.h (struct static_tracepoint_marker): New.
2330 (parse_static_tracepoint_marker_definition)
2331 (release_static_tracepoint_marker): Declare.
2332 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
2333 * python/py-breakpoint.c (bppy_new): Adjust.
2334
2335 2010-06-30 Joel Brobecker <brobecker@adacore.com>
2336
2337 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
2338 including Python.h.
2339
2340 2010-06-29 Doug Evans <dje@google.com>
2341
2342 PR gdb/11702
2343 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
2344 DW_AT_external is present.
2345
2346 PR gdb/11702
2347 * NEWS: Add entry.
2348 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
2349 create a symbol for the field and record the value.
2350 (new_symbol): Handle DW_TAG_member.
2351 * gdbtypes.c (field_is_static): Remove FIXME.
2352 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
2353 only ignore LOC_CONST symbols that are enums.
2354
2355 * dwarf2read.c: Remove trailing whitespace.
2356
2357 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
2358 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
2359 (struct main_type, field loc): Delete dwarf_block.
2360 (FIELD_DWARF_BLOCK): Delete.
2361 (SET_FIELD_DWARF_BLOCK): Delete.
2362 (TYPE_FIELD_DWARF_BLOCK): Delete.
2363 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
2364 Update.
2365
2366 2010-06-29 Hui Zhu <teawater@gmail.com>
2367
2368 * record.c (set_record_pic_cmdlist,
2369 show_record_pic_cmdlist): New variables.
2370 (set_record_pic_command,
2371 show_record_pic_command): New functions.
2372 (record_pic_function, record_pic_line, record_pic_enum,
2373 set_record_pic_type, record_pic_hide_nofunction,
2374 record_pic_hide_nosource, record_pic_hide_same): New variables.
2375 (record_pic_fputs): New function.
2376 (function_list, node_list, edge_list): New struct.
2377 (function_list, node_list, edge_list): New variables.
2378 (record_pic_cleanups, record_pic_node,
2379 record_pic_edge, cmd_record_pic): New functions.
2380 (_initialize_record): Add new commands for record pic.
2381
2382 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2383
2384 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
2385 ALLOCATE_CPLUS_STRUCT_TYPE.
2386
2387 2010-06-28 Phil Muldoon <pmuldoon@redhat.com>
2388 Tom Tromey <tromey@redhat.com>
2389 Thiago Jung Bauermann <bauerman@br.ibm.com>
2390
2391 * value.c (pack_unsigned_long): New function.
2392 (value_from_ulongest): New function.
2393 * value.h (value_from_ulongest): Declare.
2394 * python/python.c (_initialize_python): Call
2395 gdbpy_initialize_thread and gdbpy_initialize_inferior.
2396 * python/python-internal.h: Define thread_object.
2397 (gdbpy_inferiors, gdbpy_selected_thread)
2398 (frame_info_to_frame_object, create_thread_object)
2399 (find_thread_object, find_inferior_object)
2400 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
2401 (gdbpy_is_value_object, get_addr_from_python): Declare.
2402 * python/py-value.c (builtin_type_upylong): Define.
2403 (convert_value_from_python): Add logic for ulongest.
2404 (gdbpy_is_value_object): New function.
2405 * python/py-utils.c (get_addr_from_python): New function.
2406 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
2407 (gdbpy_selected_frame): Use PyObject over frame_info.
2408 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
2409 py-infthread.
2410 (SUBDIR_PYTHON_SRCS): Likewise.
2411 (py-inferior.o): New Rule.
2412 (py-infthread.o): New Rule.
2413 * python/py-inferior.c: New File.
2414 * python/py-infthread.c: New File.
2415
2416 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2417
2418 * c-typeprint.c (c_type_print_base): For no fields check include also
2419 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
2420 * dwarf2read.c (struct typedef_field_list)
2421 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
2422 (dwarf2_add_typedef): New.
2423 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
2424 Copy also FI.TYPEDEF_FIELD_LIST.
2425 * gdbtypes.h (struct typedef_field)
2426 (struct cplus_struct_type) <typedef_field, typedef_field_count>
2427 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
2428 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
2429
2430 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2431
2432 * cp-namespace.c (cp_lookup_nested_type): New variable
2433 concatenated_name. Turn the current return condition into a reverse
2434 one. Call also lookup_static_symbol_aux on the constructed qualified
2435 name.
2436 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
2437 other files into a called ...
2438 (lookup_static_symbol_aux): ... new function here.
2439 * symtab.h (lookup_static_symbol_aux): New prototype.
2440 * valops.c (value_maybe_namespace_elt): Call also
2441 lookup_static_symbol_aux if we failed otherwise.
2442
2443 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2444
2445 Fix PR c++/11703 and PR gdb/1448.
2446 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
2447 FIRST_ITER check.
2448
2449 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2450
2451 Fix modification of cplus_struct_default.
2452 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
2453 Call ALLOCATE_CPLUS_STRUCT_TYPE.
2454 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
2455
2456 2010-06-28 Joel Brobecker <brobecker@adacore.com>
2457
2458 * NEWS: Add entry announcing the python directory.
2459
2460 2010-06-28 Tom Tromey <tromey@redhat.com>
2461
2462 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
2463
2464 2010-06-28 Doug Evans <dje@google.com>
2465
2466 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
2467 All callers updated.
2468
2469 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2470
2471 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
2472 obstack_begin after each obstack_free.
2473
2474 2010-06-27 Doug Evans <dje@google.com>
2475
2476 * value.c (value_static_field): Use `switch' instead of `if'.
2477 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
2478
2479 * valops.c (search_struct_field): Fix typo in error message.
2480
2481 2010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
2482
2483 * dwarf2expr.c (execute_stack_op): Place preprocessor
2484 directives at the start of the source line.
2485
2486 2010-06-25 Paul Hilfinger <hilfinger@adacore.com>
2487
2488 * defs.h (make_command_stats_cleanup): Declare.
2489 (set_display_time): Declare.
2490 (set_display_space): Declare.
2491 * event-top.c (command_handler): Use make_command_stats_cleanup.
2492 * main.c (display_time, display_space): Move definitions to utils.c.
2493 (captured_main): Use make_command_stats_cleanup to get start-up
2494 statistics.
2495 Use set_display_time and set_display_space for processing OPT_STATISTICS
2496 case.
2497 * maint.c (maintenance_time_display): Use set_display_time.
2498 (maintenance_space_display): Use set_display_space.
2499 * top.c (execute_command): Remove obsolete 'maint time' code.
2500 (command_loop): Use make_command_stats_cleanup.
2501 * utils.c (struct cmd_stats): Structure for storing initial time
2502 and space usage.
2503 (display_time, display_space): Move definitions here from utils.c.
2504 (set_display_time): New function.
2505 (set_display_space): New function.
2506 (make_command_stats_cleanup): New function.
2507 (report_command_stats): New auxiliary function for
2508 make_command_stats_cleanup.
2509
2510 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2511
2512 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
2513 hosts where CORE_ADDR is long long.
2514
2515 2010-06-25 Tom Tromey <tromey@redhat.com>
2516
2517 PR python/10808:
2518 * python/python.c (execute_gdb_command): Add keywords. Accept
2519 "to_string" argument.
2520 (struct restore_ui_file_closure): New.
2521 (restore_ui_file): New function.
2522 (make_cleanup_restore_ui_file): Likewise.
2523 (GdbMethods) <execute>: Update.
2524
2525 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2526
2527 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
2528 during inferior call stack frame setup.
2529
2530 2010-06-25 Ken Werner <ken.werner@de.ibm.com>
2531
2532 * solib-spu.c: Include "exception.h".
2533 (ocl_program_data_key): New variable.
2534 (append_ocl_sos): New function.
2535 (ocl_enable_break): Likewise.
2536 (spu_current_sos): Call append_ocl_sos.
2537 (spu_solib_loaded): Call ocl_enable_break.
2538 (_initialize_spu_solib): Register ocl_program_data_key.
2539
2540 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2541
2542 * cp-support.c (reset_directive_searched): New function.
2543 (make_symbol_overload_list_using): Prevent recursive calls.
2544
2545 2010-06-25 Phil Muldoon <pmuldoon@redhat.com>
2546
2547 * printcmd.c (print_variable_and_value): Print error message on
2548 caught exception.
2549
2550 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2551
2552 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
2553 of stack values.
2554 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
2555 "value" member.
2556 (dwarf_expr_push): Change input type to ULONGEST.
2557 (dwarf_expr_fetch): Change return type to ULONGEST.
2558 (dwarf_expr_fetch_address): Add prototype.
2559 (dwarf2_read_address): Remove prototype.
2560 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
2561 Truncate stack values to ctx->addr_size bytes.
2562 (dwarf_expr_fetch): Change return value to ULONGEST.
2563 (dwarf_expr_fetch_address): New function.
2564 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
2565 when appropriate. Update for struct dwarf_expr_piece changes.
2566 (dwarf2_read_address): Remove.
2567 (unsigned_address_type): Remove.
2568 (signed_address_type): Remove.
2569 (execute_stack_op): Use dwarf_expr_fetch_address instead of
2570 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
2571 values. Perform operations on ULONGEST instead of on GDB values,
2572 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
2573 values and DW_OP_deref results as unsigned integers.
2574 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
2575 changes.
2576 (write_pieced_value): Likewise.
2577 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
2578 dwarf_expr_fetch when appropriate.
2579 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
2580 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
2581 instead of dwarf_expr_fetch when appropriate.
2582
2583 2010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
2584
2585 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
2586
2587 2010-06-24 Joel Brobecker <brobecker@adacore.com>
2588
2589 * python/python.c (_initialize_python): Add new "constant"
2590 PYTHONDIR in gdb module. Insert this path at the head of
2591 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
2592 exec its __init__.py script if it exists in that directory.
2593
2594 2010-06-24 Kevin Buettner <kevinb@redhat.com>
2595
2596 * rx-tdep.c (RX_ACC_REGNUM): Define.
2597 (RX_NUM_REGS): Redefine to 26.
2598 (rx_register_name): Add register "acc". Change order of several
2599 registers. Change name of "vct" register to "fintv" to match RX
2600 documentation.
2601 (rx_register_type): Add case for RX_ACC_REGNUM.
2602
2603 2010-06-24 Tom Tromey <tromey@redhat.com>
2604
2605 * psymtab.c (lookup_partial_symbol): Mark definition as static.
2606
2607 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2608 Tom Tromey <tromey@redhat.com>
2609
2610 Fix GDB startup on readonly filesystem.
2611 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
2612
2613 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2614 Pedro Alves <pedro@codesourcery.com>
2615
2616 Fix PR 9436.
2617 * breakpoint.c (handle_jit_event): New function.
2618 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
2619 jit, err, table and bs_class. New variables shlib_event, jit_event,
2620 this_action and bptype. Change bs_class assignments to this_action
2621 assignments. new unhandled bptype internal error. Move here
2622 shlib_event and jit_event handling from handle_inferior_event.
2623 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
2624 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
2625 BPSTAT_WHAT_CHECK_JIT.
2626 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
2627 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
2628 (handle_inferior_event): Reinitialize frame and gdbarch after
2629 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
2630 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
2631 gdbarch when frame gets reinitialized.
2632
2633 2010-06-24 Hui Zhu <teawater@gmail.com>
2634
2635 * printcmd.c (ui_printf): New function.
2636 (printf_command): Call ui_printf.
2637 (_initialize_printcmd): New command "eval".
2638
2639 2010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
2640
2641 * infrun.c (handle_inferior_event): Handle presence of single-step
2642 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
2643 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
2644 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
2645 * breakpoint.c (detach_single_step_breakpoints): New function.
2646 (detach_breakpoints): Call it.
2647 (cancel_single_step_breakpoints): New function.
2648 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
2649
2650 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
2651 (spu_gdbarch_init): Install it.
2652
2653 2010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2654
2655 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
2656 * configure: Regenerate.
2657
2658 2010-06-22 Hui Zhu <teawater@gmail.com>
2659
2660 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
2661 (i386_process_record): Ditto.
2662 * record.c (record_memory_query): New variable.
2663 (_initialize_record): New command "set record memory-query".
2664 * record.h (record_memory_query): New extern.
2665
2666 2010-06-21 Doug Evans <dje@google.com>
2667
2668 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
2669 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
2670 (i386_syscall_p): Change type of lengthp to int.
2671 (i386_displaced_step_fixup): Handle kernels that run one past a
2672 syscall insn.
2673 * i386-linux-tdep.c (i386_linux_init_abi): Use
2674 i386_displaced_step_copy_insn instead of
2675 simple_displaced_step_copy_insn.
2676
2677 2010-06-21 Tom Tromey <tromey@redhat.com>
2678
2679 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
2680 (dwarf_type_encoding_name): Likewise.
2681
2682 2010-06-21 Tom Tromey <tromey@redhat.com>
2683
2684 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
2685 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
2686 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
2687 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
2688 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
2689 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
2690 * dwarf2read.c (tag_type_to_type): Create a new error type on
2691 failure.
2692 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
2693 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
2694
2695 2010-06-21 Michael Snyder <msnyder@vmware.com>
2696
2697 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
2698 not add_abbrev_prefix_cmd, for "enable breakpoints".
2699
2700 2010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
2701
2702 * dwarf2loc.c (find_location_expression): Add relocation offset
2703 to base-address-selection entry base addresses. Read addresses
2704 (and offsets) as signed/unsigned integers, depending on the
2705 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
2706 (loclist_describe_location): Likewise.
2707 (disassemble_dwarf_expression): Read DW_OP_addr operand as
2708 unsigned integer. Do not call dwarf2_read_address.
2709 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
2710
2711 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
2712
2713 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
2714 value instead of hard-coded SPU_LS_SIZE.
2715 (spu_software_single_step): Likewise.
2716 * spu-tdep.h (SPU_LS_SIZE): Remove.
2717
2718 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
2719
2720 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
2721 limit on local store memory accesses.
2722 * spu-linux-nat.c (spu_xfer_partial): Likewise.
2723 * spu-tdep.c (spu_lslr): Remove.
2724 (spu_pointer_to_address): Do not truncate addresses.
2725 (spu_integer_to_address): Likewise.
2726 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
2727 * spu-tdep.h: Add comments.
2728 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
2729 (SPU_OVERLAY_LMA): Define.
2730
2731 2010-06-18 Stan Shebs <stan@codesourcery.com>
2732
2733 * osdata.c (get_osdata): Warn separately if target does not report
2734 type list.
2735 (info_osdata_command): Allow empty type, report error if target
2736 does not return available types of OS data.
2737 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
2738 types if no annex supplied.
2739
2740 * thread.c (thread_id_make_value): Make a value representing the
2741 current thread.
2742 (_initialize_thread): Create $_thread.
2743
2744 2010-06-17 Joel Brobecker <brobecker@adacore.com>
2745
2746 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
2747 last local variable declaration. No real code change.
2748
2749 2010-06-17 Tom Tromey <tromey@redhat.com>
2750
2751 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
2752 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
2753 temporary obstack.
2754
2755 2010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
2756 Jan Kratochvil <jan.kratochvil@redhat.com>
2757
2758 * breakpoint.c: Include parser-defs.h.
2759 (watchpoint_exp_is_const): New function.
2760 (watch_command_1): Call watchpoint_exp_is_const to check
2761 if the expression is constant.
2762
2763 2010-06-15 Andreas Schwab <schwab@linux-m68k.org>
2764
2765 * configure.ac: Check for RDYNAMIC also for cross builds.
2766 * configure: Regenerate.
2767
2768 2010-06-15 Pedro Alves <pedro@codesourcery.com>
2769
2770 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
2771 (SFILES): Remove solib-null.c, add solib-target.c.
2772 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
2773 (ALLDEPFILES): Remove solib-target.c.
2774 * solib-target.c (_initialize_solib_target): Set
2775 current_target_so_ops to solib_target_so_ops if not already set.
2776 * solib-null.c: Delete.
2777
2778 2010-06-14 Pedro Alves <pedro@codesourcery.com>
2779
2780 * NEWS: Mention GDBserver's JIT compilation of tracepoint
2781 bytecode.
2782
2783 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
2784
2785 * cp-valprint.c (cp_print_static_field): Members of
2786 dont_print_stat_array_obstack are of type "struct type *".
2787 (_initialize_cp_valprint): Likewise.
2788
2789 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
2790
2791 * frame.c (frame_register_unwind): Do not access contents
2792 of "optimized out" unwound register value.
2793
2794 2010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2795
2796 * ada-lang.h (ada_print_type): Make varstring const.
2797 * ada-typeprint.c (print_func_type): Make name const.
2798 (ada_print_type): Make varstring const.
2799 * c-lang.h (c_print_type): Make varstring const.
2800 * c-typeprint.c (c_print_type): Likewise.
2801 * f-lang.h (f_print_type): Likewise.
2802 * f-typeprint.c (f_print_type): Likewise.
2803 * jv-lang.h (java_print_type): Likewise.
2804 * jv-typeprint.c (java_print_type): Likewise.
2805 * language.c (unk_lang_print_type): Likewise.
2806 * language.h (struct language_defn) <la_print_type>: Likewise.
2807 * m2-lang.h (m2_print_type): Likewise.
2808 * m2-typeprint.c (m2_print_type): Likewise.
2809 * p-lang.h (pascal_print_type): Likewise.
2810 * p-typeprint.c (pascal_print_type): Likewise.
2811
2812 2010-06-11 Stan Shebs <stan@codesourcery.com>
2813
2814 Add per-operation permission flags.
2815
2816 * target.h (struct target_ops): New method to_set_permissions.
2817 (target_set_permissions): New macro.
2818 (target_insert_breakpoint): Change macro to function.
2819 (target_remove_breakpoint): Ditto.
2820 (target_stop): Ditto.
2821 (may_write_registers): Declare.
2822 (may_write_memory): Declare.
2823 (may_insert_breakpoints): Declare.
2824 (may_insert_tracepoints): Declare.
2825 (may_insert_fast_tracepoints): Declare.
2826 (may_stop): Declare.
2827 * target.c (may_write_registers, may_write_registers_1): New globals.
2828 (may_write_memory, may_write_memory_1): New globals.
2829 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
2830 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
2831 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
2832 globals.
2833 (may_stop, may_stop_1): New global.
2834 (target_xfer_partial): Test for write permission.
2835 (target_store_registers): Ditto.
2836 (target_insert_breakpoint): New function.
2837 (target_remove_breakpoint): New function.
2838 (target_stop): New function.
2839 (_initialize_targets): Add new set/show variables.
2840 (set_write_memory_permission): New function.
2841 (update_target_permissions): New function.
2842 (set_target_permissions): New function.
2843 (update_current_target): Default to_set_permissions.
2844 (_initialize_targets): Use new globals and setter function.
2845 * tracepoint.c (start_tracing): Test for permission.
2846 * inferior.h (update_observer_mode): Declare.
2847 * infrun.c (non_stop_1): Define earlier.
2848 (observer_mode, observer_mode_1): New globals.
2849 (set_observer_mode, show_observer_mode): New functions.
2850 (update_observer_mode): New function.
2851 (_initialize_infrun): Define "set observer" command.
2852 * remote.c (PACKET_QAllow): New optional packet.
2853 (remote_protocol_features): Add QAllow.
2854 (remote_set_permissions): New function.
2855 (remote_start_remote): Call it.
2856 (init_remote_ops): Add it to target vector.
2857 (_initialize_remote): Add config command for QAllow.
2858
2859 2010-06-11 Tom Tromey <tromey@redhat.com>
2860
2861 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
2862 DW_AT_vtable_elem_location even when GCC extension is seen.
2863
2864 2010-06-11 Tom Tromey <tromey@redhat.com>
2865
2866 PR gdb/9977, PR exp/11636:
2867 * value.h (value_offset): Update.
2868 (struct lval_funcs) <check_validity>: New field.
2869 <copy_closure>: Make argument const.
2870 (value_computed_closure): Update.
2871 (value_contents_for_printing): Declare.
2872 (value_bits_valid): Likewise.
2873 (val_print): Likewise.
2874 (set_value_component_location): Update.
2875 (value_entirely_optimized_out): Declare.
2876 * value.c (value_offset): Argument now const.
2877 (require_not_optimized_out): New function.
2878 (value_contents_for_printing): New function.
2879 (value_contents_all): Call require_not_optimized_out.
2880 (value_contents): Likewise.
2881 (value_bits_valid): New function.
2882 (value_computed_closure): Argument now const.
2883 (set_value_component_location): Make 'whole' argument const.
2884 (value_entirely_optimized_out): New function.
2885 (value_bitsize): Argument now 'const'.
2886 (value_bitpos): Likewise.
2887 (value_type): Likewise.
2888 * valprint.h (val_print_array_elements): Update.
2889 * valprint.c (val_print): Add 'val' argument. Use
2890 valprint_check_validity.
2891 (valprint_check_validity): New function.
2892 (value_check_printable): Use value_entirely_optimized_out.
2893 (common_val_print): Update.
2894 (value_print): Likewise.
2895 (val_print_array_elements): Add 'val' argument.
2896 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
2897 value_bits_valid. Reinit frame cache for lval_computed.
2898 * sh64-tdep.c (sh64_do_register): Update.
2899 * scm-valprint.c (scm_val_print): Add 'val' argument.
2900 * scm-lang.h (scm_val_print): Update.
2901 * python/python.h (apply_val_pretty_printer): Update.
2902 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
2903 argument. Call set_value_component_location.
2904 * printcmd.c (print_scalar_formatted): Update.
2905 * p-valprint.c (pascal_val_print): Add 'val' argument.
2906 (pascal_object_print_value_fields): Likewise.
2907 (pascal_object_print_value): Likewise.
2908 (pascal_object_print_static_field): Update.
2909 * p-lang.h (pascal_val_print): Update.
2910 (pascal_object_print_value_fields): Update.
2911 * mt-tdep.c (mt_registers_info): Update.
2912 * mi/mi-main.c (get_register): Update.
2913 (mi_cmd_data_evaluate_expression): Use common_val_print.
2914 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
2915 (m2_print_unbounded_array): Likewise.
2916 (m2_val_print): Likewise.
2917 * m2-lang.h (m2_val_print): Update.
2918 * language.h (struct language_defn) <la_val_print>: Add 'val'
2919 argument.
2920 (LA_VAL_PRINT): Likewise.
2921 * language.c (unk_lang_val_print): Add 'val' argument.
2922 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
2923 (java_val_print): Likewise.
2924 * jv-lang.h (java_val_print): Add 'val' argument.
2925 * infcmd.c (default_print_registers_info): Update.
2926 * f-valprint.c (f77_print_array_1): Add 'val' argument.
2927 (f77_print_array): Likewise.
2928 (f_val_print): Likewise.
2929 * f-lang.h (f_val_print): Add 'val' argument.
2930 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
2931 value_bitpos.
2932 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
2933 set_value_optimized_out.
2934 (write_pieced_value): Use value_bitsize and value_bitpos.
2935 <default>: Don't exit loop.
2936 (check_pieced_value_validity): New function.
2937 (pieced_value_funcs): Reference check_pieced_value_validity,
2938 check_pieced_value_invalid.
2939 (copy_pieced_value_closure): Update.
2940 (check_pieced_value_bits): New function.
2941 (check_pieced_value_invalid): New function.
2942 * d-valprint.c (dynamic_array_type): Add 'val' argument.
2943 (d_val_print): Likewise.
2944 * d-lang.h (d_val_print): Update.
2945 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
2946 (cp_print_value_fields_rtti): Likewise.
2947 (cp_print_value): Likewise.
2948 (cp_print_static_field): Update.
2949 * c-valprint.c (c_val_print): Add 'val' argument.
2950 (c_value_print): Update.
2951 * c-lang.h (c_val_print): Update.
2952 (cp_print_value_fields): Likewise.
2953 (cp_print_value_fields_rtti): Likewise.
2954 * ada-valprint.c (struct ada_val_print_args): Remove.
2955 (val_print_packed_array_elements): Add 'val' argument.
2956 (ada_val_print): Likewise. Rewrite.
2957 (ada_val_print_stub): Remove.
2958 (ada_val_print_array): Add 'val' argument.
2959 (ada_val_print_1): Likewise.
2960 (print_variant_part): Likewise.
2961 (ada_value_print): Update.
2962 (print_record): Add 'val' argument.
2963 (print_field_values): Likewise.
2964 * ada-lang.h (ada_val_print): Update.
2965
2966 2010-06-11 Tom Tromey <tromey@redhat.com>
2967
2968 * vec.h (VEC_cleanup): New macro.
2969 (DEF_VEC_ALLOC_FUNC_I): Update.
2970 (DEF_VEC_ALLOC_FUNC_P): Likewise.
2971 (DEF_VEC_ALLOC_FUNC_O): Likewise.
2972 * dwarf2loc.c (struct axs_var_loc): Remove.
2973 (unimplemented): New function.
2974 (translate_register): Likewise.
2975 (access_memory): Likewise.
2976 (compile_dwarf_to_ax): Likewise.
2977 (dwarf2_tracepoint_var_loc): Remove.
2978 (dwarf2_tracepoint_var_access): Likewise.
2979 (dwarf2_tracepoint_var_ref): Likewise.
2980 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
2981 (loclist_tracepoint_var_ref): Likewise.
2982 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
2983 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
2984 require_composition. No longer static.
2985 (execute_stack_op): Update.
2986 * ax-gdb.h (trace_kludge): Declare.
2987
2988 2010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2989
2990 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
2991 (should_be_inserted): Return zero also on NULL OWNER.
2992 (breakpoint_program_space_exit): New OWNER comment.
2993 (insert_breakpoint_locations): Extend comment for OWNER.
2994 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
2995 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
2996 New OWNER comment.
2997 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
2998 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
2999 (bpstat_check_location): New assert on OWNER.
3000 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
3001 and B initializations to the code block. New assert on them.
3002 (print_one_breakpoint_location): New OWNER comment.
3003 (watchpoint_locations_match): Assert on OWNER.
3004 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
3005 initializations to the code block. New assert on OWNER.
3006 (set_breakpoint_location_function): New assert on OWNER.
3007 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
3008 (bp_location_compare, update_global_location_list)
3009 (update_global_location_list): New OWNER comment.
3010
3011 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3012
3013 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
3014
3015 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3016
3017 * config/nm-linux.h (struct target_ops): Remove forward declaration.
3018 (lin_thread_get_thread_signals): Remove prototype.
3019 (GET_THREAD_SIGNALS): Remove.
3020 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
3021 * linux-thread-db.c (check_thread_signals): Directly call
3022 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
3023
3024 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3025
3026 * gregset.h (GDB_FPXREGSET_T): Remove.
3027 (gdb_fpxregset_t): Likewise.
3028 (supply_fpxregset): Remove prototype.
3029 (fill_fpxregset): Likewise.
3030 * i386-linux-nat.c (supply_fpxregset): Remove.
3031 (fill_fpxregset): Likewise.
3032 (fetch_fpxregs): Inline supply_fpxregset call.
3033 (store_fpxregs): Inline fill_fpxregset call.
3034
3035 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
3036 * config/i386/nm-linux.h: Remove file.
3037
3038 2010-06-09 Michael Snyder <msnyder@vmware.com>
3039
3040 * target.c (update_current_target): Fix spelling error in comment.
3041 (target_mourn_inferior): Fix spelling error in error message.
3042
3043 2010-06-08 Paul Hilfinger <hilfingr@adacore.com>
3044
3045 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
3046 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
3047
3048 2010-06-08 Michael Snyder <msnyder@vmware.com>
3049
3050 * remote.c (remote_close): Set inferior_ptid to null_ptid.
3051
3052 2010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
3053
3054 * configure.ac <"${have_libpython}" != no>: New workaround of
3055 python#4434.
3056 * configure: Regenerate.
3057
3058 2010-06-08 Hui Zhu <teawater@gmail.com>
3059
3060 * record.c (record_wait): Move signal out of replay code.
3061
3062 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3063
3064 Fix PR 10640.
3065 * dwarf2-frame.c (no_dwarf_call): New function.
3066 (execute_stack_op): Set CTX->DWARF_CALL.
3067 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
3068 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
3069 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
3070 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
3071 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
3072 (needs_frame_dwarf_call): New function.
3073 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
3074 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
3075 Update the comment. Move variables die, offset and error call to ...
3076 (follow_die_ref): ... a new function.
3077 (dwarf2_fetch_die_location_block): New function.
3078 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
3079
3080 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3081
3082 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
3083 (dwarf_expr_tls_address): Use per_cu instead of objfile.
3084 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
3085 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
3086 this change.
3087 (struct needs_frame_baton): New field per_cu.
3088 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
3089 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
3090
3091 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
3092
3093 * cp-support.c (make_symbol_overload_list_namespace): Only search
3094 static and global blocks.
3095 (make_symbol_overload_list_block): New function.
3096 (make_symbol_overload_list): Separate namespace search from block
3097 search.
3098 (make_symbol_overload_list_qualified): Use
3099 make_symbol_overload_list_block.
3100
3101 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
3102
3103 * value.h: Created oload_search_type enum.
3104 (find_overload_match): Use oload_search_type enum.
3105 * valops.c (find_overload_match): Support combined member and
3106 non-member search.
3107 * eval.c (evaluate_subexp_standard): Calls to
3108 find_overload_match now use oload_search_type enum.
3109 (oload_method_static): Verify index is a proper value.
3110 * valarith.c (value_user_defined_cpp_op): Search for and handle
3111 both member and non-member operators.
3112 (value_user_defined_cpp_op): New function.
3113 (value_user_defined_op): New function.
3114 (value_x_unop): Use value_user_defined_op.
3115 (value_x_binop): Ditto.
3116 * cp-support.c (make_symbol_overload_list_using): Added block
3117 iteration.
3118 Add check for namespace aliases and imported declarations.
3119
3120 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3121
3122 * breakpoint.h (owner): Extend the comment.
3123
3124 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3125
3126 Clear stale specific bp_location from former whole breakpoint.
3127 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
3128 code ...
3129 (free_bp_location): ... here. Rename there the called function to
3130 bpstat_remove_bp_location_callback.
3131 (bpstat_remove_breakpoint_callback): Rename to ...
3132 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
3133 to struct bp_location. Change the called function to
3134 bpstat_remove_bp_location. Create new declaration for the function.
3135 (bpstat_remove_breakpoint): Rename to ...
3136 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
3137 code for the new parameter type.
3138
3139 2010-06-07 Nathan Sidwell <nathan@codesourcery.com>
3140
3141 * README: Make version-agnostic.
3142
3143 2010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3144
3145 Fix duplicate types for single DIE.
3146 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
3147 set_die_type.
3148 (read_array_type): Remove type initialization. Recheck get_die_type
3149 after initial die_type. Move set_die_type before set_descriptive_type.
3150 (read_set_type): New variable domain_type. Recheck get_die_type after
3151 initial die_type. Move attr initialization later.
3152 (read_tag_pointer_type, read_tag_reference_type): New variable
3153 target_type. Recheck get_die_type after initial die_type.
3154 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
3155 die_type and die_containing_type.
3156 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
3157 Recheck get_die_type after initial die_type.
3158 (read_subrange_type): Recheck get_die_type after initial die_type.
3159 Move set_die_type before set_descriptive_type.
3160 (set_die_type): Extend the function comment. Call complaint if DIE has
3161 some type already set.
3162
3163 2010-06-05 Vladimir Prus <vladimir@codesourcery.com>
3164
3165 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
3166 for current naming of thread groups (iN, not N).
3167
3168 2010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
3169
3170 * ada-lang.c (ada_operator_length): Constify `struct expression'.
3171 * parse.c (operator_length): Likewise.
3172 (operator_length_standard): Likewise.
3173 * parser-defs.h (operator_length): Likewise.
3174 (operator_length_standard): Likewise.
3175 (struct exp_descriptor <operator_length>): Likewise.
3176
3177 2010-06-04 Doug Evans <dje@google.com>
3178
3179 Add support for enabling/disabling individual pretty-printers.
3180 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
3181 * python/python-internal.h (gdbpy_enabled_cst): Declare.
3182 * python/python.c (gdbpy_enabled_cst): Define.
3183 (_initialize_python): Initialize gdbpy_enabled_cst.
3184 * NEWS: Add entry.
3185
3186 2010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3187
3188 * breakpoint.c (update_global_location_list): Fix comment typo.
3189
3190 2010-06-04 Hui Zhu <teawater@gmail.com>
3191
3192 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
3193
3194 2010-06-03 Doug Evans <dje@google.com>
3195
3196 * configure.ac: Don't fail if python is unusable when
3197 configured with --with-python=auto.
3198 * configure: Regenerate.
3199
3200 2010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
3201
3202 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
3203
3204 2010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
3205
3206 * valprint.h (get_array_bounds): Change low and high parameter types
3207 to LONGEST *.
3208 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
3209 compute bounds.
3210 (val_print_array_elements): Adapt to change above.
3211 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
3212 * p-valprint.c (pascal_val_print): Likewise.
3213
3214 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3215
3216 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
3217 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
3218 .F08.
3219
3220 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3221
3222 Support DW_TAG_module as separate namespaces.
3223 * dwarf2read.c (typename_concat): New parameter physname.
3224 (read_module_type): New function and declaration.
3225 (scan_partial_symbols): Scan also DW_TAG_module children.
3226 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
3227 to typename_concat backward compatible physname value 0.
3228 (partial_die_full_name, read_namespace_type): Pass to typename_concat
3229 backward compatible physname value 0.
3230 (add_partial_module, read_module): Remove FIXME comment.
3231 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
3232 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
3233 DIEs under DW_TAG_module.
3234 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
3235 DW_AT_MIPS_linkage_name first, extend it for language_fortran
3236 && physname and return there instead of just setting NAME. Extend
3237 the main block for language_fortran. Pass physname parameter to the
3238 typename_concat call.
3239 (read_import_statement, read_func_scope, get_scope_pc_bounds)
3240 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
3241 (new_symbol): Fill in cplus_specific.demangled_name if it is still
3242 missing from SYMBOL_SET_NAMES in the language_fortran case.
3243 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
3244 variables.
3245 (read_type_die) <DW_TAG_module>: New.
3246 (MAX_SEP_LEN): Increase to 7.
3247 (typename_concat): New parameter physname. New variable lead. Support
3248 also language_fortran.
3249 * f-exp.y (yylex): Consider : also as a symbol name character class.
3250 * f-lang.c: Include cp-support.h.
3251 (f_word_break_characters, f_make_symbol_completion_list): New functions.
3252 (f_language_defn): Use cp_lookup_symbol_nonlocal,
3253 f_word_break_characters and f_make_symbol_completion_list.
3254 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
3255 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
3256 * symtab.c (symbol_init_language_specific): Support language_fortran.
3257 (symbol_find_demangled_name): New comment on language_fortran.
3258 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
3259 for language_fortran.
3260 (lookup_symbol_aux_local): Check imports also for language_fortran.
3261 (default_make_symbol_completion_list): Rename to ...
3262 (default_make_symbol_completion_list_break_on): ... this name. New
3263 parameter break_on, use it.
3264 (default_make_symbol_completion_list): New stub.
3265 * symtab.h (default_make_symbol_completion_list_break_on): New
3266 prototype.
3267
3268 2010-06-02 Joel Brobecker <brobecker@adacore.com>
3269
3270 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
3271 to error.
3272
3273 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3274
3275 * dwarf2read.c (typename_concat): Add const to the variable sep.
3276
3277 2010-06-02 Tom Tromey <tromey@redhat.com>
3278
3279 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
3280 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
3281 type is const. Add 'def' argument. Add missing operators, remove
3282 unhandled ones.
3283 (decode_locdesc): Update.
3284 (dwarf2_always_disassemble): New global.
3285 (show_dwarf2_always_disassemble): New function.
3286 (_initialize_dwarf2_read): Add always-disassemble.
3287 (dwarf2_per_cu_offset_size): New function.
3288 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
3289 (piece_end_p): New function.
3290 (locexpr_describe_location_piece): Replace 'size' argument with
3291 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
3292 some constants. Remove errors.
3293 (disassemble_dwarf_expression): New function.
3294 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
3295 Add 'offset_size' argument.
3296 (loclist_describe_location): Change output formatting.
3297 * dwarf2expr.h (dwarf_stack_op_name): Declare.
3298
3299 2010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
3300
3301 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
3302 anonymous type case.
3303
3304 2010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
3305
3306 * dwarf2read.c (read_subrange_type): Handle missing base type
3307 according to Dwarf-2 specifications.
3308
3309 2010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
3310
3311 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
3312 BINOP_EXCL.
3313 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
3314 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
3315 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
3316 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
3317 UNOP_CHMAX, UNOP_CHMIN.
3318 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
3319 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
3320 UNOP_CHMIN>: Remove opcodes.
3321
3322 2010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
3323
3324 * dwarf2read.c (read_func_scope): Do not complain for
3325 external function if bounds are not found.
3326
3327 2010-06-01 Pedro Alves <pedro@codesourcery.com>
3328
3329 * NEWS: Mention gdbserver fast tracepoints support.
3330
3331 2010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
3332
3333 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
3334 New macros.
3335 (windows_set_console_info): New function.
3336 (windows_create_inferior): Call windows_set_console_info
3337 if NEW_CONSOLE is true.
3338 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
3339 (_initialize_loadable): Initialize GetConsoleFontSize and
3340 GetCurrentConsoleFont.
3341
3342 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3343
3344 * Makefile.in (RDYNAMIC): New.
3345 (SFILES): Add proc-service.list.
3346 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
3347 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
3348 * config/arm/linux.mh: Likewise.
3349 * config/i386/linux.mh: Likewise.
3350 * config/i386/linux64.mh: Likewise.
3351 * config/ia64/linux.mh: Likewise.
3352 * config/m32r/linux.mh: Likewise.
3353 * config/m68k/linux.mh: Likewise.
3354 * config/mips/linux.mh: Likewise.
3355 * config/pa/linux.mh: Likewise.
3356 * config/powerpc/linux.mh: Likewise.
3357 * config/powerpc/ppc64-linux.mh: Likewise.
3358 * config/s390/s390.mh: Likewise.
3359 * config/sparc/linux.mh: Likewise.
3360 * config/sparc/linux64.mh: Likewise.
3361 * config/xtensa/linux.mh: Likewise.
3362 * configure.ac: New RDYNAMIC on native host and GCC.
3363 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
3364 * configure: Regenerate.
3365 * proc-service.list: New.
3366
3367 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3368
3369 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
3370 CONTENT.
3371
3372 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3373
3374 * linux-nat.c (linux_nat_wait_1): Do not call
3375 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
3376 TARGET_WAITKIND_SIGNALLED.
3377
3378 2010-05-27 Joel Brobecker <brobecker@adacore.com>
3379
3380 * ada-lang.c (ada_inferior_data): New struct.
3381 (ada_inferior_data): New static global.
3382 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
3383 (ada_get_tsd_type): New functions.
3384 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
3385 to look the tsd type up.
3386 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
3387 event. Set ada_inferior_data.
3388
3389 2010-05-27 Pedro Alves <pedro@codesourcery.com>
3390
3391 * remote.c (unpack_varlen_hex): Remove forward declaration.
3392 (remote_console_output): Make static, and add forward declaration.
3393 * remote.h: Drop FIXME comment.
3394 (unpack_varlen_hex): Declare.
3395 (remote_console_output, remote_cisco_objfile_relocate)
3396 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
3397 Delete declarations.
3398 * tracepoint.c: Include "remote.h".
3399 (unpack_varlen_hex): Delete declaration.
3400
3401 2010-05-27 Tom Tromey <tromey@redhat.com>
3402
3403 * dwarf2loc.c (struct piece_closure) <refc>: New field.
3404 (allocate_piece_closure): Initialize refc.
3405 (copy_pieced_value_closure): Use refc.
3406 (free_pieced_value_closure): Likewise.
3407
3408 2010-05-27 Tom Tromey <tromey@redhat.com>
3409
3410 * arm-tdep.c (push_stack_item): 'contents' now const.
3411 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
3412 value_contents_writeable. Introduce new temporary.
3413
3414 2010-05-27 Tom Tromey <tromey@redhat.com>
3415
3416 * findcmd.c (parse_find_args): Use value_contents, not
3417 value_contents_raw.
3418
3419 2010-05-27 Tom Tromey <tromey@redhat.com>
3420
3421 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
3422 const. Use value_contents, not value_contents_writeable.
3423
3424 2010-05-27 Joel Brobecker <brobecker@adacore.com>
3425
3426 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
3427 by call to value_contents.
3428
3429 2010-05-27 Ozkan Sezer <sezeroz@gmail.com>
3430
3431 * MAINTAINERS: Add myself for write after approval privileges.
3432
3433 2010-05-26 Doug Evans <dje@google.com>
3434
3435 Allow python to find its files if moved from original location.
3436 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
3437 (GDB_AC_WITH_DIR): Call it.
3438 * configure.ac: Define WITH_PYTHON_PATH if we can find the
3439 python installation directory.
3440 * config.in: Regenerate.
3441 * configure: Regenerate.
3442 * defs.h (python_libdir): Declare.
3443 * main.c (python_libdir): Define.
3444 (captured_main): Initialize python_libdir.
3445 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
3446 call Py_SetProgramName to make sure python can find its libraries
3447 and modules.
3448
3449 * configure.ac: Try to use python's distutils to fetch compilation
3450 parameters.
3451 * configure: Regenerate.
3452 * python/python-config.py: New file.
3453
3454 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
3455
3456 * ser-tcp.c (net_open): Check error return from socket() call by its
3457 equality to -1 not by it being negative.
3458 (net_close): Likewise.
3459
3460 2010-05-26 Pedro Alves <pedro@codesourcery.com>
3461
3462 * NEWS: Mention the `qRelocInsn' feature.
3463 * gdbarch.sh (relocate_instruction): New.
3464 * amd64-tdep.c (rip_relative_offset): New.
3465 (append_insns): New.
3466 (amd64_relocate_instruction): New.
3467 (amd64_init_abi): Install it.
3468 * i386-tdep.c (append_insns): New.
3469 (i386_relocate_instruction): New.
3470 (i386_gdbarch_init): Install it.
3471 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
3472 * gdbarch.h, gdbarch.c: Regenerate.
3473
3474 2010-05-26 Tom Tromey <tromey@redhat.com>
3475
3476 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
3477 (struct dwarf2_loclist_baton) <data>: Likewise.
3478 * dwarf2loc.c (find_location_expression): Constify return type.
3479 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
3480 (dwarf2_loc_desc_needs_frame): Likewise.
3481 (loclist_read_variable): Constify.
3482 (loclist_describe_location): Likewise.
3483 (loclist_tracepoint_var_ref): Likewise.
3484
3485 2010-05-25 Tom Tromey <tromey@redhat.com>
3486
3487 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
3488 (dwarf_expr_frame_base_1): Likewise.
3489 (read_pieced_value): Update.
3490 (needs_frame_frame_base): Constify.
3491 (dwarf2_tracepoint_var_loc): Likewise.
3492 (dwarf2_tracepoint_var_access): Likewise.
3493 (locexpr_describe_location_piece): Likewise.
3494 (locexpr_describe_location_1): Likewise.
3495 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
3496 Constify.
3497 (data): Now const.
3498 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
3499 (dwarf_expr_eval, read_uleb128, read_sleb128)
3500 (dwarf2_read_address): Update.
3501 * dwarf2expr.c (dwarf_expr_eval): Constify.
3502 (read_uleb128): Likewise.
3503 (read_sleb128): Likewise.
3504 (dwarf2_read_address): Likewise.
3505 (require_composition): Likewise.
3506 (execute_stack_op): Likewise.
3507 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
3508 "const gdb_byte *".
3509 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
3510 Now const.
3511 (no_get_frame_base): Constify.
3512 (execute_stack_op): Likewise.
3513 (execute_cfa_program): Likewise.
3514 (read_encoded_value): Likewise.
3515
3516 2010-05-25 Doug Evans <dje@google.com>
3517
3518 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
3519
3520 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
3521 * event-loop.c: ... here.
3522 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
3523 `error' for clarity.
3524 (tui_getc): Pass correct value for `error' parameter to
3525 tui_readline_output.
3526
3527 Add python gdb.GdbError and gdb.string_to_argv.
3528 * NEWS: Document them.
3529 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
3530 the exception is gdb.GdbError. Print a second traceback if there's
3531 an error computing the error message.
3532 (gdbpy_string_to_argv): New function.
3533 * python/py-utils.c (gdbpy_obj_to_string): New function.
3534 (gdbpy_exception_to_string): New function.
3535 * python/python-internal.h (gdbpy_string_to_argv): Declare.
3536 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
3537 (gdbpy_gdberror_exc): Declare.
3538 * python/python.c (gdbpy_gdberror_exc): New global.
3539 (_initialize_python): Initialize gdbpy_gdberror_exc and create
3540 gdb.GdbError.
3541 (GdbMethods): Add string_to_argv.
3542
3543 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3544
3545 * windows-nat.c (display_selector): Call GetLastError to give better
3546 failure explanation.
3547
3548 2010-05-24 Pedro Alves <pedro@codesourcery.com>
3549
3550 * config.in: Regenerate.
3551
3552 2010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3553
3554 Code cleanup.
3555 * target.c (push_target): Return only void. Remove the return value
3556 comment.
3557 * target.h (push_target): Return only void.
3558
3559 2010-05-23 Pedro Alves <pedro@codesourcery.com>
3560
3561 Update gnulib from latest git.
3562 (250b80067c1e1d8faa0c42fb572f721975b929c5)
3563
3564 * gnulib/memcmp.c: Removed.
3565 * gnulib/memchr.valgrind: New.
3566 * gnulib/stddef.in.h: New.
3567 * gnulib/Makefile.am: Updated.
3568 * gnulib/memchr.c: Updated.
3569 * gnulib/memmem.c: Updated.
3570 * gnulib/stdint.in.h: Updated.
3571 * gnulib/str-two-way.h: Updated.
3572 * gnulib/string.in.h: Updated.
3573 * gnulib/wchar.in.h: Updated.
3574
3575 * gnulib/extra/link-warning.h: Removed.
3576 * gnulib/extra/c++defs.h: New.
3577 * gnulib/extra/warn-on-use.h: New.
3578 * gnulib/extra/arg-nonnull.h: Updated.
3579
3580 * gnulib/m4/extensions.m4: Updated.
3581 * gnulib/m4/gnulib-cache.m4: Updated.
3582 * gnulib/m4/gnulib-common.m4: Updated.
3583 * gnulib/m4/gnulib-comp.m4: Updated.
3584 * gnulib/m4/gnulib-tool.m4: Updated.
3585 * gnulib/m4/include_next.m4: Updated.
3586 * gnulib/m4/longlong.m4: Updated.
3587 * gnulib/m4/memchr.m4: Updated.
3588 * gnulib/m4/memmem.m4: Updated.
3589 * gnulib/m4/stdint.m4: Updated.
3590 * gnulib/m4/string_h.m4: Updated.
3591 * gnulib/m4/memcmp.m4: Removed.
3592 * gnulib/m4/onceonly_2_57.m4: Removed.
3593 * gnulib/m4/00gnulib.m4: New.
3594 * gnulib/m4/mmap-anon.m4: New.
3595 * gnulib/m4/multiarch.m4: New.
3596 * gnulib/m4/onceonly.m4: New.
3597 * gnulib/m4/stddef_h.m4: New.
3598 * gnulib/m4/warn-on-use.m4: New.
3599 * gnulib/m4/wchar.m4: Removed.
3600 * gnulib/m4/wchar_h.m4: New.
3601 * gnulib/m4/wchar_t.m4: New.
3602 * gnulib/m4/wint_t.m4: New.
3603
3604 * aclocal.m4: Regenerate.
3605 * config.in: Likewise.
3606 * configure: Likewise.
3607 * gnulib/Makefile.in: Likewise.
3608
3609 2010-05-21 Tom Tromey <tromey@redhat.com>
3610
3611 * dwarf2loc.c (extract_bits_primitive): New function.
3612 (extract_bits): Likewise.
3613 (insert_bits): Likewise.
3614 (copy_bitwise): Likewise.
3615 (read_pieced_value): Do all operations in bits.
3616 (write_pieced_value): Likewise.
3617 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
3618 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
3619 Always use xrealloc to resize piece array.
3620 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
3621 <DW_OP_piece>: Update.
3622 <DW_OP_bit_piece>: New case.
3623
3624 2010-05-21 Tom Tromey <tromey@redhat.com>
3625
3626 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
3627 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
3628 * dwarf2expr.h (enum dwarf_value_location)
3629 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
3630 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
3631 (add_piece): Handle empty piece.
3632 (execute_stack_op) <DW_OP_piece>: Handle
3633 DWARF_VALUE_OPTIMIZED_OUT.
3634
3635 2010-05-21 Tom Tromey <tromey@redhat.com>
3636
3637 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
3638 evaluate_subexp, not evaluate_subexp_with_coercion.
3639
3640 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3641
3642 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
3643 attribute.
3644
3645 2010-05-21 Tom Tromey <tromey@redhat.com>
3646
3647 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
3648 offset.
3649 (write_pieced_value): Likewise.
3650
3651 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3652
3653 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
3654 and DW_TAG_volatile_type.
3655 (new_symbol): Likewise.
3656
3657 2010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
3658
3659 * p-valprint.c (pascal_val_print): Call get_array_bounds
3660 to obtain the number of elements in an array.
3661
3662 2010-05-19 Doug Evans <dje@google.com>
3663
3664 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
3665
3666 * python.c (source_python_script): Add comment.
3667 (source_python_script_for_objfile): Remove unnecessary call to
3668 gdbpy_print_stack.
3669
3670 2010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3671 Sergio Durigan Junior <sergiodj@redhat.com>
3672
3673 Code cleanup.
3674 * parse.c (exp_iterate): Use operator_length wrapper function.
3675
3676 2010-05-18 Michael Snyder <msnyder@vmware.com>
3677
3678 * ada-lang.c: White space.
3679 * ada-typeprint.c: White space.
3680 * ada-valprint.c: White space.
3681 * addrmap.c: White space.
3682 * auxv.c: White space.
3683 * ax-gdb.c: White space.
3684
3685 2010-05-18 Hui Zhu <teawater@gmail.com>
3686
3687 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
3688 for oldfp.
3689 (inferior_call_waitpid): Move make_cleanup out of check.
3690 Check the return of waitpid.
3691 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
3692
3693 2010-05-17 Michael Snyder <msnyder@vmware.com>
3694
3695 * tui/tui.c: White space.
3696 * tui/tui-data.c: White space.
3697 * tui/tui-disasm.c: White space.
3698 * tui/tui-file.c: White space.
3699 * tui/tui-interp.c: White space.
3700 * tui/tui-main.c: White space.
3701 * tui/tui-out.c: White space.
3702 * tui/tui-regs.c: White space.
3703 * tui/tui-source.c: White space.
3704 * tui/tui-stack.c: White space.
3705 * tui/tui-win.c: White space.
3706 * tui/tui-winsource.c: White space.
3707
3708 * procfs.c: White space.
3709
3710 * python/py-auto-load.c: White space.
3711 * python/py-block.c: White space.
3712 * python/py-breakpoint.c: White space.
3713 * python/py-cmd.c: White space.
3714 * python/py-function.c: White space.
3715 * python/py-lazy-string.c: White space.
3716 * python/py-objfile.c: White space.
3717 * python/py-param.c: White space.
3718 * python/py-prettyprint.c: White space.
3719 * python/py-progspace.c: White space.
3720 * python/py-symtab.c: White space.
3721 * python/python.c: White space.
3722 * python/py-type.c: White space.
3723 * python/py-utils.c: White space.
3724 * python/py-value.c: White space.
3725
3726 * mi/mi-cmd-break.c: White space.
3727 * mi/mi-cmd-env.c: White space.
3728 * mi/mi-cmds.c: White space.
3729 * mi/mi-cmd-stack.c: White space.
3730 * mi/mi-cmd-var.c: White space.
3731 * mi/mi-console.c: White space.
3732 * mi/mi-getopt.c: White space.
3733 * mi/mi-interp.c: White space.
3734 * mi/mi-main.c: White space.
3735 * mi/mi-out.c: White space.
3736 * mi/mi-parse.c: White space.
3737
3738 * cli/cli-cmds.c: White space.
3739 * cli/cli-decode.c: White space.
3740 * cli/cli-dump.c: White space.
3741 * cli/cli-interp.c: White space.
3742 * cli/cli-logging.c: White space.
3743 * cli/cli-script.c: White space.
3744 * cli/cli-setshow.c: White space.
3745
3746 * valarith.c: White space.
3747 * valops.c: White space.
3748 * valprint.c: White space.
3749 * value.c: White space.
3750 * varobj.c: White space.
3751 * xcoffread.c: White space.
3752 * xml-support.c: White space.
3753 * xml-tdesc.c: White space.
3754
3755 2010-05-17 Andreas Schwab <schwab@redhat.com>
3756
3757 PR gdb/11092
3758 * c-lang.c (c_printstr): Compute real length of NUL terminated
3759 string at first.
3760
3761 2010-05-17 Joel Brobecker <brobecker@adacore.com>
3762
3763 * parse.c (parse_exp_in_context): When block is not NULL, use
3764 its associated language to parse the expression instead of
3765 the current_language.
3766
3767 2010-05-17 Joel Brobecker <brobecker@adacore.com>
3768
3769 * jv-lang.c (java_lookup_class): Remove commented out code.
3770 (type_from_class): Likewise.
3771 (java_op_print_tab): Remove commented-out elements.
3772
3773 2010-05-17 Joel Brobecker <brobecker@adacore.com>
3774
3775 * ada-lang.c (to_fixed_range_type): The the raw index type as
3776 argument instead of the raw type name. Remove orig_type parameter.
3777 Update calls throughout.
3778 (ada_fixup_array_indexes_type): New function.
3779 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
3780 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
3781 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
3782 Remove name parameter.
3783 (print_array_type): Add call to ada_fixup_array_indexes_type.
3784 Update calls to print_range_type.
3785 (ada_print_type): Update calls to print_range_type.
3786
3787 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
3788
3789 * dwarf2read.c (read_set_type): Set type length if
3790 DW_AT_byte_size attribute is present.
3791
3792 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
3793
3794 * p-valprint.c (pascal_val_print): Handle set type if range limits
3795 are undefined but size is known.
3796
3797 2010-05-17 Pedro Alves <pedro@codesourcery.com>
3798
3799 * procfs.c: Reformat.
3800
3801 2010-05-16 Michael Snyder <msnyder@vmware.com>
3802
3803 * target.c: White space.
3804 * target-descriptions.c: White space.
3805 * target-memory.c: White space.
3806 * thread.c: White space.
3807 * top.c: White space.
3808 * tracepoint.c: White space.
3809 * trad-frame.c: White space.
3810 * tramp-frame.c: White space.
3811 * ui-file.c: White space.
3812 * ui-out.c: White space.
3813 * user-regs.c: White space.
3814 * utils.c: White space.
3815
3816 * scm-exp.c: White space.
3817 * scm-lang.c: White space.
3818 * scm-valprint.c: White space.
3819 * sentinel-frame.c: White space.
3820 * ser-base.c: White space.
3821 * ser-go32.c: White space.
3822 * serial.c: White space.
3823 * ser-mingw.c: White space.
3824 * ser-pipe.c: White space.
3825 * ser-tcp.c: White space.
3826 * ser-unix.c: White space.
3827 * solib.c: White space.
3828 * solib-darwin.c: White space.
3829 * solib-frv.c: White space.
3830 * solib-irix.c: White space.
3831 * solib-osf.c: White space.
3832 * solib-pa64.c: White space.
3833 * solib-som.c: White space.
3834 * solib-spu.c: White space.
3835 * solib-svr4.c: White space.
3836 * solib-target.c: White space.
3837 * source.c: White space.
3838 * stabsread.c: White space.
3839 * stack.c: White space.
3840 * std-regs.c: White space.
3841 * symfile.c: White space.
3842 * symmisc.c: White space.
3843 * symtab.c: White space.
3844
3845 2010-05-16 Michael Snyder <msnyder@vmware.com>
3846
3847 * source.c (_initialize_source): Add "rev" as an abbreviation
3848 for the "reverse-search" command.
3849
3850 2010-05-16 Michael Snyder <msnyder@vmware.com>
3851
3852 * record.c: White space.
3853 * regcache.c: White space.
3854 * reggroups.c: White space.
3855 * remote-fileio.c: White space.
3856 * remote-m32r-sdi.c: White space.
3857 * remote-mips.c: White space.
3858 * remote-sim.c: White space.
3859 * remote.c: White space.
3860 (process_g_packet): Remove orphan braces.
3861
3862 2010-05-15 Michael Snyder <msnyder@vmware.com>
3863
3864 * parse.c: White space.
3865 * p-lang.c: White space.
3866 * posix-hdep.c: White space.
3867 * printcmd.c: White space.
3868 * progspace.c: White space.
3869 * prologue-value.c: White space.
3870 * psymtab.c: White space.
3871 * p-typeprint.c: White space.
3872 * p-valprint.c: White space.
3873
3874 * objc-lang.c: White space.
3875 * objfiles.c: White space.
3876 * observer.c: White space.
3877 * osabi.c: White space.
3878 * osdata.c: White space.
3879
3880 * m2-lang.c: White space.
3881 * m2-valprint.c: White space.
3882 * macrocmd.c: White space.
3883 * macroexp.c: White space.
3884 * macroscope.c: White space.
3885 * macrotab.c: White space.
3886 * main.c: White space.
3887 * maint.c: White space.
3888 * mdebugread.c: White space.
3889 * memattr.c: White space.
3890 * minsyms.c: White space.
3891 * monitor.c: White space.
3892
3893 2010-05-14 Michael Snyder <msnyder@vmware.com>
3894
3895 * jv-lang.c: White space.
3896 * jv-typeprint.c: White space.
3897 * jv-valprint.c: White space.
3898 * language.c: White space.
3899 * libunwind-frame.c: White space.
3900 * linespec.c: White space.
3901 * linux-nat.c: White space.
3902 * linux-record.c: White space.
3903 * linux-thread-db.c: White space.
3904
3905 * infcall.c: White space.
3906 * inf-child.c: White space.
3907 * infcmd.c: White space.
3908 * inferior.c: White space.
3909 * inf-loop.c: White space.
3910 * inflow.c: White space.
3911 * inline-frame.c: White space.
3912 * interps.c: White space.
3913
3914 * gcore.c: White space.
3915 * gdb.c: White space.
3916 * gdbtypes.c: White space.
3917 * gnu-nat.c: White space.
3918 * gnu-v2-abi.c: White space.
3919 * gnu-v3-abi.c: White space.
3920
3921 * findcmd.c: White space.
3922 * findvar.c: White space.
3923 * fork-child.c: White space.
3924 * frame-base.c: White space.
3925 * frame.c: White space.
3926 * frame-unwind.c: White space.
3927 * f-valprint.c: White space.
3928
3929 * elfread.c: White space.
3930 * environ.c: White space.
3931 * eval.c: White space.
3932 * event-loop.c: White space.
3933 * event-top.c: White space.
3934 * exceptions.c: White space.
3935 * exec.c: White space.
3936 * expprint.c: White space.
3937
3938 * dbxread.c: White space.
3939 * dcache.c: White space.
3940 * disasm.c: White space.
3941 * doublest.c: White space.
3942 * dsrec.c: White space.
3943 * dummy-frame.c: White space.
3944 * dwarf2expr.c: White space.
3945 * dwarf2-frame.c: White space.
3946 * dwarf2loc.c: White space.
3947 * dwarf2read.c: White space.
3948
3949 2010-05-14 Phil Muldoon <pmuldoon@redhat.com>
3950
3951 PR python/11482
3952
3953 * python/py-value.c (valpy_hash): New function.
3954 (value_object_type): Register valpy_hash.
3955
3956 2010-05-14 Hui Zhu <teawater@gmail.com>
3957 Michael Snyder <msnyder@vmware.com>
3958
3959 * linux-fork.c (gdbthread.h): New include.
3960 (fork_info): Add parent_ptid.
3961 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
3962 functions.
3963 (delete_checkpoint_command): Call inferior_call_waitpid.
3964 (checkpoint_command): Set parent_ptid.
3965
3966 2010-05-13 Michael Snyder <msnyder@vmware.com>
3967
3968 * dictionary.c: Re-indent to GNU coding standard.
3969
3970 * charset.c: White space.
3971 * c-lang.c: White space.
3972 * cli-out.c: White space.
3973 * coffread.c: White space.
3974 * complaints.c: White space.
3975 * completer.c: White space.
3976 * corefile.c: White space.
3977 * corelow.c: White space.
3978 * cp-abi.c: White space.
3979 * cp-namespace.c: White space.
3980 * cp-support.c: White space.
3981 * cp-valprint.c: White space.
3982 * c-typeprint.c: White space.
3983 * c-valprint.c: White space.
3984 * blockframe.c: White space.
3985 * breakpoint.c: White space.
3986 * buildsym.c: White space.
3987 * blockframe.c: White space.
3988 * bcache.c: White space.
3989 * gdbarch.sh: White space, add blank lines.
3990 * arch-utils.c: Ditto.
3991 * gdbarch.c: Regenerate.
3992 * frame.c: White space, add blank lines.
3993 * stack.c: White space, add blank lines.
3994 (initialize_stack): Remove long-dead code.
3995
3996 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3997
3998 Code cleanup.
3999 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
4000 (locexpr_read_variable, loclist_read_variable): Update the callers.
4001
4002 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4003
4004 Code cleanup.
4005 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
4006 Remove check of NULL returned by tag_type_to_type.
4007 (die_containing_type): Remove variable type. Remove type_die variable
4008 initialization. Remove check of NULL returned by tag_type_to_type.
4009
4010 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
4011
4012 PR exp/11530.
4013 * gdbtypes.c (lookup_struct_elt_type): Also lookup
4014 names of unnamed structures or unions.
4015
4016 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
4017
4018 * procfs.c (proc_watchpoint_address): New function.
4019 (procfs_stopped_by_watchpoint): Remove useless check after
4020 find_procinfo_or_die call.
4021 (procfs_stopped_data_address): New function.
4022 (procfs_use_watchpoints): Register new watchpoint related function.
4023
4024 2010-05-11 Tom Tromey <tromey@redhat.com>
4025
4026 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
4027
4028 2010-05-10 Michael Snyder <msnyder@vmware.com>
4029
4030 * utils.c: White space cleanup.
4031
4032 2010-05-10 Tom Tromey <tromey@redhat.com>
4033
4034 * eval.c (ptrmath_type_p): Add 'lang' argument.
4035 (evaluate_subexp_standard): Update.
4036 (evaluate_subexp_with_coercion): Update.
4037 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
4038
4039 2010-05-10 Michael Snyder <msnyder@vmware.com>
4040
4041 * utils.c (do_fclose_cleanup) Restore local variable.
4042
4043 2010-05-09 Doug Evans <dje@google.com>
4044
4045 * record.c (init_record_core_ops): Rename record_core to record-core.
4046
4047 2010-05-08 Joel Brobecker <brobecker@adacore.com>
4048
4049 Implement task switching on pa-hpux.
4050 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
4051 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
4052
4053 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
4054
4055 * valops.c (find_overload_match): Add missing i18n markup.
4056
4057 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
4058
4059 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
4060
4061 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4062
4063 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
4064 list for the obconcat call.
4065 * mdebugread.c (parse_symbol): Likewise.
4066 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
4067 Likewise.
4068 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
4069 New variable ap. Remove variables len and val.
4070 * symfile.h (obconcat): Likewise for the prototype.
4071
4072 2010-05-07 Michael Snyder <msnyder@vmware.com>
4073
4074 * python/python.c (execute_gdb_command): Remove unused variables.
4075 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
4076 * python/py-breakpoint.c (gdbpy_breakpoint_created):
4077 Remove unused variable.
4078 * python/py-cmd.c (cmdpy_function): Remove unused variable.
4079 (cmdpy_completer): Remove unused variable.
4080 * python/py-frame.c (frapy_find_sal): Remove unused variable.
4081 * python/py-function.c (fnpy_call): Remove unused variable.
4082 * python/py-objfile.c (objfile_to_objfile_object):
4083 Remove unused variable.
4084 * python/py-param.c (parmpy_init): Remove unused variable.
4085 * python/py-prettyprint.c (apply_varobj_pretty_printer):
4086 Remove unused variable.
4087 (gdbpy_default_visualizer): Remove unused variable.
4088 * python/py-progspace.c (pspace_to_pspace_object):
4089 Remove unused variable.
4090 * python/py-symtab.c (symtab_and_line_to_sal_object):
4091 Remove unused variable.
4092 * python/py-type.c (typy_template_argument):
4093 Remove unused variable.
4094 * python/py-value.c (valpy_string): Remove unused variable.
4095 (convert_value_from_python): Remove unused variables.
4096
4097 2010-05-07 Michael Snyder <msnyder@vmware.com>
4098
4099 * valops.c (value_cast_pointers): Restore unused variable 'type1',
4100 and use it to compute variable 't1'.
4101
4102 2010-05-07 Joel Brobecker <brobecker@adacore.com>
4103
4104 * ada-lang.c (assign_aggregate): Remove unused variable.
4105
4106 2010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
4107
4108 PR C++/7943:
4109 * valops.c (find_overload_match): Handle fsym == NULL case.
4110 Add int no_adl argument.
4111 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
4112 when appropriate.
4113 Add int no_adl argument.
4114 (find_oload_champ_namespace): Add int no_adl argument.
4115 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
4116 expression.
4117 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
4118 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
4119 Evaluate arguments and use them to perform ADL lookup.
4120 Pass no_adl argument to find_overload_match.
4121 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
4122 * cp-support.h: Added prototype for
4123 make_symbol_overload_list_namespace.
4124 * cp-support.c (make_symbol_overload_list_namespace): New function.
4125 (make_symbol_overload_list_adl_namespace): New function.
4126 (make_symbol_overload_list_adl): New function.
4127 (make_symbol_overload_list_using): Moved code to add function to
4128 overload set to make_symbol_overload_list_namespace.
4129 * c-exp.y: create UNKNOWN_CPP_NAME token.
4130 Add parse rule for ADL functions.
4131 (classify_name): Recognize an UNKNOWN_CPP_NAME.
4132
4133 2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4134
4135 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
4136 sentinel.
4137
4138 2010-05-07 Joel Brobecker <brobecker@adacore.com>
4139
4140 Implement task switching on solaris targets.
4141 * sol-thread.c (thread_db_find_thread_from_tid)
4142 (sol_get_ada_task_ptid): New functions.
4143 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
4144
4145 2010-05-07 Pedro Alves <pedro@codesourcery.com>
4146
4147 * remote.c (remote_query_supported_append): Use reconcat.
4148 (remote_query_supported): Install a cleanup. Use reconcat.
4149
4150 2010-05-07 Pedro Alves <pedro@codesourcery.com>
4151
4152 * gdbarch.sh (qsupported): Delete.
4153 * gdbarch.h, gdbarch.c: Regenerate.
4154 * remote.c (remote_query_supported): Remove use of
4155 gdbarch_qsupported.
4156
4157 2010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
4158
4159 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
4160 function.
4161
4162 2010-05-06 Michael Snyder <msnyder@vmware.com>
4163
4164 * xml-support.c (xinclude_start_include): Delete unused variable.
4165 (xml_process_xincludes): Delete unused variable.
4166 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
4167 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
4168 (tdesc_find_arch_register): Delete unused variable.
4169 (tdesc_use_registers): Delete unused variable.
4170 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
4171 * inferior.c (print_inferior): Delete unused variable.
4172 * record.c (record_open_1): Delete unused variable.
4173 (record_restore): Delete unused variable.
4174 (cmd_record_save): Delete unused variable.
4175 * gcore.c (derive_heap_segment): Delete unused variable.
4176 (objfile_find_memory_regions): Use unused variable.
4177 * jit.c (jit_inferior_init): Delete unused variable.
4178 * progspace.c (clone_program_space): Delete unused variable.
4179 (pspace_empty_p): Delete unused variable.
4180
4181 * frame-unwind.c (frame_unwind_find_by_frame):
4182 Delete unused variable.
4183 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
4184 * cp-support.c (mangled_name_to_comp): Delete unused variable.
4185 (method_name_from_physname): Delete unused variable.
4186 (cp_func_name): Delete unused variable.
4187 (cp_validate_operator): Delete unused variable.
4188 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
4189 Delete unused variable.
4190 * trad-frame.c (trad_frame_get_prev_register):
4191 Delete unused variable.
4192 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
4193
4194 * serial.c (serial_for_fd): Delete unused variable.
4195 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
4196 * top.c (execute_command): Delete unused variable.
4197 (init_main): Delete unused variable.
4198 * utils.c (do_fclose_cleanup): Delete unused variable.
4199 (do_all_inferior_continuations): Delete unused variable.
4200 (initialize_utils): Delete unused variable.
4201 (internal_problem_mode): Delete unused global.
4202 * frame.c (get_prev_frame): Delete unused global.
4203 (get_frame_locals_address): Delete unused global.
4204 (get_frame_args_address): Delete unused global.
4205
4206 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
4207 (pascal_type_print_varspec_prefix): Delete unused variable.
4208 * f-typeprint.c (f_type_print_base): Delete unused variable.
4209 (f_type_print_varspec_suffix): Delete unused variable.
4210 * m2-typeprint.c (m2_print_type): Delete unused variable.
4211 (m2_long_set): Delete unused variable.
4212 * ada-valprint.c (ada_val_print_1): Delete unused variable.
4213 * d-valprint.c (dynamic_array_type): Delete unused variable.
4214 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
4215 Delete unused variable.
4216 (f77_create_arrayprint_offset_tbl): Delete unused variable.
4217 * m2-valprint.c (m2_val_print): Delete unused variable.
4218
4219 * ui-out.c (ui_out_field_int): Delete unused variable.
4220 (ui_out_field_fmt_int): Delete unused variable.
4221 * varobj.c (varobj_list_children): Delete unused variable.
4222 (varobj_set_value): Delete unused variable.
4223 (install_new_value_visualizer): Delete unused variable.
4224 (varobj_set_visualizer): Delete unused variable.
4225 (varobj_update): Delete unused variable.
4226 (varobj_editable_p): Delete unused variable.
4227 (c_value_of_root): Delete unused variable.
4228 (cplus_describe_child): Delete unused variable.
4229
4230 * ada-lang.c (add_defn_to_vec): Delete unused variable.
4231 (decode_constrained_packed_array_type): Delete unused variable.
4232 (add_defn_to_vec): Delete unused variable.
4233 (symbol_completion_match): Delete unused variable.
4234 (value_tag_from_contents_and_address): Delete unused variable.
4235 (ada_evaluate_subexp): Delete unused variable.
4236 * c-lang.c (classify_type): Delete unused variable.
4237 * f-lang.c (f_printstr): Delete unused variable.
4238 * objc-lang.c (objc_printstr): Delete unused variable.
4239 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
4240 * jv-lang.c (type_from_class): ifdef unused variable.
4241 (java_class_name_from_physname): Delete unused variable.
4242 * m2-lang.c (m2_printstr): Delete unused variable.
4243
4244 * objfiles.c (objfile_relocate): Delete unused variable.
4245 * maint.c (_initialize_maint_cmds): Delete unused variable.
4246 * demangle.c (_initialize_demangler): Delete unused variable.
4247 * corefile.c (reopen_exec_file): Delete unused variable.
4248 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
4249 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
4250
4251 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
4252 * memattr.c (mem_delete): Delete unused variable.
4253 (invalidate_target_mem_regions): Delete unused variable.
4254 * mem-break.c (default_memory_insert_breakpoint):
4255 Delete unused variable.
4256 * target.c (target_get_osdata): Delete unused variable.
4257 * parse.c (length_of_subexp): Delete unused variable.
4258 (prefixify_subexp): Delete unused variable.
4259 (exp_iterate): Delete unused variable.
4260 * reverse.c (delete_bookmark_command): Delete unused variable.
4261
4262 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
4263 * macroexp.c (gather_arguments): Delete unused variable.
4264 (substitute_args): Delete unused variable.
4265 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
4266 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
4267 (_initialize_gdbarch): Delete unused variable.
4268 * gdbarch.c, gdbarch.h: Regenerate.
4269 * arch-utils.c (initialize_current_architecture):
4270 Delete unused variable.
4271 (_initialize_gdbarch_utils): Delete unused variable.
4272 * gdbtypes.c (make_cv_type): Delete unused variable.
4273 (make_type_with_address_space): Delete unused variable.
4274
4275 * linespec.c (decode_compound): Delete unused variable.
4276 * dictionary.c (iterator_next_hashed): Delete unused variable.
4277 * infcall.c (call_function_by_hand): Delete unused variable.
4278 * infcmd.c (step_1): Delete unused variable.
4279 (registers_info): Delete unused variable.
4280 (attach_command): Delete unused variable.
4281 * infrun.c (follow_exec): Delete unused variable.
4282 (handle_step_into_function_backwards): Delete unused variable.
4283 (_initialize_infrun): Delete unused variable.
4284 * stack.c (parse_frame_specification_1): Delete unused variable.
4285 (frame_info): Delete unused variable.
4286 (backtrace_command_1): Delete unused variable.
4287 (catch_info): Delete unused variable.
4288
4289 * eval.c (evaluate_subexp_standard): Delete unused variable.
4290 * valops.c (value_cast_pointers): Delete unused variable.
4291 (value_dynamic_cast): Delete unused variable.
4292 (value_array): Delete unused variable.
4293 (find_overload_match): Delete unused variable.
4294 * valarith.c (value_subscript): Delete unused variable.
4295 (value_binop): Delete unused variable.
4296 * valprint.c (_initialize_valprint): Delete unused variable.
4297 * printcmd.c (print_command_1): Delete unused variable.
4298 (address_info): Delete unused variable.
4299 (printf_command): Delete unused variable.
4300
4301 * auxv.c (target_auxv_search): Delete unused variable.
4302 * blockframe.c (get_frame_block): Delete unused variable.
4303 * regcache.c (regcache_cpy): Delete unused variable.
4304 (regcache_cpy_no_passthrough): Delete unused variable.
4305 * charset.c (wchar_iterate): Delete unused variable.
4306 (find_charset_names): Delete unused variable.
4307 (_initialize_charset): Delete unused variable.
4308 * disasm.c (do_mixed_source_and_assembly):
4309 Delete unused variable.
4310 * source.c (set_default_source_symtab_and_line):
4311 Delete unused variable.
4312 (set_substitute_path_command): Delete unused variable.
4313 * value.c (preserve_values): Delete unused variable.
4314 (value_from_double): Delete unused variable.
4315
4316 2010-05-05 Michael Snyder <msnyder@vmware.com>
4317
4318 * psymtab.c (lookup_partial_symbol): Delete unused variable.
4319 (find_last_source_symtab_from_partial): Delete unused variable.
4320 * symfile.c (place_section): Delete unused variable.
4321 (default_symfile_offsets): Delete unused variable.
4322 (get_debug_link_info): Delete unused variable.
4323 (find_separate_debug_file_by_debuglink): Delete unused variable.
4324 (add_symbol_file_command): Delete unused variable.
4325 (symfile_find_segment_sections): Delete unused variable.
4326 * symmisc.c (free_symtab): Delete unused variable.
4327 (dump_symtab_1): Delete unused variable.
4328 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
4329 (find_pc_sect_symtab): Delete unused variable.
4330 (skip_prologue_using_lineinfo): Delete unused variable.
4331 (sources_info): Delete unused variable.
4332 (completion_list_add_name): Delete unused variable.
4333 (expand_line_sal): Delete unused variable.
4334
4335 * breakpoint.c (validate_commands_for_breakpoint):
4336 Delete unused variables.
4337 (insert_catchpoint): Delete unused variable.
4338 (update_watchpoint): Delete unused variable.
4339 (insert_bp_location): Delete unused variable.
4340 (insert_breakpoint_locations): Delete unused variable.
4341 (remove_breakpoint_1): Delete unused variable.
4342 (software_breakpoint_inserted_here_p): Delete unused variable.
4343 (watchpoints_triggered): Delete unused variable.
4344 (bpstat_check_watchpoint): Delete unused variable.
4345 (bpstat_stop_status): Delete unused variable.
4346 (print_one_breakpoint_location): Delete unused variable.
4347 (allocate_bp_location): Delete unused variable.
4348 (create_breakpoint): Delete unused variable.
4349 (watch_command_1): Delete unused variable.
4350 (catch_exception_command_1): Delete unused variable.
4351 (catch_ada_exception_command): Delete unused variable.
4352 (delete_breakpoint): Delete unused variable.
4353 (breakpoint_re_set_one): Delete unused variable.
4354 (do_enable_breakpoint): Delete unused variable.
4355
4356 2010-05-06 Pedro Alves <pedro@codesourcery.com>
4357
4358 * amd64-tdep.c: Include disasm.h.
4359 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
4360 (amd64_insn_length): Moved to disasm.c and renamed.
4361 (fixup_riprel): Adjust.
4362 * disasm.c (do_ui_file_delete): New.
4363 (gdb_insn_length): New.
4364 (gdb_buffered_insn_length_fprintf)
4365 (gdb_buffered_insn_length_init_dis)
4366 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
4367 renamed.
4368 * disasm.h (gdb_insn_length): Declare.
4369 (gdb_buffered_insn_length): Declare.
4370
4371 2010-05-06 Pedro Alves <pedro@codesourcery.com>
4372
4373 * remote.c (clear_threads_parsing_context): New.
4374 (remote_threads_info): Delete unused null_cleanup. Install a
4375 cleanup to clear the threads_parsing_context in case parsing
4376 throws.
4377
4378 2010-05-05 Michael Snyder <msnyder@vmware.com>
4379
4380 * c-exp.y (parse_string_or_char): Delete unused variable.
4381 (c_lex): Delete unused variable.
4382 * cp-name-parser.y (cpname_lex): Delete unused variable.
4383 * ada-exp.y (find_primitive_type): Delete unused variable.
4384 (write_var_or_type): Delete unused variable.
4385 * jv-exp.y (java_parse): Delete unused variable.
4386 (push_expression_name): Delete unused variable.
4387 * p-exp.y (pascal_lex): Delete unused variable.
4388
4389 2010-05-05 Pedro Alves <pedro@codesourcery.com>
4390
4391 * remote.c (remote_threads_info): Really revert previous previous
4392 change.
4393
4394 2010-05-05 Michael Snyder <msnyder@vmware.com>
4395
4396 * elfread.c (elf_symtab_read): Delete unused variable.
4397 (find_separate_debug_file_by_buildid): Delete unused variables.
4398 (elf_symfile_read): Delete unused variable.
4399
4400 * coffread.c (coff_symfile_read): Delete unused variables.
4401
4402 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
4403 (read_pe_exported_syms): Delete unused variable.
4404
4405 * stabsread.c (define_symbol): Delete unused variable.
4406
4407 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
4408 (process_psymtab_comp_unit): Delete unused variable.
4409 (dwarf2_build_psymtabs_hard): Delete unused variable.
4410 (load_partial_comp_unit): Delete unused variable.
4411 (create_all_comp_units): Delete unused variable.
4412 (scan_partial_symbols): Delete unused variable.
4413 (add_partial_symbol): Delete unused variable.
4414 (add_partial_namespace): Delete unused variable.
4415 (add_partial_enumeration): Delete unused variable.
4416 (load_full_comp_unit): Delete unused variable.
4417 (process_full_comp_unit): Delete unused variable.
4418 (read_file_scope): Delete unused variable.
4419 (read_type_unit_scope): Delete unused variable.
4420 (process_structure_scope): Delete unused variable.
4421 (process_enumeration_scope): Delete unused variable.
4422 (read_tag_ptr_to_member_type): Delete unused variable.
4423 (read_typedef): Delete unused variable.
4424 (read_partial_die): Delete unused variable.
4425 (decode_locdesc): Delete unused variable.
4426 (zeroed_partial_die): Delete unused global variable.
4427
4428 * tui/tui-interp.c (_initialize_tui_interp):
4429 Delete unused variable.
4430 * tui/tui-regs.c tui_display_registers_from):
4431 Delete unused variable.
4432 (tui_check_register_values): Delete unused variable.
4433 (tui_register_format): Delete unused variable.
4434 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
4435 * tui/tui-windata.c (tui_display_data_from_line):
4436 Delete unused variables.
4437 (tui_vertical_data_scroll): Delete unused variables.
4438
4439 2010-05-05 Michael Snyder <msnyder@vmware.com>
4440
4441 * remote.c (remote_threads_info): Revert questionable part of
4442 the previous change.
4443
4444 2010-05-05 Michael Snyder <msnyder@vmware.com>
4445
4446 * mi/mi-out.c (mi_table_begin): Delete unused variable.
4447 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
4448 (mi_cmd_var_list_children): Delete unused variable.
4449 (varobj_update_one): Delete unused variable.
4450 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
4451 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
4452 Delete unused variable.
4453 (mi_cmd_stack_list_variables): Delete unused variable.
4454 (list_args_or_locals): Delete unused variable.
4455 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
4456 Delete unused variables.
4457 (mi_cmd_file_list_exec_source_files): Delete unused variable.
4458 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
4459 Delete unused variable.
4460 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
4461 (mi_cmd_interpreter_exec): Delete unused variable.
4462 (mi_on_normal_stop): Delete unused variable.
4463 * mi/mi-main.c (run_one_inferior): Delete unused variable.
4464 (print_one_inferior): Delete unused variables.
4465 (mi_execute_command): Delete unused variable.
4466 (mi_cmd_execute): Delete unused variable.
4467 (timestamp): Delete unused variable.
4468
4469 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
4470 (restore_binary_file): Delete unused variable.
4471 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
4472 * cli/cli-script.c (define_command): Delete unused variables.
4473 (recurse_read_control_structure): Delete unused variable.
4474 (script_from_file): Delete unused variable.
4475 * cli/cli-cmds.c (complete_command): Delete unused variable.
4476 (disassemble_command): Delete unused variable.
4477
4478 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
4479 * tracepoint.c (delete_trace_variable_command):
4480 Delete unused variables.
4481 (encode_actions_1): Delete unused variables.
4482 (start_tracing): Delete unused variable.
4483 (trace_status_mi): Delete unused variable.
4484 (tfind_1): Delete unused variable.
4485 (trace_find_pc_command): Delete unused variable.
4486 (trace_find_line_command): Delete unused variables.
4487 (trace_find_range_command): Delete unused variables.
4488 (trace_find_outside_command): Delete unused variables.
4489 (parse_tracepoint_definition): Delete unused variables.
4490 (tfile_fetch_registers): Delete unused variable.
4491
4492 * dcache.c (dcache_init): Delete unused variable.
4493 (dcache_info): Delete unused variable.
4494
4495 * remote.c (remote_threads_info): Delete unused variable.
4496 (process_stop_reply) :Delete unused variable.
4497 (remote_get_trace_status): Delete unused variables.
4498
4499 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
4500 (thread_from_lwp): Delete unused variable.
4501 (enable_thread_event_reporting): Delete unused variable.
4502 (check_for_thread_db): Delete unused variables.
4503 (thread_db_find_new_threads_2): Delete unused variable.
4504
4505 * linux-fork.c (info_checkpoints_command): Delete unused variables.
4506 (checkpoint_command): Delete unused variable.
4507 (linux_fork_context): Delete unused variables.
4508
4509 * linux-nat.c (linux_parent_pid): Delete unused global variable.
4510 (linux_tracefork_child): Delete unused variable.
4511 (linux_child_follow_fork): Delete unused variable.
4512 (linux_nat_detach): Delete unused variable.
4513 (linux_handle_extended_wait): Delete unused variable.
4514 (linux_nat_has_pending_sigint): Delete unused variable.
4515 (linux_nat_find_memory_regions): Delete unused variable.
4516 (linux_nat_make_corefile_notes): Delete unused variables.
4517 (linux_nat_info_proc_cmd): Delete unused variable.
4518 (linux_proc_pending_signals): Delete unused variable.
4519 (linux_nat_stop_lwp): Delete unused variables.
4520 (_initialize_linux_nat): Delete unused variable.
4521
4522 * ser-pipe.c (pipe_ops): Delete unused global variable.
4523
4524 * linux-record.c (record_linux_system_call):
4525 Delete unused variables.
4526
4527 * corelow.c (core_xfer_partial): Delete unused variables.
4528
4529 * solib-svr4.c (find_program_interpreter): Delete unused variable.
4530 (svr4_solib_create_inferior_hook): Add ifdef around
4531 conditionally-used variable declarations.
4532
4533 * solib.c (solib_find): Delete unused variable.
4534 (free_so_symbols): Delete unused variable.
4535 (info_sharedlibrary_command): Delete unused variable.
4536 (reload_shared_libraries_1): Delete unused variable.
4537 (_initialize_solib): Delete unused variable.
4538
4539 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
4540 (i386_collect_xstateregset): Delete unused variable.
4541 * i387-tdep.c (i387_print_float_info): Delete unused variable.
4542
4543 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
4544 Delete unused variable 'type'.
4545
4546 2010-05-05 Joel Brobecker <brobecker@adacore.com>
4547
4548 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
4549 ada-lang.c: Remove comment mentioning these macros.
4550 * m2-exp.y: Delete commented out code.
4551
4552 2010-05-05 Joel Brobecker <brobecker@adacore.com>
4553
4554 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
4555 for array types.
4556 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
4557
4558 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
4559
4560 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
4561 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
4562 ATTRIBUTE_UNUSED.
4563 (cleanup_kernel_helper_return): Likewise.
4564 * arm-tdep.c (copy_unmodified): Likewise.
4565 (copy_preload): Likewise.
4566 (copy_copro_load_store): Likewise.
4567 (cleanup_branch): Likewise.
4568 (copy_b_bl_blx): Likewise.
4569 (copy_bx_blx_reg): Likewise.
4570 (copy_alu_imm): Likewise.
4571 (copy_alu_reg): Likewise.
4572 (copy_alu_shifted_reg): Likewise.
4573 (cleanup_load): Likewise.
4574 (cleanup_store): Likewise.
4575 (cleanup_block_load_pc): Likewise.
4576 (cleanup_svc): Likewise.
4577 (copy_undef): Likewise.
4578 (copy_unpred): Likewise.
4579 * remote.c (register_remote_support_xml): Likewise.
4580
4581 2010-05-05 Hui Zhu <teawater@gmail.com>
4582
4583 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
4584
4585 2010-05-04 Mark Kettenis <kettenis@gnu.org>
4586
4587 * remote.c (register_remote_support_xml)
4588 (remote_query_supported_append, remote_query_supported): Add cast
4589 to NULL used as sentinel.
4590 * tracepoint.c (tvariables_info_1): Likewise.
4591 * utils.c (add_internal_problem_command): Likewise.
4592
4593 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4594
4595 * dwarf2loc.c (read_pieced_value, write_pieced_value,
4596 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
4597 registers gracefully.
4598
4599 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4600
4601 * exec.c (print_section_info): Display entry point without arch
4602 specific parts.
4603
4604 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
4605
4606 PR exp/11349.
4607 * printcmd.c (x_command): Only dereference once implicitly for
4608 TYPE_CODE_REF.
4609
4610 2010-05-03 Doug Evans <dje@google.com>
4611
4612 * event-loop.c (gdb_timer): Delete unused global.
4613 (create_timer): Update.
4614
4615 2010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4616
4617 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
4618 CURRENT->DECLARATION case.
4619 * cp-support.h (struct using_direct): Provide extended comment.
4620
4621 2010-05-03 Mark Kettenis <kettenis@gnu.org>
4622
4623 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
4624 HPPABSD_SIZEOF_GREGS.
4625 (HPPAOBSD_SIZEOF_FPREGS): New define.
4626 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
4627 (hppaobsd_supply_fpregset): New function.
4628 (hppaobsd_gregset): Renamed from hppabsd_gregset.
4629 (hppaobsd_fpregset): New variable.
4630 (hppaobsd_regset_from_core_section): Handle floating-point registers.
4631 (_initialize_hppabsd_tdep): Remove spurious blank line.
4632
4633 2010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
4634
4635 PR pascal/11349.
4636 * p-valprint.c (pascal_value_print): Always dereference a value with
4637 type code TYPE_CODE_REF.
4638
4639 2010-05-03 Pedro Alves <pedro@codesourcery.com>
4640
4641 * remote.c (remote_notice_signals): New.
4642 (remote_start_remote): In non-stop mode, update the remote end on
4643 which signals it can silently pass.
4644 (init_remote_ops): Install remote_notice_signals.
4645
4646 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4647
4648 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
4649 * command.h (error_no_arg): ... here. Remove NORETURN, change
4650 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4651 * defs.h (NORETURN, ATTR_NORETURN): Remove.
4652 (perror_with_name, verror, error, error_stream, vfatal, fatal)
4653 (internal_verror, internal_error, nomem): Remove NORETURN, change
4654 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4655 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
4656 (throw_vfatal, throw_error): Remove NORETURN.
4657 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
4658 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
4659 (throw_error, deprecated_throw_reason): Remove NORETURN, change
4660 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4661 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
4662 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
4663 NORETURN.
4664 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
4665 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
4666 ATTRIBUTE_NORETURN.
4667 * target.c (tcomplain): Likewise.
4668 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
4669 ATTRIBUTE_NORETURN.
4670 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
4671 (internal_error, perror_with_name, nomem): Remove NORETURN.
4672 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
4673 ATTRIBUTE_NORETURN.
4674
4675 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4676
4677 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4678 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
4679 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
4680 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4681 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
4682 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4683 * complaints.h (complaint, internal_complaint): Likewise.
4684 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
4685 (ATTR_FORMAT): Remove.
4686 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
4687 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
4688 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
4689 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
4690 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
4691 (internal_error, internal_vwarning, internal_warning, warning)
4692 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4693 * disasm.c (fprintf_disasm): Likewise.
4694 * exceptions.c (throw_it): Likewise.
4695 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
4696 (throw_error): Likewise.
4697 * language.h (type_error, range_error): Likewise.
4698 * linespec.c (cplusplus_error): Likewise.
4699 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
4700 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
4701 * monitor.c (monitor_debug): Likewise.
4702 * parser-defs.h (parser_fprintf): Likewise.
4703 * serial.h (serial_printf): Likewise.
4704 * tui/tui-hooks.c (tui_query_hook): Likewise.
4705 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
4706 (uo_message): Likewise.
4707 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
4708 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
4709 Likewise.
4710 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
4711
4712 2010-05-02 Pedro Alves <pedro@codesourcery.com>
4713
4714 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
4715 (cli_table_header, cli_begin, cli_end, cli_field_int)
4716 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
4717 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
4718 Delete forward declarations.
4719 (cli_ui_out_impl): Move below the callbacks.
4720 (_initialize_cli_out): Delete.
4721
4722 2010-05-02 Pedro Alves <pedro@codesourcery.com>
4723
4724 * README: Use consistent `GDB' and `GDBserver' spellings.
4725
4726 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4727
4728 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
4729
4730 2010-05-01 Pedro Alves <pedro@codesourcery.com>
4731
4732 * infrun.c (prepare_for_detach): In non-stop, context switch to
4733 the thread that got the event before handling the event.
4734
4735 2010-04-30 Tom Tromey <tromey@redhat.com>
4736
4737 * symtab.c (symbol_set_names): Fix typo.
4738
4739 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
4740
4741 * python/py-param.c (parm_constants): Avoid ARI warning
4742 by adding ARI comment.
4743 (parmpy_init): Likewise.
4744
4745 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
4746
4747 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
4748 and created type for re-use.
4749
4750 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
4751
4752 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
4753
4754 2010-04-29 Doug Evans <dje@google.com>
4755
4756 * ser-base.h (reschedule): Delete prototype.
4757 * ser-base.c (reschedule): Make static.
4758
4759 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4760
4761 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
4762 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
4763 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
4764 EABI.
4765 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
4766 use.
4767
4768 2010-04-29 Pedro Alves <pedro@codesourcery.com>
4769
4770 PR gdb/11557
4771
4772 * regcache.c (registers_changed): Rename to ...
4773 (registers_changed_ptid): ... this, and only delete register cache
4774 entries matching the ptid filter argument.
4775 (registers_changed): Reimplement on top of registers_changed_ptid.
4776 * regcache.h (registers_changed_ptid): Declare.
4777 * target.c (target_resume): Flush register caches.
4778
4779 2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
4780 Tom Tromey <tromey@redhat.com>
4781 Thiago Jung Bauermann <bauerman@br.ibm.com>
4782
4783 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
4784 (SUBDIR_PYTHON_SRCS): Likewise.
4785 (py-parameter.o): New rule.
4786 * python/py-parameter.c: New file.
4787 * python/python-internal.h (gdbpy_initialize_parameter)
4788 (gdbpy_parameter, gdbpy_parameter_value)
4789 (gdbpy_parse_command_name): Declare.
4790 * python/py-cmd.c (parse_command_name): Rename to
4791 gdbpy_parse_command_name.
4792 (gdbpy_parse_command_name): Accept a starting list parameter and
4793 use over cmdlist.
4794 (cmdpy_init): Use gdbpy_parse_command_name.
4795 * python/python.c (parameter_to_python): Rename to
4796 gdbpy_parameter_to_python. Accept enum var_types and value.
4797 (gdbpy_parameter): Use gdbpy_parameter_value.
4798 (_initialize_python): Call gdbpy_initialize_parameters.
4799
4800 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4801
4802 * MAINTAINERS: Add myself for write after approval privileges.
4803
4804 2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
4805
4806 D language support.
4807 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
4808 (COMMON_OBS): Add d-lang.o d-valprint.o.
4809 (HFILES_NO_SRCDIR): Add d-lang.h.
4810 * NEWS: Mention D language support.
4811 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
4812 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
4813 * d-lang.c: New file.
4814 * d-lang.h: New file.
4815 * d-valprint.c: New file.
4816 * defs.h (enum language): Add language_d.
4817 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
4818 * language.c (binop_result_type, integral_type, character_type)
4819 (string_type, boolean_type, structured_type): Add language_d.
4820 * symfile.c (init_filename_language_table): Add language_d.
4821 * symtab.c: Include d-lang.h.
4822 (symbol_init_language_specific, symbol_find_demangled_name)
4823 (symbol_natural_name, lookup_symbol_in_language)
4824 (symbol_demangled_name, symbol_matches_domain): Add language_d.
4825
4826 2010-04-27 Joel Brobecker <brobecker@adacore.com>
4827
4828 * solib-svr4.c (solib_svr4_r_map): Expand function description.
4829
4830 2010-04-27 Joel Brobecker <brobecker@adacore.com>
4831
4832 * symfile.c (init_filename_language_table): Register .dg files
4833 with language_ada.
4834
4835 2010-04-27 Joel Brobecker <brobecker@adacore.com>
4836
4837 * gdbtypes.h (struct main_type): Expand comment about target_type
4838 field.
4839
4840 2010-04-27 Pedro Alves <pedro@codesourcery.com>
4841 Tristan Gingold <gingold@adacore.com>
4842
4843 * symfile.c (reread_symbols): Also search for file in libraries.
4844 Update comment.
4845
4846 2010-04-27 Joel Brobecker <brobecker@adacore.com>
4847
4848 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
4849 in terms of configuration.
4850
4851 2010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4852
4853 * objfiles.c: Include solist.h.
4854 (free_all_objfiles): New variable so. Check stale solist objfiles.
4855 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
4856 and no_shared_libraries.
4857
4858 2010-04-27 Joel Brobecker <brobecker@adacore.com>
4859
4860 ARI warning fix.
4861 * python/py-auto-load.c (source_section_scripts): Remove trailing
4862 new-line in i18n string.
4863
4864 2010-04-26 Doug Evans <dje@google.com>
4865
4866 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
4867
4868 2010-04-26 Tom Tromey <tromey@redhat.com>
4869
4870 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
4871 command list.
4872
4873 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
4874
4875 Removal of config/i386/nm-i386sol2.h native configuration file.
4876 * config/i386/nm-i386sol2.h: Remove file.
4877 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
4878 * config/i386/sol2-64.mh: Idem.
4879 * config/djgpp/fnchange.lst: Remove reference to that file.
4880 * Makefile.in (HFILES_NO_SRCDIR): Idem.
4881
4882 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
4883
4884 PR breakpoints/11531.
4885 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
4886 macro definition and related comment.
4887 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
4888 (resume): Remove code and comment related to this macro.
4889
4890 2010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
4891
4892 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
4893 Fix whitespace.
4894
4895 2010-04-24 Pedro Alves <pedro@codesourcery.com>
4896
4897 * defs.h: Adjust comment.
4898 * filesystem.h, filesystem.c: New files.
4899 * Makefile.in (SFILES): Add filesystem.c.
4900 (COMMON_OBS): Add filesystem.o.
4901 * solib.c (solib_find): Handle DOS-based filesystems. Handle
4902 different target and host path flavours.
4903 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
4904 has_dos_based_file_system on the gdbarch.
4905 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
4906 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
4907 * i386-tdep.c (i386_go32_init_abi): Ditto.
4908 * gdbarch.sh (has_dos_based_file_system): New.
4909 * gdbarch.h, gdbarch.c: Regenerate.
4910 * NEWS: Mention improved support for remote targets with DOS-based
4911 filesystems. Mention new `set/show target-file-system-kind'
4912 commands.
4913
4914 2010-04-23 Stan Shebs <stan@codesourcery.com>
4915
4916 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
4917 comments.
4918 (struct agent_reqs): Remove.
4919 (ax_reg_mask): Declare.
4920 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
4921 (free_agent_expr): Free reg_mask.
4922 (ax_print): Add scope and register mask info.
4923 (ax_reqs): Remove agent_reqs argument, use agent expression
4924 fields, and move part of register mask computation to...
4925 (ax_reg_mask): New function.
4926 * ax-gdb.c (gen_trace_static_fields): Call it.
4927 (gen_traced_pop): Ditto.
4928 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
4929 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
4930 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
4931 (gen_eval_for_expr): Ditto, and require an rvalue.
4932 (agent_command): Call ax_reqs.
4933 (agent_eval_command): Ditto.
4934 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
4935 (validate_action_line): Ditto.
4936 (collect_symbol): Ditto.
4937 (encode_actions_1): Ditto.
4938
4939 2010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
4940 Paul Pluzhnikov <ppluzhnikov@google.com>
4941 Jan Kratochvil <jan.kratochvil@redhat.com>
4942
4943 Fix deadlock on looped list of loaded shared objects.
4944 * solib-svr4.c (LM_PREV): New function.
4945 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
4946 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
4947 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
4948 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
4949
4950 2010-04-23 Doug Evans <dje@google.com>
4951
4952 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
4953 python.
4954 * configure: Regenerate.
4955 * main.c: #include "python/python.h".
4956 (captured_main): Defer loading auto-loaded scripts until after
4957 local_gdbinit has been sourced.
4958 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
4959 (load_auto_scripts_for_objfile): New function.
4960 (auto_load_new_objfile): Call it.
4961 * python/python.h (gdbpy_global_auto_load): Declare.
4962 (load_auto_scripts_for_objfile): Declare.
4963
4964 Add support for auto-loading scripts from .debug_gdb_scripts section.
4965 * NEWS: Add entry for .debug_gdb_scripts.
4966 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
4967 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
4968 (py-auto-load.o): New rule.
4969 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
4970 * cli/cli-cmds.h (find_and_open_script): Update prototype.
4971 * python/py-auto-load.c: New file.
4972 * python/python-internal.h: #include <stdio.h>.
4973 (set_python_list, show_python_list): Declare.
4974 (gdbpy_initialize_auto_load): Declare.
4975 (source_python_script_for_objfile): Declare.
4976 * python/python.c: Remove #include of observer.h.
4977 (gdbpy_auto_load): Moved to py-auto-load.c.
4978 (GDBPY_AUTO_FILENAME): Ditto.
4979 (gdbpy_new_objfile): Delete.
4980 (source_python_script_for_objfile): New function.
4981 (set_python_list, show_python_list): Make externally visible.
4982 (_initialize_python): Move "auto-load" command to py-auto-load.c
4983 and observer_attach_new_objfile to py-auto-load.c.
4984
4985 2010-04-23 Jerome Guitton <guitton@adacore.com>
4986
4987 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
4988 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
4989 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
4990 New constants.
4991 (alpha_heuristic_analyze_probing_loop): New function.
4992 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
4993 and handle cases when a stack probe loop is generated.
4994 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
4995 (alpha_mdebug_max_frame_size_exceeded): New function.
4996 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
4997 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
4998 Return 0 when the maximum debuggable frame size has been exceeded.
4999
5000 2010-04-23 Joel Brobecker <brobecker@adacore.com>
5001
5002 Fix ARI warning.
5003 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
5004
5005 2010-04-20 Chris Moller <cmoller@redhat.com>
5006
5007 PR 10179
5008
5009 * symtab.c (rbreak_command): Added code to include a filename
5010 specification in the rbreak argument.
5011 * NEWS: Added a brief description of filename-qualified rbreak.
5012
5013 2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5014
5015 Fix crashes on dangling display expressions.
5016 * ada-lang.c (ada_operator_check): New function.
5017 (ada_exp_descriptor): Fill-in the field operator_check.
5018 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
5019 * jv-lang.c (exp_descriptor_java): Likewise.
5020 * m2-lang.c (exp_descriptor_modula2): Likewise.
5021 * scm-lang.c (exp_descriptor_scm): Likewise.
5022 * parse.c (exp_descriptor_standard): Likewise.
5023 (operator_check_standard): New function.
5024 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
5025 * parser-defs.h (struct exp_descriptor): New field operator_check.
5026 (operator_check_standard, exp_uses_objfile): New declarations.
5027 * printcmd.c: Remove the inclusion of solib.h.
5028 (display_uses_solib_p): Remove the function.
5029 (clear_dangling_display_expressions): Call lookup_objfile_from_block
5030 and exp_uses_objfile instead of display_uses_solib_p.
5031 * solist.h (struct so_list) <objfile>: New comment.
5032 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
5033 * symtab.h (lookup_objfile_from_block): New declaration.
5034 (struct general_symbol_info) <obj_section>: Extend the comment.
5035
5036 2010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
5037 Thiago Jung Bauermann <bauerman@br.ibm.com>
5038
5039 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
5040 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
5041 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
5042 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
5043 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
5044 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
5045 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
5046 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
5047 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
5048 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
5049 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
5050 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
5051 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
5052 Define, in case <ptrace.h> doesn't provide it.
5053 (booke_debug_info): New variable.
5054 (max_slots_number): Ditto.
5055 (hw_break_tuple): New struct.
5056 (thread_points): Ditto.
5057 (ppc_threads): New variable.
5058 (PPC_DEBUG_CURRENT_VERSION): New define.
5059 (have_ptrace_new_debug_booke): New function.
5060 (ppc_linux_check_watch_resources): Renamed to ...
5061 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
5062 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
5063 (booke_cmp_hw_point): New function.
5064 (booke_find_thread_points_by_tid): Ditto.
5065 (booke_insert_point): Ditto.
5066 (booke_remove_point): Ditto.
5067 (ppc_linux_insert_hw_breakpoint): Ditto.
5068 (ppc_linux_remove_hw_breakpoint): Ditto.
5069 (get_trigger_type): Ditto.
5070 (ppc_linux_insert_watchpoint): Handle BookE processors.
5071 (ppc_linux_remove_watchpoint): Ditto.
5072 (ppc_linux_new_thread): Ditto.
5073 (ppc_linux_thread_exit): New function..
5074 (ppc_linux_stopped_data_address): Handle BookE processors.
5075 (ppc_linux_watchpoint_addr_within_range): Ditto.
5076 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
5077 to_remove_hw_breakpoint fields of the target operations struct.
5078 Add observe for the thread_exit event.
5079
5080 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
5081
5082 * i386-linux-nat.c (regmap): Removed.
5083 (fetch_register): Replace regmap with
5084 i386_linux_gregset_reg_offset.
5085 (store_register): Likewise.
5086 (supply_gregset): Likewise.
5087 (fill_gregset): Likewise.
5088
5089 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
5090 global.
5091
5092 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
5093
5094 2010-04-22 Chris Moller <cmoller@redhat.com>
5095
5096 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
5097 method of popping recursion-detection stack with a method based on
5098 obstack_object_size(). (Similar to the PR9167 patch below, but for
5099 the static array obstack rather than the static member obstack.)
5100
5101 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
5102
5103 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
5104 (_initialize_amd64_linux_nat): Replace
5105 amd64_linux_gregset64_reg_offset with
5106 amd64_linux_gregset_reg_offset.
5107
5108 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
5109 global.
5110
5111 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
5112
5113 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
5114
5115 PR stabs/11479.
5116 * stabsread.c (set_length_in_type_chain): New function.
5117 (read_struct_type): Call set_length_in_type_chain function.
5118 (read_enum_type): Idem.
5119
5120 2010-04-21 Stan Shebs <stan@codesourcery.com>
5121 Nathan Sidwell <nathan@codesourcery.com>
5122
5123 * tracepoint.c (trace_save): Open in binary mode.
5124
5125 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
5126
5127 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
5128 fields.
5129 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
5130 builtin_char32 fields.
5131 * printcmd.c (decode_format): Set char size to '\0'
5132 for strings unless explicit size is given.
5133 (print_formatted): Correct calculation of NEXT_ADDRESS
5134 for 16 or 32 bit strings.
5135 (do_examine): Do not force byte size for strings.
5136 Use builtin_char16 and builtin_char32 types to display
5137 16 or 32 bit-wide strings.
5138 (x_command): Set LAST_SIZE to 'b' for string type.
5139
5140 2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
5141
5142 PR corefiles/11523
5143 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
5144 XCR0 first.
5145
5146 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
5147 there is no .reg-xstate section.
5148 (i386_linux_core_read_description): Check XCR0 first.
5149
5150 2010-04-21 Mike Frysinger <vapier@gentoo.org>
5151
5152 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
5153 for len <= 8.
5154
5155 2010-04-21 Chris Moller <cmoller@redhat.com>
5156
5157 PR 9167
5158 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
5159 method of popping recursion-detection stack with a method based on
5160 obstack_object_size().
5161
5162 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
5163
5164 PR pascal/11492.
5165 * p-valprint.c (pascal_val_print): Fix default printing of integer
5166 arrays.
5167
5168 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
5169
5170 Fix compilation warning on gcc-4.1.2.
5171 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
5172 local variable`pc' to zero.
5173
5174 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5175
5176 Implement thread support with core files on alpha-tru64.
5177 * dec-thread.c (dec_thread_find_new_threads): New function,
5178 extracted from resync_thread_list.
5179 (resync_thread_list): Add OPS parameter. Replace extracted-out
5180 code by call to dec_thread_find_new_threads.
5181 (dec_thread_wait): Update call to resync_thread_list.
5182 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
5183
5184 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5185
5186 * ada-lang.c (value_pointer): New function.
5187 (make_array_descriptor): Call value_pointer to convert addresses to
5188 pointers.
5189
5190 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5191
5192 * rs6000-aix-tdep.c: #include exceptions.h.
5193 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
5194 while reading the memory at ADDR, then ADDR cannot be a function
5195 descriptor.
5196
5197 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5198
5199 * ada-typeprint.c (ada_print_typedef): New function.
5200 * ada-lang.h (ada_print_typedef): Add declaration.
5201 * ada-lang.c (ada_language_defn): set la_print_typdef field
5202 to ada_print_typedef.
5203
5204 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5205
5206 * procfs.c (procfs_address_to_host_pointer): Only define when used.
5207
5208 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5209
5210 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
5211 (iterate_over_mappings): Adjust function profile. Add declaration.
5212 (insert_dbx_link_bpt_in_region, info_mappings_callback):
5213 Adjust accordingly.
5214
5215 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5216
5217 * procfs.c (solib_mappings_callback): Move function up to avoid
5218 a compiler warning.
5219
5220 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5221
5222 * procfs.c (find_signalled_thread, find_stop_signal): Move
5223 these functions down to define them only when used.
5224
5225 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5226
5227 * valprint.c (common_val_print): Fix the value before extracting
5228 its contents.
5229 * ada-lang.c (ada_to_fixed_value): Make this function extern.
5230 * ada-lang.h (ada_to_fixed_value): New function declaration.
5231 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
5232 to avoid code duplication and fix a bug in the handling of
5233 fixed types contents.
5234
5235 2010-04-20 Tom Tromey <tromey@redhat.com>
5236
5237 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
5238 (read_partial_die): Likewise.
5239 (dwarf_attr_name): Likewise.
5240
5241 2010-04-20 Chris Moller <cmoller@redhat.com>
5242
5243 PR 10867
5244
5245 * cp-valprint.c (global): Adding new static array recursion
5246 detection obstack.
5247 (cp_print_value_fields, cp_print_static_field): Added new static
5248 array recursion detection code.
5249
5250 2010-04-20 Mark Kettenis <kettenis@gnu.org>
5251
5252 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
5253 general-purpose register set should be 68 instead of 144.
5254 (i386_linux_sse_regset_sections): Likewise.
5255 (i386_linux_avx_regset_sections): Likewise.
5256
5257 2010-04-20 Stan Shebs <stan@codesourcery.com>
5258 Nathan Sidwell <nathan@codesourcery.com>
5259
5260 * dwarf2loc.c (struct axs_var_loc): New struct.
5261 (dwarf2_tracepoint_var_loc): New function.
5262 (dwarf2_tracepoint_var_access): New function.
5263 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
5264 with DW_OP_piece.
5265 (locexpr_describe_location_piece): New function.
5266 (locexpr_describe_location_1): New function.
5267 (locexpr_describe_location): Call it, update signature.
5268 (loclist_describe_location): Rewrite to loop over locations,
5269 update signature.
5270 * symtab.h (struct symbol_computed_ops): Add address to
5271 describe_location arguments, return void.
5272 * printcmd.c (address_info): Get context PC, pass to computed
5273 location description.
5274 * tracepoint.c (scope_info): Ditto.
5275 * ax-gdb.c (trace_kludge): Export.
5276
5277 2010-04-20 Tom Tromey <tromey@redhat.com>
5278
5279 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
5280 (struct dwarf2_cie) <segment_size>: New field.
5281 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
5282 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
5283 DW_FORM_exprloc.
5284 (read_attribute_value): Handle DW_FORM_flag_present,
5285 DW_FORM_sec_offset, DW_FORM_exprloc.
5286 (dump_die_shallow): Likewise.
5287 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
5288 (dwarf2_const_value): Handle DW_FORM_exprloc.
5289 (attr_form_is_block): Likewise.
5290 (struct line_header) <maximum_ops_per_instruction>: New field.
5291 (dwarf_decode_line_header): Set new field.
5292 (dwarf_decode_lines): Handle new field.
5293
5294 2010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5295
5296 * f-exp.y: Add new production to recognize the `logical*8' type.
5297 (LOGICAL_S8_KEYWORD): New token.
5298 * f-lang.c (enum f_primitive_types)
5299 <f_primitive_type_logical_s8>: New field.
5300 (f_language_arch_info): Handling `logical*8' type.
5301 (build_fortran_types): Building `logical*8' type.
5302 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
5303
5304 2010-04-19 Doug Evans <dje@google.com>
5305
5306 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
5307 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
5308 (pipe_close): Ditto.
5309
5310 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5311
5312 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
5313
5314 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5315
5316 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
5317 type to void function.
5318
5319 2010-04-19 Stan Shebs <stan@codesourcery.com>
5320 Vladimir Prus <vladimir@codesourcery.com>
5321
5322 * tracepoint.c (tfind_1): Add missing newline, report exit from
5323 tfind mode as such.
5324 * target.c (update_current_target): Make default
5325 to_trace_find return -1.
5326
5327 2010-04-19 Mike Frysinger <vapier@gentoo.org>
5328
5329 * objc-lang.c (find_methods): Move symname check up.
5330
5331 2010-04-19 Pedro Alves <pedro@codesourcery.com>
5332
5333 * ada-lang.c (print_recreate_exception)
5334 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
5335 not "catch unhandled".
5336
5337 2010-04-19 Pedro Alves <pedro@codesourcery.com>
5338
5339 PR breakpoints/8554.
5340
5341 Implement `save-breakpoints'.
5342
5343 * breakpoint.c (save_cmdlist): New.
5344 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
5345 to save_cmdlist.
5346 (print_recreate_catch_fork): New.
5347 (catch_fork_breakpoint_ops): Install it.
5348 (print_recreate_catch_vfork): New.
5349 (catch_vfork_breakpoint_ops): Install it.
5350 (print_recreate_catch_syscall): New.
5351 (catch_syscall_breakpoint_ops): Install it.
5352 (print_recreate_catch_exec): New.
5353 (catch_exec_breakpoint_ops): Install it.
5354 (print_recreate_exception_catchpoint): New.
5355 (gnu_v3_exception_catchpoint_ops): Install it.
5356 (save_breakpoints): New, based on tracepoint_save_command, but
5357 handle all breakpoint types.
5358 (save_breakpoints_command): New.
5359 (tracepoint_save_command): Rename to...
5360 (save_tracepoints_command): ... this, and reimplement using
5361 save_breakpoints.
5362 (save_command): New.
5363 (_initialize_breakpoints): Install the "save" command prefix.
5364 Install the "save breakpoints" command. Make "save-tracepoints" a
5365 deprecated alias for "save tracepoints".
5366 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
5367 * ada-lang.c (print_recreate_exception): New.
5368 (print_recreate_catch_exception): New.
5369 (catch_exception_breakpoint_ops): Install it.
5370 (print_recreate_catch_exception_unhandled): New.
5371 (catch_exception_unhandled_breakpoint_ops): Install it.
5372 (print_recreate_catch_assert): New.
5373 (catch_assert_breakpoint_ops): Install it.
5374
5375 * NEWS: Mention the new `save breakpoints' command. Mention the
5376 new `save tracepoints' alias and that `save-tracepoints' is now
5377 deprecated.
5378
5379 2010-04-18 Pedro Alves <pedro@codesourcery.com>
5380
5381 PR tui/9217
5382
5383 * tui/tui-out.c: Include cli-out.h.
5384 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
5385 (tui_begin, tui_end, tui_field_int, tui_field_skip)
5386 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
5387 (tui_message, tui_wrap_hint, tui_flush): Delete forward
5388 declarations.
5389 (struct ui_out_data): Rename to...
5390 (struct tui_ui_out_data): ... this. Remove `stream' and
5391 `suppress_output' fields, and inherit cli_ui_out_data.
5392 (tui_out_data): New typedef.
5393 (tui_ui_out_impl): Don't initialize fields staticaly.
5394 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
5395 (tui_begin, tui_end): Delete.
5396 (tui_field_int): Adjust to delegate most work to the base type.
5397 (tui_field_skip): Delete.
5398 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
5399 delegate most work to the base type.
5400 (tui_spaces): Delete.
5401 (tui_text): Adjust to delegate most work to the base type.
5402 (tui_message): Delete.
5403 (tui_wrap_hint): Delete.
5404 (tui_flush): Delete.
5405 (out_field_fmt): Delete.
5406 (field_separator): Delete.
5407 (tui_out_new): Adjust to initialize the base type.
5408 (_initialize_tui_out): Initialize tui_ui_out_impl.
5409 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
5410 cli_ui_out_data.
5411 (cli_out_data): Adjust.
5412 (cli_ui_out_impl): Make extern.
5413 (cli_table_header, cli_field_int, cli_field_skip): Use
5414 uo_field_string instead of cli_field_string.
5415 (cli_redirect): Adjust to use cli_out_data.
5416 (cli_out_data_ctor): New.
5417 (cli_out_new): Use it.
5418 * cli-out.h (struct ui_file): Remove forward declaration.
5419 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
5420 (cli_ui_out_impl): Declare.
5421 (cli_out_data_ctor): Declare.
5422 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
5423 (uo_field_string): No longer static.
5424 (ui_out_data): Change return type to void pointer.
5425 (ui_out_new): Change `data' parameter type to void pointer.
5426 * ui-out.h (struct ui_out_data): Don't forward declare.
5427 (ui_out_data): Change return type to void pointer.
5428 (ui_out_new): Change `data' parameter type to void pointer.
5429 (uo_field_string): Declare.
5430
5431 2010-04-17 Pedro Alves <pedro@codesourcery.com>
5432
5433 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
5434 instead of always false.
5435
5436 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
5437
5438 PR corefiles/11511
5439 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
5440 orig_rax.
5441
5442 2010-04-17 Pedro Alves <pedro@codesourcery.com>
5443
5444 * breakpoint.c (watchpoints_triggered): Use
5445 is_hardware_watchpoint.
5446 (watchpoints_triggered): Ditto.
5447 (bpstat_check_location): Use is_watchpoint and
5448 is_hardware_watchpoint.
5449 (bpstat_check_watchpoint): Use is_watchpoint and
5450 is_hardware_watchpoint.
5451 (bpstat_stop_status): Fix comment.
5452 (user_settable_breakpoint): Use is_watchpoint.
5453 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
5454 (disable_watchpoints_before_interactive_call_start): Use
5455 is_watchpoint.
5456 (enable_watchpoints_after_interactive_call_stop): Use
5457 is_watchpoint.
5458 (clear_command): Use is_watchpoint.
5459 (do_enable_breakpoint): Use is_watchpoint.
5460
5461 2010-04-16 Mike Frysinger <vapier@gentoo.org>
5462
5463 * solib-frv.c (enable_break1_done): Delete.
5464 (enable_break2): Do not check enable_break1_done. Move the
5465 enable_break2_done setting and call to
5466 remove_solib_event_breakpoints() to the end. Return without
5467 warning when the contents of _dl_debug_addr are 0.
5468 (enable_break): Do not set enable_break1_done.
5469 (frv_clear_solib): Likewise.
5470
5471 2010-04-16 Kevin Buettner <kevinb@redhat.com>
5472
5473 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
5474 instead of an error if no PLT entry is found. Return a
5475 potentially useful result.
5476 (m32c_m16c_pointer_to_address): Add code to search for function
5477 address when no .plt entry is found.
5478
5479 2010-04-16 Stan Shebs <stan@codesourcery.com>
5480
5481 * tracepoint.c (trace_variable_command): Run a cleanup.
5482
5483 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
5484
5485 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
5486
5487 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
5488
5489 Support for Windows OS Thread Information Block.
5490 * NEWS: Document new feature.
5491 * remote.c (PACKET_qGetTIBAddr): New enum element.
5492 (remote_get_tib_address): New function.
5493 (init_remote_ops): Set to_get_tib_address field
5494 to remote_get_tib_address.
5495 (_initialize_remote): Add add_packet_config_cmd
5496 for PACKET_qGetTIBAddr.
5497 * target.c (update_current_target): Set default value for
5498 new to_get_tib_address field.
5499 * target.h (target_ops): New field to_get_tib_address.
5500 (target_get_tib_address): New macro.
5501 * windows-nat.c (thread_info): Add thread_local_base field.
5502 (windows_add_thread): Add tlb argument of type 'void *'.
5503 (fake_create_process): Adapt windows_add_thread call.
5504 (get_windows_debug_event): Idem.
5505 (windows_get_tib_address): New function.
5506 (init_windows_ops): Set to_get_tib_address field
5507 to remote_get_tib_address.
5508 (_initialize_windows_nat): Replace info_w32_cmdlist
5509 initialization by a call to init_w32_command_list.
5510 (info_w32_command, info_w32_cmdlist): Removed from here...
5511 to windows-tdep.c file.
5512 * windows-tdep.h (info_w32_cmdlist): Declare.
5513 (init_w32_command_list): New external function
5514 declaration.
5515 * windows-tdep.c: Add several headers.
5516 (info_w32_cmdlist): to here, made global.
5517 (thread_information_32): New struct.
5518 (thread_information_64): New struct.
5519 (TIB_NAME): New char array.
5520 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
5521 (maint_display_all_tib): New static variable.
5522 (windows_get_tlb_type): New function.
5523 (tlb_value_read, tlb_value_write): New functions.
5524 (tlb_value_funcs): New static struct.
5525 (tlb_make_value): New function.
5526 (display_one_tib): New function.
5527 (display_tib): New function.
5528 (show_maint_show_all_tib):New function.
5529 (info_w32_command): Moved from windows-nat.c.
5530 (init_w32_command_list): New function.
5531 (_initialize_windows_tdep): New function.
5532 New "maint set/show show-all-tib" command
5533 New "$_tlb" internal variable.
5534
5535 2010-04-16 Joel Brobecker <brobecker@adacore.com>
5536
5537 * tui/tui-regs.c (tui_display_register): Add comment about
5538 a couple of casts.
5539 * tui/tui-stack.c (tui_show_locator_content): Ditto.
5540
5541 2010-04-15 Stan Shebs <stan@codesourcery.com>
5542
5543 * frame.c: Include tracepoint.h.
5544 (get_current_frame): Allow a trace frame to be an alternate source
5545 of stack frame data.
5546 * tracepoint.c (tfind_1): Don't try to get current stack frame if
5547 it won't succeed.
5548
5549 2010-04-15 Pedro Alves <pedro@codesourcery.com>
5550
5551 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
5552 flags.
5553 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
5554
5555 2010-04-15 Doug Evans <dje@google.com>
5556
5557 * NEWS: Add entry for python program space support.
5558 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
5559 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
5560 (py-progspace.o): New rule.
5561 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
5562 function.
5563 (find_pretty_printer_from_progspace): New function.
5564 (find_pretty_printer_from_gdb): New function.
5565 (find_pretty_printer): Rewrite.
5566 * python/py-progspace.c: New file.
5567 * python/python-internal.h (program_space): Add forward decl.
5568 (pspace_to_pspace_object, pspy_get_printers): Declare.
5569 (gdbpy_initialize_pspace): Declare.
5570 * python/python.c: #include "progspace.h".
5571 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
5572 (_initialize_python): Call gdbpy_initialize_pspace.
5573 (GdbMethods): Add current_progspace, progspaces.
5574
5575 Add -s option to source command.
5576 * NEWS: Document new option.
5577 * cli/cli-cmds.c (find_and_open_script): Add function comment.
5578 Delete from_tty and cleanupp args. Split filep arg into file and
5579 full_pathp. New arg search_path.
5580 (source_script_from_stream): New function.
5581 (source_script_with_search): New function.
5582 (source_script): Rewrite.
5583 (source_command): Parse "-s" option.
5584 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
5585 * python/python.c (source_python_script): Make file arg a const char *.
5586 Don't call fclose, leave for caller.
5587 * python/python.h (source_python_script): Update.
5588
5589 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5590 Pedro Alves <pedro@codesourcery.com>
5591
5592 Avoid rereading shared libraries that haven't changed.
5593
5594 * solib.c (free_so_symbols): New function, from ...
5595 (free_so): ... here. Call it.
5596 (solib_read_symbols): Don't warn here if symbols have already been
5597 loaded.
5598 (solib_add): Warn here instead, if a pattern was specified.
5599 (reload_shared_libraries_1): New.
5600 (reload_shared_libraries): Rewrite to not fetch the library list.
5601
5602 2010-04-14 Doug Evans <dje@google.com>
5603
5604 * source.c (openp): Strip DOS drive letter if present before
5605 concatenating string to search path.
5606
5607 2010-04-14 Pedro Alves <pedro@codesourcery.com>
5608
5609 * objfiles.h (gdb_bfd_close_or_warn): Declare.
5610 * objfiles.c (gdb_bfd_close_or_warn): New.
5611 * corelow.c: Include objfiles.h
5612 (core_close): Use gdb_bfd_close_or_warn.
5613 * elfread.c (build_id_verify): Ditto.
5614 * exec.c (exec_close, exec_close_1): Ditto.
5615
5616 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5617 Pedro Alves <pedro@codesourcery.com>
5618
5619 Group errors for many missing shared libraries.
5620
5621 * solist.h (struct so_list): Remove from_tty.
5622 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
5623 (solib_map_sections): Take so_list argument. Return 0 if we
5624 failed to open a BFD. Add target sections here.
5625 (symbol_add_stub): Delete.
5626 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
5627 not from_tty copied from the so_list. Don't warn a second time
5628 for a missing library.
5629 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
5630 add to the section table here. Print out a single warning for all
5631 missing libraries.
5632 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
5633 flags.
5634
5635 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
5636
5637 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
5638 error/warning messages. Capitalize and use complete sentences.
5639 (blpy_block_syms_iternext): Likewise.
5640 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
5641 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
5642 (frame_info_to_frame_object, frapy_read_var)
5643 (gdbpy_frame_stop_reason_string): Likewise.
5644 * python/py-lazy-string.c (stpy_convert_to_value)
5645 (gdbpy_create_lazy_string_object): Likewise.
5646 * python/py-objfile.c (objfpy_set_printers): Likewise.
5647 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
5648 * python/python.c (parameter_to_python): Likewise.
5649 * python/py-type.c (typy_range, typy_target): Likewise.
5650 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
5651 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
5652
5653
5654 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
5655
5656 PR python/11381
5657
5658 * python/py-prettyprint.c (pretty_print_one_value): Test for
5659 Py_None.
5660 (print_string_repr): Test for Py_None. Set flags accordingly.
5661 Return value depending on return type.
5662 (print_children): Take a value indicating whether data was printed
5663 before this function was called. Alter output accordingly.
5664 (apply_val_pretty_printer): Capture return value from
5665 print_string_repr and pass to print_children.
5666
5667 2010-04-13 Mark Kettenis <kettenis@gnu.org>
5668
5669 PR corefiles/11481
5670 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
5671 register note sections.
5672 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
5673 New variables.
5674 (i386_linux_init_abi): Install list of supported register note
5675 sections that matches the target description.
5676
5677 2010-04-13 Pedro Alves <pedro@codesourcery.com>
5678
5679 * remote.c (remote_get_noisy_reply): Don't error out on empty
5680 replies.
5681 (remote_start_remote): Update and merge tracepoints and trace
5682 state variables as long as the target supports tracepoints.
5683 (remote_trace_init): Fix prototype.
5684 (remote_download_trace_state_variable): Validate reply.
5685 (remote_trace_set_readonly_regions): Fix prototype.
5686 (remote_trace_start): Fix prototype. Check for empty reply.
5687 (remote_get_trace_status): Small cleanup.
5688 (remote_trace_stop): Fix prototype. Check for empty reply.
5689 (remote_trace_find): Check for empty reply.
5690 (remote_save_trace_data): Validate reply.
5691 (remote_set_disconnected_tracing): Check for empty reply, and
5692 validate reply.
5693 (remote_set_circular_trace_buffer): Ditto.
5694
5695 2010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
5696
5697 Suppress unused value warning during compilation.
5698 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
5699 calls to void.
5700 * tui/tui-stack.c (tui_show_locator_content): Likewise.
5701
5702 2010-04-12 Stan Shebs <stan@codesourcery.com>
5703
5704 * tracepoint.c (tfile_xfer_partial): Check read result.
5705
5706 2010-04-12 Mike Frysinger <vapier@gentoo.org>
5707
5708 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
5709 * remote-sim.c (gdbsim_files_info): Likewise.
5710
5711 2010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5712
5713 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
5714 * arm-linux-nat.c (arm_linux_vfp_register_count): New
5715 variable.
5716 (fetch_vfp_registers): New function to fetch VFP registers.
5717 (store_vfp_registers): New function to store VFP registers.
5718 (arm_linux_fetch_inferior_registers): Add support for VFP
5719 registers.
5720 (arm_linux_store_inferior_registers): Likewise.
5721 (arm_linux_read_description): Likewise.
5722 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
5723 until we need it.
5724
5725 2010-04-11 H.J. Lu <hongjiu.lu@intel.com>
5726
5727 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
5728 tdep.
5729 (amd64_collect_xstateregset): Likewise.
5730
5731 2010-04-09 Stan Shebs <stan@codesourcery.com>
5732
5733 * tracepoint.c (trace_status_mi): Report frames created.
5734
5735 * tracepoint.c (trace_dump_command): Include default-collect
5736 expressions.
5737
5738 2010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
5739
5740 * symtab.c (find_function_start_sal): Never return SAL pointing
5741 before function start address, even if line info is missing.
5742
5743 2010-04-09 Pedro Alves <pedro@codesourcery.com>
5744
5745 * NEWS: Mention tracepoints support.
5746
5747 2010-04-09 Pedro Alves <pedro@codesourcery.com>
5748
5749 * tracepoint.c (trace_status_mi): Report disconnected tracing and
5750 circular trace buffer statuses.
5751
5752 2010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
5753
5754 * config/djgpp/fnchange.lst: Fix typo in translations for
5755 symbol-without-target_section.exp and symbol-without-target_section.c.
5756
5757 2010-04-09 Pedro Alves <pedro@codesourcery.com>
5758
5759 * breakpoint.c (condition_command): Pass condition expression to
5760 set_breakpoint_condition stripped from breakpoint number.
5761
5762 2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
5763 Thiago Jung Bauermann <bauerman@br.ibm.com>
5764 Tom Tromey <tromey@redhat.com>
5765
5766 * breakpoint.c (condition_command): Simplify. Move condition
5767 setting code to ...
5768 (set_breakpoint_condition): ... here. New function.
5769 * breakpoint.h (set_breakpoint_condition): Declare.
5770 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
5771 (SUBDIR_PYTHON_SRCS): Likewise.
5772 (py-breakpoint.o): New rule.
5773 * python/py-breakpoint.c: New file.
5774 * python/python-internal.h (gdbpy_breakpoints)
5775 (gdbpy_initialize_breakpoints): Declare.
5776 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
5777
5778 2010-04-09 Pedro Alves <pedro@codesourcery.com>
5779
5780 * regformats/regdat.sh: Include server.h. Don't include
5781 regcache.h.
5782
5783 2010-04-08 Stan Shebs <stan@codesourcery.com>
5784 Pedro Alves <pedro@codesourcery.com>
5785
5786 * tracepoint.h (struct trace_status): New fields disconnected_tracing
5787 and circular_buffer.
5788 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
5789 * tracepoint.c (trace_status_command): Display target's status for
5790 disconnected tracing and circular buffer.
5791 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
5792 query for non-disconnected-tracing case, remove the stop_tracing
5793 call.
5794 (tfile_open): Clear disconnected and circular buffer status.
5795 (trace_save): Save disconnected and circular buffer status.
5796 (parse_trace_status): Parse disconnected and circular buffer status,
5797 also recognize disconnected as a stop reason.
5798 * remote.c (remote_set_disconnected_tracing): Only set
5799 QTDisconnected if the remote end supports disconnected tracing.
5800 Warn otherwise, if trying to enable disconnected tracing.
5801 * infcmd.c (detach_command): Update disconnect_tracing call.
5802 * cli/cli-cmds.c (quit_command): Ditto.
5803
5804 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
5805
5806 * i387-tdep.c (i387_collect_xsave): Replace abort with
5807 internal_error.
5808
5809 2010-04-08 Stan Shebs <stan@codesourcery.com>
5810
5811 * breakpoint.c (default_collect_info): New function.
5812 (breakpoints_info): Call it.
5813 (maintenance_info_breakpoints): Ditto.
5814 (tracepoints_info): Ditto.
5815
5816 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
5817
5818 * i387-tdep.c (i387_collect_xsave): Re-indent.
5819
5820 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
5821
5822 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
5823 if HAVE_PTRACE_GETFPXREGS is defined.
5824 (i386_linux_read_description): Set have_ptrace_getfpxregs and
5825 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
5826
5827 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
5828 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
5829 if .reg-xfp section doesn't exist.
5830 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
5831
5832 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
5833
5834 * i386-tdep.c: Include "features/i386/i386-mmx.c".
5835 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
5836 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
5837 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
5838 (i386_gdbarch_init): Update comments.
5839 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
5840
5841 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
5842
5843 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
5844
5845 * features/Makefile (i386/i386-mmx-expedite): New.
5846 (i386/i386-mmx-linux-expedite): Likewise.
5847 ($(outdir)/i386/i386-mmx.dat): Likewise.
5848 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
5849
5850 * features/i386/i386-mmx-linux.c: New.
5851 * features/i386/i386-mmx-linux.xml: Likewise.
5852 * features/i386/i386-mmx.c: Likewise.
5853 * features/i386/i386-mmx.xml: Likewise.
5854 * regformats/i386/i386-mmx-linux.dat: Likewise.
5855 * regformats/i386/i386-mmx.dat: Likewise.
5856
5857 * features/Makefile (WHICH): Add i386/i386-mmx and
5858 i386/i386-mmx-linux.
5859
5860 2010-04-08 Doug Evans <dje@google.com>
5861
5862 * source.c (openp): Skip $cdir in PATH.
5863
5864 2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
5865
5866 PR python/11417
5867 * python/py-lazy-string.c (stpy_convert_to_value): Check for
5868 a NULL address.
5869 (gdbpy_create_lazy_string_object): Allow strings with a NULL
5870 address and a zero length.
5871
5872 2010-04-08 Hui Zhu <teawater@gmail.com>
5873
5874 * i386-tdep.c (i386_process_record): Add support for insn
5875 rdtsc.
5876
5877 2010-04-07 Doug Evans <dje@google.com>
5878
5879 * python/python.c (source_python_script): Use ensure_python_env
5880 to prepare environment for script.
5881
5882 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5883
5884 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
5885 <sys/uio.h> and "i386-xstate.h".
5886 (PTRACE_GETREGSET): New.
5887 (PTRACE_SETREGSET): Likewise.
5888 (have_ptrace_getregset): Likewise.
5889 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
5890 registers.
5891 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
5892 registers.
5893 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
5894 (amd64_linux_store_inferior_registers): Likewise.
5895 (amd64_linux_read_description): Check and enable AVX target
5896 descriptions.
5897
5898 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
5899 and "features/i386/amd64-avx-linux.c".
5900 (amd64_linux_regset_sections): New.
5901 (amd64_linux_core_read_description): Check and enable AVX
5902 target description.
5903 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
5904 set_gdbarch_core_regset_sections.
5905 (_initialize_amd64_linux_tdep): Call
5906 initialize_tdesc_amd64_avx_linux.
5907
5908 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
5909 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
5910 (tdesc_amd64_avx_linux): New.
5911 (amd64_linux_update_xstateregset): Likewise.
5912
5913 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
5914 (amd64_ymm_names): New.
5915 (amd64_ymmh_names): Likewise.
5916 (amd64_register_name): Likewise.
5917 (amd64_supply_xstateregset): Likewise.
5918 (amd64_collect_xstateregset): Likewise.
5919 (amd64_supply_xsave): Likewise.
5920 (amd64_collect_xsave): Likewise.
5921 (AMD64_NUM_REGS): Removed.
5922 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
5923 %xmmN if AVX is available.
5924 (amd64_pseudo_register_name): Support pseudo YMM registers.
5925 (amd64_regset_from_core_section): Support .reg-xstate section.
5926 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
5927 and ymm0h_regnum. Call set_gdbarch_register_name.
5928 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
5929
5930 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
5931 AMD64_YMM15H_REGNUM.
5932 (AMD64_NUM_REGS): New.
5933 (amd64_supply_xsave): Likewise.
5934 (amd64_collect_xsave): Likewise.
5935 (amd64_register_name): Removed.
5936 (amd64_register_type): Likewise.
5937
5938 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5939
5940 * i387-tdep.c: Include "i386-xstate.h".
5941 (XSAVE_XSTATE_BV_ADDR): New.
5942 (xsave_avxh_offset): Likewise.
5943 (XSAVE_AVXH_ADDR): Likewise.
5944 (i387_supply_xsave): Likewise.
5945 (i387_collect_xsave): Likewise.
5946
5947 * i387-tdep.h (I387_NUM_YMM_REGS): New.
5948 (I387_YMM0H_REGNUM): Likewise.
5949 (I387_YMMENDH_REGNUM): Likewise.
5950 (i387_supply_xsave): Likewise.
5951 (i387_collect_xsave): Likewise.
5952
5953 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5954
5955 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
5956 <sys/uio.h> and "i386-xstate.h".
5957 (PTRACE_GETREGSET): New.
5958 (PTRACE_SETREGSET): Likewise.
5959 (fetch_xstateregs): Likewise.
5960 (store_xstateregs): Likewise.
5961 (GETXSTATEREGS_SUPPLIES): Likewise.
5962 (regmap): Include 8 upper YMM registers.
5963 (i386_linux_fetch_inferior_registers): Support XSAVE extended
5964 state.
5965 (i386_linux_store_inferior_registers): Likewise.
5966 (i386_linux_read_description): Check and enable AVX target
5967 descriptions.
5968
5969 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
5970 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
5971 (i386_linux_regset_sections): Add ".reg-xstate".
5972 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
5973 (i386_linux_core_read_xcr0): New.
5974 (i386_linux_core_read_description): Check and enable AVX target
5975 description.
5976 (i386_linux_init_abi): Set xsave_xcr0_offset.
5977 (_initialize_i386_linux_tdep): Call
5978 initialize_tdesc_i386_avx_linux.
5979
5980 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
5981 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
5982 (i386_linux_core_read_xcr0): New.
5983 (tdesc_i386_avx_linux): Likewise.
5984 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
5985
5986 * i386-tdep.c: Include "i386-xstate.h" and
5987 "features/i386/i386-avx.c".
5988 (i386_ymm_names): New.
5989 (i386_ymmh_names): Likewise.
5990 (i386_ymmh_regnum_p): Likewise.
5991 (i386_ymm_regnum_p): Likewise.
5992 (i386_xmm_regnum_p): Likewise.
5993 (i386_register_name): Likewise.
5994 (i386_ymm_type): Likewise.
5995 (i386_supply_xstateregset): Likewise.
5996 (i386_collect_xstateregset): Likewise.
5997 (i386_sse_regnum_p): Removed.
5998 (i386_pseudo_register_name): Support pseudo YMM registers.
5999 (i386_pseudo_register_type): Likewise.
6000 (i386_pseudo_register_read): Likewise.
6001 (i386_pseudo_register_write): Likewise.
6002 (i386_dbx_reg_to_regnum): Return %ymmN register number for
6003 %xmmN if AVX is available.
6004 (i386_regset_from_core_section): Support .reg-xstate section.
6005 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
6006 (i386_process_record): Replace i386_sse_regnum_p with
6007 i386_xmm_regnum_p.
6008 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
6009 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
6010 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
6011 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
6012 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
6013 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
6014 Set ymm0_regnum.
6015 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
6016
6017 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
6018 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
6019 i386_ymm_type.
6020 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
6021 (I386_AVX_NUM_REGS): New.
6022 (i386_xmm_regnum_p): Likewise.
6023 (i386_ymm_regnum_p): Likewise.
6024 (i386_ymmh_regnum_p): Likewise.
6025
6026 * common/i386-xstate.h: New.
6027
6028 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6029
6030 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
6031
6032 * features/Makefile (WHICH): Add i386/i386-avx,
6033 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
6034 (i386/i386-avx-expedite): New.
6035 (i386/i386-avx-linux-expedite): Likewise.
6036 (i386/x86-64-avx-expedite):Likewise.
6037 (i386/x86-64-avx-linux-expedite): Likewise.
6038 ($(outdir)/i386/i386-avx.dat): New dependency.
6039 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
6040 ($(outdir)/i386/x86-avx-64.dat): Likewise.
6041 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
6042
6043 * features/i386/32bit-avx.xml: New.
6044 * features/i386/64bit-avx.xml: Likewise.
6045 * features/i386/i386-avx-linux.c: Likewise.
6046 * features/i386/i386-avx-linux.xml: Likewise.
6047 * features/i386/i386-avx.c: Likewise.
6048 * features/i386/i386-avx.xml: Likewise.
6049 * features/i386/x86-64-avx-linux.c: Likewise.
6050 * features/i386/x86-64-avx-linux.xml: Likewise.
6051 * features/i386/x86-64-avx.c: Likewise.
6052 * features/i386/x86-64-avx.xml: Likewise.
6053 * regformats/i386/i386-avx-linux.dat: Likewise.
6054 * regformats/i386/i386-avx.dat: Likewise.
6055 * regformats/i386/x86-64-avx-linux.dat: Likewise.
6056 * regformats/i386/x86-64-avx.dat: Likewise.
6057
6058 2010-04-07 Doug Evans <dje@google.com>
6059
6060 * top.c (source_file_name): Make const char *.
6061 * top.h (source_file_name): Update.
6062 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
6063 const char *.
6064 (script_from_file): Change `file' arg to const char *.
6065 * cli/cli-script.h (script_from_file): Update.
6066
6067 2010-04-06 Doug Evans <dje@google.com>
6068
6069 * cli/cli-cmds.c (source_command): Run cleanups.
6070
6071 2010-04-06 Stan Shebs <stan@codesourcery.com>
6072
6073 * defs.h (char_ptr): Move typedef here from...
6074 * ada-lang.c (char_ptr): Remove.
6075 * charset.c (char_ptr): Remove.
6076 * tracepoint.h (struct uploaded_string): Remove.
6077 (struct uploaded_tp): Use vectors for string arrays.
6078 * tracepoint.c (trace_save): Use vectors of actions.
6079 (parse_tracepoint_definition): Ditto.
6080 (get_uploaded_tp): Clear vectors.
6081 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
6082 (next_cmd): Change to an int.
6083 (read_next_cmd): Use vector of command strings.
6084
6085 2010-04-06 Doug Evans <dje@google.com>
6086
6087 * top.h (source_script, cd_command): Delete.
6088 * main.c: #include "cli/cli-cmds.h"
6089
6090 2010-04-06 Kevin Buettner <kevinb@redhat.com>
6091
6092 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
6093 type in bytes, not bits.
6094
6095 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
6096
6097 * stabsread.c (define_symbol): Add support for char
6098 and string constants.
6099
6100 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
6101
6102 Remove remaining "%ll" uses.
6103 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
6104 hex_string call.
6105 * rs6000-nat.c (rs6000_ptrace64): Idem.
6106 * solib-pa64.c (pa64_current_sos): Idem.
6107 * solib-spu.c (spu_current_sos): Idem.
6108 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
6109 plongest call.
6110 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
6111 phex (VAR, 8) call.
6112 * sh64-tdep.c (sh64_show_media_regs): Idem.
6113
6114 2010-04-05 Stan Shebs <stan@codesourcery.com>
6115
6116 * tracepoint.c: Include gdbcore.h.
6117 (tfile_xfer_partial): Return partial results, also try reading
6118 from executable.
6119 (tfile_has_all_memory): New function.
6120 (init_tfile_ops): Use it.
6121
6122 2010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
6123
6124 PR gdb/10736:
6125 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
6126 the changes in data-directory.
6127 (init_sysinfo): Reload the syscall XML file if the data-directory
6128 has changed.
6129
6130 2010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6131
6132 Code cleanup.
6133 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
6134
6135 2010-04-04 Stan Shebs <stan@codesourcery.com>
6136 Nathan Sidwell <nathan@codesourcery.com>
6137
6138 * breakpoint.c (breakpoint_1): Add filter argument, return number of
6139 breakpoints printed.
6140 (is_hardware_watchpoint): Make argument const.
6141 (is_watchpoint): Ditto.
6142 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
6143 use it everywhere.
6144 (breakpoints_info): Pass NULL to breakpoint_1.
6145 (maintenance_info_breakpoints): Ditto.
6146 (watchpoints_info): New function.
6147 (tracepoints_info): Use breakpoint_1 filter.
6148 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
6149 (_initialize_breakpoint): Make "info watchpoints" its own command.
6150 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
6151 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
6152
6153 2010-04-04 Stan Shebs <stan@codesourcery.com>
6154
6155 * tracepoint.c (tfile_fetch_registers): Add fallback case.
6156
6157 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6158
6159 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
6160 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
6161
6162 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6163
6164 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
6165 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
6166
6167 2010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6168
6169 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
6170 code form.
6171
6172 2010-04-02 Hui Zhu <teawater@gmail.com>
6173
6174 * i386-tdep.c (OT_DQUAD): New enum.
6175 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
6176 SSE3, SSSE3 and SSE4.
6177
6178 2010-04-02 Hui Zhu <teawater@gmail.com>
6179
6180 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
6181 "*addr = 0".
6182
6183 2010-04-02 Pedro Alves <pedro@codesourcery.com>
6184
6185 * tracepoint.c (trace_dump_actions): New, factored out from
6186 trace_dump_command, and adjusted to recurse into while-stepping's
6187 action list.
6188 (trace_dump_command): Use it.
6189
6190 2010-04-02 Pedro Alves <pedro@codesourcery.com>
6191
6192 * breakpoint.h (struct counted_command_line): Moved definition to
6193 breakpoint.c, and forward declare.
6194 (breakpoint_commands): Declare.
6195 * breakpoint.c (struct counted_command_line): Moved here.
6196 (breakpoint_commands): New.
6197 * tracepoint.c (encode_actions): Use breakpoint_commands.
6198 * remote.c (remote_download_tracepoint): Ditto.
6199
6200 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
6201
6202 * remote.c (remote_parse_stop_reply): Use hex_string instead
6203 of phex_nz for error.
6204
6205 2010-04-01 Stan Shebs <stan@codesourcery.com>
6206 Nathan Sidwell <nathan@codesourcery.com>
6207
6208 * tracepoint.h (enum actionline_type): Remove.
6209 (validate_actionline): Change return to void.
6210 * tracepoint.c (report_agent_reqs_errors): New function.
6211 (validate_actionline): Call it, change return to void, report errors
6212 more consistently.
6213 (collect_symbol): Call report_agent_reqs_errors.
6214 (encode_actions_1): Ditto.
6215 (encode_actions): Don't expect a result from validate_actionline.
6216
6217 2010-04-01 Stan Shebs <stan@codesourcery.com>
6218
6219 * tracepoint.c (trace_start_command): Confirm if trace is running.
6220 (trace_stop_command): Error if trace not running.
6221
6222 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
6223
6224 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
6225 (AMD64_NUM_LOWER_BYTE_REGS): New.
6226 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
6227 (amd64_pseudo_register_write): Likewise.
6228 (amd64_init_abi): Set num_byte_regs to 20.
6229
6230 2010-04-01 Pedro Alves <pedro@codesourcery.com>
6231
6232 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
6233 (prev_breakpoint_count): New.
6234 (set_breakpoint_count): Adjust.
6235 (rbreak_start_breakpoint_count): New.
6236 (start_rbreak_breakpoints): Adjust.
6237 (end_rbreak_breakpoints): Adjust.
6238 (struct commands_info) <arg>: New field.
6239 (do_map_commands_command): Tweak output to include breakpoint spec
6240 range.
6241 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
6242 ARG was empty on entry. Set INFO's arg.
6243 (create_breakpoint): Adjust.
6244
6245 * NEWS: Clarify `commands' changes.
6246
6247 2010-04-01 Pedro Alves <pedro@codesourcery.com>
6248
6249 * tracepoint.c: Include stack.h.
6250 (struct add_local_symbols_data): New.
6251 (do_collect_symbol): New.
6252 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
6253 iterate_over_block_local_vars.
6254 * stack.c (print_block_frame_locals): Rewrite as ...
6255 (iterate_over_block_locals): ... this. Take a callback function
6256 pointer and generic data pointer, and call that instead of
6257 print_variable_and_value.
6258 (struct print_variable_and_value_data): New.
6259 (do_print_variable_and_value): New.
6260 (iterate_over_block_local_vars): New, abstracted out from
6261 print_frame_local_vars.
6262 (print_frame_local_vars): Rewrite using
6263 iterate_over_block_local_vars.
6264 (iterate_over_block_arg_vars): New, abstracted out from
6265 print_frame_arg_vars.
6266 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
6267 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
6268 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
6269
6270 2010-03-31 Richard Earnshaw <rearnsha@arm.com>
6271
6272 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
6273 instructions. Use the PC+4 if the base of the TBB or TBH is the
6274 PC register.
6275
6276 2010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
6277
6278 Fix crash on reading wrong function declaration DWARF.
6279 * dwarf2read.c (read_subroutine_type): New variable void_type.
6280 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
6281 more close to their use.
6282
6283 2010-03-31 Stan Shebs <stan@codesourcery.com>
6284
6285 * breakpoint.c (tracepoint_save_command): Include variables,
6286 conditionals, tracepoint types, and default-collect.
6287 * tracepoint.c (save_trace_state_variables): New function.
6288 * tracepoint.h (save_trace_state_variables): Declare it.
6289
6290 2010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
6291
6292 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
6293
6294 2010-03-30 Keith Seitz <keiths@redhat.com>
6295
6296 * c-typeprint.c (c_type_print_args): Don't print "void"
6297 for java, regardless of whether it is TYPE_PROTOTYPED.
6298 Use the passed-in language instead of current_language.
6299 (c_type_print_varspec_suffix): Use current_language instead
6300 of assuming language_c.
6301 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
6302 any return type specifier from the physname.
6303
6304 2010-03-30 Pedro Alves <pedro@codesourcery.com>
6305
6306 * tui/tui-interp.c (tui_is_toplevel): New.
6307 (tui_init): Set it.
6308 (tui_allowed_p): New.
6309 * tui/tui.c (tui_enable): Check if the TUI is allowed before
6310 enabling it.
6311 * tui/tui.h (tui_allowed_p): Declare.
6312
6313 2010-03-30 Ozkan Sezer <sezeroz@gmail.com>
6314
6315 * serial.h: Include winsock2.h before windows.h.
6316
6317 2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
6318
6319 * NEWS: Mention xmlRegisters= in qSupported packet.
6320
6321 * i386-tdep.c: Include "remote.h".
6322 (_initialize_i386_tdep): Call register_remote_support_xml.
6323
6324 * remote.c (remote_support_xml): New.
6325 (register_remote_support_xml): Likewise.
6326 (remote_query_supported_append): Likewise.
6327 (remote_query_supported): Support remote_support_xml.
6328
6329 * remote.h (register_remote_support_xml): New.
6330
6331 2010-03-29 Stan Shebs <stan@codesourcery.com>
6332
6333 * tracepoint.c (trace_find_line_command): Remove dead code.
6334
6335 * tracepoint.h (struct uploaded_string): New struct.
6336 (struct uploaded_tp): New fields for source strings.
6337 * breakpoint.c (this_utp, next_cmd): New globals.
6338 (read_uploaded_action): New function.
6339 (create_tracepoint_from_upload): Fill in more parts
6340 of a tracepoint.
6341 * tracepoint.c (encode_source_string): New function.
6342 (trace_save): Write out source strings, fix error checks.
6343 (parse_tracepoint_definition): Add source string parsing.
6344 * remote.c (PACKET_TracepointSource): New packet type.
6345 (remote_download_command_source): New function.
6346 (remote_download_tracepoint): Download source pieces also.
6347 (_initialize_remote): Add packet config command.
6348
6349 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
6350 expression handler.
6351
6352 * tracepoint.c (start_tracing): Check tracepoints before sending
6353 commands to target, don't start if all tracepoints disabled.
6354
6355 2010-03-28 Pedro Alves <pedro@codesourcery.com>
6356
6357 * cli/cli-script.c (process_next_line): Handle 'stepping'.
6358
6359 2010-03-26 Stan Shebs <stan@codesourcery.com>
6360
6361 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
6362
6363 2010-03-26 Tom Tromey <tromey@redhat.com>
6364
6365 * breakpoint.c (commands_command_1): Duplicate 'arg'.
6366
6367 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6368
6369 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
6370 (skip_prologue_sal): Remove local definition.
6371 (resolve_sal_pc): Remove now unnecessary code.
6372 * linespec.c (minsym_found): Call skip_prologue_sal.
6373 * symtab.c (find_function_start_pc): Remove.
6374 (find_function_start_sal): Extract prologue skipping into ...
6375 (skip_prologue_sal): ... this new function. Handle code both
6376 with and without debug info. Respect SAL's explicit_pc and
6377 explicit_line flags. Inline old find_function_start_pc.
6378 * symtab.h (find_function_start_pc): Remove.
6379 (skip_prologue_sal): Add prototype.
6380
6381 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6382
6383 * dwarf2read.c (read_func_scope): Also scan specification DIEs
6384 for DW_TAG_imported_module children.
6385
6386 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6387
6388 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
6389 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
6390 * completer.c (add_struct_fields): Fix inverted logic.
6391
6392 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6393
6394 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
6395
6396 2010-03-26 Pedro Alves <pedro@codesourcery.com>
6397
6398 * tracepoint.c (current_trace_status): Don't make sure error_desc
6399 is non-NULL here.
6400 (parse_trace_status): Release a previous error_desc string, and
6401 set it to NULL by default. If stop reason is tracepoint_error,
6402 make sure error_desc is not left NULL.
6403
6404 2010-03-26 Pedro Alves <pedro@codesourcery.com>
6405
6406 * tracepoint.c (trace_save): Remove X from tracepoint error
6407 description.
6408
6409 2010-03-26 Pedro Alves <pedro@codesourcery.com>
6410
6411 * tracepoint.c (parse_trace_status): Don't allow plain strings in
6412 the terror description. Don't expect an X prefix.
6413
6414 2010-03-25 Stan Shebs <stan@codesourcery.com>
6415
6416 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
6417 (struct trace_status): New field error_desc.
6418 * tracepoint.c (stop_reason_names): Add terror.
6419 (current_trace_status): Ensure non-NULL error description.
6420 (trace_status_command): Add error report.
6421 (trace_status_mi): Ditto.
6422 (trace_save): Add special case for error description.
6423 (parse_trace_status): Add case for errors.
6424
6425 2010-03-25 Keith Seitz <keiths@redhat.com>
6426
6427 * dwarf2read.c (read_subroutine_type): If the compilation unit
6428 language is Java, mark any formal parameter named "this" as
6429 artificial (GCC/43521).
6430 (dwarf2_name): Add special handling for Java constructors.
6431
6432 2010-03-25 Tom Tromey <tromey@redhat.com>
6433
6434 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
6435 * infrun.c (handle_inferior_event): Change initialization of
6436 stop_stack_dummy.
6437 (handle_inferior_event): Change assignment to stop_stack_dummy.
6438 (normal_stop): Update use of stop_stack_dummy.
6439 (struct inferior_status) <stop_stack_dummy>: Change type.
6440 * inferior.h (stop_stack_dummy): Update.
6441 * infcmd.c (stop_stack_dummy): Change type.
6442 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
6443 function.
6444 (call_function_by_hand): Call set_std_terminate_breakpoint.
6445 Rewrite std::terminate handling.
6446 * breakpoint.h (enum bptype) <bp_std_terminate,
6447 bp_std_terminate_master>: New.
6448 (enum stop_stack_kind): New.
6449 (struct bpstat_what) <call_dummy>: Change type.
6450 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
6451 Declare.
6452 * breakpoint.c (create_std_terminate_master_breakpoint): New
6453 function.
6454 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
6455 Call create_std_terminate_master_breakpoint.
6456 (print_it_typical): Handle new breakpoint kinds.
6457 (bpstat_stop_status): Handle bp_std_terminate_master.
6458 (bpstat_what): Correctly set call_dummy field. Handle
6459 bp_std_terminate_master and bp_std_terminate.
6460 (print_one_breakpoint_location): Update.
6461 (allocate_bp_location): Update.
6462 (set_std_terminate_breakpoint): New function.
6463 (delete_std_terminate_breakpoint): Likewise.
6464 (create_thread_event_breakpoint): Update.
6465 (delete_command): Update.
6466 (breakpoint_re_set_one): Update.
6467 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
6468
6469 2010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
6470
6471 * symfile.c (build_section_addr_info_from_bfd): New.
6472 (build_section_addr_info_from_objfile): Base it on
6473 build_section_addr_info_from_bfd.
6474 (addrs_section_compar, addrs_section_sort): New.
6475 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
6476 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
6477 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
6478
6479 2010-03-24 Michael Snyder <msnyder@localhost.localdomain>
6480
6481 * elfread.c (find_separate_debug_file_by_buildid):
6482 Remove unused local variable.
6483
6484 2010-03-24 Tom Tromey <tromey@redhat.com>
6485
6486 PR breakpoints/9352:
6487 * NEWS: Mention changes to `commands' and `rbreak'.
6488 * symtab.c (do_end_rbreak_breakpoints): New function.
6489 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
6490 end_rbreak_breakpoints.
6491 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
6492 (set_breakpoint_count): Likewise. Clear last_was_multi.
6493 (multi_start, multi_end, last_was_multi): New globals.
6494 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
6495 functions.
6496 (struct commands_info): New
6497 (do_map_commands_command): New function.
6498 (commands_command_1): New function.
6499 (commands_command): Use it.
6500 (commands_from_control_command): Likewise.
6501 (do_delete_breakpoint): New function.
6502 (delete_command): Use it.
6503 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
6504 (do_map_disable_breakpoint): New function.
6505 (disable_command): Use it.
6506 (do_map_enable_breakpoint): New function.
6507 (enable_command): Use it.
6508 (enable_once_breakpoint): Add argument.
6509 (enable_once_command): Update.
6510 (enable_delete_breakpoint): Add argument.
6511 (enable_delete_command): Update.
6512 (break_command_really): Set last_was_multi when needed.
6513 (check_tracepoint_command): Fix formatting.
6514 (validate_commands_for_breakpoint): New function.
6515 (breakpoint_set_commands): Use it.
6516 (tracepoint_save_command): Update.
6517 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
6518 Declare.
6519
6520 2010-03-24 Tom Tromey <tromey@redhat.com>
6521
6522 * breakpoint.h (struct counted_command_line): New struct.
6523 (struct breakpoint) <commands>: Change type.
6524 (struct bpstats) <commands>: Change type.
6525 <commands_left>: New field.
6526 * breakpoint.c (alloc_counted_command_line): New function.
6527 (incref_counted_command_line): Likewise.
6528 (decref_counted_command_line): Likewise.
6529 (do_cleanup_counted_command_line): Likewise.
6530 (make_cleanup_decref_counted_command_line): Likewise.
6531 (breakpoint_set_commands): Use decref_counted_command_line and
6532 alloc_counted_command_line.
6533 (commands_command): Don't error if breakpoint commands are
6534 executing.
6535 (commands_from_control_command): Likewise.
6536 (bpstat_free): Update.
6537 (bpstat_copy): Likewise.
6538 (bpstat_clear_actions): Likewise.
6539 (bpstat_do_actions_1): Likewise.
6540 (bpstat_stop_status): Likewise.
6541 (print_one_breakpoint_location): Likewise.
6542 (delete_breakpoint): Likewise.
6543 (bpstat_alloc): Initialize new field.
6544 (tracepoint_save_command): Update.
6545 * tracepoint.c (encode_actions): Update.
6546 (trace_dump_command): Update.
6547
6548 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
6549
6550 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
6551 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
6552 (read_structure_type): For RealView, set TYPE_STUB on structures with
6553 no byte size and no children.
6554 (read_subroutine_type): Mark functions as prototyped by default.
6555 * symtab.c (producer_is_realview): New function.
6556 * symtab.h (expand_line_sal): Fix declaration formatting.
6557 (producer_is_realview): Declare.
6558
6559 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
6560
6561 * arm-tdep.c (skip_prologue_function): New function.
6562 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
6563 (thumb_analyze_prologue): Document return value. Recognize more
6564 Thumb instructions, skippable calls, and some Thumb-2 instructions.
6565 Add debug output.
6566 (arm_skip_prologue): Remove call dummy check. Check the prologue
6567 for non-GNU compilers.
6568 (arm_instruction_changes_pc): New function.
6569 (arm_analyze_prologue): New function, broken out from
6570 arm_scan_prologue. Recognize more ARM instructions and skippable
6571 calls. Update comments. Handle NULL cache. Return the address
6572 of the first unrecognized instruction. Do not skip past other
6573 instructions which change control flow. Add debug output.
6574 (arm_scan_prologue): Use arm_analyze_prologue.
6575 (ARM_PC_32): Delete.
6576 (shifted_reg_val): Simplify ARM_PC_32 check.
6577
6578 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6579
6580 * tracepoint.c (tvariables_info_1): Actually compute
6581 the number of rows in the result.
6582
6583 2010-03-24 Pedro Alves <pedro@codesourcery.com>
6584
6585 * remote.c (crc32): Constify `buf' parameter.
6586 (remote_verify_memory): New, abstracted out from...
6587 (compare_sections_command): ... this. Remove hardcoded target
6588 checks.
6589 (init_remote_ops): Install remote_verify_memory.
6590 * target.c (target_verify_memory): New.
6591 * target.h (struct target_ops) <to_verify_memory>: New field.
6592 (target_verify_memory): Declare.
6593
6594 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6595
6596 Implement -trace-save.
6597
6598 * mi-cmds.h (mi_cmds_trace_save): Declare.
6599 * mi-cmds.c (mi_cmds): Register -trace-save.
6600 * mi/mi-main.c (mi_cmd_trace_save): New.
6601 * remote.c (remote_save_trace_data): Take const parameter.
6602 * target.h (struct target_ops::to_save_trace_data): Take
6603 const parameter.
6604 * target.c (update_current_target): Adjust to the above.
6605 * tracepoint.c (trave_save): New, extracted from
6606 (trace_save_command): ...this.
6607 (tfile_trace_find): Remove message that is unnecessary now
6608 that 'tfind' reports found frame.
6609 * tracepoint.h (trace_save): Declare.
6610
6611 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6612
6613 Implement -trace-find.
6614
6615 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
6616 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
6617 * mi/mi-main.c (mi_cmd_trace_find): New.
6618 * target.h (struct target_ops): Document to_trace_find.
6619 * tracepoint.h (tfind_1): Declare.
6620 * tracepoint.c (finish_tfind_command): Rename to...
6621 (tfind_1): ...this.
6622 * remote.c (remote_trace_find): Return -1 if target say
6623 there's no frame. Improve error diagnostics.
6624
6625 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6626
6627 -trace-define-variable and -trace-list-variables.
6628
6629 * tracepoint.c (create_trace_state_variable): Make
6630 private copy of name, as opposed to assuming the
6631 pointer lives forever.
6632 (tvariables_info_1): New.
6633 (tvariables_info): Use the above.
6634 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
6635 Declare.
6636 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
6637 and -trace-list-variables.
6638 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
6639 (mi_cmd_trace_list_variables): New.
6640 * mi/mi-main.c (mi_cmd_trace_define_variable)
6641 (mi_cmd_trace_list_variables): New.
6642
6643 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6644
6645 Implement -break-passcount.
6646
6647 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
6648 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
6649 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
6650
6651 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6652
6653 -trace-start/-trace-end/-trace-status.
6654
6655 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
6656 and -trace-stop.
6657 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
6658 (mi_cmd_trace_stop): Declare.
6659 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
6660 (mi_cmd_trace_stop): New.
6661 * tracepoint.c (start_tracing): New, extracted from...
6662 (trace_start_command): ...this.
6663 (trace_status_mi): New.
6664 * tracepoint.h (struct trace_status): Document
6665 stopping_tracepoint.
6666 (start_tracing, stop_tracing, trace_status_mi): Declare.
6667
6668 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6669
6670 Implement creating tracepoints with -break-insert.
6671
6672 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
6673 to mean that tracepoint should be created.
6674
6675 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6676
6677 * breakpoint.c (check_no_tracepoint_commands): Use
6678 current spelling of 'teval'.
6679
6680 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6681
6682 Unify actions and commands
6683
6684 * defs.h (read_command_lines, read_command_lines_1): New
6685 parameters validator and closure.
6686 * tracepoint.h (struct action_line): Remove.
6687 * breakpoint.h (struct breakpoint): Remove the 'actions'
6688 field.
6689 * defs.h (enum command_control_type): New value
6690 while_stepping_control.
6691 (struct command_line): Add comments.
6692 * breakpoint.c (breakoint_is_tracepoint): New.
6693 (breakpoint_set_commands): For tracepoints,
6694 verify the commands are permissible.
6695 (check_tracepoint_commands): New.
6696 (commands_command): Require that each new line is validated using
6697 check_tracepoint_command, if we set commands for a tracepoint.
6698 (create_tracepoint_from_upload): Likewise.
6699 (print_one_breakpoint_location): Remove the code to print
6700 actions specifically.
6701 (tracepoint_save_command): Relay to print_command_lines.
6702 * cli/cli-script.c (process_next_line): New parameters validator
6703 and closure. Handle 'while-stepping'. Call validator if not null.
6704 (read_command_lines, read_command_lines1): Likewise.
6705 (recurse_read_control_structure): New parameters validator and
6706 closure. Handle while_stepping_control.
6707 (print_command_lines): Handle while-stepping.
6708 (get_command_line, define_command, document_command): Adjust.
6709 * remote.c (remote_download_tracepoint): Adjust.
6710 * tracepoint.c (make_cleanup_free_actions, read_actions)
6711 (free_actions, do_free_actions_cleanup): Remove.
6712 (trace_actions_command): Use read_command_lines.
6713 (validate_actionline): Use error in one place.
6714 (encode_actions_1): New, extracted from...
6715 (encode_actions): ...this. Also use cleanups for exception
6716 safety.
6717 (trace_dump_command): Adjust.
6718 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
6719 it's tracepoint.
6720
6721 2010-03-23 Mike Frysinger <vapier@gentoo.org>
6722
6723 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
6724
6725 2010-03-22 Stan Shebs <stan@codesourcery.com>
6726
6727 * value.c (value_static_field): Be lazy about the field's value.
6728
6729 2010-03-22 Reid Kleckner <reid@kleckner.net>
6730
6731 PR gdb/11094
6732 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
6733 bp_jit_event.
6734 (disable_breakpoints_in_shlibs): Likewise.
6735
6736 2010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
6737
6738 * dwarf2read.c (partial_die_parent_scope): Work around buggy
6739 GCC 4.1 debug info generation (GCC PR c++/28460).
6740 (determine_prefix): Likewise.
6741
6742 2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
6743
6744 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
6745 get_current_arch.
6746 * tui/tui-layout.c (extract_display_start_addr): Likewise.
6747
6748 2010-03-19 Stan Shebs <stan@codesourcery.com>
6749
6750 * ax-gdb.c (gen_fetch): Handle bool.
6751 (gen_usual_unary): Ditto.
6752 (gen_cast): Ditto.
6753 (gen_equal): New function.
6754 (gen_less): New function.
6755 (gen_expr_binop_rest): Call them, also return integer type from
6756 logical operations.
6757 (gen_expr): Ditto.
6758
6759 2010-03-19 Tom Tromey <tromey@redhat.com>
6760
6761 * jv-lang.c (jv_dynamics_objfile_data_key)
6762 (jv_type_objfile_data_key): New globals.
6763 (class_symtab): Move earlier.
6764 (jv_per_objfile_free): New function.
6765 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
6766 parameter.
6767 Remove ancient #if 1.
6768 (add_class_symbol): Remove redundant declaration.
6769 (java_lookup_class): Use alloc_type, not alloc_type_arch.
6770 (java_link_class_type): Mark as static. Update.
6771 (jv_clear_object_type): New function.
6772 (set_java_object_type): Likewise.
6773 (get_java_object_type): Use set_java_object_type.
6774 (is_object_type): Likewise.
6775 (_initialize_java_language): Register new objfile keys.
6776 (get_java_class_symtab): Add 'gdbarch' parameter.
6777 (add_class_symtab_symbol): Update.
6778 (type_from_class): Update.
6779
6780 2010-03-19 Stan Shebs <stan@codesourcery.com>
6781
6782 * ax-general.c (ax_const_l): Fix a sizing bug.
6783
6784 2010-03-18 Joel Brobecker <brobecker@adacore.com>
6785
6786 GDB 7.1 released.
6787
6788 2010-03-18 Stan Shebs <stan@codesourcery.com>
6789 Pedro Alves <pedro@codesourcery.com>
6790
6791 * target.h (struct target_ops): New method
6792 to_set_circular_trace_buffer.
6793 (target_set_circular_trace_buffer): New macro.
6794 * target.c (update_current_target): Add
6795 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
6796 default behavior.
6797 * remote.c (remote_set_circular_trace_buffer): New function.
6798 (init_remote_ops): Add it to vector.
6799 * tracepoint.h (struct trace_status): New field traceframes_created,
6800 change buffer_size and buffer_free to int.
6801 * tracepoint.c (circular_trace_buffer): New global.
6802 (start_tracing): Send values of disconnected tracing and circular
6803 trace buffer settings.
6804 (set_circular_trace_buffer): New function.
6805 (parse_trace_state): Handle total space and frames created.
6806 (trace_status_command): Display total space and total frames
6807 created.
6808 (trace_save): Write out new status values.
6809 (parse_trace_status): Set traceframe_count, traceframes_created,
6810 buffer_free and buffer_size to -1 by default.
6811 (_initialize_tracepoint): New setshow for circular-trace-buffer.
6812 * NEWS: Mention the circular trace buffer option.
6813
6814 2010-03-18 Tom Tromey <tromey@redhat.com>
6815
6816 * infcmd.c (finish_command_continuation): Wrap print_return_value
6817 in TRY_CATCH.
6818
6819 2010-03-18 Joel Brobecker <brobecker@adacore.com>
6820
6821 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
6822 DIE has a name before creating the associated partial symbol.
6823 (read_func_scope): Emit a complaint if the subprogram does not
6824 have a name or when we can't extract the subprogram PC bounds.
6825
6826 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
6827
6828 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
6829 instead of selected frame architecture.
6830
6831 2010-03-18 Pedro Alves <pedro@codesourcery.com>
6832
6833 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
6834 a valid selected thread, and that it is not running.
6835 (advance_command): Ditto.
6836 (finish_command): Ditto.
6837
6838 2010-03-17 Stan Shebs <stan@codesourcery.com>
6839
6840 * ax-gdb.c (require_rvalue): Disallow non-scalars.
6841
6842 * infcall.c: Include tracepoint.h.
6843 (call_function_by_hand): Disallow calls in tfind mode.
6844 * infcmd.c: Include tracepoint.h.
6845 (ensure_not_tfind_mode): New function.
6846 (continue_1): Call it.
6847 (step_1) Ditto.
6848 (jump_command): Ditto.
6849 (signal_command): Ditto.
6850 (advance_command): Ditto.
6851 (until_command): Ditto.
6852 (finish_command): Ditto.
6853 * tracepoint.h (disconnect_or_stop_tracing): Declare.
6854
6855 * ax-gdb.h (struct axs_value): New field optimized_out.
6856 (gen_trace_for_var): Add gdbarch argument.
6857 * ax-gdb.c (gen_trace_static_fields): New function.
6858 (gen_traced_pop): Call it, add gdbarch argument.
6859 (gen_trace_for_expr): Update call to it.
6860 (gen_trace_for_var): Ditto, and report optimized-out variables.
6861 (gen_struct_ref_recursive): Check for optimized-out value.
6862 (gen_struct_elt_for_reference): Ditto.
6863 (gen_static_field): Pass gdbarch instead of expression, assume
6864 optimization if field not found.
6865 (gen_var_ref): Set the optimized_out flag.
6866 (gen_expr): Error on optimized-out variable.
6867 * tracepoint.c (collect_symbol): Handle struct-valued vars as
6868 expressions, skip optimized-out variables with computed locations.
6869 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
6870 erroring out if location expression missing.
6871 (loclist_tracepoint_var_ref): Don't error out here.
6872
6873 2010-03-17 Tom Tromey <tromey@redhat.com>
6874
6875 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
6876 DWARF data is available.
6877
6878 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
6879
6880 * symfile.c (generic_load): Reset breakpoints after loading.
6881
6882 2010-03-17 Tom Tromey <tromey@redhat.com>
6883
6884 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
6885
6886 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6887
6888 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
6889 create_breakpoint call, adjust the parameters.
6890
6891 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
6892 Chandru <chandru@in.ibm.com>
6893
6894 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
6895 * valarith.c (value_subscripted_rvalue): Suppress error if
6896 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
6897
6898 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
6899
6900 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
6901
6902 2010-03-16 Joel Brobecker <brobecker@adacore.com>
6903
6904 * ada-tasks.c (task_command_1): Check that the task ptid is valid
6905 before doing the associated thread switch.
6906
6907 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
6908
6909 * MAINTAINERS: Update my email address.
6910
6911 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
6912
6913 Simplify MI breakpoint setting.
6914
6915 * breakpoint.c (break_command_really): Make nonstatic and
6916 rename to...
6917 (create_breakpoint): ...this. Rename prior function by this name
6918 to...
6919 (create_breakpoint_sal): ...this.
6920 (create_breakpoints): Rename to...
6921 (create_breakpoints_sal): ...this.
6922 (set_breakpoint): Remove.
6923 * breakpoint.h: Adjust to above changes.
6924 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
6925
6926 2010-03-15 Stan Shebs <stan@codesourcery.com>
6927
6928 * ax-gdb.c: Include cp-support.h.
6929 (find_field): Remove.
6930 (gen_primitive_field): New function.
6931 (gen_struct_ref_recursive): New function.
6932 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
6933 of find_field.
6934 (gen_static_field): New function.
6935 (gen_struct_elt_for_reference): New.
6936 (gen_namespace_elt): New.
6937 (gen_maybe_namespace_elt): New.
6938 (gen_aggregate_elt_ref): New.
6939 (gen_expr): Add OP_SCOPE, display opcode name in error message.
6940
6941 2010-03-15 Tom Tromey <tromey@redhat.com>
6942
6943 * dwarf2read.c (die_needs_namespace): Also return 0 for
6944 DW_TAG_subprogram.
6945
6946 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
6947
6948 PR c++/7936:
6949 * cp-support.h: Added char *declaration element to using_direct
6950 data struct.
6951 (cp_add_using): Added char *declaration argument.
6952 (cp_add_using_directive): Ditto.
6953 (cp_lookup_symbol_imports): made extern.
6954 * cp-namespace.c: Updated with the above changes.
6955 * dwarf2read.c (read_import_statement): Ditto.
6956 (read_namespace): Ditto.
6957 (read_import_statement): Support import declarations.
6958 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
6959 declarations.
6960 Added support for 'declaration_only' search.
6961 (cp_lookup_symbol_namespace): Attempt to search for the name as
6962 is before consideration of imports.
6963 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
6964 search at every block level search.
6965 Now takes language argument.
6966 (lookup_symbol_aux): Updated.
6967
6968 2010-03-15 Tom Tromey <tromey@redhat.com>
6969
6970 * c-exp.y (name_not_typename): Add 'operator' clause.
6971
6972 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
6973
6974 * configure.ac: Exit if ${gdb_target_obs}" is not set.
6975 * configure: Regenerate.
6976
6977 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6978
6979 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
6980 and ".sdynbss". Update the comment.
6981
6982 2010-03-15 Jie Zhang <jie@codesourcery.com>
6983
6984 * MAINTAINERS: Update my email address.
6985
6986 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
6987
6988 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
6989
6990 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
6991
6992 * charset.c [USE_WIN32API]: Include <windows.h>.
6993 (_initialize_charset): Correct type of w32_host_default_charset.
6994
6995 2010-03-14 Pedro Alves <pedro@codesourcery.com>
6996
6997 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
6998
6999 2010-03-12 Tom Tromey <tromey@redhat.com>
7000
7001 PR c++/9708:
7002 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
7003 in a lexical block does not need a namespace.
7004 (new_symbol) <DW_TAG_variable>: Put extern variables on
7005 list_in_scope in all cases.
7006
7007 2010-03-12 Stan Shebs <stan@codesourcery.com>
7008
7009 * ax-gdb.c (gen_expr): Add shift expressions.
7010 (gen_expr_binop_rest): Ditto.
7011
7012 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
7013
7014 * buildsym.c (finish_block): Reset using_directives pointer
7015 after block initialization.
7016
7017 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
7018
7019 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
7020 * i386-tdep.c (i386_word_names): Likewise.
7021
7022 2010-03-12 Pedro Alves <pedro@codesourcery.com>
7023
7024 * target.c (memory_xfer_partial): Don't use the stack cache if
7025 inspecting trace frames.
7026 * tracepoint.c (finish_tfind_command): Invalidate the target
7027 dcache.
7028
7029 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7030
7031 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
7032 for the PIC displacement, print also the displacement value.
7033 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
7034
7035 2010-03-10 Kevin Buettner <kevinb@redhat.com>
7036
7037 * remote-mips.c (close_ports, mips_initialize_cleanups)
7038 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
7039 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
7040 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
7041 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
7042 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
7043 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
7044 comments describing each of these functions.
7045 (mips_enter_debug, mips_exit_debug, common_open)
7046 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
7047 blank line after the comment describing the function.
7048
7049 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7050
7051 * solib-svr4.c (svr4_exec_displacement): Return now success, new
7052 parameter displacementp. Update comment.
7053 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
7054 element exists. Return if svr4_exec_displacement was not successful.
7055 Update comment.
7056
7057 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7058 Daniel Jacobowitz <dan@codesourcery.com>
7059
7060 * solib-svr4.c (read_program_header): Support type == -1 to read
7061 all program headers.
7062 (read_program_headers_from_bfd): New function.
7063 (svr4_static_exec_displacement): Remove and move the comment ...
7064 (svr4_exec_displacement): ... here. Remove variable found. New
7065 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
7066 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
7067 targets using read_program_headers_from_bfd. Remove the call of
7068 svr4_static_exec_displacement.
7069
7070 2010-03-10 Tom Tromey <tromey@redhat.com>
7071
7072 * dwarf2read.c (struct pubnames_header): Remove.
7073 (_PUBNAMES_HEADER): Remove.
7074 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
7075 (struct aranges_header): Remove.
7076 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
7077 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
7078 (PUBNAMES_SECTION): Remove.
7079 (ARANGES_SECTION): Remove.
7080 (dwarf2_locate_sections): Don't handle pubnames or aranges.
7081 (dwarf2_build_psymtabs): Remove dead code.
7082 (dwarf2_build_psymtabs_easy): Remove.
7083
7084 2010-03-10 Tom Tromey <tromey@redhat.com>
7085
7086 * elfread.c (elf_symfile_read): Don't call
7087 dwarf2_build_frame_info.
7088 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
7089 (struct dwarf2_per_objfile) <objfile>: New field.
7090 (dwarf2_has_info): Now idempotent. Set objfile field.
7091 (dwarf2_read_section): Check and set readin field. Call
7092 posix_madvise.
7093 (dwarf2_build_psymtabs): Don't read all sections.
7094 (read_type_comp_unit_head): Read types section.
7095 (create_debug_types_hash_table): Likewise.
7096 (init_cu_die_reader): Add asserts.
7097 (process_type_comp_unit): Add assert.
7098 (dwarf2_build_psymtabs_hard): Read info section.
7099 (load_partial_comp_unit): Add assert.
7100 (create_all_comp_units): Read info section.
7101 (load_full_comp_unit): Likewise.
7102 (dwarf2_ranges_read): Read ranges section.
7103 (dwarf2_record_block_ranges): Add assert.
7104 (dwarf2_read_abbrevs): Read abbrev section.
7105 (read_indirect_string): Read str section.
7106 (dwarf_decode_line_header): Read line section.
7107 (read_signatured_type_at_offset): Read types section.
7108 (dwarf_decode_macros): Read macinfo section.
7109 (dwarf2_symbol_mark_computed): Read loc section.
7110 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
7111 dwarf2_build_frame_info.
7112 (dwarf2_build_frame_info): Unconditionally set
7113 dwarf2_frame_objfile_data on the objfile.
7114 * configure.ac: Check for posix_madvise.
7115 * config.in, configure: Rebuild.
7116
7117 2010-03-10 Tom Tromey <tromey@redhat.com>
7118
7119 * xcoffread.c (xcoff_start_psymtab): Update.
7120 (xcoff_end_psymtab): Update.
7121 * psymtab.c (allocate_psymtab): Remove dead code.
7122 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
7123 void*.
7124 * mdebugread.c (parse_partial_symbols): Update.
7125 (new_psymtab): Likewise.
7126 * dwarf2read.c (process_psymtab_comp_unit): Update.
7127 (psymtab_to_symtab_1): Update.
7128 * dbxread.c (start_psymtab): Update.
7129 (end_psymtab): Likewise.
7130
7131 2010-03-10 Tom Tromey <tromey@redhat.com>
7132
7133 * xcoffread.c: Include psymtab.h.
7134 (xcoff_sym_fns): Update.
7135 * symtab.h (struct partial_symbol): Remove.
7136 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
7137 (struct partial_symtab): Remove.
7138 (PSYMTAB_TO_SYMTAB): Remove.
7139 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
7140 (find_pc_sect_psymtab): Remove.
7141 (find_pc_sect_symtab_via_partial): Declare.
7142 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
7143 (find_main_psymtab): Remove.
7144 (find_main_filename): Declare.
7145 (fixup_psymbol_section): Remove.
7146 (fixup_section): Declare.
7147 * symtab.c: Include psymtab.h.
7148 (lookup_symtab): Use lookup_symtab method.
7149 (lookup_partial_symtab): Remove.
7150 (find_pc_sect_psymtab_closer): Remove.
7151 (find_pc_sect_psymtab): Remove.
7152 (find_pc_sect_symtab_via_partial): New function.
7153 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
7154 (fixup_section): No longer static.
7155 (fixup_psymbol_section): Remove.
7156 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
7157 (lookup_global_symbol_from_objfile): Likewise.
7158 (lookup_symbol_aux_psymtabs): Remove.
7159 (lookup_symbol_aux_quick): New function.
7160 (lookup_symbol_global): Use lookup_symbol_aux_quick.
7161 (lookup_partial_symbol): Remove.
7162 (basic_lookup_transparent_type_quick): New function.
7163 (basic_lookup_transparent_type): Use it.
7164 (find_main_psymtab): Remove.
7165 (find_main_filename): New function.
7166 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
7167 (find_line_symtab): Use expand_symtabs_with_filename method.
7168 (output_partial_symbol_filename): New function.
7169 (sources_info): Use map_partial_symbol_filenames.
7170 (struct search_symbols_data): New type.
7171 (search_symbols_file_matches): New function.
7172 (search_symbols_name_matches): Likewise.
7173 (search_symbols): Use expand_symtabs_matching method.
7174 (struct add_name_data): Rename from add_macro_name_data.
7175 (add_macro_name): Update.
7176 (add_partial_symbol_name): New function.
7177 (default_make_symbol_completion_list): Use
7178 map_partial_symbol_names.
7179 (struct add_partial_symbol_name): New type.
7180 (maybe_add_partial_symtab_filename): New function.
7181 (make_source_files_completion_list): Use
7182 map_partial_symbol_filenames.
7183 (expand_line_sal): Use expand_symtabs_with_filename method.
7184 * symmisc.c: Include psymtab.h.
7185 (print_objfile_statistics): Use print_stats method.
7186 (dump_objfile): Use dump method.
7187 (dump_psymtab, maintenance_print_psymbols)
7188 (maintenance_info_psymtabs, maintenance_check_symtabs)
7189 (extend_psymbol_list): Remove.
7190 * symfile.h (struct quick_symbol_functions): New struct.
7191 (struct sym_fns) <qf>: New field.
7192 (sort_pst_symbols): Remove.
7193 (increment_reading_symtab): Declare.
7194 * symfile.c: Include psymtab.h.
7195 (compare_psymbols, sort_pst_symbols): Remove.
7196 (psymtab_to_symtab): Remove.
7197 (increment_reading_symtab): New function.
7198 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
7199 method.
7200 (set_initial_language): Use find_main_filename.
7201 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
7202 (free_named_symtabs): Remove unused code.
7203 (start_psymtab_common, add_psymbol_to_bcache)
7204 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
7205 Remove.
7206 * stack.c: Include psymtab.h, symfile.h.
7207 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
7208 * source.h (psymtab_to_fullname): Don't declare.
7209 * source.c: Include psymtab.h.
7210 (select_source_symtab): Use find_last_source_symtab method.
7211 (forget_cached_source_info): Use forget_cached_source_info
7212 method.
7213 (find_and_open_source): No longer static.
7214 (psymtab_to_fullname): Remove.
7215 * somread.c: Include psymtab.h.
7216 (som_sym_fns): Update.
7217 * psympriv.h: New file.
7218 * psymtab.h: New file.
7219 * psymtab.c: New file.
7220 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
7221 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
7222 * objfiles.c: Include psymtab.h.
7223 (objfile_relocate1): Use relocate method.
7224 (objfile_has_partial_symbols): Use has_symbols method.
7225 * mipsread.c: Include psymtab.h.
7226 (ecoff_sym_fns): Update.
7227 * mi/mi-cmd-file.c: Include psymtab.h.
7228 (print_partial_file_name): New function.
7229 (mi_cmd_file_list_exec_source_files): Use
7230 map_partial_symbol_filenames.
7231 * mdebugread.c: Include psympriv.h.
7232 * machoread.c: Include psympriv.h.
7233 (macho_sym_fns): Update.
7234 * m2-exp.y (yylex): Use lookup_symtab.
7235 * elfread.c: Include psympriv.h.
7236 (elf_sym_fns): Update.
7237 * dwarf2read.c: Include psympriv.h.
7238 * dbxread.c: Include psympriv.h.
7239 (aout_sym_fns): Update.
7240 * cp-support.c: Include psymtab.h.
7241 (read_in_psymtabs): Remove.
7242 (make_symbol_overload_list_qualified): Use
7243 expand_symtabs_for_function method.
7244 * coffread.c: Include psympriv.h.
7245 (coff_sym_fns): Update.
7246 * blockframe.c: Include psymtab.h.
7247 (find_pc_partial_function): Use find_pc_sect_symtab method.
7248 * ada-lang.h (ada_update_initial_language): Update.
7249 * ada-lang.c: Include psymtab.h.
7250 (ada_update_initial_language): Remove 'main_pst' argument.
7251 (ada_lookup_partial_symbol): Remove.
7252 (struct ada_psym_data): New type.
7253 (ada_add_psyms): New function.
7254 (ada_add_non_local_symbols): Use map_ada_symtabs method.
7255 (struct add_partial_datum): New type.
7256 (ada_add_partial_symbol_completions): New function.
7257 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
7258 (ada_exception_support_info_sniffer): Update.
7259 * Makefile.in (SFILES): Add psymtab.c.
7260 (COMMON_OBS): Add psymtab.o.
7261 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
7262
7263 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
7264
7265 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
7266
7267 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
7268
7269 PR C++/11236:
7270 * cp-namespace.c (cp_add_using): Deleted.
7271 (cp_add_using_directive): Use obstack allocations.
7272 Merged the function cp_add_using into this one.
7273 Added 'struct obstack *' argument.
7274 (cp_scan_for_anonymous_namespaces): Updated.
7275 * cp-support.h: Updated.
7276 * dwarf2read.c (read_import_statement): Updated.
7277 (read_namespace): Updated.
7278
7279 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
7280
7281 * windows-nat.c (cygwin_conv_path): Remove old macro.
7282
7283 2010-03-10 Pedro Alves <pedro@codesourcery.com>
7284
7285 * breakpoint.c (condition_command): Handle watchpoint conditions.
7286 (is_hardware_watchpoint): Add comment.
7287 (is_watchpoint): New.
7288 (update_watchpoint): Don't reparse the watchpoint's condition
7289 unless necessary.
7290 (WP_IGNORE): New.
7291 (watchpoint_check): Use it.
7292 (bpstat_check_watchpoint): Handle it.
7293 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
7294 conditions in a frame where it makes sense.
7295 (watch_command_1): Store the innermost block of the condition
7296 expression.
7297 (delete_breakpoint): Delete the watchpoint condition expression.
7298 * breakpoint.h (struct bp_location) <cond>: Update comment.
7299 (struct breakpoint): New field `cond_exp_valid_block'.
7300
7301 2010-03-09 Joel Brobecker <brobecker@adacore.com>
7302
7303 Adjust handling of Ada DIEs after dwarf2_physname patch.
7304 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
7305
7306 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
7307 Pierre Muller <muller@ics.u-strasbg.fr>
7308
7309 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
7310 from/to posix/win32.
7311 (windows_make_so): Use non-Cygwin 1.7 specific function.
7312 (windows_create_inferior): Make sure that cygallargs points to
7313 original args in non Cygwin 1.7. case.
7314
7315 2010-03-09 Michael Snyder <msnyder@vmware.com>
7316
7317 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
7318 after target_read_memory to get host byte order.
7319 (i386_process_record): Ditto.
7320
7321 2010-03-09 Keith Seitz <keiths@redhat.com>
7322
7323 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
7324 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
7325 print out const or volatile qualifiers, too.
7326 (c_type_print_args): Add parameters show_artificial and language.
7327 Skip artificial parameters when requested.
7328 Use the appropriate language printer.
7329 (c_type_print_varspec): Tell c_type_print_args to skip artificial
7330 parameters and pass language_c.
7331 * dwarf2read.c (die_list): New file global.
7332 (struct partial_die_info): Update comments for name field.
7333 (pdi_needs_namespace): Renamed to ...
7334 (die_needs_namespace): ... this. Rewrite.
7335 (dwarf2_linkage_name): Remove.
7336 (add_partial_symbol): Do not predicate the call to
7337 partial_die_full_name based on pdi_needs_namespace.
7338 Remove call to cp_check_possible_namespace_symbols and associated
7339 outdated comments.
7340 (guess_structure_name): Do not inspect child subprogram DIEs.
7341 (dwarf2_fullname): Update comments.
7342 Use die_needs_namespace to assist in computing the name.
7343 (read_func_scope): Use dwarf2_name to get the DIE's name.
7344 Use dwarf2_physname to get the "linkage name" of the DIE.
7345 (dwarf2_add_member_field): Use dwarf2_physname instead of
7346 dwarf2_linkage_name.
7347 (read_structure_type): For structs and classes, set TYPE_NAME, too.
7348 (determine_class): Remove.
7349 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
7350 except Ada.
7351 (new_symbol): Unconditionally call dwarf2_name.
7352 Compute the "linkage name" using dwarf2_physname.
7353 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
7354 When determining to scan for anonymous C++ namespaces, ignore
7355 the linkage name.
7356 (dwarf2_physname): New function.
7357 (dwarf2_full_name): Move content to new function and call
7358 that.
7359 (dwarf2_compute_name): "New" function.
7360 (_initialize_dwarf2_read): Initialize die_list.
7361 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
7362 physname.
7363 (gnu_v3_print_method_ptr): Use the physname for virtual methods
7364 without a demangled name.
7365 Print out type information for non-virtual methods.
7366 * linespec.c (decode_line_1): Force ANY string using "::" (or
7367 "." for java) to use decode_compound, and clean up any stray quoting.
7368 If we found a file symtab, re-evaluate whether the remainder is_quoted.
7369 (decode_compound): Stop consuming at an open parenthesis.
7370 Keep template parameters.
7371 Keep any overload information.
7372 Keep keywords like "const".
7373 Remove paren_pointer.
7374 Move is_quoted check from set_flags to here.
7375 Remove #if 0 code from 2000. Ten years is long enough.
7376 (find_method): Before comparing symbol names, canonicalize the string
7377 from the user.
7378 If a specific overload is requested, find it. Otherwise throw an error.
7379 (find_method_overload_end): New function.
7380 (set_flags): Remove.
7381 (decode_compound): Assume that parentheses are matched.
7382 It's a lot easier.
7383 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
7384 to cplus_demangle.
7385 * linespec.c (decode_line_1): Keep important keywords like
7386 "const" and "volatile".
7387 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
7388 * typeprint.h (c_type_print_args): Add declaration.
7389 * ui-file.c (do_ui_file_obsavestring): New function.
7390 (ui_file_obsavestring): New function.
7391 * ui-file.h (ui_file_obsavestring): Add declaration.
7392 * valops.c (find_overload_match): Resolve the object to
7393 a non-pointer type.
7394 If the object is a data member, search the object for the member
7395 and return with staticp set.
7396 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
7397 Do not attempt to extract a function name from non-function types.
7398 If the extracted function name and the original name are the same,
7399 we don't have a C++ method.
7400
7401 From Jan Kratochvil <jan.kratochvil@redhat.com>:
7402 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
7403
7404 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
7405 and arguments from symbol lookups.
7406 * ax-gdb.c (gen_expr): Likewise.
7407 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
7408 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
7409 lookup_possible_namespace_symbol): Likewise.
7410 * cp-support.c (read_in_psymtabs): Likewise.
7411 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
7412 * language.h (la_lookup_symbol_nonlocal): Likewise.
7413 * scm-valprint.c (scm_inferior_print): Likewise.
7414 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
7415 * solib-svr.c (elf_lookup_lib): Likewise.
7416 * solib.c (show_auto_solib_add): Likewise.
7417 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
7418 * symmisc.c (maintenance_check_symtabs): Likewise.
7419 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
7420 lookup_symbol_aux_local, lookup_symbol_aux_block,
7421 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
7422 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
7423 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
7424 basic_lookup_transparent_type, find_main_psymtab,
7425 lookup_block_symbol): Likewise.
7426 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
7427 lookup_symbol_global, lookup_symbol_aux_block,
7428 lookup_symbol_partial_symbol, lookup_block_symbol,
7429 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
7430
7431 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
7432
7433 * python/python-internal.h: Include symtab.h.
7434
7435 2010-03-09 Joel Brobecker <brobecker@adacore.com>
7436 Pierre Muller <muller@ics.u-strasbg.fr>
7437
7438 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
7439 * p-valprint.c (pascal_val_print): Remove undeed block and fix
7440 indentation.
7441
7442 2010-03-08 Tom Tromey <tromey@redhat.com>
7443
7444 * breakpoint.c (breakpoint_1): Add "QUIT".
7445
7446 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
7447 Pedro Alves <pedro@codesourcery.com>
7448
7449 * solib.c (solib_find): Replace extension if
7450 solib_symbols_extension is set in the target gdbarch.
7451 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
7452 solib_symbols_extension to "sym".
7453 * gdbarch.sh (solib_symbols_extension): New variable.
7454 (pstring): New function.
7455 * gdbarch.h, gdbarch.c: Regenerate.
7456
7457 2010-03-08 Tom Tromey <tromey@redhat.com>
7458
7459 PR cli/9591:
7460 * NEWS: Update.
7461 * utils.c: Include main.h.
7462 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
7463 (defaulted_query): Use default answer if `batch_flag'.
7464 * main.h (batch_flag): Declare.
7465 * main.c (batch_flag): New global.
7466 (captured_main): Remove 'batch'. Update.
7467
7468 2010-03-08 Kevin Buettner <kevinb@redhat.com>
7469
7470 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
7471 and Kevin Buettner:
7472
7473 * remote-mips.c (rockhopper_ops): New target_ops struct.
7474 (MON_ROCKHOPPER): New mips_monitor_type.
7475 (read_hex_value): New function.
7476 (mips_request): Send 8-byte values with a 'T' packet. Read the
7477 packet argument as a string and use read_hex_value to parse it.
7478 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
7479 (rockhopper_open): New function.
7480 (mips_wait): Read the PC, FP and SP fields as strings. Use
7481 read_hex_value to parse them and mips_set_register to commit them.
7482 (mips_set_register): New function.
7483 (mips_fetch_registers): Do not cast register value to "unsigned"
7484 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
7485 (mips_store_registers): Use a 'T' packet to set registers when
7486 using MON_ROCKHOPPER.
7487 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
7488 and expect the total to be printed before the entry address.
7489 (_initialize_remote_mips): Initialize and add rockhopper_ops.
7490
7491 2010-03-08 Kevin Buettner <kevinb@redhat.com>
7492
7493 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
7494 Change return value to int. Store value fetched in location
7495 addressed by `val'. Use function's return value as success
7496 or failure indicator. Adjust all callers.
7497
7498 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
7499
7500 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
7501
7502 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7503 Hui Zhu <teawater@gmail.com>
7504
7505 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
7506 tmp_to_stopped_data_address.
7507 (record_open): Reset tmp_to_stopped_by_watchpoint and
7508 tmp_to_stopped_data_address.
7509 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
7510 to_stopped_data_address.
7511
7512 2010-03-08 Hui Zhu <teawater@gmail.com>
7513
7514 * i386-tdep.c (i386_process_record): Initialize regnum.
7515
7516 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7517
7518 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
7519 Do not warn on ".gnu.liblist" and ".gnu.conflict".
7520
7521 2010-03-08 Joel Brobecker <brobecker@adacore.com>
7522
7523 Memory error when reading wrong core file.
7524 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
7525 errors while reading the inferior memory, and return zero if
7526 an exception was raised.
7527
7528 2010-03-07 Michael Snyder <msnyder@vmware.com>
7529
7530 * record.c (record_restore): Rename tmpu8 to rectype.
7531
7532 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
7533 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
7534
7535 (i386_record_push): Rename local tmpulongest to addr.
7536
7537 (i386_process_record): Rename local tmpulongest to addr.
7538
7539 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
7540 addr64.
7541
7542 Rename local variable tmpu8 to opcode8 and regnum.
7543
7544 2010-03-07 Joel Brobecker <brobecker@adacore.com>
7545
7546 * remote.c (remote_get_ada_task_ptid): New function.
7547 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
7548
7549 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
7550
7551 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
7552 block. Define helper macros to reduce ifdefs in code.
7553 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
7554 size. Call unadorned GetModuleFileNameEx rather than
7555 GetModuleFileNameEx*.
7556 (windows_make_so): Use __PMAX to denote maximum buffer size and
7557 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
7558 appropriate.
7559 (get_image_name): Use __PMAX to denote maximum buffer size.
7560 (handle_load_dll): Likewise.
7561 (windows_pid_to_exec_file): Likewise.
7562 (windows_create_inferior): Add many accommodations for older Cygwin and
7563 non-Cygwin.
7564 (bad_GetModuleFileNameExW): Control inclusion of this function based on
7565 __USEWIDE conditional.
7566 (bad_GetModuleFileNameExA): Likewise.
7567 (_initialize_loadable): Just use real function names without the dyn_
7568 part since they are defined earlier.
7569
7570 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
7571 Tom Tromey <tromey@redhat.com>
7572
7573 * utils.c (host_char_to_target): Add 'gdbarch' argument.
7574 (parse_escape): Likewise.
7575 * python/py-utils.c (unicode_to_target_string): Update.
7576 (unicode_to_target_python_string): Update.
7577 (target_string_to_unicode): Update.
7578 * printcmd.c (printf_command): Update.
7579 * p-exp.y (yylex): Update.
7580 * objc-exp.y (yylex): Update.
7581 * mi/mi-parse.c: Include charset.h.
7582 (mi_parse_escape): New function.
7583 (mi_parse_argv): Use it.
7584 * jv-exp.y (yylex): Update.
7585 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
7586 function.
7587 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
7588 * gdbarch.sh (auto_charset, auto_wide_charset): New.
7589 * gdbarch.c: Rebuild.
7590 * gdbarch.h: Rebuild.
7591 * defs.h (parse_escape): Update.
7592 * cli/cli-setshow.c: Include arch-utils.h.
7593 (do_setshow_command): Update.
7594 * cli/cli-cmds.c (echo_command): Update.
7595 * charset.h (target_charset, target_wide_charset): Update.
7596 * charset.c: Include arch-utils.h.
7597 (target_charset_name): Default to "auto".
7598 (target_wide_charset_name): Likewise.
7599 (show_target_charset_name): Handle "auto".
7600 (show_target_wide_charset_name): Likewise.
7601 (be_le_arch): New global.
7602 (set_be_le_names): Add 'gdbarch' argument.
7603 (validate): Likewise. Don't call set_be_le_names.
7604 (set_charset_sfunc, set_host_charset_sfunc)
7605 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
7606 Update.
7607 (target_charset): Add 'gdbarch' argument.
7608 (target_wide_charset): Likewise. Remove 'byte_order' argument.
7609 (auto_target_charset_name): New global.
7610 (default_auto_charset, default_auto_wide_charset): New functions.
7611 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
7612 for target charsets. Copy result of nl_langinfo. Use GetACP if
7613 USE_WIN32API.
7614 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
7615 remove 'byte_order' argument. Update.
7616 (classify_type): Likewise.
7617 (c_emit_char): Update.
7618 (c_printchar): Update.
7619 (c_printstr): Update.
7620 (c_get_string): Update.
7621 (evaluate_subexp_c): Update.
7622 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
7623 Declare.
7624 * python/python.c (gdbpy_target_charset): New function.
7625 (gdbpy_target_wide_charset): Likewise.
7626 (GdbMethods): Update.
7627 * NEWS: Update.
7628
7629 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
7630
7631 * symfile.c (build_section_addr_info_from_objfile): Do not mask
7632 off high address bits.
7633
7634 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
7635
7636 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
7637 address as UnsignedLongLong, not LongLong.
7638
7639 2010-03-05 Kevin Buettner <kevinb@redhat.com>
7640 Pedro Alves <pedro@codesourcery.com>
7641
7642 * remote-mips.c (gdbthread.h): Include.
7643 (remote_mips_ptid): Declare.
7644 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
7645 (common_open): Set inferior_ptid, add it as an inferior, and
7646 as a thread too. Delete FIXME comment regarding start_remote().
7647 (mips_close): Invoke generic_mourn_inferior().
7648 (mips_kill): Make sure that target_mourn_inferior is invoked.
7649 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
7650 it's now invoked from mips_close().
7651 (mips_load): Don't null out inferior_ptid. Don't call
7652 clear_symtab_users().
7653 (mips_thread_alive, mips_pid_to_str): New functions.
7654 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
7655 to_thread_alive and to_pid_to_str operations.
7656
7657 2010-03-04 Tom Tromey <tromey@redhat.com>
7658
7659 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
7660 in DWARF 3 and later.
7661 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
7662
7663 2010-03-04 Keith Seitz <keiths@redhat.com>
7664
7665 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
7666 If the filename portion of the linespec was quoted, recheck the
7667 remainder for additional quoting.
7668 (locate_first_half): Skip over completer chars, too.
7669
7670 2010-03-04 Tom Tromey <tromey@redhat.com>
7671
7672 * printcmd.c (printf_command): Pass dummy argument to
7673 printf_filtered.
7674
7675 2010-03-04 Doug Evans <dje@google.com>
7676
7677 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
7678 unwound_fp.
7679
7680 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
7681
7682 2010-03-04 Pedro Alves <pedro@codesourcery.com>
7683
7684 * breakpoint.c (update_watchpoint): Create a sentinel location if
7685 the software watchpoint isn't watching any memory.
7686 (breakpoint_address_bits): Skip dummy software watchpoint locations.
7687
7688 2010-03-04 Pedro Alves <pedro@codesourcery.com>
7689
7690 * utils.c (fputs_maybe_filtered): Check if there's already a top
7691 level interpreter before dereferencing it. If there isn't one,
7692 don't paginate either.
7693
7694 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
7695
7696 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
7697 the state right when single stepping.
7698 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
7699 Get the next PC along with the instruction state.
7700 (thumb_get_next_pc): Remove.
7701 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
7702
7703 2010-03-04 Hui Zhu <teawater@gmail.com>
7704
7705 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
7706
7707 2010-03-03 Pedro Alves <pedro@codesourcery.com>
7708
7709 * utils.c (fputs_maybe_filtered): Always disable pagination if the
7710 top level interpreter is MI.
7711
7712 2010-03-03 Stan Shebs <stan@codesourcery.com>
7713
7714 * remote.c (remote_download_tracepoint): Iterate over locations.
7715 * tracepoint.c (validate_actionline): Ditto.
7716 (encode_actions): Add location argument.
7717 (trace_dump_command): Check all locations to see if stepping
7718 frame.
7719
7720 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
7721 Eli Zaretskii <eliz@gnu.org>
7722
7723 * NEWS: Add X86 general purpose registers section.
7724
7725 2010-03-03 Tom Tromey <tromey@redhat.com>
7726
7727 PR mi/11098:
7728 * varobj.c (install_new_value): Handle case where new print_value
7729 is NULL.
7730
7731 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
7732
7733 PR gdb/11345:
7734 * printcmd.c (printf_command): Print end of format string using
7735 printf_filtered.
7736
7737 2010-03-02 Tom Tromey <tromey@redhat.com>
7738
7739 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
7740 * defs.h (read_command_lines_1): Add missing 'void'.
7741 * cli/cli-script.c (recurse_read_control_structure): Add missing
7742 'void'.
7743 (read_next_line): Likewise.
7744 (read_command_lines_1): Likewise.
7745
7746 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
7747
7748 * spu-tdep.c (spu_analyze_prologue): Track instruction to
7749 store backchain as part of prologue.
7750
7751 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
7752
7753 * progspace.c (update_address_spaces): Update inferior address spaces
7754 also.
7755
7756 2010-03-02 Doug Evans <dje@google.com>
7757
7758 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
7759 lowpc,highpc args to addrmap_set_empty.
7760
7761 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
7762
7763 * amd64-tdep.c (amd64_byte_names): New.
7764 (amd64_word_names): Likewise.
7765 (amd64_dword_names): Likewise.
7766 (amd64_pseudo_register_name): Likewise.
7767 (amd64_pseudo_register_read): Likewise.
7768 (amd64_pseudo_register_write): Likewise.
7769 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
7770 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
7771 set_gdbarch_pseudo_register_write and
7772 set_tdesc_pseudo_register_name. Don't call
7773 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
7774
7775 * i386-tdep.c (i386_num_mmx_regs): Removed.
7776 (i386_num_pseudo_regs): Likewise.
7777 (i386_byte_names): New.
7778 (i386_word_names): Likewise.
7779 (i386_byte_regnum_p): Likewise.
7780 (i386_word_regnum_p): Likewise.
7781 (i386_mmx_regnum_p): Updated.
7782 (i386_pseudo_register_name): Make it global. Handle byte and
7783 word pseudo-registers.
7784 (i386_pseudo_register_read): Likewise.
7785 (i386_pseudo_register_write): Likewise.
7786 (i386_pseudo_register_type): Handle byte, word and dword
7787 pseudo-registers
7788 (i386_register_reggroup_p): Don't include pseudo
7789 registers, except for MXX, in any register groups. Don't
7790 include pseudo byte, word, dword registers in general_reggroup.
7791 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
7792 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
7793 pseudo-registers after word pseudo-registers. Call
7794 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
7795
7796 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
7797 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
7798 eax_regnum.
7799 (i386_byte_regnum_p): New.
7800 (i386_word_regnum_p): Likewise.
7801 (i386_dword_regnum_p): Likewise.
7802 (i386_pseudo_register_name): Likewise.
7803 (i386_pseudo_register_read): Likewise.
7804 (i386_pseudo_register_write): Likewise.
7805
7806 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
7807
7808 * target-descriptions.c (tdesc_type): Remove
7809 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
7810 (tdesc_predefined_types): Likewise.
7811 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
7812 if flag name is empty.
7813 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
7814
7815 * features/i386/32bit-core.xml: Define i386_eflags.
7816 * features/i386/64bit-core.xml: Likewise.
7817
7818 * features/i386/32bit-sse.xml: Define i386_mxcsr.
7819 * features/i386/64bit-sse.xml: Likewise.
7820
7821 * features/i386/amd64-linux.c: Regenerated.
7822 * features/i386/amd64.c: Likewise.
7823 * features/i386/i386-linux.c: Likewise.
7824 * features/i386/i386.c: Likewise.
7825
7826 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
7827
7828 * gdbtypes.c (append_composite_type_field_raw): New.
7829 (append_composite_type_field_aligned): Use the new function.
7830 * gdbtypes.h (append_composite_type_field_raw): Declare.
7831 * target-descriptions.c (struct tdesc_type_field): Add start and end.
7832 (struct tdesc_type_flag): New type.
7833 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
7834 kind. Add size to u.u. Add u.f for flags.
7835 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
7836 (tdesc_free_type): Likewise.
7837 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
7838 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
7839 (tdesc_add_bitfield, tdesc_add_flag): New.
7840 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
7841 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
7842 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
7843 current_type. Add current_type_size and current_type_is_flags.
7844 (tdesc_start_union): Clear the new fields.
7845 (tdesc_start_struct, tdesc_start_flags): New.
7846 (tdesc_start_field): Handle struct fields, including bitfields.
7847 (field_attributes): Make type optional. Add start and end.
7848 (union_children): Rename to struct_union_children.
7849 (union_attributes): Rename to struct_union_attributes. Add optional
7850 size.
7851 (flags_attributes): New.
7852 (feature_children): Add struct and flags.
7853 * features/gdb-target.dtd: Add flags and struct to features.
7854 Make field type optional. Add field start and end.
7855
7856 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
7857
7858 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
7859 (amd64_linux_read_description): Likewise.
7860 (_initialize_amd64_linux_nat): Set to_read_description to
7861 amd64_linux_read_description.
7862
7863 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
7864 (amd64_linux_register_name): Removed.
7865 (amd64_linux_register_type): Likewise.
7866 (amd64_linux_core_read_description): New.
7867 (amd64_linux_init_abi): Set target description to
7868 tdesc_amd64_linux if needed. Support orig_rax in target
7869 description. Don't call set_gdbarch_register_name nor
7870 set_gdbarch_register_type. Call
7871 set_gdbarch_core_read_description.
7872 (_initialize_amd64_linux_tdep): Call
7873 initialize_tdesc_amd64_linux.
7874
7875 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
7876
7877 * amd64-tdep.c: Include "features/i386/amd64.c".
7878 (amd64_register_names): Removed.
7879 (amd64_register_name): Likewise.
7880 (amd64_register_type): Likewise.
7881 (amd64_init_abi): Set num_core_regs and register_names. Set
7882 target description to tdesc_amd64 if needed. Don't call
7883 set_gdbarch_register_name nor set_gdbarch_register_type.
7884 (_initialize_amd64_tdep): New.
7885
7886 * i386-linux-nat.c (i386_linux_read_description): New.
7887 (_initialize_i386_linux_nat): Set to_read_description to
7888 i386_linux_read_description.
7889
7890 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
7891 (i386_linux_register_name): Removed.
7892 (i386_linux_core_read_description): New.
7893 (i386_linux_read_description): Likewise.
7894 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
7895 Set target description to tdesc_i386_linux if needed. Support
7896 orig_eax. Set register_reggroup_p. Call
7897 set_gdbarch_core_read_description.
7898 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
7899
7900 * i386-linux-tdep.h (tdesc_i386_linux): New.
7901
7902 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
7903 with I387_NUM_REGS.
7904
7905 * i386-tdep.c: Include "features/i386/i386.c".
7906 (i386_register_names): Make it const.
7907 (i386_mmx_names): Likewise.
7908 (i386_num_register_names): Removed.
7909 (i386_register_name): Likewise.
7910 (i386_eflags_type): Likewise.
7911 (i386_mxcsr_type): Likewise.
7912 (i386_sse_type): Likewise.
7913 (i386_register_type): Likewise.
7914 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
7915 (i386_pseudo_register_name): New.
7916 (i386_pseudo_register_type): Likewise.
7917 (i386_mmx_type): Make it static.
7918 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
7919 I387_NUM_REGS. Set num_core_regs and register_names. Don't
7920 call set_gdbarch_register_name nor set_gdbarch_register_type.
7921 Set register_reggroup_p. Set target description to tdesc_i386
7922 if needed. Call set_tdesc_pseudo_register_type,
7923 set_tdesc_pseudo_register_name and tdesc_use_registers.
7924 (_initialize_i386_tdep): Call initialize_tdesc_i386.
7925 initialize_tdesc_x86_64.
7926
7927 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
7928 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
7929 register_names, tdesc and register_reggroup_p.
7930 (I386_NUM_FREGS): Removed.
7931 (i386_eflags_type): Likewise.
7932 (i386_mxcsr_type): Likewise.
7933 (i386_mmx_type): Likewise.
7934 (i386_sse_type): Likewise.
7935 (i386_register_name): Likewise.
7936 (i386_regnum): Add I386_MXCSR_REGNUM.
7937 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
7938
7939 * i387-tdep.h (I387_NUM_REGS): New.
7940
7941 * regformats/i386/i386-linux.dat: Generated.
7942 * regformats/i386/i386.dat: Likewise.
7943 * regformats/i386/amd64-linux.dat: Likewise.
7944 * regformats/i386/amd64.dat: Likewise.
7945
7946 * regformats/reg-i386-linux.dat: Removed.
7947 * regformats/reg-i386.dat: Likewise.
7948 * regformats/reg-x86-64-linux.dat: Likewise.
7949 * regformats/reg-x86-64.dat: Likewise.
7950
7951 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
7952
7953 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
7954 cygwin_conv_path API rather than the deprecated
7955 cygwin_conv_to_full_posix_path.
7956 * windows-nat.c:
7957 (GetModuleFileNameExA): Undefine for Cygwin.
7958 (GetModuleFileNameExW): Define for Cygwin.
7959 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
7960 Call GetModuleFileNameExW and convert path to POSIX using
7961 cygwin_conv_path.
7962 (windows_make_so): Always define p. Drop unused variable m.
7963 Don't use Win32 functions to check file existance, rather use
7964 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
7965 Use canonicalize_file_name to get full path.
7966 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
7967 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
7968 use correct target buffer size in call to WideCharToMultiByte.
7969 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
7970 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
7971 (windows_create_inferior): Convert all paths and arguments to wchar_t
7972 and use CreateProcessW on Cygwin.
7973 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
7974 (bad_GetModuleFileNameExA): Undefine for Cygwin.
7975 (bad_GetModuleFileNameExW): Define for Cygwin.
7976 (_initialize_loadable): Load GetModuleFileNameExW into
7977 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
7978
7979 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
7980
7981 PR python/11036
7982 * python/py-frame.c (frapy_read_var): Add block argument and logic
7983 to cope with user provided blocks.
7984
7985 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
7986
7987 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
7988 New comment.
7989
7990 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
7991
7992 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
7993 (COMMON_OBS): ... to here since it's used unconditionally.
7994 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
7995 (SFILES): To here.
7996
7997 2010-02-26 David Daney <ddaney@caviumnetworks.com>
7998
7999 * mips-linux-tdep.c: Update struct sigframe comments.
8000 (SIGFRAME_CODE_OFFSET): Delete macro.
8001 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
8002 this_frame's sp.
8003 (mips_linux_n32n64_sigframe_init): Same.
8004
8005 2010-02-26 Kevin Buettner <kevinb@redhat.com>
8006
8007 * remote-mips.c (mips_load): Don't use pseudo-register when
8008 invalidating regcache.
8009
8010 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
8011
8012 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
8013
8014 2010-02-26 Pedro Alves <pedro@codesourcery.com>
8015
8016 * NEWS: Add "New targets" section, and mention ARM Symbian
8017 support.
8018
8019 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
8020
8021 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
8022 add ADDR_SIZE member.
8023 (allocate_piece_closure): Update.
8024 (copy_pieced_value_closure): Likewise.
8025 (dwarf2_evaluate_loc_desc): Likewise.
8026 (read_pieced_value): Use DWARF address size instead of
8027 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
8028
8029 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
8030 Tom Tromey <tromey@redhat.com>
8031
8032 * python/py-type.c (typy_lookup_typename): Add in block argument.
8033 If provided restrict lookup to specified blocks.
8034 (gdbpy_lookup_type): Likewise.
8035 (typy_lookup_type): Likewise.
8036
8037 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8038
8039 Symbian config
8040
8041 gdb/
8042 * arm-symbian-tdep.c: New.
8043 * configure.tgt (arm*-*-symbianelf*): New target.
8044 (*-*-symbianelf*): New OS.
8045 * osabi.c (gdb_osabi_names): Add Symbian.
8046 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
8047 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
8048 (ALLDEPFILES): Add arm-symbian-tdep.c.
8049
8050 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8051
8052 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
8053
8054 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8055
8056 * mi/mi-main.c (mi_cmd_execute): Fix typo.
8057
8058 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
8059 Tom Tromey <tromey@redhat.com>
8060 Thiago Jung Bauermann <bauerman@br.ibm.com>
8061
8062 * python/python.c (_initialize_python): Call
8063 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
8064 gdbpy_initialize_blocks.
8065 * python/python-internal.h: Declare struct symbol, block and
8066 symtab_and_line. Declare block_object_type and
8067 symbol_object_type
8068 (gdbpy_lookup_symbol gdbpy_block_for_pc)
8069 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
8070 (symbol_to_symbol_object, block_to_block_object)
8071 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
8072 (gdbpy_initialize_blocks ): Declare.
8073 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
8074 (frapy_select): Add methods.
8075 (frapy_read_var): Add symbol branch.
8076 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
8077 py-block.
8078 (SUBDIR_PYTHON_SRCS): Likewise.
8079 (py-symbol.o): New rule.
8080 (py-symtab.o): Likewise.
8081 (py-block.o): Likewise.
8082 * python/py-symbol.c: New file.
8083 * python/py-symtab.c: Likewise.
8084 * python/py-block.c: Likewise.
8085
8086 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8087
8088 PR gdb/11321
8089
8090 * inferior.h (prepare_for_detach): Declare.
8091 (struct inferior) <detaching>: New field.
8092 * infrun.c (prepare_for_detach): New.
8093 (handle_inferior_event) <random signal>: Don't stop if detaching.
8094 * target.c (target_detach): Call prepare_for_detach.
8095
8096 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8097
8098 Per-process displaced stepping queue.
8099
8100 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
8101 (displaced_step_gdbarch, displaced_step_closure,
8102 (displaced_step_original, displaced_step_copy): Move globals to
8103 this...
8104 (struct displaced_step_inferior_state): ... new structure.
8105 (displaced_step_inferior_states): New global.
8106 (get_displaced_stepping_state, add_displaced_stepping_state)
8107 (remove_displaced_stepping_state, infrun_inferior_exit): New
8108 functions.
8109 (displaced_step_clear): Add displaced_step_inferior_state
8110 parameter, and adjust to handle it.
8111 (displaced_step_clear_cleanup): Parameter is now a
8112 displaced_step_inferior_state. Adjust.
8113 (displaced_step_prepare): Adjust.
8114 (displaced_step_fixup, displaced_step_fixup)
8115 (infrun_thread_ptid_changed, resume): Adjust.
8116 (init_wait_for_inferior): Don't call displaced_step_clear.
8117 (infrun_thread_stop_requested): Rewrite.
8118 (_initialize_infrun): Install infrun_inferior_exit as
8119 inferior_exit observer.
8120
8121 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8122
8123 * inferior.h (ptid_match): Declare.
8124 * infrun.c (ptid_match): New.
8125 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
8126 (handle_notification): Add debug output.
8127 * linux-nat.c (ptid_match): Delete.
8128
8129 2010-02-24 David S. Miller <davem@davemloft.net>
8130
8131 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
8132 * syscalls/sparc-linux.xml: New.
8133 * syscalls/sparc64-linux.xml: New.
8134 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
8135 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
8136 (sparc32_linux_get_syscall_number): New function.
8137 (sparc32_linux_init_abi): Set syscall XML file name and hook up
8138 syscall number fetcher.
8139 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
8140 (sparc64_linux_get_syscall_number): New function.
8141 (sparc64_linux_init_abi): Set syscall XML file name and hook up
8142 syscall number fetcher.
8143
8144 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
8145
8146 Multiexec MI
8147
8148 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
8149 * inferior.c (add_inferior_silent): Notify inferior_added
8150 observer.
8151 (delete_inferior_1): Notify inferior_removed observer.
8152 (exit_inferior_1): Pass inferior, not pid, to observer.
8153 (inferior_appeared): Likewise.
8154 (add_inferior_with_spaces): New.
8155 (add_inferior_command): Use the above.
8156 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
8157 Declare.
8158
8159 * inflow.c (inflow_inferior_exit): Likewise.
8160 * jit.c (jit_inferior_exit_hook): Likewise.
8161
8162 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
8163 remove-inferior.
8164 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
8165 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
8166 (report_initial_inferior): New.
8167 (mi_inferior_removed): Register the above. Make sure
8168 inferior_added observer is called on the first inferior.
8169 (mi_new_thread, mi_thread_exit): Thread group is now identified by
8170 inferior number, not pid.
8171 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
8172 affected.
8173 * mi/mi-main.c (current_context): New.
8174 (proceed_thread_callback): Use typed closure.
8175 Proceed everything if pid is 0. Most implementation split into
8176 (proceed_thread): ... this.
8177 (run_one_inferior): New.
8178 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
8179 Adjust for multiexec behaviour.
8180 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
8181 (mi_cmd_execute): Handle the 'thread-group' option here.
8182 Do some extra checks.
8183 * mi-parse.c (mi_parse): Handle the --all and --thread-group
8184 options.
8185 * mi-parse.h (struct mi_parse): New fields all and thread_group.
8186
8187 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
8188
8189 Make -exec-run a proper MI commands.
8190
8191 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
8192 * mi/mi-cmds.c (mi_cmds): Adjust.
8193 * mi/mi-main.c (mi_cmd_exec_run): New.
8194
8195 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8196 Stan Shebs <stan@codesourcery.com>
8197
8198 * tracepoint.h (set_traceframe_number)
8199 (cleanup_restore_current_traceframe): Declare.
8200 * tracepoint.c (set_traceframe_number): New.
8201 (struct current_traceframe_cleanup): New.
8202 (do_restore_current_traceframe_cleanup)
8203 (restore_current_traceframe_cleanup_dtor)
8204 (make_cleanup_restore_current_traceframe): New.
8205 * infrun.c: Include tracepoint.h.
8206 (fetch_inferior_event): Switch out and in of tfind mode.
8207
8208 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8209
8210 * breakpoint.c (breakpoint_init_inferior): Also delete
8211 bp_shlib_event breakpoints.
8212 * solib-frv.c (enable_break): Remove call to
8213 remove_solib_event_breakpoints.
8214 * solib-svr4.c (enable_break): Ditto.
8215 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
8216 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
8217 * solib-som.c (som_solib_create_inferior_hook): Ditto.
8218 * solib-spu.c (spu_enable_break): Ditto.
8219
8220 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
8221
8222 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
8223
8224 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
8225
8226 * varobj.c (varobj_update): Avoid non-constants in initializers.
8227
8228 2010-02-23 Tom Tromey <tromey@redhat.com>
8229
8230 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
8231 handle big-endian values.
8232 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
8233
8234 2010-02-22 Pedro Alves <pedro@codesourcery.com>
8235
8236 PR9605
8237
8238 gdb/
8239 * breakpoint.c (insert_bp_location): If inserting the read
8240 watchpoint failed, fallback to an access watchpoint.
8241 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
8242 if the value changed, if not watching the same memory for writes.
8243 (watchpoint_locations_match): Add comment.
8244 (update_global_location_list): Copy the location's watchpoint type.
8245 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
8246 handle read watchpoints here.
8247 (i386_insert_watchpoint): Read watchpoints aren't supported.
8248 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
8249 packets.
8250 * target.h (target_insert_watchpoint): Update description.
8251
8252 2010-02-19 Tom Tromey <tromey@redhat.com>
8253
8254 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
8255 * m2-typeprint.c (m2_print_type): Update.
8256 * gdbtypes.c (recursive_dump_type): Update.
8257 (copy_type_recursive): Update.
8258 * c-typeprint.c (c_type_print_varspec_prefix): Update.
8259 (c_type_print_base): Update.
8260 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
8261 Remove.
8262 (struct cplus_struct_type) <ntemplate_args>: Remove.
8263 <struct template_arg>: Remove.
8264 <is_dynamic>: Move earlier.
8265 (TYPE_TEMPLATE_ARGS): Remove.
8266 (TYPE_NTEMPLATE_ARGS): Remove.
8267 (TYPE_TEMPLATE_ARG): Remove.
8268
8269 2010-02-19 Tom Tromey <tromey@redhat.com>
8270
8271 PR c++/8693, PR c++/9496:
8272 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
8273 * c-exp.y (lex_one_token): Rename from yylex. Don't call
8274 write_dollar_variable. Don't try to classify NAME tokens.
8275 (token_and_value): New type.
8276 (token_fifo, popping, name_obstack): New globals.
8277 (classify_name): New function.
8278 (classify_inner_name): Likewise.
8279 (yylex): Likewise.
8280 (VARIABLE): Now has type sval.
8281 (exp : VARIABLE): Call write_dollar_variable.
8282 (qualified_name): Use TYPENAME, not typebase. Add production for
8283 multiple "::" instances.
8284 (variable): Use name_not_typename.
8285 (qualified_type): Remove.
8286 (typebase): Update.
8287
8288 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8289
8290 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
8291 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
8292 found by bfd_get_section_by_name.
8293 * symfile.h (struct section_addr_info) <sectindex>: New comment.
8294
8295 2010-02-19 Joel Brobecker <brobecker@adacore.com>
8296
8297 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
8298 7.0 section" into "Changes in 7.1".
8299
8300 2010-02-19 Joel Brobecker <brobecker@adacore.com>
8301
8302 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
8303 * version.in: Bump version to 7.1.50.20100219-cvs.
8304
8305 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
8306
8307 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
8308 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
8309
8310 2010-02-17 Tom Tromey <tromey@redhat.com>
8311
8312 * NEWS: Add Python API Improvements section.
8313
8314 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
8315
8316 * NEWS: Correct typo.
8317
8318 2010-02-17 Tom Tromey <tromey@redhat.com>
8319
8320 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
8321
8322 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8323
8324 * symfile.c (build_section_addr_info_from_objfile): Include sections
8325 only if they are SEC_ALLOC or SEC_LOAD.
8326
8327 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
8328
8329 PR shlibs/11293
8330 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
8331 of ULONGEST for address size.
8332
8333 2010-02-17 Tom Tromey <tromey@redhat.com>
8334
8335 * NEWS: Add C++ improvements section.
8336
8337 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
8338
8339 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
8340 PyThreadState_Swap): Avoid "statement with no effect" warning.
8341
8342 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8343
8344 * solib-svr4.c (enable_break <target_auxv_search>): New variable
8345 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
8346
8347 2010-02-17 Tristan Gingold <gingold@adacore.com>
8348 Petr Hluzin <petr.hluzin@gmail.com>
8349
8350 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
8351 gdb_assert. Fix info->size for SIG prologue.
8352
8353 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8354
8355 * infcmd.c (show_inferior_tty_command): Check for NULL.
8356 Correct output message.
8357
8358 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8359
8360 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
8361 FUNCTION contains parentheses. Improve removal of a trailing
8362 single quote.
8363
8364 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8365
8366 * gcore.c (do_bfd_delete_cleanup): New function.
8367 (gcore_command): Use it. Discard the cleanup after success.
8368 (gcore_copy_callback): Delete dead code.
8369
8370 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8371
8372 * symfile.c (addr_info_make_relative): Always use
8373 find_lowest_section.
8374
8375 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
8376
8377 * NEWS: Added entry for namespace fixes.
8378
8379 2010-02-15 Tom Tromey <tromey@redhat.com>
8380
8381 * dwarf2read.c (guess_structure_name): Allocate name on the
8382 objfile obstack.
8383
8384 2010-02-15 Tom Tromey <tromey@redhat.com>
8385
8386 * c-typeprint.c (c_type_print_base): Reverse order of test.
8387
8388 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8389
8390 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
8391 initialize it from ELF BFD. Extend the prelink condition by it.
8392
8393 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8394
8395 * defs.h (parse_pid_to_attach): New.
8396 * utils.c (parse_pid_to_attach): New.
8397 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
8398 * gnu-nat.c (gnu_attach): Likewise.
8399 * nto-procfs.c (procfs_attach): Likewise.
8400 * procfs.c (procfs_attach): Likewise.
8401 * windows-nat.c (windows_attach): Likewise.
8402 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
8403 * inf-ttrace.c (inf_ttrace_attach): Likewise.
8404 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
8405 check.
8406
8407 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
8408
8409 * MAINTAINERS: Add myself for write after approval privileges.
8410
8411 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8412
8413 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
8414 block.
8415
8416 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8417
8418 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
8419 only if INFO_VERBOSE.
8420
8421 2010-02-12 Tomas Holmberg <th@virtutech.com>
8422
8423 * mi/mi-main.c: Added the --reverse flag to the following MI
8424 commands: exec-continue, exec-finish, exec-next, exec-step,
8425 exec-next-instruction, exec-step-instruction. This is to
8426 support reverse execution over the MI interface to gdb.
8427
8428 2010-02-12 Pedro Alves <pedro@codesourcery.com>
8429
8430 * tracepoint.c (_initialize_tracepoint): Specify that the address
8431 range of `tfind outsize' is exclusive, and that the address range
8432 of `tfind range' is inclusive, in the commands' help strings.
8433
8434 2010-02-12 Joel Brobecker <brobecker@adacore.com>
8435
8436 Spurious "dll not found" error messages on x64-windows.
8437 * windows-nat.c: Add include of complaints.h.
8438 (handle_unload_dll): Change dll-not-found error into a complaint.
8439
8440 2010-02-12 Pedro Alves <pedro@codesourcery.com>
8441
8442 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
8443 bp_tracepoint and bp_fast_tracepoint, not
8444 bp_loc_software_breakpoint.
8445 (update_global_location_list): Tracepoints are never duplicates of
8446 anything.
8447
8448 2010-02-12 Pedro Alves <pedro@codesourcery.com>
8449
8450 * breakpoint.c (break_command_really): Change return type to int.
8451 Return false if no breakpoint was created, true otherwise.
8452 (trace_command): Don't set the tracepoint count if no tracepoint
8453 was created.
8454 (ftrace_command): Ditto.
8455 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
8456 created in the breakpoints table.
8457
8458 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8459 Ulrich Weigand <uweigand@de.ibm.com>
8460
8461 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
8462
8463 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8464
8465 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
8466 the offset value isn't of integral type.
8467
8468 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8469
8470 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
8471 New.
8472
8473 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8474
8475 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
8476 non-subscriptable types.
8477 * valarith.c (binop_types_user_defined_p): New, abstracted out
8478 from ...
8479 (binop_user_defined_p): ... this.
8480 * value.h (binop_types_user_defined_p): Declare.
8481
8482 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8483
8484 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
8485 Merge uploaded TSVs before merging uploaded tracepoints.
8486
8487 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8488
8489 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
8490
8491 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
8492
8493 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
8494 whitespace character after a dot in comment.
8495 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
8496 Likewise.
8497 (list_args_or_locals): For the 'all' (that is
8498 -stack-list-variables) case, always output list of tuples.
8499 Output 'arg' field if variable is argument.
8500
8501 2010-02-10 Tom Tromey <tromey@redhat.com>
8502
8503 * parser-defs.h (parser_debug): Declare.
8504 * parse.c (_initialize_parse): Install "debug parser" set/show
8505 command.
8506 (parser_debug): New global.
8507 (show_parserdebug): New function.
8508 * c-exp.y (c_parse): Set yydebug.
8509
8510 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
8511
8512 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
8513 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
8514 (tdesc_predefined_types): Add i387_ext, i386_eflags and
8515 i386_mxcsr.
8516 (tdesc_find_type): New.
8517 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
8518 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
8519
8520 * target-descriptions.h (tdesc_find_type): New.
8521
8522 2010-02-10 Michael Snyder <msnyder@vmware.com>
8523
8524 * gdb-gdb.py: Comment fix.
8525
8526 2010-02-09 Tristan Gingold <gingold@adacore.com>
8527
8528 * machoread.c (macho_symfile_relocate): New function.
8529 (macho_sym_fns): Use macho_symfile_relocate instead of
8530 default_symfile_relocate.
8531 (macho_oso_data): New type.
8532 (current_oso): New variable.
8533 (macho_add_oso_symfile): Do not compute section_addr_info, but
8534 instead set vma of sections.
8535 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
8536 Set and clear current_oso.
8537
8538 2010-02-09 Joel Brobecker <brobecker@adacore.com>
8539
8540 Wrong type description for tagged type parameter.
8541 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
8542 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
8543 reference to a tagged type.
8544
8545 2010-02-09 Tristan Gingold <gingold@adacore.com>
8546
8547 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
8548 brothers of the parent.
8549
8550 2010-02-08 Tom Tromey <tromey@redhat.com>
8551
8552 PR c++/8017:
8553 * value.h: Update.
8554 * valops.c (search_struct_field): Make 'name' const.
8555 (search_struct_method): Likewise.
8556 (find_method_list): Make 'method' const.
8557 (value_struct_elt): Make 'name' and 'err' const.
8558 (value_find_oload_method_list): Make 'method' const.
8559 (find_overload_match): Make 'name' const.
8560 * eval.c (evaluate_subexp_standard): New locals function,
8561 function_name.
8562 <OP_FUNCALL>: Handle OP_SCOPE specially.
8563
8564 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
8565
8566 * infrun.c (handle_inferior_event): Do not look up regcache
8567 for exited processes.
8568
8569 2010-02-08 Chris Moller <moller@mollerware.com>
8570
8571 PR gdb/10728
8572 * valarith.c (value_ptrdiff): Added a test for a zero type length,
8573 warn if found, and assume length = 1.
8574
8575 2010-02-08 Chris Moller <cmoller@redhat.com>
8576
8577 PR gdb/9067
8578 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
8579 (cp_print_static_field) Fix use of obstacks.
8580
8581 2010-02-08 Pedro Alves <pedro@codesourcery.com>
8582
8583 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
8584 resumed LWPs as resumed.
8585 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
8586 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
8587 of throwing an internal error. If an LWP of a process we're not
8588 waiting for reports a signal, don't force collecting a SIGSTOP,
8589 and if it was breakpoint hit in non-stop mode, cancel it. Don't
8590 go through all LWPs cancelling breakpoints in non-stop mode.
8591 (resume_stopped_resumed_lwps): New.
8592 (linux_nat_wait): Use it.
8593
8594 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
8595
8596 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
8597 i386/amd64 and i386/amd64-linux.
8598 (i386/i386-expedite): New.
8599 (i386/i386-linux-expedite): Likewise.
8600 (i386/amd64-expedite):Likewise.
8601 (i386/amd64-linux-expedite): Likewise.
8602 ($(outdir)/i386/i386-linux.dat): Likewise.
8603 ($(outdir)/i386/amd64.dat): Likewise.
8604 ($(outdir)/i386/amd64-linux.dat): Likewise.
8605
8606 * features/i386/32bit-core.xml: New.
8607 * features/i386/32bit-linux.xml: Likewise.
8608 * features/i386/32bit-sse.xml: Likewise.
8609 * features/i386/64bit-core.xml: Likewise.
8610 * features/i386/64bit-linux.xml: Likewise.
8611 * features/i386/64bit-sse.xml: Likewise.
8612 * features/i386/i386-linux.xml: Likewise.
8613 * features/i386/i386.xml: Likewise.
8614 * features/i386/amd64-linux.xml: Likewise.
8615 * features/i386/amd64.xml: Likewise.
8616 * features/i386/i386-linux.c: Likewise.
8617 * features/i386/i386.c: Likewise.
8618 * features/i386/amd64-linux.c: Likewise.
8619 * features/i386/amd64.c: Likewise.
8620
8621 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
8622
8623 PR c++/7935:
8624 * cp-support.h: Added char* alias element to using_direct data
8625 struct.
8626 (cp_add_using): Added char* alias argument.
8627 (cp_add_using_directive): Ditto.
8628 * cp-namespace.c: Updated with the above changes.
8629 (cp_lookup_symbol_imports): Check for aliases.
8630 * dwarf2read.c (read_import_statement): Figure out local alias
8631 for the import and pass it on to cp_add_using.
8632 (read_namespace): Pass alias argument to cp_add_using.
8633
8634 2010-02-05 Hui Zhu <teawater@gmail.com>
8635
8636 * defs.h (gdb_bfd_errmsg): New extern.
8637 * exec.c (exec_file_attach): Change bfd_errmsg to
8638 gdb_bfd_errmsg.
8639 * utils.c (AMBIGUOUS_MESS1): New macro.
8640 (AMBIGUOUS_MESS2): New macro.
8641 (gdb_bfd_errmsg): New function.
8642
8643 2010-02-04 Doug Evans <dje@google.com>
8644
8645 * solib-svr4.c (enable_break): Add comment.
8646
8647 2010-02-04 Anthony Green <green@moxielogic.com>
8648
8649 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
8650 gracefully.
8651
8652 2010-02-04 Tom Tromey <tromey@redhat.com>
8653
8654 * valops.c (search_struct_field): Account for
8655 value_embedded_offset. Fix check for virtual base past the end of
8656 the object. Use value_copy when making a slice of the value.
8657
8658 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
8659
8660 PR tui/9622
8661 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
8662 only if gdb_stdout is a tty.
8663
8664 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
8665
8666 * target-descriptions.c: Include "osabi.h".
8667 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
8668 OSABI.
8669
8670 2010-02-04 Tristan Gingold <gingold@adacore.com>
8671
8672 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
8673 (macho_symtab_read): Adjust calls to macho_add_oso.
8674 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
8675 (macho_symfile_read): Adjust call to macho_oso_symfile.
8676 (macho_new_init): Move this function after declarations.
8677 (macho_symfile_init): Ditto.
8678 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
8679 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
8680
8681 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
8682
8683 Include MI command in remotelog.
8684
8685 * mi/mi-main.c (mi_execute_command): Call target_log_command.
8686
8687 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
8688
8689 * remote.c (remote_state): Remove gdbarch.
8690 (init_remote_state): Don't set gdbarch.
8691 (remote_query_supported): Pass target_gdbarch instead of
8692 rs->gdbarch to gdbarch_qsupported.
8693
8694 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
8695
8696 * gdbarch.sh: Add qsupported.
8697
8698 * gdbarch.c: Regenerated.
8699 * gdbarch.h: Likewise.
8700
8701 * remote.c (remote_state): Add gdbarch.
8702 (init_remote_state): Set gdbarch.
8703 (remote_query_supported): Support gdbarch_qsupported.
8704
8705 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
8706
8707 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
8708 __FreeBSD_kernel_version.
8709
8710 2010-02-03 Tristan Gingold <gingold@adacore.com>
8711
8712 * symfile.h (struct sym_fns): Add sym_relocate field.
8713 (default_symfile_relocate): New prototype.
8714 (symfile_relocate_debug_section): First argument is now an objfile.
8715 * symfile.c (default_symfile_relocate): Rename from
8716 symfile_relocate_debug_section, first argument is now an objfile.
8717 (symfile_relocate_debug_section): New function.
8718 * coffread.c (coff_sym_fns): Set sym_relocate field.
8719 * somread.c (som_sym_fns): Ditto.
8720 * mipsread.c (ecoff_sym_fns): Ditto.
8721 * machoread.c (macho_sym_fns): Ditto.
8722 * elfread.c (elf_sym_fns): Ditto.
8723 * dwarf2read.c (dwarf2_read_section): Ditto.
8724 * xcoffread.c (xcoff_sym_fns): Ditto.
8725 * dbxread.c (aout_sym_fns): Ditto.
8726 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
8727 (elfstab_build_psymtabs): Ditto.
8728
8729 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
8730
8731 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
8732
8733 2010-02-02 Tom Tromey <tromey@redhat.com>
8734
8735 * valops.c (value_cast_structs): Try downcasting using the RTTI
8736 type.
8737
8738 2010-02-02 Tom Tromey <tromey@redhat.com>
8739
8740 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
8741 (gnuv2_baseclass_offset): Now static.
8742 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
8743 * gnu-v2-abi.h: Remove.
8744
8745 2010-02-02 Tom Tromey <tromey@redhat.com>
8746
8747 * m2-typeprint.c (m2_record_fields): Don't use
8748 TYPE_DECLARED_TYPE.
8749 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
8750 (struct main_type) <flag_declared_class>: New field.
8751 (struct cplus_struct_type) <declared_type>: Remove.
8752 <ntemplate_args>: Move earlier.
8753 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
8754 (DECLARED_TYPE_TEMPLATE): Remove.
8755 (TYPE_DECLARED_TYPE): Remove.
8756 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
8757 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
8758 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
8759 TYPE_DECLARED_TYPE.
8760
8761 2010-02-02 Tom Tromey <tromey@redhat.com>
8762
8763 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
8764 * valops.c (search_struct_field): Compute nbases after calling
8765 CHECK_TYPEDEF.
8766 (check_field): Call CHECK_TYPEDEF.
8767 * cp-valprint.c (cp_print_value): Pass correct address to
8768 baseclass_offset. Fix check for virtual base past the end of the
8769 object. Don't offset address passed to cp_print_value_fields or
8770 apply_val_pretty_printer.
8771 (cp_print_value_fields): Fix call to val_print.
8772 (cp_print_value_fields_rtti): New function.
8773 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
8774 * p-valprint.c (pascal_object_print_value_fields): Fix call to
8775 val_print.
8776 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
8777 offset to address.
8778 * language.h (struct language_defn) <la_val_print>: Document.
8779 * c-lang.h (cp_print_value_fields_rtti): Declare.
8780
8781 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8782
8783 PR libc/11214:
8784 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
8785 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
8786 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
8787
8788 2010-02-01 Michael Matz <matz@suse.de>
8789 Daniel Jacobowitz <dan@codesourcery.com>
8790
8791 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
8792 functions use a frame pointer.
8793
8794 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8795
8796 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
8797 by a conditional setting DYN_ADDR. Use DYN_ADDR.
8798 * config/djgpp/fnchange.lst: Add translations for
8799 symbol-without-target_section.exp and symbol-without-target_section.c.
8800
8801 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8802
8803 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
8804 (remote_breakpoint_for_pc): Correct invalid_p check.
8805 * gdbarch.c: Regenerated.
8806
8807 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8808
8809 * arm-tdep.c (arm_find_mapping_symbol): New function, from
8810 arm_pc_is_thumb.
8811 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
8812 (extend_buffer_earlier): New function.
8813 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
8814 (arm_adjust_breakpoint_address): New function.
8815 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
8816
8817 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8818
8819 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
8820 (arm_linux_thumb2_le_breakpoint): New constants.
8821 (arm_linux_init_abi): Set thumb2_breakpoint and
8822 thumb2_breakpoint_size.
8823 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
8824 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
8825 Implement support for single stepping through IT blocks if
8826 a 32-bit Thumb breakpoint instruction is available.
8827 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
8828 is available, use it when needed.
8829 (arm_remote_breakpoint_from_pc): New function.
8830 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
8831 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
8832 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
8833
8834 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8835
8836 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
8837 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
8838 * gdbarch.c, gdbarch.h: Regenerated.
8839 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
8840 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
8841 gdbarch_remote_breakpoint_from_pc.
8842
8843 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
8844
8845 * infrun.c (prepare_to_proceed): Handle other signals which might
8846 match a breakpoint.
8847 (handle_inferior_event): Move the check for unusual breakpoint
8848 signals earlier.
8849
8850 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
8851
8852 amd64 - function returning record with field straddling 2 registers.
8853 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
8854 a record of length <= 16 in which a field straddles the two
8855 eightbytes.
8856
8857 2010-01-29 Joel Brobecker <brobecker@adacore.com>
8858
8859 Implement return values on amd64-windows.
8860 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
8861 (amd64_windows_return_value): New function.
8862 (amd64_windows_init_abi): Call set_gdbarch_return_value with
8863 amd64_windows_return_value.
8864
8865 2010-01-29 Joel Brobecker <brobecker@adacore.com>
8866
8867 amd64-windows: 32 bytes allocated on stack by caller for integer
8868 parameter registers.
8869 * i386-tdep.h (struct gdbarch_tdep): Add new field
8870 integer_param_regs_saved_in_caller_frame.
8871 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
8872 tdep->integer_param_regs_saved_in_caller_frame to 1.
8873 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
8874 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
8875
8876 2010-01-29 Joel Brobecker <brobecker@adacore.com>
8877
8878 amd64-windows: memory args passed by pointer during function calls.
8879 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
8880 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
8881 where tdep->memory_args_by_pointer is non-zero.
8882 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
8883 tdep->memory_args_by_pointer to 1.
8884
8885 2010-01-29 Joel Brobecker <brobecker@adacore.com>
8886
8887 amd64-windows: Integer parameters in function calls.
8888 * i386-tdep.h (enum amd64_reg_class): New, moved here from
8889 amd64-tdep.c.
8890 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
8891 call_dummy_integer_regs, and classify.
8892 * amd64-tdep.h (amd64_classify): Add declaration.
8893 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
8894 (amd64_reg_class): Delete, moved to i386-tdep.h.
8895 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
8896 Replace call to amd64_classify by call to tdep->classify.
8897 (amd64_push_arguments): Get the list of registers to use for
8898 passing integer parameters from the gdbarch tdep structure,
8899 rather than using a hardcoded one. Replace calls to amd64_classify
8900 by calls to tdep->classify.
8901 (amd64_push_dummy_call): Get the register number used for
8902 the "hidden" argument from tdep->call_dummy_integer_regs.
8903 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
8904 and tdep->call_dummy_integer_regs. Set tdep->classify.
8905 * amd64-windows-tdep.c: Add include of gdbtypes.h.
8906 (amd64_windows_dummy_call_integer_regs): New static global.
8907 (amd64_windows_classify): New function.
8908 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
8909 tdep->call_dummy_integer_regs and tdep->classify.
8910
8911 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
8912
8913 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
8914 for the new regcache. All callers updated.
8915 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
8916 (get_thread_arch_regcache): Do not set aspace here.
8917 * regcache.h (regcache_xmalloc): Update declaration.
8918
8919 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
8920 regcache_xmalloc updated.
8921
8922 2010-01-28 Joel Brobecker <brobecker@adacore.com>
8923
8924 Another -Wunused-function error in procfs.c (sparc-solaris)
8925 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
8926 Only define if SYS_syssgi is defined.
8927 (remove_dbx_link_breakpoint): Delete declaration. Move up.
8928 (dbx_link_addr, insert_dbx_link_bpt_in_file)
8929 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
8930 is itself defined.
8931
8932 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
8933
8934 * windows-nat.c (windows_initialization_done): New variable.
8935 (get_windows_debug_event): Issue error when process dies before
8936 completely initializing.
8937 (do_initial_windows_stuff): Set flag to indicate when we are done with
8938 the initial steps of attaching to the child.
8939
8940 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
8941
8942 * symtab.h (struct symbol <symtab>): New comment on NULL values.
8943
8944 2010-01-27 Doug Evans <dje@google.com>
8945
8946 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
8947
8948 * breakpoint.c (bpstat_stop_status): Delete useless code.
8949
8950 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
8951
8952 * printcmd.c (display_uses_solib_p): Remove variable section. Access
8953 objfile via SYMBOL_SYMTAB.
8954
8955 2010-01-26 Tom Tromey <tromey@redhat.com>
8956
8957 PR exp/7643:
8958 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
8959 coerce_array on result.
8960
8961 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
8962
8963 * cp-namespace.c (cp_lookup_symbol_namespace): Added
8964 search_parent argument.
8965 (cp_add_using): Initialize 'searched' field.
8966 (reset_directive_searched): New function.
8967 * cp-support.h: Add 'searched' field to using_direct struct.
8968 (cp_lookup_symbol_imports): Ditto.
8969 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
8970 Perform recursive search.
8971 Implement non parent search.
8972 * valops.c (value_maybe_namespace_elt): Updated.
8973
8974 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
8975
8976 PR gdb/10929:
8977 * dwarf2read.c (read_lexical_block_scope): Create blocks for
8978 scopes which contain using directives even if they contain no
8979 declarations.
8980 * symtab.c (lookup_symbol_aux): Pass lowest level block to
8981 la_lookup_symbol_nonlocal.
8982 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
8983 cp_lookup_symbol_namespace.
8984 (cp_lookup_symbol_namespace): Perform an import lookup at every
8985 block level.
8986 (cp_lookup_symbol_imports): New function.
8987 (cp_lookup_symbol_in_namespace): New function.
8988
8989 2010-01-25 Tom Tromey <tromey@redhat.com>
8990
8991 PR gdb/11049:
8992 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
8993 result.
8994
8995 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
8996
8997 * configure.ac: Only use host_os part when disabling TUI on osf.
8998 Use test to check variables, prefix strings with x.
8999 * configure: Regenerate.
9000
9001 * solib-osf.c (osf_current_sos): Initialize tail.
9002
9003 2010-01-25 gingold <gingold@adacore.com>
9004
9005 * windows-nat.c (windows_continue): Use %x to print thread id.
9006 (get_windows_debug_event): Ditto.
9007
9008 2010-01-22 Tom Tromey <tromey@redhat.com>
9009
9010 PR symtab/11199:
9011 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
9012 type and arguments. Use smash_to_methodptr_type.
9013 (read_structure_type): Call quirk_gcc_member_function_pointer
9014 later.
9015 * gdbtypes.h (smash_to_methodptr_type): Declare.
9016 * gdbtypes.c (smash_to_methodptr_type): New function.
9017 (lookup_methodptr_type): Use it.
9018
9019 2010-01-21 Tom Tromey <tromey@redhat.com>
9020
9021 PR symtab/11198:
9022 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
9023 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
9024 * glibc-tdep.c (find_minsym_and_objfile): Remove.
9025 (glibc_skip_solib_resolver): Use
9026 lookup_minimal_symbol_and_objfile.
9027
9028 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
9029
9030 * inflow.c (check_syscall): Guard by #if clause for GO32 and
9031 WIN32 targets.
9032
9033 2010-01-20 Tom Tromey <tromey@redhat.com>
9034
9035 PR backtrace/10770:
9036 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
9037 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
9038 * dwarf2expr.c (new_dwarf_expr_context): Allocate
9039 dwarf_stack_values, not CORE_ADDRs.
9040 (execute_stack_op): Change DW_OP_div and comparison operators to
9041 use signed operands.
9042
9043 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
9044
9045 Per-inferior args and tty and environment.
9046
9047 * infcmd.c (inferior_args): Rename to ...
9048 (inferior_args_scratch): ... this.
9049 (inferior_io_terminal): Rename to ...
9050 (inferior_io_terminal_scratch): ... this.
9051 (inferior_argc, inferior_argv): Remove.
9052 (set_inferior_io_terminal, get_inferior_io_terminal): Store
9053 inside current_inferior().
9054 (set_inferior_tty_command, show_inferior_tty_command): New.
9055 (get_inferior_args, set_inferior_args): Store inside
9056 current_inferior().
9057 (notice_args_set): Likewise and rename to...
9058 (set_args_command): ... this.
9059 (set_inferior_args_vector): Likewise.
9060 (notice_args_read): Rename to...
9061 (show_args_command): ...new.
9062 (tty_command): Remove.
9063 (run_command_1): Don't free old args, as they are freed by
9064 set_inferior_arg now.
9065 (run_no_args_command): Likewise.
9066 (inferior_environ): Remove.
9067 (run_command_1): Use environment of the current inferior.
9068 (environment_info, set_environment_command)
9069 (unset_environment_command, path_info, path_command): Likewise.
9070 (_initialize_infcmd): Adjust for function and variable renames.
9071 Do not init inferior_environ.
9072 * inferior.h (set_inferior_arg): Adjust prototype.
9073 (struct inferior): New fields args, argc, argv, terminal, environment.
9074 (inferior_environ): Remove declaration.
9075 * inferior.c (free_inferior): Free new fields.
9076 (add_inferior_silent): Initialize 'environment' field.
9077 * main.c (captured_main): Set arguments only after the initial
9078 inferior has been created. Set set_inferior_io_terminal,
9079 not tty_command.
9080 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
9081 inferior.
9082 (_initialize_mi_cmd_env): Adjust for disappearance of global
9083 inferior_environ.
9084 * solib.c (solib_find): Use environment of the current inferior.
9085
9086 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9087
9088 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
9089 HAVE_PYTHON.
9090 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
9091
9092 2010-01-20 Joel Brobecker <brobecker@adacore.com>
9093
9094 Get rid of ada-lang.c:function_name_from_pc.
9095 * ada-lang.c: Add "stack.h" #include.
9096 (function_name_from_pc): Delete.
9097 (is_known_support_routine): Replace call to function_name_from_pc
9098 by call to find_frame_funname.
9099 (ada_unhandled_exception_name_addr_from_raise): Likewise.
9100
9101 2010-01-19 Tom Tromey <tromey@redhat.com>
9102
9103 PR c++/11026:
9104 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
9105 objfile obstack.
9106
9107 2010-01-19 Tom Tromey <tromey@redhat.com>
9108
9109 * top.c (stop_sig, float_handler, do_nothing): Remove.
9110
9111 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9112
9113 * breakpoint.c (watchpoint_check): Check the call
9114 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
9115 Extend the comment.
9116 * config/djgpp/fnchange.lst: Add translations for
9117 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
9118 watchpoint-cond-gone-stripped.c.
9119
9120 2010-01-19 Tom Tromey <tromey@redhat.com>
9121
9122 PR c++/8000:
9123 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
9124 into parent scope, and enumerator into grandparent scope.
9125
9126 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9127
9128 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
9129
9130 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9131
9132 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
9133 i[34567]86-*-solaris2.1[0-9]*.
9134 * configure.tgt: Likewise.
9135
9136 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9137
9138 * NEWS: Document the source command enhancement allowing it
9139 to load Python scripts. Document the "set/show script-extension"
9140 commands.
9141
9142 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9143
9144 Add -Wunused-function to compile flags.
9145 * configure.ac: Add -Wunused-function to build_warnings.
9146 * configure: Regenerate.
9147
9148 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9149
9150 "delete" ada-lex.c:input function, not used.
9151 * ada-lex.l: #define YY_NO_INPUT.
9152
9153 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9154
9155 Delete free_named_symtabs and associated cleanup.
9156 * symfile.h (free_named_symtabs): Delete declaration.
9157 * symfile.c: Remove some commented out code (clear_symtab_users_once).
9158 (cashier_psymtab): Comment function out.
9159 Delete declaration.
9160 (free_named_symtabs): Delete.
9161 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
9162 * dbxread.c (end_psymtab): Likewise.
9163 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
9164 * exec.c (exec_close_1): Ditto.
9165 * xcoffread.c (xcoff_end_psymtab): Likewise.
9166
9167 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9168
9169 * stack.c (print_block_frame_labels): Comment function out.
9170
9171 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9172
9173 Delete unused or undefined functions.
9174 * breakpoint.c (ep_parse_optional_filename): Delete.
9175 * dcache.c (dcache_write_line): Remove declaration.
9176 * infrun.c (build_infrun): Remove declaration.
9177 * tracepoint.c (tracepoint_save_command): Remove declaration.
9178 * linux-nat.c (init_lwp_list): Delete. No longer used.
9179 * event-loop.c (check_async_signal_handlers): Delete declaration.
9180 * infrun.c (init_execution_control_state): Delete.
9181 (proceed): Update comment to avoid mentioning
9182 init_execution_control_state.
9183 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
9184 * ada-lang.c (ada_to_static_fixed_value): Delete.
9185 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
9186 * cp-namespace.c (cp_copy_usings): Delete.
9187 * xml-syscall.c (xml_number_of_syscalls): Delete.
9188 * progspace.c (find_program_space_by_num): Delete.
9189 * inflow.c (handle_sigio): Delete declaration.
9190 * hppa-tdep.c (hppa_alignof): Delete.
9191 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
9192 (mipsnbsd_core_osabi_sniffer): Delete.
9193
9194 2010-01-18 Tom Tromey <tromey@redhat.com>
9195
9196 PR c++/9680:
9197 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
9198 (CONST_CAST): New tokens.
9199 (exp): Add new productions.
9200 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
9201 reinterpret_cast.
9202 (is_cast_operator): New function.
9203 (yylex): Handle cast operators specially.
9204 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
9205 UNOP_REINTERPRET_CAST>: New cases.
9206 * expprint.c (print_subexp_standard): Likewise.
9207 (op_name_standard): Likewise.
9208 (dump_subexp_body_standard): Likewise.
9209 * parse.c (operator_length_standard): Likewise.
9210 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
9211 UNOP_REINTERPRET_CAST.
9212 * gdbtypes.c (class_types_same_p): New function.
9213 (is_ancestor): Use it.
9214 (is_public_ancestor): New function.
9215 (is_unique_ancestor_worker): Likewise.
9216 (is_unique_ancestor): Likewise.
9217 * gdbtypes.h (class_types_same_p, is_public_ancestor)
9218 (is_unique_ancestor): Declare.
9219 * valops.c (value_reinterpret_cast): New function.
9220 (dynamic_cast_check_1): Likewise.
9221 (dynamic_cast_check_2): Likewise.
9222 (value_dynamic_cast): Likewise.
9223 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
9224
9225 2010-01-18 Joel Brobecker <brobecker@adacore.com>
9226
9227 Fix build failure when building without Python support.
9228 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
9229 is not defined.
9230
9231 2010-01-18 Joel Brobecker <brobecker@adacore.com>
9232
9233 Use XVS field type instead of doing a parallel lookup.
9234 * ada-lang.c (ada_get_base_type): Follow the XVS field type
9235 if it is a reference type instead of doing a type lookup using
9236 the XVS field name.
9237
9238 2010-01-18 Joel Brobecker <brobecker@adacore.com>
9239
9240 Trust PAD types instead of using PAD___XVS.
9241 * ada-lang.c (trust_pad_over_xvs): New static variable.
9242 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
9243 parallel XVS type, follow the XVS type instead of the PAD type.
9244 (unwrap_value): Make sure that there is no parallel XVE type
9245 before returning the value as is.
9246 (set_ada_list, show_ada_list): New static variables.
9247 (set_ada_command, show_ada_command): New functions.
9248 (_initialize_ada_language): Add new "set/show ada" prefix commands.
9249 Add new "set/show ada trust-PAD-over-XVS" setting.
9250
9251 2010-01-18 Tom Tromey <tromey@redhat.com>
9252 Thiago Jung Bauermann <bauerman@br.ibm.com>
9253
9254 Allow "source" to load python scripts.
9255 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
9256 * python/python.c (source_python_script): New function.
9257 * python/python.h (source_python_script): Add declaration.
9258 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
9259 (script_ext_off, script_ext_soft, script_ext_strict)
9260 (script_ext_enums, script_ext_mode): New static constants.
9261 (show_script_ext_mode, find_and_open_script): New functions.
9262 (source_script): Enhance to handle Python scripts.
9263 (init_cli_cmds): Add set/show script-extension commands.
9264
9265 2010-01-16 Stan Shebs <stan@codesourcery.com>
9266
9267 * tracepoint.h (struct trace_status): Use unsigned long long
9268 instead of size_t.
9269 * tracepoint.c (trace_status_command): Fix printf directive.
9270 (trace_save_command): Check fwrite returns, fix printf directive.
9271 (trace_filename): New global.
9272 (tfile_open): Set it, check read returns.
9273 (tfile_close): Free trace_filename.
9274 (tfile_get_traceframe_address): Check read returns.
9275 (tfile_trace_find): Ditto.
9276 (tfile_fetch_registers): Ditto.
9277 (tfile_xfer_partial): Ditto.
9278 (tfile_get_trace_state_variable_value): Ditto.
9279
9280 2010-01-15 Stan Shebs <stan@codesourcery.com>
9281
9282 Add trace file support.
9283 * tracepoint.h (enum trace_stop_reason): New enum.
9284 (struct trace_status): New struct.
9285 (parse_trace_status): Declare.
9286 (struct uploaded_tp): Move here from remote.c,
9287 add fields for actions.
9288 (struct uploaded_tsv): New struct.
9289 * tracepoint.c (tfile_ops): New target vector.
9290 (trace_fd): New global.
9291 (tfile_open): New function.
9292 (tfile_close): New function.
9293 (tfile_files_info): New function.
9294 (tfile_get_trace_status): New function.
9295 (tfile_get_traceframe_address): New function.
9296 (tfile_trace_find): New function.
9297 (tfile_fetch_registers): New function.
9298 (tfile_xfer_partial): New function.
9299 (tfile_get_trace_state_variable_value): New function.
9300 (init_tfile_ops): New function.
9301 (_initialize_tracepoint): Call it, add tfile target.
9302 (trace_status): New global.
9303 (current_trace_status): New function.
9304 (trace_running_p): Remove, change all users to get from
9305 current_trace_status()->running.
9306 (get_trace_status): Remove.
9307 (trace_status_command): Call target_get_trace_status directly,
9308 report more detail including tracing stop reasons.
9309 (trace_find_command): Always allow tfind on a file.
9310 (trace_find_pc_command): Ditto.
9311 (trace_find_tracepoint_command): Ditto.
9312 (trace_find_line_command): Ditto.
9313 (trace_find_range_command): Ditto.
9314 (trace_find_outside_command): Ditto.
9315 (trace_frames_offset, cur_offset): Declare as off_t.
9316 (trace_regblock_size): Rename from reg_size, update users.
9317 (parse_trace_status): New function.
9318 (tfile_interp_line): New function.
9319 (disconnect_or_stop_tracing): Ensure current trace
9320 status before asking what to do.
9321 (stop_reason_names): New global.
9322 (trace_save_command): New command.
9323 (get_uploaded_tp): Move here from remote.c.
9324 (find_matching_tracepoint): Ditto.
9325 (merge_uploaded_tracepoints): New function.
9326 (parse_trace_status): Use stop_reason_names.
9327 (_initialize_tracepoint): Define tsave command.
9328 * target.h (target_ops): New fields to_save_trace_data,
9329 to_upload_tracepoints, to_upload_trace_state_variables,
9330 to_get_raw_trace_data, change to_get_trace_status
9331 to take a pointer to a status struct.
9332 (target_save_trace_data): New macro.
9333 (target_upload_tracepoints): New macro.
9334 (target_upload_trace_state_variables): New macro.
9335 (target_get_raw_trace_data): New macro.
9336 * target.c (update_current_target): Add new methods, change
9337 signature of to_get_trace_status.
9338 * remote.c (hex2bin): Make globally visible.
9339 (bin2hex): Ditto.
9340 (remote_download_trace_state_variable): Download name also.
9341 (remote_get_trace_status): Update parameter, use
9342 parse_trace_status.
9343 (remote_save_trace_data): New function.
9344 (remote_upload_tracepoints): New function.
9345 (remote_upload_trace_state_variables): New function.
9346 (remote_get_raw_trace_data): New function.
9347 (remote_start_remote): Use them.
9348 (_initialize_remote_ops): Add operations.
9349 * ax-gdb.c: Include breakpoint.h.
9350 * breakpoint.c (create_tracepoint_from_upload): Use
9351 break_command_really, return tracepoint, warn about unimplemented
9352 parts.
9353 * NEWS: Mention trace file addition.
9354
9355 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9356
9357 Fix compilation warning on gcc-3.4.
9358 * exec.c (print_section_info): Move the `displacement' variable
9359 initialization to its declaration.
9360
9361 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9362
9363 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
9364 comparison.
9365
9366 2010-01-15 Eric Botcazou <botcazou@adacore.com>
9367
9368 "info tasks" broken by typedefs in ATCB type definitions.
9369 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
9370 ada_check_typedef before retrieving the length of the type for
9371 regular fields.
9372
9373 2010-01-15 Joel Brobecker <brobecker@adacore.com>
9374
9375 Do not use name-based lookup for unconstrained packed arrays.
9376 * ada-lang.c (find_parallel_type_by_descriptive_type):
9377 Limit the fallback to name-based lookups to the case where
9378 the type is a constrained packed array.
9379
9380 2010-01-15 Joel Brobecker <brobecker@adacore.com>
9381
9382 Enhance gdb-gdb.py to handle main_type.type_specific.
9383 * gdb-gdb.py: Print the type-specific part of struct main_type.
9384
9385 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9386
9387 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
9388 * configure: Regenerate.
9389 * config.in: Regenerate.
9390 * utils.c: Include sys/resource.h.
9391 (dump_core, can_dump_core): New.
9392 (internal_vproblem): Update the comment. Check can_dump_core while
9393 setting dump_core_p. Replace two abort calls by dump_core calls.
9394
9395 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9396 Eli Zaretskii <eliz@gnu.org>
9397
9398 * NEWS: Document the PIE support.
9399
9400 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9401
9402 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
9403 (check_is_pie_binary, _initialize_linux_tdep): Remove.
9404
9405 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9406
9407 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
9408 Replace exec_entry_point call by bfd_get_start_address.
9409
9410 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9411
9412 Support Valgrind attachments broken by the PIE support.
9413 * auxv.c: Include gdbcore.h.
9414 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
9415 parameters ops, object and annex. Remove their assertions.
9416 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
9417 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
9418 (memory_xfer_auxv): ... here.
9419 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
9420 memory_xfer_auxv.
9421 * procfs.c (procfs_xfer_partial): Likewise.
9422 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
9423 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
9424 (svr4_solib_create_inferior_hook): Conditionalize the
9425 svr4_relocate_main_executable call.
9426
9427 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9428
9429 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
9430 target_section. Find SECT in current_target_sections, gdb_assert it.
9431 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
9432 New variable abfd.
9433 * symtab.c (lookup_objfile_from_block): Return the binary file instead
9434 of separate debug info file.
9435
9436 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9437
9438 Support PIEs with no symfile_objfile.
9439 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
9440 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
9441
9442 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9443
9444 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
9445 code part to ...
9446 (svr4_static_exec_displacement): ... a new function.
9447 (svr4_exec_displacement): New function.
9448 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
9449 new_offsets using alloca now. Remove variable old_chain and changed.
9450 Call objfile_relocate unconditionally now.
9451
9452 2010-01-14 Doug Evans <dje@google.com>
9453
9454 * gdbtypes.c (arch_flags_type): Fix comment.
9455 * gdbtypes.h (arch_composite_type): Fix comment.
9456
9457 2009-01-14 Tristan Gingold <gingold@adacore.com>
9458
9459 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
9460 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
9461 to symbol_file_add_from_bfd. Add OSO as separate objfile.
9462 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
9463 macho_add_oso_symfile.
9464 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
9465
9466 2010-01-14 Joel Brobecker <brobecker@adacore.com>
9467
9468 Tru64: Dead threads are never deleted.
9469 * dec-thread.c (dec_thread_ptid_is_alive): New function.
9470 (dec_thread_count_gdb_threads): Fix counter increment.
9471 (dec_thread_add_gdb_thread): Fix *listp increment.
9472 (resync_thread_list): Fix bug in deletion of dead threads that
9473 caused all threads to be deleted, instead of just the dead ones.
9474
9475 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
9476
9477 PR python/10705
9478
9479 * python/python-internal.h: Add lazy_string_object_type
9480 definition.
9481 (create_lazy_string_object, gdbpy_initialize_lazy_string)
9482 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
9483 * python/py-value.c (valpy_lazy_string): New function.
9484 (convert_value_from_python): Add lazy string conversion.
9485 * python/py-prettyprint.c (pretty_print_one_value): Check if
9486 return is also a lazy string.
9487 (print_string_repr): Add lazy string printing branch.
9488 (print_children): Likewise.
9489 * python/py-lazy-string.c: New file. Implement lazy strings.
9490 * python/python.c (_initialize_python): Call
9491 gdbpy_initialize_lazy_string.
9492 * varobj.c (value_get_print_value): Add lazy string printing
9493 branch. Account for encoding.
9494 * c-lang.c (c_printstr): Account for new encoding argument. If
9495 encoding is NULL, find encoding suited for type, otherwise use
9496 user encoding.
9497 * language.h (language_defn): Add encoding argument.
9498 (LA_PRINT_STRING): Likewise.
9499 * language.c (unk_lang_printstr): Update to reflect new encoding
9500 argument to language_defn.
9501 * ada-lang.h (ada_printstr): Likewise.
9502 * c-lang.h (c_printstr): Likewise.
9503 * p-lang.h (pascal_printstr);
9504 * f-lang.c (f_printstr): Likewise.
9505 * m2-lang.c (m2_printstr): Likewise.
9506 * objc-lang.c (objc_printstr): Likewise.
9507 * p-lang.c (pascal_printstr): Likewise.
9508 * scm-lang.c (scm_printstr): Likewise.
9509 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
9510 encoding argument.
9511 * ada-valprint.c (ada_printstr): Likewise.
9512 * f-valprint.c (f_val_print): Likewise
9513 * m2-valprint.c (m2_val_print): Likewise.
9514 * p-valprint.c (pascal_val_print): Likewise.
9515 * expprint.c (print_subexp_standard): Likewise.
9516 * valprint.c (val_print_string): Likewise.
9517 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
9518 (SUBDIR_PYTHON_SRCS): Likewise.
9519 (py-lazy-string.o): New rule.
9520
9521 2010-01-13 Doug Evans <dje@google.com>
9522
9523 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
9524 uninitialized" warning from gcc on local `tree'.
9525
9526 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
9527
9528 Implement core awareness.
9529
9530 * bcache.c (compare_ints): Remove
9531 (print_percentage): Use compare_positive_ints.
9532 * defs.h (compare_positive_ints): Declare.
9533 * linux-nat.h (struct lin_lwp): New field core.
9534 (linux_nat_core_of_thread_1): Declare.
9535 * linux-nat.c (add_lwp): Init the 'core' field.
9536 (linux_nat_wait_1): Record the core.
9537 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
9538 (linux_nat_add_target): Register the above.
9539 * linux-thread-db.c (update_thread_core): New.
9540 (thread_db_find_new_threads): Update core information for
9541 every thread.
9542 * remote.c (struct private_thread_info): New.
9543 (free_private_thread_info, demand_private_info): New.
9544 (PACKET_qXfer_threads, use_osdata_threads): New.
9545 (struct thread_item, threads_parsing_context
9546 (start_thread, end_thread, thread_attributes)
9547 (thread_children, threads_children, threads_elements): New.
9548 (remote_threads_info): Try qXfer:threads before anything
9549 else.
9550 (remote_protocol_packets): Register qXfer:threads.
9551 (remote_open_1): Init use_osdata_threads.
9552 (struct stop_reply): New field 'core'.
9553 (remote_parse_stop_reply): Parse core number.
9554 (process_stop_reply): Record core number.
9555 (remote_xfer_partial): Handle qXfer:threads.
9556 (remote_core_of_thread): New.
9557 (init_remote_ops): Register remote_core_of_thread.
9558 (_initialize_remote): Register qXfer:read.
9559 * target.c (target_core_of_thread): New
9560 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
9561 (struct target_ops): New field to_core_of_threads.
9562 (target_core_of_thread): Declare.
9563 * gdbthread.h (struct thread_info): New field private_dtor.
9564 * thread.c (print_thread_info): Report the core.
9565 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
9566 * utils.c (compare_positive_ints): New.
9567 * features/threads.dtd: New.
9568 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
9569 * mi/mi-main.c (struct collect_cores_data, collect_cores)
9570 (do_nothing, free_vector_of_osdata_items)
9571 (splay_tree_int_comparator, free_splay_tree): New.
9572 (print_one_inferior_data): Implemented printing of selected
9573 inferiors. Collect and print cores.
9574 (output_cores): New.
9575 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
9576 thread groups together with --available.
9577
9578 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9579
9580 * configure: Regenerate (for _STRUCTURED_PROC).
9581
9582 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9583
9584 Delete dead function.
9585 * ada-lang.c (extract_string): Delete. No longer used.
9586
9587 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9588
9589 Fix -Wunused warning in dec-thread.c.
9590 * dec-thread.c (dec_thread_count_gdb_threads)
9591 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
9592
9593 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9594
9595 * ada-valprint.c (ada_print_floating): Remove trailing space.
9596
9597 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9598
9599 Add support for DW_AT_GNAT_descriptive_type.
9600 * gdbtypes.h (enum type_specific_kind): New enum.
9601 (struct main_type) [type_specific_field]: New component.
9602 [type_specific]: Add new component "gnat_stuff".
9603 (struct gnat_aux_type): New type.
9604 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
9605 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
9606 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
9607 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
9608 (TYPE_SPECIFIC_FIELD): New macros.
9609 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
9610 type does not hold any cplus-specific data.
9611 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
9612 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
9613 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
9614 cplus-specific data.
9615 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
9616 Set new component TYPE_SPECIFIC_FIELD (type).
9617 (gnat_aux_default): New constant.
9618 (allocate_gnat_aux_type): New function.
9619 (init_type): Add initialization the type-specific stuff for
9620 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
9621 (print_gnat_stuff): New function.
9622 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
9623 specific data. Adjust code that prints the contents of the
9624 type-specific union using the TYPE_SPECIFIC_FIELD value.
9625 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
9626 the type cplus stuff for Ada types.
9627 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
9628 Error out if these routines are called with an Ada type.
9629 (read_structure_type, read_array_type, read_subrange_type):
9630 Add call to set_descriptive_type.
9631 (set_die_type): Initialize the gnat-specific data if necessary.
9632 (need_gnat_info, die_descriptive_type, set_descriptive_type):
9633 New functions.
9634 * ada-lang.c (decode_constrained_packed_array_type): Use
9635 decode_constrained_packed_array_type instead of doing a standard
9636 lookup to locate a parallel type.
9637 (find_parallel_type_by_descriptive_type): New function.
9638 (ada_find_parallel_type_with_name): New function.
9639 (ada_find_parallel_type): Reimplement using
9640 ada_find_parallel_type_with_name.
9641 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
9642 to check if type has a cplus stuff.
9643 * linespec.c (total_number_of_methods): Likewise.
9644 * mdebugread.c (new_type): Likewise.
9645
9646 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9647
9648 * NEWS: Document the 0b binary number prefix parsing.
9649
9650 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9651
9652 * objfiles.c (objfile_relocate1): Change the return type to int.
9653 Describe the new return value. Return non-zero if data changed.
9654 (objfile_relocate): New variable changed. Set it. Call
9655 breakpoint_re_set depending on CHANGED.
9656
9657 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9658
9659 Implement binary numbers parsing.
9660 * c-exp.y (parse_number): New case 'b' and 'B'.
9661
9662 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9663 Tristan Gingold <gingold@adacore.com>
9664
9665 * solib.c (info_sharedlibrary_command): Replace
9666 objfile_has_partial_symbols and objfile_has_full_symbols calls by
9667 objfile_has_symbols.
9668
9669 2010-01-10 Joel Brobecker <brobecker@adacore.com>
9670
9671 * NEWS: Document the improvements made to the mips-irix port.
9672
9673 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9674
9675 Fix the documentation of valprint.c:value_print.
9676 * valprint.c (value_print): Update the function description to
9677 mention that the syntax of the output follows the current_language,
9678 not necessarily C.
9679
9680 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
9681
9682 Fix displacement of separate debug info files.
9683 * objfiles.c (objfile_relocate): Rename to ...
9684 (objfile_relocate1): ... here and make it static. Extend the comment.
9685 (objfile_relocate): New function.
9686 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
9687 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
9688 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
9689 allocated using alloca.
9690 * symfile.c (copy_section_addr_info): Remove.
9691 (build_section_addr_info_from_objfile): Make it global. New variables
9692 addr_bit and mask, use them.
9693 * symfile.h (build_section_addr_info_from_objfile): New prototype.
9694 (copy_section_addr_info): Remove.
9695
9696 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9697
9698 Signal unwinder for mips-irix N32.
9699 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
9700 tramp-frame.h.
9701 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
9702 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
9703 (SIGCONTEXT_LO_OFF): New macros.
9704 (mips_irix_n32_tramp_frame_init): New function.
9705 (mips_irix_n32_tramp_frame): New static constant.
9706 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
9707
9708 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9709
9710 Breakpoint in shared library does not work on mips-irix.
9711 * procfs.c: #include "observer.h".
9712 (procfs_inferior_created): New function, moving here the code
9713 which unsets the syssgi syscall-exit notifications.
9714 (procfs_create_inferior): Remove the code which unsets the syssgi
9715 syscall-exit notifications. It is too early to do this here.
9716 (_initialize_procfs): Attach the procfs_inferior_created observer.
9717
9718 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9719
9720 Wrong return convention for arrays (mips-irix).
9721 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
9722 128 bits or smaller are returned the same way as structs
9723 and unions of the the same size.
9724
9725 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9726
9727 Cannot set the PC on mips-irix.
9728 * irix5-nat.c (fill_gregset): Check regno against the raw PC
9729 register number, no the cooked one.
9730
9731 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9732
9733 Error while loading core file on mips-irix.
9734 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
9735 if debugging from a core file.
9736
9737 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9738
9739 GDB hangs when attaching to process on mips-irix.
9740 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
9741 attaching to a process.
9742
9743 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9744
9745 Use the correct breakpoint instruction on mips-irix.
9746 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
9747 containing the correct breakpoint instruction to use on mips-irix.
9748 Use it when the osabi is GDB_OSABI_IRIX.
9749
9750 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9751
9752 -Wunused warning in procfs.c (mips-irix only).
9753 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
9754 throughout instead of using praddset and prdelset respectively.
9755
9756 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9757
9758 GDB crash while stepping into function.
9759 * infrun.c (handle_inferior_event): Refetch the current frame
9760 after handling what.main_action, in case that pointer became
9761 dangling.
9762
9763 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9764
9765 Fix build failure of solaris-hosted cross debuggers.
9766 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
9767
9768 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
9769
9770 Fix build failure on sparc-solaris.
9771 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
9772
9773 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9774
9775 Move some symfile code into subroutines.
9776 * symfile.h (relative_addr_info_to_section_offsets)
9777 (addr_info_make_relative): New prototypes.
9778 * symfile.c (default_symfile_offsets): Move a part to ...
9779 (relative_addr_info_to_section_offsets): ... this new function.
9780 (default_symfile_offsets): Call it.
9781 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
9782 this part to ...
9783 (addr_info_make_relative): ... this new function.
9784
9785 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9786
9787 Add from_tty to solib_create_inferior_hook.
9788 * infcmd.c (post_create_inferior): Move solib_add after
9789 solib_create_inferior_hook. Pass from_tty to
9790 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
9791 0 from_tty and comment why.
9792 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
9793 * linux-nat.c (linux_child_follow_fork): Likewise.
9794 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
9795 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
9796 from_tty.
9797 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
9798 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
9799 * solib-null.c (null_solib_create_inferior_hook): Likewise.
9800 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
9801 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
9802 * solib-som.c (som_solib_create_inferior_hook): Likewise.
9803 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
9804 Pass it to svr4_so_ops.solib_create_inferior_hook.
9805 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
9806 from_tty.
9807 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
9808 solib_add.
9809 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
9810 enable_break.
9811 * solib-target.c (solib_target_solib_create_inferior_hook): New
9812 parameter from_tty.
9813 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
9814 it to ops->solib_create_inferior_hook.
9815 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
9816 Move solib_add after solib_create_inferior_hook, call it now with
9817 from_tty as 0. New comment there.
9818 * solib.h (solib_create_inferior_hook): New parameter from_tty.
9819 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
9820 Likewise.
9821
9822 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
9823
9824 Fix multiexec race.
9825 * infrun.c (handle_inferior_event): Use get_thread_regcache
9826 with events ptid, not get_current_regcache.
9827
9828 2009-01-08 Joel Brobecker <brobecker@adacore.com>
9829
9830 GDB crash with empty executable name (MinGW).
9831 * source.c (openp): Add assert that parameter string is not NULL.
9832 if parameter string is an empty string, then return with a failure
9833 immediately.
9834
9835 2009-01-08 Joel Brobecker <brobecker@adacore.com>
9836
9837 Get rid of support for VAX Floats.
9838 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
9839 (ada_vax_float_print_function): Delete.
9840 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
9841 (ada_vax_float_print_function): Delete.
9842 * ada-typeprint.c (print_vax_floating_point_type): Delete.
9843 (ada_print_type): Remove support for VAX floats.
9844 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
9845
9846 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9847
9848 * stabsread.c (read_args): Handle zero arguments.
9849
9850 2009-01-08 Joel Brobecker <brobecker@adacore.com>
9851
9852 Cannot find in-tree libiconv.a after reconfigure.
9853 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
9854 that we can use, then cache the path to this archive.
9855 * configure: Regenerate.
9856
9857 2010-01-07 Stan Shebs <stan@codesourcery.com>
9858
9859 Make tracepoint operations go through target vector.
9860 * target.h (enum trace_find_type): New enum.
9861 (struct target_ops): New fields to_trace_init,
9862 to_download_tracepoint, to_download_trace_state_variable,
9863 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
9864 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
9865 to_set_disconnected_tracing.
9866 (target_trace_init): New macro.
9867 (target_download_tracepoint): New macro.
9868 (target_download_trace_state_variable): New macro.
9869 (target_trace_start): New macro.
9870 (target_trace_set_readonly_regions): New macro.
9871 (target_get_trace_status): New macro.
9872 (target_trace_stop): New macro.
9873 (target_trace_find): New macro.
9874 (target_get_trace_state_variable_value): New macro.
9875 (target_set_disconnected_tracing): New macro.
9876 * target.c (update_current_target): Inherit and set defaults for
9877 tracepoint operations.
9878 * tracepoint.c (default_collect): Make globally visible.
9879 (target_is_remote): Remove, along with all calls.
9880 (tvariables_info): Call target_get_trace_state_variable_value.
9881 (remote_set_transparent_ranges): Remove.
9882 (trace_start_command): Call target_trace_init,
9883 target_download_tracepoint, etc.
9884 (download_tracepoint): Remove.
9885 (trace_stop_command): Simplify.
9886 (stop_tracing): Call target_trace_stop.
9887 (get_trace_status): Call target_get_trace_status.
9888 (trace_status_command): Add case for targets that cannot trace.
9889 (finish_tfind_command): Change to take numerical arguments, call
9890 target_trace_find.
9891 (trace_find_command): Update call to finish_tfind_command.
9892 (trace_find_pc_command): Ditto.
9893 (trace_find_tracepoint_command): Ditto.
9894 (trace_find_line_command): Ditto.
9895 (trace_find_range_command): Ditto.
9896 (trace_find_outside_command): Ditto.
9897 (set_disconnected_tracing_value): Call
9898 target_set_disconnected_tracing.
9899 * remote.c: Add protocol encoding bits from tracepoint.c.
9900 (trace_error): Move from tracepoint.c.
9901 (remote_get_noisy_reply): Ditto.
9902 (free_actions_list_cleanup_wrapper): Ditto.
9903 (free_actions_list): Ditto.
9904 (remote_trace_init): New function.
9905 (remote_download_tracepoint): New function.
9906 (remote_download_trace_state_variable): New function.
9907 (remote_trace_set_readonly_regions): New function.
9908 (remote_trace_start): New function.
9909 (remote_get_trace_status): New function.
9910 (remote_trace_stop): New function.
9911 (remote_trace_find): New function.
9912 (remote_download_trace_state_variable): New function.
9913 (remote_set_disconnected_tracing): New function.
9914 (init_remote_ops): Add tracepoint operations.
9915
9916 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
9917
9918 2010-01-07 Tristan Gingold <gingold@adacore.com>
9919
9920 * symfile.c (build_section_addr_info_from_objfile): New function.
9921 (symbol_file_add_separate): Don't use offsets from objfile but
9922 built an addr info.
9923
9924 2010-01-06 Stan Shebs <stan@codesourcery.com>
9925
9926 Support disconnected tracing.
9927 * infcmd.c (detach_command): Ask whether to stop tracing.
9928 * cli/cli-cmds.c (quit_command): Ditto.
9929 * breakpoint.h (struct breakpoint): New field number_on_target.
9930 * breakpoint.c (create_tracepoint_from_upload): New function.
9931 (get_tracepoint_by_number_on_target): New function.
9932 * remote.c (struct remote): New field disconnected_tracing.
9933 (remote_disconnected_tracing_feature): New function.
9934 (remote_protocol_features): Add DisconnectedTracing.
9935 (struct uploaded_tp): New struct.
9936 (uploaded_tps): New global.
9937 (get_uploaded_tp): New function.
9938 (find_matching_tracepoint): New function.
9939 (remote_get_tracing_state): New function.
9940 (remote_start_remote): Call it.
9941 * tracepoint.c (disconnected_tracing): New global.
9942 (trace_start_command): Initialize number_on_target.
9943 (stop_tracing): New function, split out from...
9944 (trace_stop_command): Call stop_tracing.
9945 (get_trace_status): New function, split out from...
9946 (trace_status_command): Call get_trace_status, add info on
9947 disconnection behavior.
9948 (disconnect_or_stop_tracing): New function.
9949 (finish_tfind_command): Translate from number on target.
9950 (trace_find_tracepoint_command): Translate to number on target.
9951 (send_disconnected_tracing_value): New function.
9952 (set_disconnected_tracing): New function.
9953 (_initialize_tracepoint): Add disconnected-tracing variable.
9954 * NEWS: Mention disconnected tracing.
9955
9956 2010-01-06 Tristan Gingold <gingold@adacore.com>
9957
9958 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
9959 parameter to main_objfile. Iterate on all separate debug objfiles.
9960 * symfile.h (symbol_file_add_separate)
9961 (find_separate_debug_file_by_debuglink): Remove parameter names.
9962 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
9963 (reread_symbols): Use free_objfile_separate_debug.
9964 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
9965 Adjust comment.
9966 (objfile_separate_debug_iterate, add_separate_debug_objfile)
9967 (free_objfile_separate_debug): New prototypes.
9968 * objfiles.c (objfile_separate_debug_iterate): New function.
9969 (add_separate_debug_objfile, free_objfile_separate_debug): New
9970 functions.
9971 (free_objfile): Use free_objfile_separate_debug. Adjust for
9972 multiple separate debug objfile.
9973 (objfile_has_symbols): Adjust comment. Iterate on all separate
9974 debug objfiles.
9975 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
9976 debug objfile.
9977 (lookup_minimal_symbol_text): Ditto.
9978 (lookup_minimal_symbol_by_pc_name): Ditto.
9979 (lookup_minimal_symbol_solib_trampoline): Ditto.
9980 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
9981 debug objfiles.
9982
9983 2010-01-05 Stan Shebs <stan@codesourcery.com>
9984
9985 Add fast tracepoints.
9986 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
9987 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
9988 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
9989 * breakpoint.c (tracepoint_type): New function.
9990 (ALL_TRACEPOINTS): Use it.
9991 (should_be_inserted): Ditto.
9992 (bpstat_check_location): Ditto.
9993 (print_one_breakpoint_location): Ditto.
9994 (user_settable_breakpoint): Ditto.
9995 (set_breakpoint_location_function): Ditto.
9996 (disable_breakpoints_in_shlibs): Ditto.
9997 (delete_trace_command): Ditto.
9998 (print_it_typical): Add bp_fast_tracepoint case.
9999 (bpstat_what): Ditto.
10000 (print_one_breakpoint_location): Ditto.
10001 (allocate_bp_location): Ditto.
10002 (mention): Ditto.
10003 (breakpoint_re_set_one): Ditto.
10004 (disable_command): Ditto.
10005 (enable_command): Ditto.
10006 (check_fast_tracepoint_sals): New function.
10007 (break_command_really): Call it.
10008 (ftrace_command): New function.
10009 (_initialize_breakpoint): Add ftrace command.
10010 * gdbarch.sh (fast_tracepoint_valid_at): New.
10011 * gdbarch.h, gdbarch.c: Regenerate.
10012 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
10013 (i386_gdbarch_init): Use it.
10014 * remote.c (struct remote_state): New field fast_tracepoints.
10015 (PACKET_FastTracepoints): New packet config type.
10016 (remote_fast_tracepoint_feature): New function.
10017 (remote_protocol_features): Add FastTracepoints.
10018 (remote_supports_fast_tracepoints): New function.
10019 (_initialize_remote): Add FastTracepoints.
10020 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
10021 * NEWS: Mention fast tracepoints.
10022
10023 2010-01-06 Joel Brobecker <brobecker@adacore.com>
10024
10025 * gdb-gdb.py: New file.
10026
10027 2010-01-05 Michael Snyder <msnyder@vmware.com>
10028
10029 * infrun.c (handle_inferior_event): Fix typo in comment.
10030
10031 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10032
10033 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
10034
10035 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10036
10037 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
10038 and s390x-linux64.
10039 (s390-linux32-expedite): Define.
10040 (s390-linux64-expedite): Define.
10041 (s390x-linux64-expedite): Define.
10042 * features/s390-acr.xml: New file.
10043 * features/s390-fpr.xml: New file.
10044 * features/s390-core32.xml: New file.
10045 * features/s390-core64.xml: New file.
10046 * features/s390x-core64.xml: New file.
10047 * features/s390-linux32.xml: New file.
10048 * features/s390-linux64.xml: New file.
10049 * features/s390x-linux64.xml: New file.
10050 * features/s390-linux32.c: New generated file.
10051 * features/s390-linux64.c: New generated file.
10052 * features/s390x-linux64.c: New generated file.
10053
10054 * regformats/s390-linux32.dat: New generated file.
10055 * regformats/s390-linux64.dat: New generated file.
10056 * regformats/s390x-linux64.dat: New generated file.
10057 * regformats/reg-s390.dat: Remove.
10058 * regformats/reg-s390x.dat: Remove.
10059
10060 * s390-nat.c: Include "auxv.h" and <elf.h>.
10061 (HWCAP_S390_HIGH_GPRS): Define if undefined.
10062 (s390_target_wordsize): New function.
10063 (s390_auxv_parse): Likewise.
10064 (s390_get_hwcap): Likewise.
10065 (s390_read_description): Likewise.
10066 (_initialize_s390_nat): Install s390_auxv_parse and
10067 s390_read_description.
10068
10069 * s390-tdep.c: Include "features/s390-linux32.c",
10070 "features/s390-linux64.c", and "features/s390x-linux64.c".
10071 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
10072 (s390_register_call_saved): New function.
10073 (s390_register_name): Remove.
10074 (s390_register_type): Remove.
10075 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
10076 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
10077 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
10078 (s390_pseudo_register_name): New function.
10079 (s390_pseudo_register_type): New function.
10080 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
10081 Handle full GPR pesudos and varying pseudo register numbers.
10082 (s390_pseudo_register_write): Likewise
10083 (s390x_pseudo_register_read): Remove.
10084 (s390x_pseudo_register_write): Likewise.
10085 (s390_register_group): Remove.
10086 (s390_pseudo_register_group): New function.
10087 (s390_regmap_gregset): Add GPR upper halves.
10088 (s390x_regmap_gregset): Likewise.
10089 (s390_regmap_fpregset): Likewise.
10090 (s390_regmap_upper): New global variable.
10091 (s390_upper_regset): New global variable.
10092 (s390_upper_regset_sections): New global variable.
10093 (s390_regset_from_core_section): Handle GPR upper halves.
10094 (s390_core_read_description): New function.
10095 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
10096 register information. Handle varying pseudo register numbers.
10097 (s390_backchain_frame_unwind_cache): Likewise.
10098 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
10099 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
10100 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
10101 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
10102 Handle varying pseudo register numbers.
10103 (s390_unwind_pc): Handle varying pseudo register numbers.
10104 (s390_dwarf2_prev_register): New function.
10105 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
10106 register information. Handle varying pseudo register numbers.
10107 Install s390_dwarf2_prev_register to unwind full GPRs.
10108 (s390_gdbarch_init): Handle target descriptions. Assign varying
10109 pseudo register numbers. Install s390_adjust_frame_regnum.
10110 (_initialize_s390_tdep): Initialize target descriptions.
10111
10112 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
10113 (S390_NUM_REGS): Redefine to include upper half registers.
10114 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
10115 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
10116 (tdesc_s390_linux32): Add declaration.
10117 (tdesc_s390_linux64): Likewise.
10118 (tdesc_s390x_linux64): Likewise.
10119
10120 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10121
10122 * regset.h (struct core_regset_section): Add HUMAN_NAME.
10123 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
10124 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
10125 (ppc_linux_vmx_regset_sections): Likewise.
10126 (ppc_linux_fp_regset_sections): Likewise.
10127
10128 * corelow.c (get_core_register_section): Constify arguments.
10129 (get_core_registers): Use gdbarch_core_regset_sections instead
10130 of hard-coded platform-specific register section names.
10131
10132 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10133
10134 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
10135 a register, assume the least-significant part is used.
10136 (write_pieced_value): Likewise.
10137
10138 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10139
10140 * printcmd.c: Include "arch-utils.h".
10141 (do_one_display): Re-parse expression if current architecture changed.
10142
10143 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10144 Joel Brobecker <brobecker@adacore.com>
10145
10146 * gdbtypes.c (check_typedef): New comment on type length.
10147 * value.c (allocate_value_lazy): Remove the unused atype variable. New
10148 comment on type length.
10149 (value_primitive_field): Keep the original TYPE value, new comment.
10150
10151 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10152
10153 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
10154 p_start. Change != comparisons to > and < comparisons.
10155
10156 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10157
10158 * cli/cli-script.c (process_next_line): Check P2 overrun.
10159
10160 2009-01-01 Joel Brobecker <brobecker@adacore.com>
10161
10162 Update the copyright hearder to add year 2010 for most GDB files.
10163
10164 2009-01-01 Joel Brobecker <brobecker@adacore.com>
10165
10166 Fix build failure in inf-ptrace.c.
10167 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
10168
10169 2010-01-01 Joel Brobecker <brobecker@adacore.com>
10170
10171 * top.c (print_gdb_version): Update copyright year.
10172
10173 2010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
10174
10175 Fix break *FUN'address thread NUM.
10176 * ada-lex.l (task): Expand rule to also match the thread keyword.
10177
10178 2010-01-01 Joel Brobecker <brobecker@adacore.com>
10179
10180 Fix break *FUN'address task NUM.
10181 * ada-lex.l (task): New rule.
10182 * ada-lang.c (valid_task_id): Make sure the Ada task list has
10183 been built before using it.
10184
10185 For older changes see ChangeLog-2009.
10186 \f
10187 Local Variables:
10188 mode: change-log
10189 left-margin: 8
10190 fill-column: 74
10191 version-control: never
10192 coding: utf-8
10193 End:
This page took 0.414765 seconds and 4 git commands to generate.