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