* dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-07-05 Doug Evans <dje@google.com>
2
3 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4
5 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
6
7 * ax-gdb.c (cli/cli-utils.h): New include.
8 (linespec.h): Ditto.
9 (agent_eval_command_one): New function.
10 (agent_command_1): Ditto.
11 (agent_command): Call function agent_command_1.
12 (agent_eval_command): Ditto.
13 (_initialize_ax_gdb): Change help for "maint agent"
14 and "maint agent-eval".
15
16 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
17
18 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
19 * cli/cli-utils.c (check_for_argument): New function.
20 * cli/cli-utils.h (check_for_argument): Ditto.
21
22 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
23
24 * NEWS: Mention x32 ABI support.
25
26 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
27
28 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
29 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
30
31 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
32 and pc_regnum_from_eax to -1. Update SP regnum from
33 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
34 needed.
35
36 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
37 pc_regnum_from_eax.
38
39 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
40
41 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
42 * dwarf2expr.h: Include gdbtypes.h.
43 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
44 these forward declarations.
45 (cu_offset, sect_offset): Move these ...
46 * gdbtypes.h: Remove include dwarf2expr.h.
47 (cu_offset, sect_offset): ... here.
48
49 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
50
51 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
52 (amd64_linux_sigtramp_code): This.
53 (amd64_x32_linux_sigtramp_code): New.
54 (LINUX_SIGTRAMP_LEN): Updated.
55 (amd64_linux_sigtramp_start): Check x32 sigtramp.
56
57 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
58
59 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
60
61 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
62
63 * config.in: Regenerate.
64 * configure: Regenerate.
65 * configure.ac: Remove check for gnu/libc-version.h.
66 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
67 gnu/libc-version.h.
68 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
69 variables libc_version, libc_major and libc_minor. Replace sscanf by
70 inferior_has_bug. Extend the comment.
71
72 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
73
74 * linux-thread-db.c (inferior_has_bug): New function.
75 (thread_db_find_new_threads_silently): Return boolean as checked by
76 inferior_has_bug, describe it in the comments.
77 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
78 earlier. Abort the initialization if it returned non-zero.
79 (thread_db_new_objfile): Exclude debug files.
80 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
81 if UNTIL_NO_NEW,
82
83 2012-07-02 Doug Evans <dje@google.com>
84
85 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
86 related to queue management.
87
88 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
89 instead of "debug dwarf2-die" in debugging printfs.
90 (create_debug_info_hash_table_reader): Ditto.
91 (create_debug_info_hash_table): Ditto.
92 (init_dwo_file): Ditto.
93 (init_cutu_and_read_dies): Add debugging printf.
94 (init_cutu_and_read_dies_no_follow): Ditto.
95 (process_psymtab_comp_unit_reader): Ditto.
96
97 2012-07-02 Stan Shebs <stan@codesourcery.com>
98
99 Add target-side support for dynamic printf.
100 * NEWS: Mention the additional style.
101 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
102 (struct bp_location): New field cmd_bytecode.
103 * breakpoint.c: Include format.h.
104 (disconnected_dprintf): New global.
105 (parse_cmd_to_aexpr): New function.
106 (build_target_command_list): New function.
107 (insert_bp_location): Call it.
108 (remove_breakpoints_pid): Skip dprintf breakpoints.
109 (print_one_breakpoint_location): Ditto.
110 (dprintf_style_agent): New global.
111 (dprintf_style_enums): Add dprintf_style_agent.
112 (update_dprintf_command_list): Add agent case.
113 (agent_printf_command): New function.
114 (_initialize_breakpoint): Add new commands.
115 * common/ax.def (printf): New bytecode.
116 * ax.h (ax_string): Declare.
117 * ax-gdb.h (gen_printf): Declare.
118 * ax-gdb.c: Include cli-utils.h, format.h.
119 (gen_printf): New function.
120 (maint_agent_print_command): New function.
121 (_initialize_ax_gdb): Add maint agent-printf command.
122 * ax-general.c (ax_string): New function.
123 (ax_print): Add printf disassembly.
124 * Makefile.in (SFILES): Add format.c
125 (COMMON_OBS): Add format.o.
126 * common/format.h: New file.
127 * common/format.c: New file.
128 * printcmd.c: Include format.h.
129 (ui_printf): Call parse_format_string.
130 * remote.c (remote_state): New field breakpoint_commands.
131 (PACKET_BreakpointCommands): New enum.
132 (remote_breakpoint_commands_feature): New function.
133 (remote_protocol_features): Add new BreakpointCommands entry.
134 (remote_can_run_breakpoint_commands): New function.
135 (remote_add_target_side_commands): New function.
136 (remote_insert_breakpoint): Call it.
137 (remote_insert_hw_breakpoint): Ditto.
138 (_initialize_remote): Add new packet configuration for
139 target-side breakpoint commands.
140 * target.h (struct target_ops): New field
141 to_can_run_breakpoint_commands.
142 (target_can_run_breakpoint_commands): New macro.
143 * target.c (update_current_target): Handle
144 to_can_run_breakpoint_commands.
145
146 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
147
148 Execute -ix and -iex only after system and user gdbinit files.
149 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
150 processing down after gdbinit files.
151
152 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
153
154 Add fnmatch-gnu module.
155 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
156 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
157 * gnulib/aclocal.m4: Regenerate.
158 * gnulib/config.in: Regenerate.
159 * gnulib/configure: Regenerate.
160 * gnulib/import/dummy.c: Remove.
161 * gnulib/import/Makefile.am: Regenerate.
162 * gnulib/import/Makefile.in: Likewise.
163 * gnulib/import/m4/gnulib-cache.m4: Likewise.
164 * gnulib/import/m4/gnulib-comp.m4: Likewise.
165 * gnulib/import/alloca.c: New file.
166 * gnulib/import/alloca.in.h: Likewise.
167 * gnulib/import/config.charset: Likewise.
168 * gnulib/import/fnmatch.c: Likewise.
169 * gnulib/import/fnmatch.in.h: Likewise.
170 * gnulib/import/fnmatch_loop.c: Likewise.
171 * gnulib/import/localcharset.c: Likewise.
172 * gnulib/import/localcharset.h: Likewise.
173 * gnulib/import/m4/alloca.m4: Likewise.
174 * gnulib/import/m4/codeset.m4: Likewise.
175 * gnulib/import/m4/configmake.m4: Likewise.
176 * gnulib/import/m4/fcntl-o.m4: Likewise.
177 * gnulib/import/m4/fnmatch.m4: Likewise.
178 * gnulib/import/m4/glibc21.m4: Likewise.
179 * gnulib/import/m4/localcharset.m4: Likewise.
180 * gnulib/import/m4/locale-fr.m4: Likewise.
181 * gnulib/import/m4/locale-ja.m4: Likewise.
182 * gnulib/import/m4/locale-zh.m4: Likewise.
183 * gnulib/import/m4/mbrtowc.m4: Likewise.
184 * gnulib/import/m4/mbsinit.m4: Likewise.
185 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
186 * gnulib/import/m4/mbstate_t.m4: Likewise.
187 * gnulib/import/m4/stdbool.m4: Likewise.
188 * gnulib/import/m4/wchar_h.m4: Likewise.
189 * gnulib/import/m4/wctype_h.m4: Likewise.
190 * gnulib/import/m4/wint_t.m4: Likewise.
191 * gnulib/import/mbrtowc.c: Likewise.
192 * gnulib/import/mbsinit.c: Likewise.
193 * gnulib/import/mbsrtowcs-impl.h: Likewise.
194 * gnulib/import/mbsrtowcs-state.c: Likewise.
195 * gnulib/import/mbsrtowcs.c: Likewise.
196 * gnulib/import/ref-add.sin: Likewise.
197 * gnulib/import/ref-del.sin: Likewise.
198 * gnulib/import/stdbool.in.h: Likewise.
199 * gnulib/import/streq.h: Likewise.
200 * gnulib/import/strnlen1.c: Likewise.
201 * gnulib/import/strnlen1.h: Likewise.
202 * gnulib/import/verify.h: Likewise.
203 * gnulib/import/wchar.in.h: Likewise.
204 * gnulib/import/wctype.in.h: Likewise.
205
206 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
207
208 Support shell wildcards for 'set auto-load safe-path'.
209 * auto-load.c: Include fnmatch.h.
210 (filename_is_in_dir): Rename to ...
211 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
212 it. Update function comment. Rename dir_len to pattern_len. New
213 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
214 messages. Use gdb_filename_fnmatch.
215 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
216 pattern.
217 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
218 * defs.h (gdb_filename_fnmatch): New declaration.
219 * utils.c: Include fnmatch.h.
220 (gdb_filename_fnmatch): New function.
221
222 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
223
224 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
225 `-probe' and `-probe-stap' options.
226
227 2012-07-01 Yao Qi <yao@codesourcery.com>
228
229 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
230 always_inserted_off, and always_inserted_enums.
231 Change always_inserted_mode's type to 'enum auto_boolean'.
232 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
233 callers.
234 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
235 of add_setshow_enum_cmd.
236 * infrun.c: Remove can_use_displaced_stepping_auto,
237 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
238 can_use_displaced_stepping_enum.
239 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
240 (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
241 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
242 add_setshow_enum_cmd.
243
244 2012-06-30 Doug Evans <dje@google.com>
245
246 * dwarf2read.c (signatured_type): Make "per_cu" member first.
247 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
248 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
249
250 2012-06-29 Doug Evans <dje@google.com>
251
252 * linespec.c: #include "stack.h".
253 (decode_line_with_current_source): Moved here from symtab.c and
254 renamed from decode_line_spec. All callers updated.
255 (decode_line_with_last_displayed): Moved here from breakpoint.c and
256 renamed from decode_line_spec_1. All callers updated.
257 * linespec.h (decode_line_with_current_source): Move declaration here
258 from symtab.h and renamed from decode_line_spec.
259 (decode_line_with_last_displayed): Move declaration here from symtab.h
260 and renamed from decode_line_spec_1.
261 * macrocmd.c: #include "linespec.h".
262 * symtab.c: Remove #include "linespec.h".
263
264 2012-06-28 Doug Evans <dje@google.com>
265
266 * dwarf2read.c (get_cu_length): New function.
267 (offset_in_cu_p, error_check_comp_unit_head): Call it.
268 (create_debug_types_hash_table): Ditto.
269 (init_cutu_and_read_dies): Ditto.
270 (init_cutu_and_read_dies_no_follow): Ditto.
271
272 * dwarf2read.c (dwarf2_find_base_address): Move definition.
273
274 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
275 (struct abbrev_table): Define.
276 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
277 abbrev_table.
278 (init_cutu_and_read_dies): Update.
279 (abbrev_table_alloc_abbrev): New function. Replaces
280 dwarf_alloc_abbrev. All callers updated.
281 (abbrev_table_add_abbrev): New function.
282 (abbrev_table_lookup_abbrev): New function. Replaces
283 dwarf2_lookup_abbrev. All callers updated.
284 (abbrev_table_read_table): New function. Contents moved here from
285 dwarf2_read_abbrevs.
286 (dwarf2_read_abbrevs): Call it.
287 (abbrev_table_free): New function.
288 (dwarf2_free_abbrev_table): Call it.
289
290 2012-06-28 Stan Shebs <stan@codesourcery.com>
291
292 * osdata.c (info_osdata_command): Filter out "Title" columns
293 from non-MI uses.
294 * common/linux-osdata.c (struct osdata_type): Add title field.
295 (osdata_table): Add titles to each entry.
296 (linux_command_xfer_osdata): Add a column for title data.
297
298 2012-06-28 Stan Shebs <stan@codesourcery.com>
299
300 Make logging work for MI.
301 * NEWS: Mention it.
302 * interps.h (interp_set_logging_ftype): New typedef.
303 (struct interp_procs): New field set_logging_proc.
304 (current_interp_set_logging): Declare.
305 * interps.c (current_interp_set_logging): New function.
306 * cli/cli-logging.c: Include interps.h.
307 (set_logging_redirect): Call current_interp_set_logging.
308 (pop_output_files): Ditto.
309 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
310 * mi/mi-console.h (mi_console_set_raw): Declare.
311 * mi/mi-console.c (mi_console_set_raw): New function.
312 * mi/mi-interp.c (saved_raw_stdout): New global.
313 (mi_set_logging): New function.
314 (_initialize_mi_interp): Add it to interp procs.
315
316 2012-06-28 Doug Evans <dje@google.com>
317
318 * symtab.c (lookup_symbol_aux_objfile): Use
319 ALL_OBJFILE_PRIMARY_SYMTABS.
320
321 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
322
323 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
324
325 * common/buffer.c: Include inttypes.h and stdint.h.
326 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
327
328 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
329 Pedro Alves <palves@redhat.com>
330
331 * gdbthread.h (ALL_THREADS): New macro.
332 (thread_list): Declare.
333 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
334 going, but instead fall through to the stepping handling.
335 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
336 the passed in signal. Adjust debug output.
337 (resume_callback): Rename to ...
338 (linux_nat_resume_callback): ... this. Pass the thread's last
339 stop signal, if in "pass" state.
340 (linux_nat_resume): Adjust to rename.
341 (stop_wait_callback): New assertion. Don't respawn signals;
342 instead let the LWP remain with SIGNALLED set.
343 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
344 * remote.c (append_pending_thread_resumptions): New.
345 (remote_vcont_resume): Call it.
346 * target.h (target_resume): Extend comment.
347
348 2012-06-28 Iain Sandoe <iain@codesourcery.com>
349
350 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
351
352 2012-06-27 Doug Evans <dje@google.com>
353
354 * dwarf2read.c (dwarf2_cu): Add ranges_base.
355 Delete have_addr_base, unused. All uses updated.
356 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
357 (dwarf2_get_pc_bounds): Add ranges_base.
358 (dwarf2_record_block_ranges): Ditto.
359
360 2012-06-27 Tom Tromey <tromey@redhat.com>
361
362 PR macros/7961:
363 * varobj.c (varobj_create): Update.
364 (varobj_set_value): Update.
365 * tracepoint.c (validate_actionline): Update.
366 (encode_actions_1): Update.
367 * parse.c (parse_exp_1): Add 'pc' argument.
368 (parse_exp_in_context): Add 'pc' argument. Change how
369 expression_context_pc is set.
370 (parse_expression): Update.
371 (parse_field_expression): Update.
372 * expression.h (parse_exp_1): Update.
373 * eval.c (parse_to_comma_and_eval): Update.
374 * breakpoint.c (set_breakpoint_condition): Update.
375 (update_watchpoint): Update.
376 (init_breakpoint_sal): Update
377 (find_condition_and_thread): Update.
378 (watch_command_1): Update.
379 (update_breakpoint_locations): Update.
380 * ada-lang.c (ada_read_renaming_var_value): Update.
381 (create_excep_cond_exprs): Update.
382
383 2012-06-27 Doug Evans <dje@google.com>
384
385 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
386 type units.
387
388 2012-06-26 Doug Evans <dje@google.com>
389
390 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
391 prototype.
392 (error_check_comp_unit_head): New arg abbrev_section. All callers
393 updated.
394 (read_and_check_comp_unit_head): Ditto.
395 (read_and_check_type_unit_head): Ditto.
396
397 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
398
399 New attribute 'last' for gdb.Symtab_and_line.
400 * NEWS (Python Scripting): Add entry about the new attribute.
401 * python/py-symtab.c (salpy_get_last): New function which
402 implements the get method for the 'last' attribute of
403 gdb.Symtab_and_line.
404 (sal_object_getset): Add entry for the 'last' attribute.
405
406 2012-06-26 Doug Evans <dje@google.com>
407
408 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
409 (dwo_sections): Add macinfo, macro.
410 (dwarf2_locate_dwo_sections): Watch for macro sections.
411 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
412 All callers updated. Handle DWO files.
413
414 * NEWS: Mention new options "set debug dwarf2-read" and
415 "set debug symtab-create".
416 * dwarf2read.c (dwarf2_read_debug): New static global.
417 (dwarf2_build_psymtabs_hard): Add debugging printfs.
418 (process_queue): Ditto.
419 (process_full_comp_unit): Ditto.
420 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
421 * elfread.c (elf_symfile_read): Add debugging printf.
422 * minsyms.c (install_minimal_symbols): Ditto.
423 * psymtab.c (allocate_psymtab): Ditto.
424 * symfile.c (allocate_symtab): Ditto.
425 * symtab.c (symtab_create_debug): New global.
426 (_initialize_symtab): Add new option "set debug symtab-create".
427 * symtab.h (symtab_create_debug): Declare.
428
429 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
430 (lookup_dwo_type_unit): Ditto.
431
432 2012-06-26 Roland McGrath <roland@hack.frob.com>
433 H.J. Lu <hongjiu.lu@intel.com>
434
435 * amd64-linux-nat.c: Include <sys/user.h>.
436 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
437 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
438 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
439
440 * configure.ac: Check if the fs_base and gs_base members of
441 `struct user_regs_struct' exist.
442 * config.in: Regenerated.
443 * configure: Likewise.
444
445 2012-06-25 Michael Eager <eager@eagercon.com>
446
447 PR python/14291
448 * python/python.c (gdbpy_write): Check for interrupted output.
449
450 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
451
452 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
453 register as a stack alignment in ARM mode.
454
455 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
456
457 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
458 * gnulib/config.in: Regenerate.
459 * gnulib/configure: Likewise.
460 * gnulib/import/m4/extensions.m4: Update it.
461 * gnulib/import/m4/gnulib-common.m4: Likewise.
462 * gnulib/import/m4/memmem.m4: Likewise.
463 * gnulib/import/m4/mmap-anon.m4: Likewise.
464 * gnulib/import/m4/multiarch.m4: Likewise.
465 * gnulib/import/stdint.in.h: Likewise.
466
467 2012-06-24 Yao Qi <yao@codesourcery.com>
468
469 * corefile.c (write_memory_with_notification): New.
470 * gdbcore.h: Declare write_memory_with_notification.
471 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
472 'observer_notify_memory_changed' with 'write_memory_with_notification'.
473 * valops.c (value_assign): Likewise.
474 * python/py-inferior.c (infpy_write_memory): Call
475 'write_memory_with_notification'.
476
477 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
478
479 * cc-with-index.sh: Use also -ex "set auto-load no".
480
481 2012-06-23 Doug Evans <dje@google.com>
482
483 PR 14125
484 * NEWS: Document additions to .gdb_index.
485 * dwarf2read.c: #include "gdb/gdb-index.h".
486 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
487 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
488 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
489 (dwarf2_read_index): Recognize version 7.
490 (dw2_do_expand_symtabs_matching): New args want_specific_block,
491 block_kind, domain): All callers updated.
492 (dw2_find_symbol_file): Handle new index CU values.
493 (dw2_expand_symtabs_matching): Match symbol kind if requested.
494 (add_index_entry): New args is_static, kind. All callers updated.
495 (offset_type_compare, uniquify_cu_indices): New functions
496 (symbol_kind): New function.
497 (write_psymtabs_to_index): Remove duplicate CU values.
498 (write_psymtabs_to_index): Write .gdb_index version 7.
499
500 2012-06-22 Joel Brobecker <brobecker@adacore.com>
501
502 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
503 * configure: Regenerate.
504
505 2012-06-20 Yao Qi <yao@codesourcery.com>
506
507 * python/py-inferior.c: Update comments of infpy_read_memory
508 and infpy_write_memory.
509
510 2012-06-19 Tom Tromey <tromey@redhat.com>
511
512 PR exp/9514:
513 * parser-defs.h (insert_type, insert_type_address_space): Declare.
514 (push_type_address_space): Remove.
515 * parse.c (insert_into_type_stack): New function.
516 (insert_type): Likewise.
517 (insert_type_address_space): Rename from push_type_address_space.
518 Insert tp_space_identifier.
519 * c-exp.y (ptr_operator): New production.
520 (abs_decl): Use ptr_operator.
521 (space_identifier): Call insert_type_address_space.
522 (ptype): Don't use const_or_volatile_or_space_identifier.
523 (const_or_volatile_noopt): Call insert_type.
524 (conversion_type_id, conversion_declarator): New productions.
525 (operator): Use conversion_type_id.
526
527 2012-06-18 Doug Evans <dje@google.com>
528
529 * symtab.h (minimal_symbol): New member created_by_gdb.
530 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
531 created by gdb.
532 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
533 (search_symbols): Call it instead of lookup_symbol.
534 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
535
536 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
537 Adjust address for DW_OP_GNU_addr_index.
538 * dwarf2expr.h (dwarf_expr_context): Update comment.
539 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
540 all callers updated. Handle TLS vars described with
541 DW_OP_GNU_const_index.
542 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
543 and DW_OP_GNU_const_index.
544 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
545
546 * block.c (find_block_in_blockvector): Make explicit the fact that we
547 ignore GLOBAL_BLOCK.
548
549 2012-06-18 Tom Tromey <tromey@redhat.com>
550
551 * c-exp.y (operator): Remove trailing space after "delete" and
552 "delete[]".
553
554 2012-06-18 Mark Kettenis <kettenis@gnu.org>
555 Jan Kratochvil <jan.kratochvil@redhat.com>
556
557 Switch i386 and derived targets to ON_STACK.
558 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
559 (amd64_dicos_init_abi): Remove its installment.
560 * dicos-tdep.c (dicos_init_abi): Remove the
561 set_gdbarch_call_dummy_location call. Update the comment here.
562 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
563 (i386_dicos_init_abi): Remove its installment.
564 * i386-tdep.c (i386_push_dummy_code): New function.
565 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
566 i386_push_dummy_code.
567
568 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
569
570 Remove stale dummy frames.
571 * breakpoint.c: Include dummy-frame.h.
572 (longjmp_breakpoint_ops): New variable.
573 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
574 bp_longjmp_call_dummy.
575 (bpstat_what, bptype_string, print_one_breakpoint_location)
576 (init_bp_location): Support bp_longjmp_call_dummy.
577 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
578 (set_longjmp_breakpoint_for_call_dummy)
579 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
580 functions.
581 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
582 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
583 FIXME comment and extend the other comment for bp_call_dummy.
584 (set_longjmp_breakpoint_for_call_dummy)
585 (check_longjmp_breakpoint_for_call_dummy): New declarations.
586 * dummy-frame.c: Include gdbthread.h.
587 (pop_dummy_frame_bpt): New function.
588 (pop_dummy_frame): Call pop_dummy_frame_bpt.
589 (dummy_frame_discard): New function.
590 (cleanup_dummy_frames): Update the comment about longjmps.
591 * dummy-frame.h (dummy_frame_discard): New declaration.
592 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
593 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
594 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
595 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
596 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
597 keep_going if IS_LONGJMP and there is no other reason to stop.
598
599 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
600
601 * remote-sim.c (sim_command_completer): Initialize
602 variable 'result'.
603
604 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
605
606 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
607 * dwarf2loc.c (call_site_parameter_matches): Support
608 CALL_SITE_PARAMETER_PARAM_OFFSET.
609 (needs_dwarf_reg_entry_value): Push stub value.
610 * dwarf2read.c (read_call_site_scope): New variable origin. Support
611 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
612 * gdbtypes.h (enum call_site_parameter_kind): New item
613 CALL_SITE_PARAMETER_PARAM_OFFSET.
614 (struct call_site.parameter.u): New field param_offset.
615
616 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
617
618 Code cleanup: Generalize call_site.parameter key.
619 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
620 variable dwarf_reg. New variable kind_u. Update parameters to
621 push_dwarf_reg_entry_value.
622 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
623 * dwarf2expr.h (enum call_site_parameter_kind)
624 (union call_site_parameter_u): Forward declarations.
625 (struct dwarf_expr_context_funcs): Update parameters and their
626 description for push_dwarf_reg_entry_value.
627 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
628 * dwarf2loc.c (call_site_parameter_matches): New function.
629 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
630 description. Use call_site_parameter_matches.
631 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
632 Update parameters and their description.
633 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
634 New variable kind_u. Adjust the caller for updated parameters.
635 (needs_dwarf_reg_entry_value): Update parameters.
636 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
637 instead of attr. Update for the changed fields of struct
638 call_site_parameter.
639 * gdbtypes.h: Include dwarf2expr.h.
640 (enum call_site_parameter_kind): New.
641 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
642 fb_offset into new union u.
643
644 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
645
646 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
647 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
648 for x32.
649
650 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
651
652 * amd64-linux-nat.c (compat_x32_clock_t): New.
653 (compat_x32_siginfo_t): Likewise.
654 (compat_x32_siginfo_from_siginfo): Likewise.
655 (siginfo_from_compat_x32_siginfo): Likewise.
656 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
657 and siginfo_from_compat_x32_siginfo for x32.
658
659 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
660
661 * tracepoint.c (tfile_xfer_partial): Add a lseek.
662
663 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
664
665 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
666 instead of gdbarch_ptr_bit.
667 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
668 (amd64_supply_native_gregset): Likewise.
669 (amd64_collect_native_gregset): Likewise.
670 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
671 (amd64_supply_xsave): Likewise.
672 (amd64_collect_fxsave): Likewise.
673 (amd64_collect_xsave): Likewise.
674
675 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
676
677 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
678 (amd64_linux_read_description): Check DS segment register for
679 x32 process.
680
681 2012-06-15 Tom Tromey <tromey@redhat.com>
682
683 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
684 init_cutu_and_read_dies.
685
686 2012-06-15 Iain Sandoe <iain@codesourcery.com>
687
688 * MAINTAINERS (Write After Approval): Add myself to the list.
689
690 2012-06-15 Tom Tromey <tromey@redhat.com>
691
692 * valops.c (value_find_oload_method_list): Now static.
693 * value.h (value_find_oload_method_list): Don't declare.
694
695 2012-06-15 Tom Tromey <tromey@redhat.com>
696
697 * valops.c (find_overload_match): Use value_ind.
698
699 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
700
701 * infrun.c (handle_inferior_event): Correct indentation.
702
703 2012-06-14 Doug Evans <dje@google.com>
704
705 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
706 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
707 All uses updated.
708 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
709 updated. Handle DEBUG_LOC_START_LENGTH.
710 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
711 (loclist_describe_location): Ditto.
712
713 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
714
715 PR backtrace/13866
716 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
717 after hiding inline functions.
718
719 2012-06-13 Joel Brobecker <brobecker@adacore.com>
720
721 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
722 _initialize_inf_ttrace.
723
724 2012-06-13 Joel Brobecker <brobecker@adacore.com>
725
726 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
727 _initialize_hppa_hpux_nat.
728
729 2012-06-13 Joel Brobecker <brobecker@adacore.com>
730
731 * remote-sim.c (sim_command_completer): Change type of return
732 value to "VEC (char_ptr) *". Adjust implementation accordingly.
733
734 2012-06-13 Mark Kettenis <kettenis@gnu.org>
735 Jan Kratochvil <jan.kratochvil@redhat.com>
736
737 PR tdep/14222
738 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
739 stack on a 16-byte boundary.
740
741 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
742
743 * jit.c (finalize_symtab): Set function's return type to 'void' by
744 default.
745
746 2012-06-13 Mark Kettenis <kettenis@gnu.org>
747 H.J. Lu <hongjiu.lu@intel.com>
748
749 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
750 Move bits common to both the classic LP64 and the new x32 ILP32
751 ABI here.
752 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
753 (amd64_x32_linux_init_abi): New function.
754 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
755 subtype.
756
757 * i386-tdep.h (i386_pseudo_register_name): New prototype.
758 * i386-tdep.c (i386_pseudo_register_name): Make public.
759 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
760 * amd64-tdep.c (amd64_dword_names): Add "eip".
761 (amd64_x32_pseudo_register_type): New function
762 (amd64_x32_init_abi): New function.
763
764 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
765
766 PR build/14003
767 * inferior.h (struct inferior_suspend_state): Comment out.
768 (struct inferior): Comment out the field suspend.
769 * infrun.c (struct infcall_suspend_state): Comment out the field
770 inferior_suspend.
771 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
772 out its assignment.
773
774 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
775
776 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
777 * c-exp.y (classify_inner_name): Remove caller assumptions in the
778 function comment. Return ERROR for unresolved cases. Implement
779 returning proper NAME.
780 (yylex): Accept also NAME from classify_inner_name.
781 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
782 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
783 LOC_TYPEDEF type.
784 * cp-support.h (cp_lookup_nested_type): Update its declaration.
785
786 2012-06-13 Tom Tromey <tromey@redhat.com>
787
788 * breakpoint.c (condition_completer): New function.
789 (_initialize_breakpoint): Use it.
790 * value.c (complete_internalvar): New function.
791 * value.h (complete_internalvar): Declare.
792
793 2012-06-13 Tom Tromey <tromey@redhat.com>
794
795 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
796 * breakpoint.c (catch_syscall_completer): Return a VEC.
797 * cli/cli-cmds.c (complete_command): Update.
798 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
799 (complete_on_enum): Likewise.
800 * command.h: Include gdb_vecs.h.
801 (completer_ftype): Change return type.
802 (complete_on_cmdlist, complete_on_enum): Likewise.
803 * completer.c (noop_completer, filename_completer)
804 (location_completer): Return a VEC.
805 (add_struct_fields): Remove 'nextp' argument. Change 'output'
806 to a VEC.
807 (expression_completer, complete_line_internal, complete_line)
808 (command_completer): Return a VEC.
809 (gdb_completion_word_break_characters, line_completion_function):
810 Update.
811 * completer.h: Include gdb_vecs.h.
812 (complete_line, noop_completer, filename_completer)
813 (expression_completer, location_completer, command_completer):
814 Update.
815 * f-lang.c (f_word_break_characters): Return a VEC.
816 * interps.c (interpreter_completer): Return a VEC.
817 * language.h (struct language_defn)
818 <la_make_symbol_completion_list>: Return a VEC.
819 * python/py-cmd.c (cmdpy_completer): Return a VEC.
820 * symtab.c (free_completion_list): Take a VEC.
821 (return_val_size, return_val_index): Remove.
822 (return_val): Now a VEC.
823 (completion_list_add_name): Update.
824 (default_make_symbol_completion_list_break_on)
825 (default_make_symbol_completion_list, make_symbol_completion_list)
826 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
827 Return a VEC.
828 (add_filename_to_list): Update.
829 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
830 <list>: Now a VEC.
831 (maybe_add_partial_symtab_filename): Update.
832 (make_source_files_completion_list): Return a VEC.
833 * symtab.h (default_make_symbol_completion_list_break_on)
834 (default_make_symbol_completion_list, make_symbol_completion_list)
835 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
836 (make_source_files_completion_list): Update.
837
838 2012-06-13 Tom Tromey <tromey@redhat.com>
839
840 * breakpoint.c (add_catch_command): Use completer_ftype.
841 * breakpoint.h: Include command.h.
842 (add_catch_command): Use completer_ftype.
843 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
844 * cli/cli-decode.h (struct cmd_list_element) <completer>:
845 Use completer_ftype.
846 * command.h (completer_ftype): New typedef.
847 (set_cmd_completer): Use it.
848 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
849 completer_ftype.
850
851 2012-06-13 Pedro Alves <palves@redhat.com>
852
853 Partial revert of previous change.
854
855 * serial.c (scb_base): New global.
856 (serial_for_fd): New.
857 (serial_open, serial_fdopen_ops): Link new serial in open serials
858 chain.
859 (do_serial_close): Unlink serial from the open serials chain.
860
861 2012-06-12 Pedro Alves <palves@redhat.com>
862
863 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
864 threads here.
865 (prepare_for_detach): No longer context switch here in non-stop
866 mode.
867 (fetch_inferior_event): Ditto.
868 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
869 to the event thread before removing breakpoints. Switch to the
870 event thread before inserting breakpoints and resuming.
871 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
872 event thread before resuming.
873 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
874 Switch to the event thread before removing breakpoints.
875
876 2012-06-12 Eli Zaretskii <eliz@gnu.org>
877
878 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
879 special characters correctly for the Windows shells. See
880 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
881 report.
882 [!__MINGW32__]: Remove extra double quote character from special
883 characters.
884
885 2012-06-11 Stan Shebs <stan@codesourcery.com>
886
887 * ui-out.h: Remove #if 0 declarations.
888 * ui-out.c: Remove #if 0 functions.
889
890 2012-06-11 Pedro Alves <palves@redhat.com>
891
892 * ser-base.c (run_async_handler_and_reschedule): New.
893 (fd_event, push_event): Use it.
894 * serial.c (serial_open, serial_fdopen_ops): Set the initial
895 reference count to 1.
896 (do_serial_close): Set the bufp field to NULL. Use serial_unref
897 instead of xfree.
898 (serial_is_open, serial_ref, serial_unref): New.
899 * serial.h (serial_open): Adjust comment.
900 (serial_is_open): Declare.
901 (serial_close): Adjust comment.
902 (serial_ref, serial_unref) Declare.
903 (struct serial): New field 'refcnt'.
904
905 2012-06-11 Pedro Alves <palves@redhat.com>
906
907 Remove #if 0'd "connect" command, and unnecessary associated
908 refcounting and serial reuse bits.
909
910 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
911 * serial.c (last_serial_opened): Delete.
912 (scb_base): Delete.
913 (serial_open): Adjust.
914 (serial_for_fd): Delete.
915 (serial_fdopen_ops, do_serial_close): Adjust.
916 (serial_fdopen_ops): Adjust.
917
918 2012-06-11 Pedro Alves <palves@redhat.com>
919
920 * serial.c (do_serial_close): Remove early return when SCB is
921 null.
922
923 2012-06-11 Tom Tromey <tromey@redhat.com>
924
925 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
926
927 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
928
929 Fix regression by the "ambiguous linespec" series.
930 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
931 get_last_displayed_symtab and get_last_displayed_line and depending
932 on CURSAL.
933
934 2012-06-11 Tom Tromey <tromey@redhat.com>
935
936 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
937 (dw2_find_symbol_file): Use it.
938
939 2012-06-11 Michael Eager <eager@eagercon.com>
940
941 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
942 * mips-linux-tdep.h (mips_signals): New
943
944 2012-06-11 Tom Tromey <tromey@redhat.com>
945
946 * infrun.c (handle_inferior_event)
947 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
948 breakpoint.
949 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
950 exception logic in all cases. Update comments.
951 (insert_longjmp_resume_breakpoint): Set the exception resume
952 breakpoint.
953
954 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
955
956 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
957
958 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
959
960 * valarith.c (binop_types_user_defined_p): Fix a typo.
961
962 2012-06-08 Yao Qi <yao@codesourcery.com>
963 Chung-Lin Tang <cltang@codesourcery.com>
964
965 * arch-utils.c (default_return_in_first_hidden_param_p): New.
966 * arch-utils.h: Declare.
967 * gdbarch.sh: Add return_in_first_hidden_param_p.
968 * gdbarch.c, gdbarch.h: Regenerated.
969 * infcall.c (call_function_by_hand): Call
970 gdbarch_return_in_first_hidden_param_p instead of
971 language_pass_by_reference.
972
973 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
974 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
975 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
976 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
977 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
978 `cplus_return_struct_by_reference'.
979 (tic6x_return_value): Handle language cplusplus.
980 (tic6x_return_in_first_hidden_param_p): New.
981 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
982
983 2012-06-07 Doug Evans <dje@google.com>
984
985 * dwarf2read.c (dwarf2_cu): Add comment.
986
987 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
988
989 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
990 variable.
991 (mips_eabi_push_dummy_call): Likewise.
992 (mips_n32n64_push_dummy_call): Likewise.
993 (mips_o32_push_dummy_call): Likewise.
994 (mips_o64_push_dummy_call): Likewise.
995
996 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
997
998 * mips-tdep.c (mips_convert_register_p): Correct coding style.
999
1000 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
1001
1002 * mips-tdep.c (mips_pseudo_register_type): Use
1003 mips_float_register_p.
1004
1005 2012-06-06 Pedro Alves <palves@redhat.com>
1006
1007 * infrun.c (handle_inferior_event): Remove calls to
1008 reinit_frame_cache that follow a context_switch call.
1009
1010 2012-06-06 Pedro Alves <palves@redhat.com>
1011
1012 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
1013 context_switch and remove stale comment.
1014
1015 2012-06-06 Pedro Alves <palves@redhat.com>
1016
1017 * infrun.c (struct execution_control_state): Remove
1018 `new_thread_event' field.
1019 (handle_inferior_event): Simplify new threads handling; don't
1020 resume the inferior if we find a new thread.
1021
1022 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
1023
1024 * NEWS: Document the deprecation of SH's 'regs' command.
1025 * inferior.h (all_registers_info): Add function declaration.
1026 * sh-tdep.c (sh_show_regs): Remove variable.
1027 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
1028 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
1029 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
1030 (sh_show_regs_command): Remove functions.
1031 (sh_gdbarch_init): Don't set sh_show_regs.
1032 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
1033 'info all-registers'.
1034 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
1035 (sh64_show_regs): Remove functions.
1036 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
1037
1038 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1039
1040 * configure.ac: Move development=true below AC_INIT.
1041 * configure: Regenerate.
1042
1043 2012-06-05 Stan Shebs <stan@codesourcery.com>
1044
1045 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
1046 gdb_stdout.
1047
1048 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
1049
1050 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
1051 argument as ssize_t.
1052 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
1053 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
1054 * target.c (target_read_stack, target_write_memory)
1055 (target_write_raw_memory): Likewise.
1056 * target.h (target_read_stack, target_write_memory)
1057 (target_write_raw_memory): Likewise.
1058
1059 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1060
1061 * symfile-mem.c: Change gdb_static_assert to ssize_t.
1062 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
1063 * target.c (target_read_memory): Change LEN to ssize_t.
1064 * target.h (target_read_memory): Change LEN to ssize_t.
1065
1066 2012-06-05 Pedro Alves <palves@redhat.com>
1067
1068 PR backtrace/13866
1069
1070 * breakpoint.c (until_break_command): Only fetch the selected
1071 frame after decode_line_1.
1072
1073 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
1074
1075 * solib-svr4.c (enable_break): Don't fallback to setting the solib
1076 event breakpoint at _start, __start or main if a program
1077 interpreter is not found.
1078
1079 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1080
1081 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
1082 Add declaration.
1083 * windows-tdep.c: #include "objfiles.h".
1084 (windows_iterate_over_objfiles_in_search_order): New function.
1085 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
1086 iterate_over_objfiles_in_search_order gdbarch method to
1087 windows_iterate_over_objfiles_in_search_order.
1088 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
1089
1090 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1091
1092 * gdbarch.sh: Add generation of
1093 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
1094 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
1095 (iterate_over_objfiles_in_search_order): New gdbarch method.
1096 * gdbarch.h, gdbarch.c: Regenerate.
1097 * objfiles.h (default_iterate_over_objfiles_in_search_order):
1098 Add declaration.
1099 * objfiles.c (default_iterate_over_objfiles_in_search_order):
1100 New function.
1101 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
1102 out of lookup_symbol_aux_symtabs.
1103 (lookup_symbol_aux_symtabs): Replace extracted-out code by
1104 call to lookup_symbol_aux_objfile.
1105 (struct global_sym_lookup_data): New type.
1106 (lookup_symbol_global_iterator_cb): New function.
1107 (lookup_symbol_global): Search for symbol using
1108 gdbarch_iterate_over_objfiles_in_search_order and
1109 lookup_symbol_global_iterator_cb.
1110 * findvar.c (struct minsym_lookup_data): New type.
1111 (minsym_lookup_iterator_cb): New function.
1112 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
1113 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
1114 and minsym_lookup_iterator_cb.
1115
1116 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1117
1118 Revert the following patch:
1119 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
1120 try locating the symbol in the symbol's own objfile first, before
1121 extending the search to all objfiles.
1122 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
1123 out of lookup_symbol_aux_symtabs.
1124 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
1125 Replace extracted-out code by call to lookup_symbol_aux_objfile.
1126 Do not search EXCLUDE_OBJFILE.
1127 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
1128 (lookup_symbol_global): Search for matches in the block's objfile
1129 first, before searching all other objfiles.
1130
1131 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1132
1133 * breakpoint.c (find_condition_and_thread): Stop parsing
1134 as soon as the first invalid keyword is found.
1135
1136 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1137
1138 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
1139
1140 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1141
1142 * config/djgpp/djcheck.sh: Add copyright header.
1143
1144 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1145
1146 * copyright.py (update_files, main): Fix path to update-copyright
1147 script.
1148
1149 2012-06-05 Joel Brobecker <brobecker@adacore.com>
1150
1151 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
1152 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
1153 for which a reminder to update by hand is printed.
1154
1155 2012-06-04 Doug Evans <dje@google.com>
1156
1157 * buildsym.c (make_blockvector): Add comment.
1158
1159 2012-06-04 Pedro Alves <palves@redhat.com>
1160
1161 * arch-utils.c (default_gdb_signal_from_target): Delete.
1162 * arch-utils.h (default_gdb_signal_from_target): Delete.
1163 * corelow.c (core_open) <signal mapping>: Extended comment. Check
1164 gdbarch_gdb_signal_from_target_p.
1165 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
1166 predicate).
1167 * gdbarch.h: Regenerate.
1168 * gdbarch.c: Regenerate.
1169
1170 2012-06-04 Pedro Alves <palves@redhat.com>
1171
1172 * gdbarch.sh (gdb_signal_from_target): Mention that the
1173 implementation of the method must be host independent.
1174 * gdbarch.h: Regenerate.
1175
1176 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1177
1178 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
1179 parameters.
1180 (target_read_memory_bfd): New function.
1181 (symbol_file_add_from_memory): Use it.
1182
1183 2012-06-03 Doug Evans <dje@google.com>
1184
1185 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
1186 of primary symtab.
1187 (basic_lookup_transparent_type): Ditto.
1188
1189 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
1190 (ALL_PRIMARY_SYMTABS): Use it.
1191 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
1192 * dwarf2read.c (dw2_find_symbol_file): Ditto.
1193 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
1194 * symtab.c (lookup_symbol_aux_objfile): Ditto.
1195 (basic_lookup_transparent_type): Ditto.
1196
1197 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
1198
1199 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
1200 it to optimize resolution of demangled name.
1201
1202 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1203
1204 * configure.ac (development): Define new variable.
1205 Call AC_CHECK_LIB for mcheck if $development.
1206 (ERROR_ON_WARNING): Enable it by default only if $development.
1207 * config.in: Regenerate.
1208 * configure: Regenerate.
1209
1210 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
1211
1212 * target.c (target_read_memory): Make LEN argument as size_t.
1213 * target.h (target_read_memory): Likewise.
1214
1215 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1216
1217 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
1218
1219 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
1220
1221 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
1222 BookE interface for PowerPC server processors if not available
1223 in the Linux Kernel.
1224
1225 2012-05-31 Keith Seitz <keiths@redhat.com>
1226
1227 * linespec.c (decode_objc): Add cleanup to free
1228 INFO.FILE_SYMTABS.
1229 (find_linespec_symbols): Add cleanup to free CLASSES.
1230 * symfile.c (find_separate_debug_file_by_debuglink): Add
1231 cleanup to free DEBUGLINK.
1232 * ui-out.c (clear_header_list): No need to check if
1233 HEADER_NEXT.COLHDR is NULL.
1234 Free HEADER_NEXT.COL_NAME.
1235
1236 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1237
1238 * ada-lang.c (standard_lookup): Prevent uninitialized variable
1239 warning.
1240
1241 2012-05-30 Jeff Kenton <jkenton@tilera.com>
1242
1243 * configure.host (gdb_host_cpu): Handle tilegx*.
1244 (gdb_host): Handle tilegx-*-linux*.
1245 * tilegx-linux-nat.c: New file.
1246 * config/tilegx/linux.mh: New file.
1247
1248 2012-05-30 Jeff Kenton <jkenton@tilera.com>
1249
1250 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
1251 tilegx-linux-tdep.o.
1252 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
1253 tilegx-linux-tdep.c.
1254 * configure.tgt: Handle tilegx-*-linux*.
1255 * tilegx-tdep.h: New file.
1256 * tilegx-tdep.c: New file.
1257 * tilegx-linux-tdep.c: New file.
1258 * regformats/reg-tilegx.dat: New file.
1259
1260 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
1261
1262 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
1263 accounting of hw watchpoints on ppc.
1264
1265 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
1266
1267 * source.c (openp): Expand tilde in path entries.
1268
1269 2012-05-29 Doug Evans <dje@google.com>
1270
1271 * buildsym.c (block_compar): Fix comment.
1272 (end_symtab): Fix and clarify some comments.
1273
1274 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
1275 cleanup_undefined_types.
1276 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
1277 All callers updated.
1278
1279 2012-05-29 Tom Tromey <tromey@redhat.com>
1280
1281 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
1282 fails.
1283 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
1284 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
1285 fails.
1286 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
1287 fails.
1288
1289 2012-05-29 Tristan Gingold <gingold@adacore.com>
1290
1291 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
1292 (struct darwin_info): ... New struct.
1293 (solib_darwin_pspace_data): New variable.
1294 (darwin_pspace_data_cleanup): New function.
1295 (get_darwin_info): Likewise.
1296 (darwin_dyld_version_ok, darwin_load_image_infos)
1297 (darwin_solib_get_all_image_info_addr_at_init)
1298 (darwin_solib_read_all_image_info_addr): Add info argument.
1299 Adjust code.
1300 (darwin_current_sos): Use per pspace structure.
1301 (darwin_solib_create_inferior_hook): Likewise.
1302 (darwin_clear_solib): Likewise.
1303 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
1304
1305 2012-05-28 Pedro Alves <palves@redhat.com>
1306
1307 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
1308 block that uses them. Clear ecss before handling each event.
1309
1310 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1311
1312 * solib-svr4.c (svr4_current_sos): New comment on
1313 svr4_current_sos_via_xfer_libraries fall back.
1314
1315 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1316
1317 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
1318 it as a fallback for TYPE_IS_OPAQUE.
1319 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
1320 symbols for lookup_symbol.
1321
1322 2012-05-24 John Steele Scott <toojays@toojays.net>
1323
1324 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
1325 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
1326 (producer_is_gxx_lt_4_6): Move the checking and caching to...
1327 (check_producer): ... this new function, which also checks for ICC
1328 and caches the result.
1329 (producer_is_icc): New function.
1330 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
1331 producer was ICC.
1332
1333 2012-05-24 Pedro Alves <palves@redhat.com>
1334
1335 PR gdb/7205
1336
1337 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
1338 (default_gdb_signal_to_target): ... this. Add comment.
1339 (default_gdb_signal_from_host): Rename to ...
1340 (default_gdb_signal_from_target): ... this. Add comment.
1341 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
1342 (default_gdb_signal_to_target): ... this.
1343 (default_gdb_signal_from_host): Rename to ...
1344 (default_gdb_signal_from_target): ... this.
1345 * corelow.c (core_open): Adjust to naming change. Replace comment.
1346 * gdbarch.sh (gdb_signal_from_host): Rename to ...
1347 (gdb_signal_from_target): ... this. Adjust to
1348 default_gdb_signal_from_host naming change. Extend comment.
1349 (gdb_signal_to_host): Rename to ...
1350 (gdb_signal_to_target): ... this. Adjust to
1351 default_gdb_signal_to_host naming change.
1352 * gdbarch.h, gdbarch.c: Renegerate.
1353
1354 2012-05-24 Pedro Alves <palves@redhat.com>
1355
1356 PR gdb/7205
1357
1358 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
1359
1360 2012-05-24 Pedro Alves <palves@redhat.com>
1361
1362 PR gdb/7205
1363
1364 Replace target_signal with gdb_signal throughout.
1365
1366 2012-05-24 Pedro Alves <palves@redhat.com>
1367
1368 PR tui/14159
1369
1370 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
1371 string, instead of reusing the va_list argument.
1372
1373 2012-05-24 Tom Tromey <tromey@redhat.com>
1374
1375 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
1376 Remove.
1377
1378 2012-05-23 Doug Evans <dje@google.com>
1379
1380 * symtab.c (search_symbols): Formatting fixes.
1381 (print_symbol_info): Formatting fixes.
1382
1383 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
1384 int64_t change to leb128 API.
1385 (read_encoded_value, decode_frame_entry_1): Ditto.
1386 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
1387 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
1388 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
1389 (execute_stack_op): Ditto.
1390 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
1391 (safe_read_uleb128, safe_read_sleb128): Ditto.
1392 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
1393 (dwarf2_compile_expr_to_ax): Ditto.
1394 (locexpr_describe_location_piece): Ditto.
1395 (disassemble_dwarf_expression): Ditto.
1396 (locexpr_describe_location_1): Ditto.
1397
1398 2012-05-23 Stan Shebs <stan@codesourcery.com>
1399 Kwok Cheung Yeung <kcy@codesourcery.com>
1400
1401 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
1402 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
1403 (mi-cmd-info.o): New rule.
1404 * osdata.h (info_osdata_command): New declaration.
1405 * osdata.c (info_osdata_command): Change to non-static.
1406 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
1407 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
1408 * mi/mi-cmd-info.c: New file.
1409
1410 2012-05-23 Doug Evans <dje@google.com>
1411
1412 * symtab.c (search_symbols): Pass NULL for file_matcher to
1413 expand_symtabs_matching if there are no files to match.
1414
1415 * gdbtypes.c (lookup_typename): Simplify.
1416
1417 2012-05-23 Pedro Alves <palves@redhat.com>
1418
1419 * arch-utils.h (default_target_signal_to_host): Delete.
1420 * arch-utils.c (default_target_signal_to_host): Delete.
1421 * gdbarch.sh (target_signal_to_host): Remove.
1422 * gdbarch.h, gdbarch.c: Regenerate.
1423
1424 2012-05-22 Doug Evans <dje@google.com>
1425
1426 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
1427 "const gdb_byte *".
1428 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
1429 (execute_cfa_program): Update to match API of leb128 functions.
1430 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
1431 "const gdb_byte *".
1432 (read_unsigned_leb128, read_signed_leb128): Delete.
1433 (read_initial_length): Change type of buf argument to
1434 "const gdb_byte *".
1435 (read_encoded_value): Update to match API of leb128 functions.
1436 (decode_frame_entry): Change result to "const gdb_byte *", and
1437 similarly for "start" parameter.
1438 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
1439 (dwarf2_build_frame_info): Change local frame_ptr to
1440 "const gdb_byte *".
1441 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
1442 read_uleb128, read_sleb128. All callers updated.
1443 (safe_skip_leb128): New function.
1444 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
1445 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
1446 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
1447 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
1448 read_uleb128, read_sleb128.
1449 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
1450 (execute_stack_op): Update to match API of leb128 functions.
1451 * dwarf2expr.h: #include "leb128.h".
1452 (read_uleb128, read_sleb128): Delete.
1453 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
1454 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
1455 * dwarf2loc.c (debug_loc_kind): New enum.
1456 (decode_debug_loc_addresses): New function.
1457 (decode_debug_loc_dwo_addresses): New function.
1458 (dwarf2_find_location_expression): Rewrite.
1459 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
1460 (locexpr_describe_location_piece): Ditto.
1461 (disassemble_dwarf_expression): Ditto.
1462 (locexpr_describe_location_1): Ditto.
1463 (loclist_describe_location): Rewrite.
1464 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
1465 * dwarf2read.c (die_reader_specs): New member "buffer_end".
1466 (dwarf2_section_buffer_overflow_complaint): Renamed from
1467 dwarf2_macros_too_long_complaint. All callers updated.
1468 (skip_leb128): Delete.
1469 (init_cu_die_reader): Initialize reader->buffer_end.
1470 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
1471 (skip_form_bytes): New arg buffer_end. All callers updated.
1472 Replace call to skip_leb128 with gdb_skip_leb128.
1473 (skip_unknown_opcode): New arg mac_end. All callers updated.
1474 (fill_in_loclist_baton): Initialize baton->from_dwo.
1475
1476 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
1477
1478 * mips-linux-nat.c (mips_linux_read_description): Use a more
1479 verbose error message.
1480
1481 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
1482
1483 * NEWS: Add MIPS/Linux DSP support.
1484 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
1485 (SIGCONTEXT_DSPCTL): New macro.
1486 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
1487 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
1488 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
1489 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
1490 (N64_SIGCONTEXT_HI3): Likewise.
1491 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
1492 (N64_SIGCONTEXT_LO3): Likewise.
1493 (N64_SIGCONTEXT_DSPCTL): Likewise.
1494 (N64_SIGCONTEXT_FPCSR): Clarify definition.
1495 (mips_linux_o32_sigframe_init): Handle DSP registers.
1496 (mips_linux_n32n64_sigframe_init): Likewise.
1497
1498 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
1499
1500 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
1501 call to abort.
1502
1503 2012-05-22 Pedro Alves <palves@redhat.com>
1504
1505 * target.h (store_waitstatus): Move declaration ...
1506 * inf-child.h (store_waitstatus): ... here.
1507 * target.c: Move inclusion of gdb_wait.h, and ...
1508 (store_waitstatus): ... this ...
1509 * inf-child.c: ... here.
1510 * linux-nat.c: Include inf-child.h.
1511 * rs6000-nat.c: Include inf-child.h.
1512 * spu-linux-nat.c: Include inf-child.h.
1513
1514 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
1515
1516 * tracepoint.c (start_tracing): Add missing i18n markup.
1517 (stop_tracing, set_trace_user): Ditto.
1518 (set_trace_notes, set_trace_stop_notes): Ditto.
1519
1520 2012-05-21 Tom Tromey <tromey@redhat.com>
1521
1522 PR c++/7173:
1523 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
1524 types.
1525 * value.h (value_cast_pointers): Update.
1526 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
1527 (value_cast): Update.
1528 (update_search_result): New function.
1529 (do_search_struct_field): New, from search_struct_field. Check
1530 for ambiguous results.
1531 (search_struct_field): Rewrite.
1532 * infcall.c (value_arg_coerce): Update.
1533 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
1534 value_cast_pointers.
1535 * ada-lang.c (ada_convert_actual): Update.
1536
1537 2012-05-21 Tom Tromey <tromey@redhat.com>
1538
1539 * macroexp.c (macro_stringify): Terminate the string.
1540
1541 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1542
1543 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
1544 Describe it.
1545 * auto-load.c (auto_load_expand_dir_vars): New function.
1546 (auto_load_safe_path_vec_update): Use it, remove the
1547 substitute_path_component call thanks to it.
1548 (auto_load_objfile_script): Remove the debug_file_directory processing.
1549 Use auto_load_expand_dir_vars, remove the substitute_path_component
1550 call thanks to it.
1551 * configure: Regenerate.
1552 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
1553 path. Escape $ also for $debugdir.
1554 (--with_auto_load_safe_path): Escape $ also for $debugdir.
1555 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
1556
1557 2012-05-20 Doug Evans <dje@google.com>
1558
1559 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
1560 before use. Check for symtab->includes == NULL before scanning it.
1561
1562 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
1563
1564 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
1565
1566 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
1567
1568 * NEWS: Add microMIPS support and "set mips compression",
1569 "show mips compression" commands.
1570 * mips-tdep.h (mips_isa): New enum.
1571 (gdbarch_tdep): Add mips_isa.
1572 (mips_pc_is_mips16): Update prototype.
1573 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
1574 * mips-tdep.c (mips_compression_mips16): New variable.
1575 (mips_compression_micromips): Likewise.
1576 (mips_compression_strings): Likewise.
1577 (mips_compression_string): Likewise.
1578 (is_mips16_isa, is_micromips_isa): New functions.
1579 (is_mips16_addr): Rename to...
1580 (is_compact_addr): ... this.
1581 (unmake_mips16_addr): Likewise to...
1582 (unmake_compact_addr): ... this.
1583 (make_mips16_addr): Likewise to...
1584 (make_compact_addr): ... this.
1585 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
1586 functions.
1587 (mips_elf_make_msymbol_special): Handle microMIPS code.
1588 (msymbol_is_special): Rename to...
1589 (msymbol_is_mips16): ... this.
1590 (mips_make_symbol_special, mips_pc_is_mips16): Update
1591 accordingly.
1592 (msymbol_is_mips, msymbol_is_micromips): New functions.
1593 (mips16_to_32_reg): Rename to...
1594 (mips_reg3_to_reg): ... this.
1595 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
1596 (mips_pc_isa): Likewise.
1597 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
1598 code.
1599 (mips_fetch_instruction): Pass return status instead of printing
1600 an error message if requested. Handle microMIPS code. Bail out
1601 on an invalid ISA.
1602 (micromips_op): New macro.
1603 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
1604 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
1605 (b6s4_op, b7s3_reg): Likewise.
1606 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
1607 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
1608 (mips_insn_size): New function.
1609 (mips32_next_pc): Update mips_fetch_instruction call.
1610 (micromips_relative_offset7): New function.
1611 (micromips_relative_offset10): Likewise.
1612 (micromips_relative_offset16): Likewise.
1613 (micromips_pc_insn_size): Likewise.
1614 (micromips_bc1_pc): Likewise.
1615 (micromips_next_pc): Likewise.
1616 (unpack_mips16): Update mips_fetch_instruction call.
1617 (extended_mips16_next_pc): Update according to change to
1618 mips16_to_32_reg.
1619 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
1620 code.
1621 (mips16_scan_prologue): Update mips_fetch_instruction call.
1622 Update according to change to mips16_to_32_reg.
1623 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
1624 (mips_insn16_frame_base_sniffer): Likewise.
1625 (micromips_decode_imm9): New function.
1626 (micromips_scan_prologue): Likewise.
1627 (mips_micro_frame_cache): Likewise.
1628 (mips_micro_frame_this_id): Likewise.
1629 (mips_micro_frame_prev_register): Likewise.
1630 (mips_micro_frame_sniffer): Likewise.
1631 (mips_micro_frame_unwind): New variable.
1632 (mips_micro_frame_base_address): New function.
1633 (mips_micro_frame_base): New variable.
1634 (mips_micro_frame_base_sniffer): New function.
1635 (mips32_scan_prologue): Update mips_fetch_instruction call.
1636 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
1637 rather than for MIPS16.
1638 (mips_insn32_frame_base_sniffer): Likewise.
1639 (mips_addr_bits_remove): Handle microMIPS code.
1640 (deal_with_atomic_sequence): Rename to...
1641 (mips_deal_with_atomic_sequence): ... this. Update the type
1642 of the variable used to hold an instruction. Remove the ISA bit
1643 check. Update mips_fetch_instruction call.
1644 (micromips_deal_with_atomic_sequence): New function.
1645 (deal_with_atomic_sequence): Likewise.
1646 (mips_about_to_return): Handle microMIPS code. Update
1647 mips_fetch_instruction call.
1648 (heuristic_proc_start): Check for the standard MIPS ISA rather
1649 than for MIPS16. Update mips_pc_is_mips16 and
1650 mips_fetch_instruction calls. Handle microMIPS code.
1651 (mips_push_dummy_code): Handle microMIPS code.
1652 (mips_eabi_push_dummy_call): Likewise.
1653 (mips_o32_return_value): Update mips_pc_is_mips16 call.
1654 (mips_o64_push_dummy_call): Handle microMIPS code.
1655 (mips_o64_return_value): Update mips_pc_is_mips16 call.
1656 (is_delayed): Remove function.
1657 (mips_single_step_through_delay): Replace the call to is_delayed
1658 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
1659 Handle microMIPS code.
1660 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
1661 microMIPS code.
1662 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
1663 call.
1664 (micromips_in_function_epilogue_p): New function.
1665 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
1666 call.
1667 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
1668 Handle microMIPS.
1669 (gdb_print_insn_mips): Likewise.
1670 (mips_breakpoint_from_pc): Likewise.
1671 (mips_remote_breakpoint_from_pc): New function.
1672 (mips32_instruction_has_delay_slot): Simplify making use of the
1673 updated mips_fetch_instruction interface.
1674 (micromips_instruction_has_delay_slot): New function.
1675 (mips16_instruction_has_delay_slot): Simplify making use of the
1676 updated mips_fetch_instruction interface.
1677 (mips_adjust_breakpoint_address): Check for the standard MIPS
1678 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
1679 calls. Handle microMIPS code.
1680 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
1681 (mips_skip_trampoline_code): Handle microMIPS code.
1682 (global_mips_compression): New function.
1683 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
1684 file flags. Register the microMIPS remote breakpoint handler
1685 and heuristic frame unwinder.
1686 (show_mips_compression): New function.
1687 (_initialize_mips_tdep): Add the "set mips compression" and
1688 "show mips compression" commands.
1689
1690 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
1691
1692 * ada-lang.c:
1693 * ada-tasks.c:
1694 * ada-varobj.c:
1695 * amd64-darwin-tdep.c:
1696 * arm-symbian-tdep.c:
1697 * arm-tdep.c:
1698 * avr-tdep.c:
1699 * ax-gdb.c:
1700 * bfin-linux-tdep.c:
1701 * breakpoint.c:
1702 * c-valprint.c:
1703 * cli/cli-cmds.c:
1704 * coffread.c:
1705 * cp-support.c:
1706 * cris-tdep.c:
1707 * dwarf2-frame-tailcall.c:
1708 * dwarf2-frame.c:
1709 * dwarf2expr.c:
1710 * dwarf2loc.c:
1711 * dwarf2read.c:
1712 * elfread.c:
1713 * eval.c:
1714 * expprint.c:
1715 * f-valprint.c:
1716 * frv-tdep.c:
1717 * h8300-tdep.c:
1718 * hppa-hpux-tdep.c:
1719 * hppa-tdep.c:
1720 * hppanbsd-tdep.c:
1721 * i386-nto-tdep.c:
1722 * i386-tdep.c:
1723 * i387-tdep.c:
1724 * ia64-tdep.c:
1725 * jit.c:
1726 * linespec.c:
1727 * linux-tdep.c:
1728 * lm32-tdep.c:
1729 * m2-valprint.c:
1730 * m32c-tdep.c:
1731 * m32r-rom.c:
1732 * m32r-tdep.c:
1733 * m68k-tdep.c:
1734 * m68klinux-tdep.c:
1735 * mi/mi-main.c:
1736 * microblaze-tdep.c:
1737 * mips-linux-tdep.c:
1738 * mips-tdep.c:
1739 * mn10300-tdep.c:
1740 * p-valprint.c:
1741 * parse.c:
1742 * ppc-linux-tdep.c:
1743 * ppc-sysv-tdep.c:
1744 * printcmd.c:
1745 * python/py-finishbreakpoint.c:
1746 * python/py-inferior.c:
1747 * python/py-infthread.c:
1748 * python/py-type.c:
1749 * python/python.c:
1750 * remote-fileio.c:
1751 * remote-m32r-sdi.c:
1752 * remote-mips.c:
1753 * reverse.c:
1754 * rl78-tdep.c:
1755 * rs6000-aix-tdep.c:
1756 * rs6000-tdep.c:
1757 * s390-tdep.c:
1758 * score-tdep.c:
1759 * sh64-tdep.c:
1760 * skip.c:
1761 * solib-darwin.c:
1762 * solib-dsbt.c:
1763 * solib-frv.c:
1764 * sparc-tdep.c:
1765 * spu-multiarch.c:
1766 * spu-tdep.c:
1767 * stack.c:
1768 * symfile.c:
1769 * symtab.c:
1770 * tic6x-tdep.c:
1771 * tracepoint.c:
1772 * v850-tdep.c:
1773 * valarith.c:
1774 * valprint.c:
1775 * value.c:
1776 * xcoffread.c:
1777 * xtensa-tdep.c:
1778 * ada-lang.c:
1779 * ada-tasks.c:
1780 * ada-varobj.c:
1781 * amd64-darwin-tdep.c:
1782 * arm-symbian-tdep.c:
1783 * arm-tdep.c: Delete unused variables.
1784
1785 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1786
1787 Rename $ddir to $datadir.
1788 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
1789 * auto-load.c (auto_load_safe_path_vec_update)
1790 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
1791 * configure: Regenerate.
1792 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
1793 Likewise. Remove the 'use $ddir' help string.
1794
1795 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1796
1797 * auto-load.c (show_auto_load_safe_path): Accept any combination of
1798 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
1799
1800 2012-05-18 Tom Tromey <tromey@redhat.com>
1801
1802 PR exp/13907:
1803 * valprint.h (struct value_print_options) <symbol_print>: New
1804 field.
1805 * valprint.c (user_print_options): Add default for symbol_print.
1806 (show_symbol_print): New function.
1807 (generic_val_print): Respect symbol_print.
1808 (_initialize_valprint): Add "print symbol" setting.
1809 * f-valprint.c (f_val_print): Respect symbol_print.
1810 * c-valprint.c (c_val_print): Respect symbol_print.
1811 * NEWS: Update.
1812 * printcmd.c (print_address_symbolic): Return int. Ignore some
1813 zero-size symbols.
1814 (print_address_demangle): Return int.
1815 * defs.h: (print_address_symbolic): Return int.
1816 * value.h (print_address_demangle): Return int.
1817
1818 2012-05-18 Tom Tromey <tromey@redhat.com>
1819
1820 * valprint.c (val_print_string): Don't print leading space.
1821 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
1822 print space before string or vtbl.
1823 * m2-valprint.c (print_unpacked_pointer): Optionally print space
1824 before string.
1825 * jv-valprint.c (java_value_print): Print space before string.
1826 * go-valprint.c (print_go_string): Print space before string.
1827 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
1828 space before string.
1829 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
1830 space before string or vtbl.
1831 * auxv.c (fprint_target_auxv): Print space after address.
1832
1833 2012-05-18 Tom Tromey <tromey@redhat.com>
1834
1835 * printcmd.c (print_address_demangle): Remove special case for 0.
1836
1837 2012-05-18 Tom Tromey <tromey@redhat.com>
1838
1839 * printcmd.c (print_address_demangle): Add 'opts' argument.
1840 * p-valprint.c (pascal_val_print): Update.
1841 * jv-valprint.c (java_val_print): Update.
1842 * value.h: Update.
1843 * valprint.c (generic_val_print): Update.
1844 (print_function_pointer_address): Add 'options' argument. Remove
1845 'addressprint' argument. Update.
1846 * m2-valprint.c (print_unpacked_pointer): Update.
1847 * gnu-v3-abi.c (print_one_vtable): Update.
1848 (gnuv3_print_method_ptr): Update.
1849 * f-valprint.c (f_val_print): Update.
1850 * cp-valprint.c (cp_print_value_fields): Update.
1851 * valprint.h (print_function_pointer_address): Update.
1852 * c-valprint.c (c_val_print): Update.
1853
1854 2012-05-18 Tom Tromey <tromey@redhat.com>
1855
1856 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
1857 directly corresponding to the found psymtab.
1858 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
1859 (dw2_find_pc_sect_symtab): Use it.
1860 * block.h (blockvector_contains_pc): Declare.
1861 * block.c (find_block_in_blockvector): New function.
1862 (blockvector_for_pc_sect): Use it.
1863 (blockvector_contains_pc): New function.
1864
1865 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
1866
1867 * mips-tdep.h (mips_write_pc): New prototype.
1868 * mips-tdep.c (mips_write_pc): Make external, add description.
1869 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
1870 add description.
1871
1872 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
1873
1874 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
1875 mips_regnum->pc.
1876 (mips_unwind_pc, mips_write_pc): Likewise.
1877 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
1878 gdbarch_read_pc.
1879
1880 2012-05-17 Joel Brobecker <brobecker@adacore.com>
1881
1882 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
1883 proc_warn, proc_error, proc_get_status, proc_flags,
1884 proc_why, proc_what, proc_nsysarg, proc_sysargs,
1885 proc_set_run_on_last_close, proc_unset_run_on_last_close,
1886 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
1887 proc_stop_process, proc_wait_for_stop, proc_run_process,
1888 proc_set_traced_signals, proc_set_traced_faults,
1889 proc_set_traced_sysentry, proc_set_traced_sysexit,
1890 proc_set_held_signals, proc_get_held_signals,
1891 proc_get_traced_signals, proc_get_traced_faults,
1892 proc_get_traced_sysentry, proc_get_traced_sysexit,
1893 proc_clear_current_fault, proc_set_current_signal,
1894 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
1895 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
1896 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
1897 proc_get_current_thread, proc_get_current_thread,
1898 proc_get_current_thread, proc_update_threads,
1899 proc_update_threads, proc_update_threads, proc_update_threads,
1900 proc_iterate_over_threads, procfs_find_new_threads,
1901 procfs_pid_to_str): Make static. Remove advance declaration.
1902 (proc_cursig): Make static. Conditionalized defintion on
1903 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
1904 (proc_syscall, proc_set_kill_on_last_close,
1905 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
1906 proc_get_pending_signals, proc_get_signal_actions,
1907 proc_trace_signal, proc_ignore_signal): Delete.
1908
1909 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
1910
1911 * coffread.c (cs_section_address): Passing proper argument for
1912 `bfd_get_section_vma'.
1913 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
1914 `bfd_get_section_flags'.
1915 * remote.c (remote_trace_set_readonly_regions): Likewise, for
1916 `bfd_get_section_vma'.
1917
1918 2012-05-16 Tom Tromey <tromey@redhat.com>
1919
1920 PR macros/13205:
1921 * macrotab.h: (macro_define_special): Declare.
1922 (enum macro_special_kind): New.
1923 (struct macro_definition) <argc, replacement>: Update comments.
1924 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
1925 (macro_define_object_internal): New function.
1926 (macro_define_object): Use it.
1927 (macro_define_special): New function.
1928 (fixup_definition): New function.
1929 (macro_lookup_definition, foreach_macro_in_scope)
1930 (foreach_macro): Use fixup_definition.
1931 * macroexp.h (macro_stringify): Declare.
1932 * macroexp.c (free_buffer_return_text): New function.
1933 (stringify): Constify "arg".
1934 (macro_stringify): New function.
1935 * dwarf2read.c (macro_start_file): Call macro_define_special.
1936
1937 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
1938 Maciej W. Rozycki <macro@mips.com>
1939
1940 * breakpoint.h (bp_location): Add related_address member.
1941 * inferior.h (get_return_value): Take a pointer to struct value
1942 instead of struct type for the function requested.
1943 * value.h (using_struct_return): Likewise.
1944 * gdbarch.sh (return_value): Take a pointer to struct value
1945 instead of struct type for the function requested.
1946 * breakpoint.c (set_breakpoint_location_function): Initialize
1947 related_address for bp_gnu_ifunc_resolver breakpoints.
1948 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
1949 requested function's address to gdbarch_return_value.
1950 * eval.c (evaluate_subexp_standard): Pass the requested
1951 function's address to using_struct_return.
1952 * infcall.c (call_function_by_hand): Pass the requested
1953 function's address to using_struct_return and
1954 gdbarch_return_value.
1955 * infcmd.c (get_return_value): Take a pointer to struct value
1956 instead of struct type for the function requested.
1957 (print_return_value): Update accordingly.
1958 (finish_command_continuation): Likewise.
1959 * stack.c (return_command): Pass the requested function's
1960 address to using_struct_return and gdbarch_return_value.
1961 * value.c (using_struct_return): Take a pointer to struct value
1962 instead of struct type for the function requested. Pass the
1963 requested function's address to gdbarch_return_value.
1964 * python/py-finishbreakpoint.c (finish_breakpoint_object):
1965 New function_value member, replacing function_type.
1966 (bpfinishpy_dealloc): Update accordingly.
1967 (bpfinishpy_pre_stop_hook): Likewise.
1968 (bpfinishpy_init): Likewise. Record the requested function's
1969 address.
1970 * mips-tdep.c (mips_fval_reg): New enum.
1971 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
1972 words put in GP registers.
1973 (mips_o64_push_dummy_call): Update a comment.
1974 (mips_o32_return_value): Take a pointer to struct value instead
1975 of struct type for the function requested and use it to check if
1976 using the MIPS16 calling convention. Return the designated
1977 general purpose registers for floating-point values returned in
1978 MIPS16 mode.
1979 (mips_o64_return_value): Likewise.
1980 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
1981 (ppc_sysv_abi_broken_return_value): Likewise.
1982 (ppc64_sysv_abi_return_value): Likewise.
1983 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
1984 value instead of struct type for the function requested.
1985 * amd64-tdep.c (amd64_return_value): Likewise.
1986 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
1987 * arm-tdep.c (arm_return_value): Likewise.
1988 * avr-tdep.c (avr_return_value): Likewise.
1989 * bfin-tdep.c (bfin_return_value): Likewise.
1990 * cris-tdep.c (cris_return_value): Likewise.
1991 * frv-tdep.c (frv_return_value): Likewise.
1992 * h8300-tdep.c (h8300_return_value): Likewise.
1993 (h8300h_return_value): Likewise.
1994 * hppa-tdep.c (hppa32_return_value): Likewise.
1995 (hppa64_return_value): Likewise.
1996 * i386-tdep.c (i386_return_value): Likewise.
1997 * ia64-tdep.c (ia64_return_value): Likewise.
1998 * iq2000-tdep.c (iq2000_return_value): Likewise.
1999 * lm32-tdep.c (lm32_return_value): Likewise.
2000 * m32c-tdep.c (m32c_return_value): Likewise.
2001 * m32r-tdep.c (m32r_return_value): Likewise.
2002 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
2003 * m68k-tdep.c (m68k_return_value): Likewise.
2004 (m68k_svr4_return_value): Likewise.
2005 * m88k-tdep.c (m88k_return_value): Likewise.
2006 * mep-tdep.c (mep_return_value): Likewise.
2007 * microblaze-tdep.c (microblaze_return_value): Likewise.
2008 * mn10300-tdep.c (mn10300_return_value): Likewise.
2009 * moxie-tdep.c (moxie_return_value): Likewise.
2010 * mt-tdep.c (mt_return_value): Likewise.
2011 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
2012 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
2013 (ppc_sysv_abi_broken_return_value): Likewise.
2014 (ppc64_sysv_abi_return_value): Likewise.
2015 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
2016 * rl78-tdep.c (rl78_return_value): Likewise.
2017 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
2018 * rx-tdep.c (rx_return_value): Likewise.
2019 * s390-tdep.c (s390_return_value): Likewise.
2020 * score-tdep.c (score_return_value): Likewise.
2021 * sh-tdep.c (sh_return_value_nofpu): Likewise.
2022 (sh_return_value_fpu): Likewise.
2023 * sh64-tdep.c (sh64_return_value): Likewise.
2024 * sparc-tdep.c (sparc32_return_value): Likewise.
2025 * sparc64-tdep.c (sparc64_return_value): Likewise.
2026 * spu-tdep.c (spu_return_value): Likewise.
2027 * tic6x-tdep.c (tic6x_return_value): Likewise.
2028 * v850-tdep.c (v850_return_value): Likewise.
2029 * vax-tdep.c (vax_return_value): Likewise.
2030 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
2031 * xtensa-tdep.c (xtensa_return_value): Likewise.
2032 * gdbarch.c: Regenerate.
2033 * gdbarch.h: Regenerate.
2034
2035 2012-05-15 Tom Tromey <tromey@redhat.com>
2036
2037 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
2038
2039 2012-05-15 Joel Brobecker <brobecker@adacore.com>
2040
2041 * breakpoint.c (init_breakpoint_sal): Add quotes around part
2042 of command in two error message.
2043
2044 2012-05-15 Joel Brobecker <brobecker@adacore.com>
2045
2046 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
2047
2048 2012-05-15 Joel Brobecker <brobecker@adacore.com>
2049
2050 * breakpoint.c (find_condition_and_thread): Minor reformatting.
2051
2052 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2053
2054 * NEWS (show auto-load scripts-directory): Add forgotten command.
2055
2056 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2057
2058 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
2059 parameters.
2060
2061 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
2062
2063 * amd64-tdep.c: Include features/i386/x32.c and
2064 features/i386/x32-avx.c.
2065 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
2066 initialize_tdesc_x32_avx.
2067
2068 2012-05-14 Stan Shebs <stan@codesourcery.com>
2069
2070 Add dynamic printf.
2071 * breakpoint.h (enum bptype): New type bp_dprintf.
2072 (struct breakpoint): New field extra_string.
2073 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
2074 (create_breakpoint): Add extra_string arg.
2075 * breakpoint.c (dprintf_breakpoint_ops): New.
2076 (is_breakpoint): Add bp_dprintf.
2077 (bpstat_what): Add dprintf case.
2078 (bptype_string): Ditto.
2079 (print_one_breakpoint_location): Ditto.
2080 (init_bp_location): Ditto.
2081 (bkpt_print_mention): Ditto.
2082 (dprintf_style_enums): New array.
2083 (dprintf_style): New global.
2084 (dprintf_function): New global.
2085 (dprintf_channel): New global.
2086 (update_dprintf_command_list): New function.
2087 (update_dprintf_commands): New function.
2088 (init_breakpoint_sal): Add extra_string argument, handle it.
2089 (create_breakpoint_sal): Add extra_string argument.
2090 (create_breakpoints_sal): Add extra_string argument, update callers.
2091 (find_condition_and_thread): Add extra argument.
2092 (create_breakpoint): Add extra_string argument, record it.
2093 (dprintf_command): New function.
2094 (break_command_1): Add arg to create_breakpoint call.
2095 (handle_gnu_v3_exceptions): Ditto.
2096 (trace_command): Ditto.
2097 (ftrace_command): Ditto.
2098 (strace_command): Ditto.
2099 (bkpt_print_mention): Add dprintf case.
2100 (create_breakpoint_sal_default): Add extra_string argument.
2101 (_initialize_breakpoint): Add new commands.
2102 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
2103 * python/py-breakpoint.c (bppy_init): Ditto.
2104 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
2105
2106 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
2107
2108 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
2109
2110 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
2111
2112 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
2113 unsigned long long.
2114
2115 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
2116
2117 Add a new function gdb.find_pc_line to the Python API.
2118 * NEWS (Python Scripting): Add entry about the new function.
2119 * python/python.c (gdbpy_find_pc_line): New function which
2120 implements gdb.find_pc_line.
2121 (GdbMethods): Add entry for the new function.
2122
2123 2012-05-12 Pedro Alves <palves@redhat.com>
2124
2125 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
2126 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
2127
2128 2012-05-12 Eli Zaretskii <eliz@gnu.org>
2129
2130 * inferior.c: Include completer.h
2131 (initialize_inferiors): Set completer of add-inferior to
2132 filename_completer.
2133
2134 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
2135
2136 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
2137 gdbarch_ptr_bit for x32 core dump.
2138
2139 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
2140
2141 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
2142 and features/i386/x32-avx-linux.c.
2143
2144 2012-05-11 Stan Shebs <stan@codesourcery.com>
2145 Kwok Cheung Yeung <kcy@codesourcery.com>
2146
2147 * NEWS: Describe new info os commands.
2148 * common/linux-osdata.c (PID_T, TIME_T): Define.
2149 (MAX_PID_T_STRLEN): New.
2150 (linux_common_core_of_thread): Add comment. Change to use PID_T and
2151 MAX_PID_T_STRLEN.
2152 (command_from_pid): Add comment. Change to use PID_T.
2153 (commandline_from_pid): Change to use PID_T.
2154 (user_from_pid): Add comment.
2155 (get_process_owner): Add comment. Change to use PID_T and
2156 MAX_PID_T_STRLEN.
2157 (get_number_of_cpu_cores): Add comment.
2158 (get_cores_used_by_process): Add comment. Change to use PID_T and
2159 MAX_PID_T_STRLEN.
2160 (linux_xfer_osdata_processes): Change to use PID_T and
2161 MAX_PID_T_STRLEN.
2162 (compare_processes): New function.
2163 (linux_xfer_osdata_processgroups): New function.
2164 (linux_xfer_osdata_threads): Change to use PID_T.
2165 (linux_xfer_osdata_fds): New function.
2166 (format_socket_state, print_sockets): New functions.
2167 (union socket_addr): New union.
2168 (linux_xfer_osdata_isockets): New function.
2169 (time_from_time_t, group_from_gid): New functions.
2170 (linux_xfer_osdata_shm): New function.
2171 (linux_xfer_osdata_sem): New function.
2172 (linux_xfer_osdata_msg): New function.
2173 (linux_xfer_osdata_modules): New function.
2174 (osdata_table): Add new entries.
2175 * common/buffer.c (buffer_xml_printf): Add support for long and
2176 long long format specifiers.
2177
2178 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
2179
2180 * amd64-linux-tdep.h (tdesc_x32_linux): New.
2181 (tdesc_x32_avx_linux): Likewise.
2182
2183 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2184
2185 Implement multi-component --with-auto-load-dir.
2186 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
2187 entries.
2188 (--with-auto-load-safe-path): Update the default value description.
2189 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
2190 New.
2191 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
2192 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
2193 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
2194 (_initialize_auto_load): Initialize also auto_load_dir. Install new
2195 "set auto-load scripts-directory".
2196 * config.in: Regenerate.
2197 * configure: Regenerate.
2198 * configure.ac (--with-auto-load-dir): New configure option.
2199 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
2200
2201 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2202
2203 Provide $ddir substitution for --with-auto-load-safe-path.
2204 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
2205 entries.
2206 * auto-load.c: Include observer.h.
2207 (auto_load_safe_path_vec_update): Call substitute_path_component for
2208 each component. New variable ddir_subst.
2209 (auto_load_gdb_datadir_changed): New function.
2210 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
2211 AUTO_LOAD_SAFE_PATH. New comment.
2212 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
2213 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
2214 * config.in: Regenerate.
2215 * configure: Regenerate.
2216 * configure.ac (--auto-load-safe-path): Rename
2217 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
2218 GDB_DATADIR/auto-load.
2219 * defs.h (substitute_path_component): New declaration.
2220 * top.c: Include observer.h.
2221 (set_gdb_datadir): New function.
2222 (init_main): Install it for "set data-directory".
2223 * utils.c (substitute_path_component): New function.
2224
2225 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2226
2227 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
2228 * auto-load.c (auto_load_objfile_script): Remove check for NULL
2229 DEBUG_FILE_DIRECTORY. Handle multiple components of
2230 DEBUG_FILE_DIRECTORY.
2231
2232 2012-05-10 Tom Tromey <tromey@redhat.com>
2233
2234 * dwarf2read.c (recursively_write_psymbols): New function.
2235 (write_psymtabs_to_index): Use it.
2236
2237 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
2238 field.
2239 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
2240 (load_partial_comp_unit): Update.
2241 (queue_comp_unit): Add argument 'pretend_language'.
2242 (process_queue): Update.
2243 (psymtab_to_symtab_1): Skip dependencies that have a user.
2244 (load_partial_comp_unit_reader): Give meaning to the 'data'
2245 argument.
2246 (load_full_comp_unit): Add 'pretend_language' argument.
2247 (process_full_comp_unit): Add 'pretend_language' argument. Set
2248 language on CU.
2249 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
2250 Update.
2251 (maybe_queue_comp_unit): Add 'pretend_language' argument.
2252 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
2253 Update.
2254 (prepare_one_comp_unit): Add 'pretend_language' argument.
2255
2256 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
2257 (struct dwarf2_per_objfile) <just_read_cus>: New field.
2258 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
2259 (dw2_do_instantiate_symtab): Check whether symtab was read in
2260 before queueing.
2261 (dw2_instantiate_symtab): Add assertion. Call
2262 process_cu_includes.
2263 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
2264 (partial_symtab_p): New typedef.
2265 (set_partial_user): New function.
2266 (dwarf2_build_psymtabs_hard): Use set_partial_user.
2267 (scan_partial_symbols): Add imported CU to imported_symtabs.
2268 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
2269 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
2270 (get_symtab, recursively_compute_inclusions)
2271 (compute_symtab_includes, process_cu_includes)
2272 (process_imported_unit_die): New functions.
2273 (process_die) <DW_TAG_imported_unit>: New case.
2274 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
2275
2276 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
2277 comment.
2278 (struct partial_die_info) <locdesc>: Remove.
2279 <d>: New field.
2280 (process_psymtab_comp_unit): Add 'read_partial' argument.
2281 Update.
2282 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
2283 (scan_partial_symbols): Handle DW_TAG_imported_unit.
2284 (add_partial_symbol): Update.
2285 (process_die): Handle DW_TAG_partial_unit.
2286 (read_file_scope): Update comment.
2287 (load_partial_dies): Handle DW_TAG_imported_unit.
2288 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
2289 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
2290
2291 2012-05-10 Tom Tromey <tromey@redhat.com>
2292
2293 * cc-with-dwz.sh: New file.
2294
2295 2012-05-10 Tom Tromey <tromey@redhat.com>
2296
2297 * symtab.h (struct symtab) <includes, user>: New fields.
2298 * block.h (struct block_iterator) <d, idx, which>: New fields.
2299 * block.c (initialize_block_iterator, find_iterator_symtab)
2300 (block_iterator_step, block_iter_name_step)
2301 (block_iter_match_step): New functions.
2302 (block_iterator_first, block_iterator_next)
2303 (block_iter_name_first, block_iter_name_next)
2304 (block_iter_match_first, block_iter_match_next): Rewrite.
2305 (get_block_symtab): New function.
2306
2307 2012-05-10 Tom Tromey <tromey@redhat.com>
2308
2309 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
2310 set_block_symtab.
2311 * jit.c (finalize_symtab): Use allocate_global_block,
2312 set_block_symtab.
2313 * buildsym.c (finish_block_internal): New function, from old
2314 finish_block.
2315 (finish_block): Rewrite.
2316 (end_symtab): Use finish_block_internal, set_block_symtab.
2317 * block.h (struct global_block): New.
2318 (allocate_global_block, set_block_symtab): Declare.
2319 * block.c (allocate_global_block, set_block_symtab): New
2320 functions.
2321
2322 2012-05-10 Tom Tromey <tromey@redhat.com>
2323
2324 * psymtab.c (partial_map_expand_apply): Add assertion.
2325 (partial_map_symtabs_matching_filename): Skip included psymtabs.
2326 (psymtab_to_symtab): Find unshared psymtab.
2327 (dump_psymtab): Print including psymtabs.
2328 (recursively_search_psymtabs): New function.
2329 (expand_symtabs_matching_via_partial): Use it.
2330 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
2331 fields.
2332 (enum psymtab_search_status): New.
2333
2334 2012-05-10 Tom Tromey <tromey@redhat.com>
2335
2336 * tracepoint.c (scope_info): Update.
2337 * symtab.c (lookup_block_symbol, iterate_over_symbols)
2338 (find_pc_sect_symtab, search_symbols)
2339 (default_make_symbol_completion_list_break_on)
2340 (make_file_symbol_completion_list): Update.
2341 * symmisc.c (dump_symtab_1): Update.
2342 * stack.c (print_frame_args, iterate_over_block_locals)
2343 (print_frame_labels, iterate_over_block_arg_vars): Update.
2344 * python/py-block.c (block_object) <dict>: Remove.
2345 <block>: New field.
2346 <iter>: Change type.
2347 (blpy_iter): Update.
2348 (blpy_block_syms_iternext): Update.
2349 * psymtab.c (map_block): Use block iterators.
2350 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
2351 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
2352 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
2353 * infrun.c (check_exception_resume): Update.
2354 * cp-support.c (make_symbol_overload_list_block): Update.
2355 * coffread.c (patch_opaque_types): Update.
2356 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
2357 * block.h (struct block_iterator): New.
2358 (block_iterator_first, block_iterator_next, block_iter_name_first)
2359 (block_iter_name_next, block_iter_match_first)
2360 (block_iter_match_next): Declare.
2361 (ALL_BLOCK_SYMBOLS): Redefine.
2362 * block.c (block_iterator_first, block_iterator_next)
2363 (block_iter_name_first, block_iter_name_next)
2364 (block_iter_match_first, block_iter_match_next): New functions.
2365 * ada-lang.c (ada_add_block_symbols)
2366 (ada_make_symbol_completion_list): Use block iterator.
2367
2368 2012-05-10 Tom Tromey <tromey@redhat.com>
2369
2370 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
2371 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
2372 (lookup_partial_symbol, find_last_source_symtab_from_partial)
2373 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
2374 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
2375 Update.
2376
2377 2012-05-10 Joel Brobecker <brobecker@adacore.com>
2378
2379 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
2380 print-file-var-lib2.c, print-file-var-main.c and
2381 print-file-var.exp (located in gdb/testsuite/gdb.base).
2382
2383 2012-05-10 Joel Brobecker <brobecker@adacore.com>
2384
2385 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
2386 try locating the symbol in the symbol's own objfile first, before
2387 extending the search to all objfiles.
2388 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
2389 out of lookup_symbol_aux_symtabs.
2390 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
2391 Replace extracted-out code by call to lookup_symbol_aux_objfile.
2392 Do not search EXCLUDE_OBJFILE.
2393 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
2394 (lookup_symbol_global): Search for matches in the block's objfile
2395 first, before searching all other objfiles.
2396
2397 2012-05-10 Tristan Gingold <gingold@adacore.com>
2398
2399 * printcmd.c (set_command): Add pre/post inc/dec.
2400
2401 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
2402
2403 * gdb.1: Document -ex option.
2404
2405 2012-05-09 Joel Brobecker <brobecker@adacore.com>
2406
2407 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
2408 * inferior.h (AT_SYMBOL): Delete.
2409
2410 2012-05-09 Joel Brobecker <brobecker@adacore.com>
2411
2412 * mips-tdep.c (mips_push_dummy_code): New function.
2413 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
2414 ON_STACK and install mips_push_dummy_code as our gdbarch
2415 push_dummy_code routine.
2416
2417 2012-05-09 Pedro Alves <palves@redhat.com>
2418
2419 * target.c (set_maintenance_target_async_permitted): Rename to ...
2420 (set_target_async_command): ... this.
2421 (show_maintenance_target_async_permitted): Rename to ...
2422 (show_target_async_command): ... this.
2423 (initialize_targets): Adjust.
2424
2425 2012-05-08 Doug Evans <dje@google.com>
2426
2427 * go-exp.y (classify_name): Add missing assignment of fields of
2428 yylval.ssym.
2429
2430 2012-05-08 Eli Zaretskii <eliz@gnu.org>
2431
2432 Display the ">" prompt in interactive mode while reading canned
2433 commands, even when the current interpreter is MI.
2434
2435 * interps.c (interp_set_temp): New function.
2436
2437 * interps.h (interp_set_temp): Add prototype.
2438
2439 * cli/cli-script.c (restore_interp): New cleanup function.
2440 (read_command_lines): Temporarily override the current interpreter
2441 with CLI and arrange for restoring the original one.
2442
2443 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
2444
2445 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
2446
2447 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
2448
2449 * probe.c (parse_probes): Move conditional to check for
2450 debuginfo files from here...
2451 * stap-probe.c (stap_get_probes): ... to here.
2452
2453 2012-05-07 Mark Kettenis <kettenis@gnu.org>
2454 H.J. Lu <hongjiu.lu@intel.com>
2455
2456 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
2457 `movl %esp, %ebp' for the X32 ABI.
2458
2459 2012-05-07 Tom Tromey <tromey@redhat.com>
2460
2461 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
2462 get_DW_TAG_name.
2463 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
2464 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
2465 (dwarf_stack_op_name): Remove.
2466 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
2467 (decode_locdesc): Use get_DW_OP_name.
2468 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
2469 (dwarf2_compile_expr_to_ax): Likewise.
2470 (disassemble_dwarf_expression): Likewise.
2471 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
2472
2473 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
2474
2475 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
2476 (sh_linux_sigtramp_cache): New function.
2477 (sh_linux_sigreturn_init): New function.
2478 (sh_linux_rt_sigreturn_init): New function.
2479 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
2480 patterns.
2481 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
2482 syscall codes.
2483 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
2484 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
2485 (sh_linux_init_abi): Add init calls to register new tramp_frame
2486 definitions under 32-bit SH, update comments.
2487
2488 2012-05-07 Pedro Alves <palves@redhat.com>
2489
2490 PR gdb/10952
2491
2492 * amd64-linux-tdep.c: Include glibc-tdep.h.
2493 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
2494 gdbarch_skip_solib_resolver callback.
2495
2496 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2497
2498 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
2499 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
2500 (show_auto_load_safe_path): Check any-directory by comparison with "/".
2501 (add_auto_load_safe_path): Change the error message.
2502 (_initialize_auto_load): Change the "safe-path" help text.
2503 * configure: Regenerate
2504 * configure.ac (--without-auto-load-safe-path): Set
2505 WITH_AUTO_LOAD_SAFE_PATH to /.
2506
2507 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
2508
2509 * stap-probe.h: Do not include unecessary `probe.h'.
2510
2511 2012-05-05 Alan Modra <amodra@gmail.com>
2512
2513 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
2514 bfd_und_section_ptr.
2515 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
2516 and bfd_com_section_ptr.
2517
2518 2012-05-04 Joel Brobecker <brobecker@adacore.com>
2519
2520 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
2521
2522 2012-05-04 Joel Brobecker <brobecker@adacore.com>
2523
2524 * windows-nat.h (segment_register_p_ftype): New typedef.
2525 (windows_set_segment_register_p): Add declaration.
2526 * windows-nat.c (segment_register_p): New static global.
2527 (windows_set_segment_register_p): New function.
2528 (do_windows_fetch_inferior_registers): Add special handling
2529 for segment registers.
2530 * amd64-windows-nat.c: #include "amd64-tdep.h".
2531 (amd64_windows_segment_register_p): New function.
2532 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
2533 * i386-windows-nat.c: #include "i386-tdep.h".
2534 (i386_windows_segment_register_p): New function.
2535 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
2536
2537 2012-05-04 Tristan Gingold <gingold@adacore.com>
2538
2539 * printcmd.c (set_command): Emit a warning if the expression is not
2540 an assignment.
2541
2542 2012-05-03 Joel Brobecker <brobecker@adacore.com>
2543
2544 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
2545 Make static.
2546
2547 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
2548
2549 * stap-probe.c (stap_is_operator): Change declaration.
2550 (stap_get_opcode): Change return value.
2551 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
2552 `stap_parse_argument_1'.
2553
2554 2012-05-03 Pedro Alves <pedro@codesourcery.com>
2555
2556 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
2557 debug log.
2558
2559 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
2560
2561 Add two new methods global_block and static_block to gdb.Symtab
2562 objects.
2563 * NEWS (Python scripting): Add entry about the new methods.
2564 * python/py-symtab.c (stpy_global_block): New function which
2565 implements the gdb.Symtab.global_block() method.
2566 (stpy_static_block): New function which implements the
2567 gdb.Symtab.static_block() method.
2568 (symtab_object_methods): Add entries for the two new methods.
2569
2570 2012-05-03 Doug Evans <dje@google.com>
2571
2572 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
2573 files.
2574
2575 2012-05-03 Yao Qi <yao@codesourcery.com>
2576
2577 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
2578 space.
2579 (i386_process_record): Ditto.
2580
2581 2012-05-02 Joel Brobecker <brobecker@adacore.com>
2582
2583 * infcall.c (unwind_on_signal_p): Make static.
2584
2585 2012-05-02 Joel Brobecker <brobecker@adacore.com>
2586
2587 * sol-thread.c (solaris_pid_to_str): Make static.
2588 (_initialize_sol_thread): Add prototype.
2589
2590 2012-05-02 Joel Brobecker <brobecker@adacore.com>
2591
2592 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
2593
2594 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
2595
2596 * MAINTAINERS: Remove myself.
2597
2598 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2599
2600 Fix --without-auto-load-safe-path for MS-Windows host platform.
2601 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
2602
2603 2012-05-02 Eli Zaretskii <eliz@gnu.org>
2604
2605 * gdb_curses.h: Undefine KEY_EVENT before including curses
2606 headers. Move "#undef MOUSE_MOVED" before any curses header
2607 inclusion.
2608
2609 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
2610
2611 * features/i386/i386-mmx-linux.c: Regenerate.
2612 * features/rs6000/powerpc-32.c: Likewise.
2613 * features/rs6000/powerpc-32l.c: Likewise.
2614 * features/rs6000/powerpc-403.c: Likewise.
2615 * features/rs6000/powerpc-403gc.c: Likewise.
2616 * features/rs6000/powerpc-405.c: Likewise.
2617 * features/rs6000/powerpc-505.c: Likewise.
2618 * features/rs6000/powerpc-601.c: Likewise.
2619 * features/rs6000/powerpc-602.c: Likewise.
2620 * features/rs6000/powerpc-603.c: Likewise.
2621 * features/rs6000/powerpc-604.c: Likewise.
2622 * features/rs6000/powerpc-64.c: Likewise.
2623 * features/rs6000/powerpc-64l.c: Likewise.
2624 * features/rs6000/powerpc-750.c: Likewise.
2625 * features/rs6000/powerpc-860.c: Likewise.
2626 * features/rs6000/powerpc-e500.c: Likewise.
2627 * features/rs6000/powerpc-e500l.c: Likewise.
2628 * features/rs6000/powerpc-isa205-32l.c: Likewise.
2629 * features/rs6000/powerpc-isa205-64l.c: Likewise.
2630 * features/rs6000/rs6000.c: Likewise.
2631
2632 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
2633
2634 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
2635 variable.
2636 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
2637 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
2638 (stap_parse_argument) <e>: Likewise.
2639 (handle_stap_probe) <byte_order>: Likewise.
2640
2641 2012-04-30 Doug Evans <dje@google.com>
2642
2643 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
2644 init_and_read_dies_worker. All callers updated.
2645 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
2646 replaced with init_cutu_and_read_dies.
2647 (load_partial_comp_unit): Pass 1 for use_existing_cu.
2648 (find_partial_die): Remove FIXME. Don't free current CU.
2649
2650 2012-04-30 Sterling Augustine <saugustine@google.com>
2651
2652 * contrib: New directory.
2653 * contrib/test_pubnames_and_indexes.py: New file.
2654
2655 2012-04-30 Doug Evans <dje@google.com>
2656
2657 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
2658 All callers updated.
2659 (init_cu_die_reader): Verify the section is non-empty.
2660 (dwarf_decode_line_header): Don't dereference section->asection
2661 until we know the section is present.
2662
2663 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
2664
2665 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
2666 probes.
2667
2668 2012-04-29 Yao Qi <yao@codesourcery.com>
2669
2670 * gdb-code-style.el: New hook gdb-markup-hook
2671 and gdb-comment-hook.
2672
2673 2012-04-28 Doug Evans <dje@google.com>
2674
2675 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
2676 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
2677 objfile->obfd.
2678 * symfile.h (dwarf2_debug_sections): New member addr.
2679 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
2680 (ctx_no_get_addr_index): New function.
2681 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
2682 (ctx_no_get_addr_index): Declare.
2683 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
2684 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
2685 (dwarf_expr_ctx_funcs): Update.
2686 (needs_get_addr_index): New function.
2687 (needs_frame_ctx_funcs): Update.
2688 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
2689 * dwarf2read.c: #include "gdbcore.h".
2690 (dwarf2_per_objfile): New members addr, dwo_files.
2691 (dwarf2_elf_names): Add entry for addr.
2692 (struct dwo_section_names): New type.
2693 (dwo_section_names): New static global.
2694 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
2695 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
2696 old debug_types_section member updated to use this.
2697 Rename member debug_types_section to info_or_types_section,
2698 all uses updated.
2699 (signatured_type): Rename member type_offset to type_offset_in_tu,
2700 all uses updated. New member type_offset_in_section.
2701 (struct dwo_sections): New type.
2702 (struct dwo_unit): New type.
2703 (struct dwo_file): New type.
2704 (die_reader_specs): New member dwo_file.
2705 (dwarf2_locate_sections): Watch for .debug_addr.
2706 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
2707 (dwarf2_read_section): Get bfd of section from bfd's asection,
2708 instead of objfile.
2709 (create_cus_from_index): Initialize the_cu->info_or_types_section.
2710 (create_signatured_type_table_from_index): Initialize
2711 sig_type->info_or_types_section.
2712 (dw2_get_file_names): Statement lists for type units with DWO files
2713 live in the DWO file.
2714 (create_debug_types_hash_table): New function.
2715 (create_all_type_units): Rewrite.
2716 (init_cu_die_reader): New arg dwo_file, all callers updated.
2717 (init_and_read_dies_worker): Get section from
2718 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
2719 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
2720 continue reading the CU/TU from there.
2721 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
2722 updated. Get section from this_cu->info_or_types_section.
2723 (create_all_comp_units): Initialize this_cu->info_or_types_section.
2724 (skip_one_die): New cases DW_FORM_GNU_addr_index,
2725 DW_FORM_GNU_str_index.
2726 (hash_dwo_file, eq_dwo_file): New functions.
2727 (allocate_dwo_file_hash_table): New function.
2728 (hash_dwo_unit, eq_dwo_unit): New functions.
2729 (allocate_dwo_unit_table): New function.
2730 (dwarf2_locate_dwo_sections): New function.
2731 (struct create_dwo_info_table_data): New type.
2732 (create_debug_info_hash_table_reader): New function.
2733 (create_debug_info_hash_table): New function.
2734 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
2735 (lookup_dwo_file): New function.
2736 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
2737 (free_dwo_file, free_dwo_file_cleanup): New functions.
2738 (free_dwo_file_from_slot, free_dwo_files): New functions.
2739 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
2740 (dwarf2_record_block_ranges): Ditto.
2741 (read_partial_die): Ditto.
2742 (process_enumeration_scope): Update to use type_offset_in_section.
2743 (read_full_die_1): New function.
2744 (read_full_die): Rewrite.
2745 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
2746 DW_FORM_GNU_str_index.
2747 (read_addr_index_1, read_addr_index): New functions.
2748 (read_addr_index_from_leb128): New function.
2749 (struct dwarf2_read_addr_index_data): New type.
2750 (dwarf2_read_addr_index_reader): New function.
2751 (dwarf2_read_addr_index): New function.
2752 (read_str_index): New function.
2753 (leb128_size): New function.
2754 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
2755 If processing a type unit from a DWO file, get the line section
2756 from the DWO file.
2757 (var_decode_location): Watch for DW_OP_GNU_addr_index.
2758 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
2759 DW_FORM_GNU_str_index.
2760 (lookup_die_type): Check whether section offset of type's die is
2761 known before looking it up. Remove assert. Condition can
2762 legimately happen for inter-cu type references.
2763 (dwarf_attr_name): Handle Fission attributes.
2764 (dwarf_form_name): Handle Fission forms.
2765 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
2766 DW_FORM_GNU_str_index.
2767 (follow_die_sig): Update to use type_offset_in_section.
2768 (decode_locdesc): New case DW_OP_GNU_addr_index.
2769 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
2770 DW_FORM_GNU_str_index.
2771 (cu_debug_loc_section): New function.
2772 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
2773 (dwarf2_per_objfile_free): Unmap .debug_addr section.
2774 Free DWO files if present.
2775 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
2776
2777 Refactor DIE reading.
2778 * dwarf2read.c (dwarf2_per_objfile): Replace members
2779 debug_info_type_hash and debug_types_type_hash with die_type_hash.
2780 (die_reader_specs): New member "die_section". Temporarily make
2781 member "buffer" non-const, pending constifying all info_ptr uses.
2782 (die_reader_func_ftype): New typedef.
2783 (dw2_get_file_names_reader): New function.
2784 (dw2_get_file_names): Rewrite.
2785 (read_and_check_type_unit_head): Rename arg type_offset to
2786 type_offset_in_tu.
2787 (create_all_type_units): Improve debugging message.
2788 Improve dummy type unit check.
2789 (init_cu_die_reader): New arg "section". All callers updated.
2790 (init_and_read_dies_worker): New function.
2791 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
2792 (init_cutu_and_read_dies_no_follow): New function.
2793 (init_cutu_and_read_dies_simple): New function.
2794 (process_psymtab_comp_unit_reader): New function.
2795 (process_psymtab_comp_unit): Delete args section,
2796 is_debug_types_section. Rewrite. All callers updated.
2797 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
2798 All callers updated. Rewrite.
2799 (load_partial_comp_unit_reader): New function.
2800 (load_partial_comp_unit): Rewrite.
2801 (skip_children): New arg reader. Delete args buffer, cu.
2802 All callers updated.
2803 (skip_one_die): New arg reader. Delete args buffer, cu.
2804 All callers updated.
2805 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
2806 All callers updated.
2807 (load_full_comp_unit_reader): New function.
2808 (load_full_comp_unit): Rewrite.
2809 (read_comp_unit): Delete.
2810 (read_die_and_children_1): Delete, contents moved ...
2811 (read_die_and_children): ... here.
2812 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
2813 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
2814 All callers updated.
2815 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
2816 All callers updated.
2817 (find_partial_die): Rewrite load_all_dies support.
2818 (read_attribute_value): New arg reader. Delete args abfd, cu.
2819 All callers updated.
2820 (read_attribute): New arg reader. Delete args abfd, cu.
2821 All callers updated.
2822 (load_full_type_unit): Add assert.
2823 (read_signatured_type_reader): New function.
2824 (read_signatured_type): Rewrite.
2825 (free_stack_comp_unit): Remove call to age_cached_comp_units.
2826 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
2827 All callers updated. Set per_cu->cu = NULL after freeing it.
2828 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
2829 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
2830 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
2831 (set_die_type): Update.
2832 (get_die_type_at_offset): Update.
2833 (read_file_scope): Call prepare_one_comp_unit.
2834 (read_type_unit_scope): Ditto.
2835 (prepare_one_comp_unit): Set producer if present.
2836
2837 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
2838
2839 * probe.c (compile_rx_or_error): Silence ARI warning about missing
2840 gettext function on `error'.
2841
2842 2012-04-27 Doug Evans <dje@google.com>
2843
2844 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
2845 is empty.
2846
2847 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
2848 Tom Tromey <tromey@redhat.com>
2849
2850 * breakpoint.c (struct breakpoint_objfile_data)
2851 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
2852 <exception_probes>: New fields.
2853 (free_breakpoint_probes): New function.
2854 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
2855 `_Unwind_DebugHook'.
2856 (create_exception_master_breakpoint): Likewise.
2857 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
2858 * infrun.c: Including necessary header files for handling SystemTap
2859 probes.
2860 (handle_inferior_event): Handling longjmp breakpoint and exceptions
2861 via SystemTap probes.
2862 (check_exception_resume): Remove `func' argument. Handle exception
2863 unwinding breakpoint set via a SystemTap probe.
2864 (insert_exception_resume_from_probe): New function.
2865
2866 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
2867 Tom Tromey <tromey@redhat.com>
2868 Jan Kratochvil <jan.kratochvil@redhat.com>
2869
2870 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
2871 (COMMON_OBS): Likewise.
2872 (HFILES_NO_SRCDIR): Add `probe'.
2873 * NEWS: Mention support for static and SystemTap probes.
2874 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
2875 SystemTap probes' arguments parser.
2876 * arm-linux-tdep.c: Including headers needed to perform the parsing
2877 of SystemTap probes' arguments.
2878 (arm_stap_is_single_operand): New function.
2879 (arm_stap_parse_special_token): Likewise.
2880 (arm_linux_init_abi): Initializing proper fields used by SystemTap
2881 probes' arguments parser.
2882 * ax-gdb.c (require_rvalue): Removing static declaration.
2883 (gen_expr): Likewise.
2884 * ax-gdb.h (gen_expr): Declaring function.
2885 (require_rvalue): Likewise.
2886 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
2887 (bkpt_probe_breakpoint_ops): New variable.
2888 (momentary_breakpoint_from_master): Set the `probe' value.
2889 (add_location_to_breakpoint): Likewise.
2890 (break_command_1): Using proper breakpoint_ops according to the
2891 argument passed by the user in the command line.
2892 (bkpt_probe_insert_location): New function.
2893 (bkpt_probe_remove_location): Likewise.
2894 (bkpt_probe_create_sals_from_address): Likewise.
2895 (bkpt_probe_decode_linespec): Likewise.
2896 (tracepoint_probe_create_sals_from_address): Likewise.
2897 (tracepoint_probe_decode_linespec): Likewise.
2898 (tracepoint_probe_breakpoint_ops): New variable.
2899 (trace_command): Using proper breakpoint_ops according to the
2900 argument passed by the user in the command line.
2901 (initialize_breakpoint_ops): Initializing breakpoint_ops for
2902 static probes on breakpoints and tracepoints.
2903 * breakpoint.h (struct bp_location) <probe>: New field.
2904 * cli-utils.c (skip_spaces_const): New function.
2905 (extract_arg): Likewise.
2906 * cli-utils.h (skip_spaces_const): Likewise.
2907 (extract_arg): Likewise.
2908 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
2909 * configure.ac: Append `stap-probe.o' to be generated when ELF
2910 support is present.
2911 * configure: Regenerate.
2912 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
2913 * elfread.c: Include `probe.h' and `arch-utils.h'.
2914 (probe_key): New variable.
2915 (elf_get_probes): New function.
2916 (elf_get_probe_argument_count): Likewise.
2917 (elf_evaluate_probe_argument): Likewise.
2918 (elf_compile_to_ax): Likewise.
2919 (elf_symfile_relocate_probe): Likewise.
2920 (stap_probe_key_free): Likewise.
2921 (elf_probe_fns): New variable.
2922 (elf_sym_fns): Add `sym_probe_fns' value.
2923 (elf_sym_fns_lazy_psyms): Likewise.
2924 (elf_sym_fns_gdb_index): Likewise.
2925 (_initialize_elfread): Initialize objfile cache for static
2926 probes.
2927 * gdb_vecs.h (struct probe): New forward declaration.
2928 (probe_p): New VEC declaration.
2929 * gdbarch.c: Regenerate.
2930 * gdbarch.h: Regenerate.
2931 * gdbarch.sh (stap_integer_prefix): New variable.
2932 (stap_integer_suffix): Likewise.
2933 (stap_register_prefix): Likewise.
2934 (stap_register_suffix): Likewise.
2935 (stap_register_indirection_prefix): Likewise.
2936 (stap_register_indirection_suffix): Likewise.
2937 (stap_gdb_register_prefix): Likewise.
2938 (stap_gdb_register_suffix): Likewise.
2939 (stap_is_single_operand): New function.
2940 (stap_parse_special_token): Likewise.
2941 (struct stap_parse_info): Forward declaration.
2942 * i386-tdep.c: Including headers needed to perform the parsing
2943 of SystemTap probes' arguments.
2944 (i386_stap_is_single_operand): New function.
2945 (i386_stap_parse_special_token): Likewise.
2946 (i386_elf_init_abi): Initializing proper fields used by SystemTap
2947 probes' arguments parser.
2948 * i386-tdep.h (i386_stap_is_single_operand): New function.
2949 (i386_stap_parse_special_token): Likewise.
2950 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
2951 * mipsread.c (ecoff_sym_fns): Likewise.
2952 * objfiles.c (objfile_relocate1): Support relocation for static
2953 probes.
2954 * parse.c (prefixify_expression): Remove static declaration.
2955 (initialize_expout): Likewise.
2956 (reallocate_expout): Likewise.
2957 * parser-defs.h (initialize_expout): Declare function.
2958 (reallocate_expout): Likewise.
2959 (prefixify_expression): Likewise.
2960 * ppc-linux-tdep.c: Including headers needed to perform the parsing
2961 of SystemTap probes' arguments.
2962 (ppc_stap_is_single_operand): New function.
2963 (ppc_stap_parse_special_token): Likewise.
2964 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
2965 probes' arguments parser.
2966 * probe.c: New file, for generic statically defined probe support.
2967 * probe.h: Likewise.
2968 * s390-tdep.c: Including headers needed to perform the parsing of
2969 SystemTap probes' arguments.
2970 (s390_stap_is_single_operand): New function.
2971 (s390_gdbarch_init): Initializing proper fields used by SystemTap
2972 probes' arguments parser.
2973 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
2974 * stap-probe.c: New file, for SystemTap probe support.
2975 * stap-probe.h: Likewise.
2976 * symfile.h: Include `gdb_vecs.h'.
2977 (struct sym_probe_fns): New struct.
2978 (struct sym_fns) <sym_probe_fns>: New field.
2979 * symtab.c (init_sal): Initialize `probe' field.
2980 * symtab.h (struct probe): Forward declaration.
2981 (struct symtab_and_line) <probe>: New field.
2982 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
2983 locations.
2984 (stop_tracing): Likewise.
2985 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
2986
2987 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
2988 Tom Tromey <tromey@redhat.com>
2989
2990 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
2991 and to compile agent expressions.
2992 * infrun.c (siginfo_make_value): New argument `ignore'.
2993 (siginfo_funcs): New struct.
2994 (_initialize_infrun): New argument when calling
2995 `create_internalvar_type_lazy'.
2996 * thread.c (thread_id_make_value): New argument `ignore'.
2997 (thread_funcs): New struct.
2998 (_initialize_thread): New argument when calling
2999 `create_internalvar_type_lazy'.
3000 * tracepoint.c (sdata_make_value): New argument `ignore'.
3001 (sdata_funcs): New struct.
3002 (_initialize_tracepoint): New argument when calling
3003 `create_internalvar_type_lazy'.
3004 * value.c (make_value): New struct.
3005 (create_internalvar_type_lazy): New argument `data'.
3006 (compile_internalvar_to_ax): New function.
3007 (value_of_internalvar): Properly handling `make_value' case.
3008 (clear_internalvar): Likewise.
3009 (show_convenience): Adding `TRY_CATCH' block.
3010 * value.h (internalvar_make_value): Delete, replace by...
3011 (struct internalvar_funcs): ... this.
3012 (create_internalvar_type_lazy) <fun>: Delete argument.
3013 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
3014 (compile_internalvar_to_ax): New function.
3015 * windows-tdep.c (tlb_make_value): New argument `ignore'.
3016 (tlb_funcs): New struct.
3017 (_initialize_windows_tdep): New argument when calling
3018 `create_internalvar_type_lazy'.
3019
3020 2012-04-27 Mark Wielaard <mjw@redhat.com>
3021
3022 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
3023 see whether it is an address or a constant offset from DW_AT_low_pc.
3024 (dwarf2_record_block_ranges): Likewise.
3025 (read_partial_die): Likewise.
3026
3027 2012-04-26 Mark Wielaard <mjw@redhat.com>
3028
3029 * MAINTAINERS (Write After Approval): Add myself to the list.
3030
3031 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
3032
3033 * proc-utils.h (proc_prettyprint_signalset): New prototype.
3034 (proc_prettyprint_signal): Likewise.
3035 (proc_prettyprint_faultset): Likewise.
3036 (proc_prettyprint_fault): Likewise.
3037 (proc_prettyprint_actionset): Likewise.
3038 (proc_prettyprint_flags): Move to new proc-flags.c section.
3039 (proc_prettyfprint_flags): New prototype.
3040 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
3041 (proc_syscall, proc_cursig): Likewise.
3042 (proc_set_kill_on_last_close): Likewise.
3043 (proc_unset_kill_on_last_close): Likewise.
3044 (proc_set_watchpoint): Make static.
3045 (proc_delete_dead_threads): Likewise.
3046 (procfs_set_watchpoint): Likewise.
3047 (_initialize_procfs): Add prototype.
3048 * proc-events.c: Include proc-utils.h.
3049 (init_syscall_table): Make static.
3050 * proc-api.c (_initialize_proc_api): Add prototype.
3051 * proc-flags.c: Include proc-utils.h.
3052
3053 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
3054
3055 * configure.ac: Add AC_ARG_PROGRAM.
3056 * configure: Regenerate.
3057
3058 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3059
3060 Fix DW_AT_lower_bound defaults for DWARF-4+.
3061 * dwarf2read.c (read_subrange_type): Remove initialization of low and
3062 high. New variable low_default_is_valid. Implement DWARF-4+
3063 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
3064 no default by the DWARF standard.
3065
3066 2012-04-26 Maciej W. Rozycki <macro@mips.com>
3067 Maciej W. Rozycki <macro@codesourcery.com>
3068
3069 * infrun.c (handle_inferior_event): Move the check for return
3070 trampolines ahead of the check for function trampolines.
3071 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
3072 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
3073 (mips_str_mips16_ret_stub): Likewise.
3074 (mips_str_call_fp_stub): Likewise.
3075 (mips_str_call_stub): Likewise.
3076 (mips_str_fn_stub): Likewise.
3077 (mips_str_pic): Likewise.
3078 (mips_in_frame_stub): New function.
3079 (mips_unwind_pc): Return the return address rather than the PC
3080 if the PC of an intermediate frame is inside a call thunk.
3081 (mips_is_stub_suffix): New function.
3082 (mips_is_stub_mode): Likewise.
3083 (mips_get_mips16_fn_stub_pc): Likewise.
3084 (mips_skip_mips16_trampoline_code): Update to handle all the
3085 currently generated stub types. Don't recurse into __fn_stub
3086 thunks. Remove heuristics to handle stubs beyond etext/_etext.
3087 Use cooked register accesses.
3088 (mips_in_return_stub): Reintroduce function.
3089 (mips_skip_trampoline_code): Traverse trampolines recursively.
3090 (mips_gdbarch_init): Handle MIPS16 return trampolines.
3091
3092 2012-04-26 Joel Brobecker <brobecker@adacore.com>
3093
3094 GDB 7.4.1 released.
3095
3096 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
3097
3098 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
3099 * features/arm-with-m-vfp-d16.xml: New file. Describes
3100 Cortex-M with VFPv4-sp-d16 FPU register layout.
3101 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
3102 * features/arm-with-m-vfp-d16.c: New. Generated from above.
3103 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
3104 (arm-register_g_packet_guesses): Add vfp-d16 guess.
3105 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
3106
3107 2012-04-25 Doug Evans <dje@google.com>
3108
3109 * cli/cli-decode.c (print_doc_line): Use stream instead of
3110 current_uiout.
3111
3112 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
3113
3114 * features/arm-with-iwmmxt.c: Regenerate.
3115 * features/arm-with-m-fpa-layout.c: Likewise.
3116 * features/arm-with-m.c: Likewise.
3117 * features/arm-with-neon.c: Likewise.
3118 * features/arm-with-vfpv2.c: Likewise.
3119 * features/arm-with-vfpv3.c: Likewise.
3120 * features/mips-dsp-linux.c: Likewise.
3121 * features/mips-linux.c: Likewise.
3122 * features/mips64-dsp-linux.c: Likewise.
3123 * features/mips64-linux.c: Likewise.
3124 * features/s390-linux32.c: Likewise.
3125 * features/s390-linux32v1.c: Likewise.
3126 * features/s390-linux32v2.c: Likewise.
3127 * features/s390-linux64.c: Likewise.
3128 * features/s390-linux64v1.c: Likewise.
3129 * features/s390-linux64v2.c: Likewise.
3130 * features/s390x-linux64.c: Likewise.
3131 * features/s390x-linux64v1.c: Likewise.
3132 * features/s390x-linux64v2.c: Likewise.
3133 * features/tic6x-c62x-linux.c: Likewise.
3134 * features/tic6x-c62x.c: Likewise.
3135 * features/tic6x-c64x-linux.c: Likewise.
3136 * features/tic6x-c64x.c: Likewise.
3137 * features/tic6x-c64xp-linux.c: Likewise.
3138 * features/tic6x-c64xp.c: Likewise.
3139 * target-descriptions.c: Only generate `field_type' and `type'
3140 variables when needed.
3141
3142 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
3143
3144 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
3145
3146 2012-04-25 Doug Evans <dje@google.com>
3147
3148 Initial pass at Go language support.
3149 * NEWS: Mention Go.
3150 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
3151 go-valprint.c.
3152 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
3153 (YYFILES): Add go-exp.c.
3154 (YYOBJ): Add go-exp.o.
3155 (local-maintainer-clean): Delete go-exp.c.
3156 * defs.h (enum language): Add language_go.
3157 * dwarf2read.c: #include "go-lang.h".
3158 (fixup_go_packaging): New function.
3159 (process_full_comp_unit): Call it when processing Go CUs.
3160 (dwarf2_physname): Add Go support.
3161 (read_file_scope): Handle missing language spec for GNU Go.
3162 (set_cu_language): Handle DW_LANG_Go.
3163 * go-exp.y: New file.
3164 * go-lang.h: New file.
3165 * go-lang.c: New file.
3166 * go-typeprint.c: New file.
3167 * go-valprint.c: New file.
3168 * symtab.c: #include "go-lang.h".
3169 (symbol_set_language): Handle language_go.
3170 (symbol_find_demangled_name, symbol_set_names): Ditto.
3171 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
3172
3173 2012-04-24 Jim Meyering <meyering@redhat.com>
3174
3175 avoid a few strncpy-induced buffer overruns
3176 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
3177 fname and psargs before trying to concatenate.
3178 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
3179 "name" before applying strchr.
3180
3181 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
3182
3183 * CONTRIBUTE: Use unified diff instead of context diff when
3184 generating patches.
3185
3186 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
3187
3188 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
3189 code. Handle JR.HB correctly.
3190
3191 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
3192
3193 * mips-tdep.c
3194 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
3195 with the other MIPS16 helpers.
3196
3197 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
3198
3199 * observer.sh: Conditionally declare `args', thus cleaning up
3200 unused instances of this variable.
3201
3202 2012-04-24 Yao Qi <yao@codesourcery.com>
3203
3204 Revert this patch to allow breakpoint always-inserted
3205 in record target.
3206 2011-12-05 Pedro Alves <pedro@codesourcery.com>
3207 * breakpoint.c: Include record.h.
3208 (breakpoints_always_inserted_mode): Return false when the record
3209 target is in use.
3210
3211 * breakpoint.c (iterate_over_bp_locations): New.
3212 * breakpoint.h: Declare.
3213 New typedef walk_bp_location_callback.
3214 * record.c (record_open): Call record_init_record_breakpoints.
3215 (record_sync_record_breakpoints): New.
3216 (record_init_record_breakpoints): New.
3217 * NEWS: Mention supporting breakpoint always-inserted mode in
3218 record target.
3219
3220 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
3221
3222 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
3223 any thread.
3224
3225 2012-04-24 Yao Qi <yao@codesourcery.com>
3226
3227 * breakpoint.c (ep_is_catchpoint): Renamed to ...
3228 (is_catchpoint): ... it.
3229 (print_one_breakpoint_location): Caller update.
3230 * breakpoint.h: Update declaration.
3231
3232 2012-04-23 David S. Miller <davem@davemloft.net>
3233
3234 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
3235
3236 2012-04-23 Tom Tromey <tromey@redhat.com>
3237
3238 * buildsym.c (add_free_pendings): Remove.
3239 * buildsym.h (add_free_pendings): Remove.
3240
3241 2012-04-23 Doug Evans <dje@google.com>
3242
3243 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
3244 attr.u.unsnd instead of attr.u.addr.
3245 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
3246 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
3247 DW_FORM_ref_udata.
3248 (dump_die_shallow): Update cases DW_FORM_ref_addr,
3249 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
3250 DW_FORM_ref_udata.
3251 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
3252
3253 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
3254
3255 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
3256 (mips_o32_return_value): Likewise.
3257 (mips_o64_return_value): Likewise.
3258
3259 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
3260
3261 * ada-lang.c (ada_evaluate_subexp): Add cases for
3262 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
3263 their treatment in eval.c.
3264
3265 2012-04-21 David S. Miller <davem@davemloft.net>
3266
3267 * sparc-tdep.c (X_DISP10): Define.
3268 (sparc_analyze_control_transfer): Handle compare-and-branch.
3269
3270 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
3271
3272 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
3273 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
3274
3275 2012-04-20 Nigel Stephens <nigel@mips.com>
3276 Maciej W. Rozycki <macro@codesourcery.com>
3277
3278 * mips-tdep.c (mips_float_register_p): New function.
3279 (mips_convert_register_float_case_p): Use mips_float_register_p.
3280 (mips_register_type): Likewise.
3281 (mips_print_register): Likewise.
3282 (print_gp_register_row): Likewise.
3283 (mips_print_registers_info): Likewise.
3284
3285 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
3286
3287 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
3288 of mips16 symbols.
3289
3290 2012-04-20 Andrew Pinski <apinski@cavium.com>
3291
3292 * MAINTAINERS (Write After Approval): Add myself to the list.
3293
3294 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
3295
3296 * MAINTAINERS: Update my e-mail address.
3297
3298 2012-04-20 Pedro Alves <palves@redhat.com>
3299
3300 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
3301 $srcdir.
3302 * configure: Regenerate.
3303
3304 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
3305
3306 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
3307 declaration.
3308 * gdb_vecs.h: Declare `const_char_ptr' VEC.
3309
3310 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3311
3312 Fix compilation compatibility with python-2.4
3313 * python/py-type.c (convert_field): Cast ADDRSTRING for
3314 PyObject_SetAttrString as non-const. New comment.
3315
3316 2012-04-19 Tom Tromey <tromey@redhat.com>
3317
3318 * top.c (quit_target): Use all_cleanups.
3319 * main.c (captured_command_loop): Use all_cleanups.
3320 * exceptions.c (throw_exception): Use all_cleanups.
3321
3322 2012-04-19 Pedro Alves <palves@redhat.com>
3323
3324 * Makefile.in (GNULIB_BUILDDIR): New.
3325 (LIBGNU, INCGNU, GNULIB_H): Adjust.
3326 (SUBDIRS): Add $(GNULIB_BUILDDIR).
3327 (CLEANDIRS). Remove gnulib/import.
3328 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
3329 (all-lib): Ditto.
3330 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
3331 (gnulib/import/Makefile): Replace gnulib/import with
3332 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
3333 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
3334 (aclocal_m4_deps): Remove the gnulib dependencies. Add
3335 acx_configure_dir.m4.
3336 * acinclude.m4: Include acx_configure_dir.m4.
3337 * acx_configure_dir.m4: New file.
3338 * aclocal.m4: Regenerate.
3339 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
3340 calls. Configure gnulib using ACX_CONFIGURE_DIR.
3341 (GNULIB): New variable.
3342 (GNULIB_STDINT_H): Adjust.
3343 (AC_OUTPUT): Don't output gnulib/Makefile.
3344 * gdb/defs.h: Include build-gnulib/config.h.
3345 * aclocal.m4: Regenerate.
3346 * config.in: Regenerate.
3347 * configure: Regenerate.
3348
3349 * gnulib/Makefile.in: New file.
3350 * gnulib/configure.ac: New file.
3351 * gnulib/aclocal.m4: New file.
3352 * gnulib/config.in: New file.
3353 * gnulib/configure: New file.
3354 * gnulib/: Re-run gnulib-tool to adjust.
3355
3356 2012-04-19 Doug Evans <dje@google.com>
3357
3358 * cleanups.h (struct cleanup): Move to cleanups.c.
3359 (make_cleanup_dtor_ftype): New typedef.
3360 (make_cleanup_dtor): Use it.
3361 (ALL_CLEANUPS): Replace with ...
3362 (all_cleanups): ... this. Declare. All uses updated.
3363 * cleanups.c: #include "gdb_assert.h".
3364 (sentinel_cleanup): New static global.
3365 (SENTINEL_CLEANUP): Define.
3366 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
3367 (make_my_cleanup2): Assert result is non-NULL.
3368 (all_cleanups): New function.
3369 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
3370 of NULL.
3371
3372 2012-04-19 Pedro Alves <palves@redhat.com>
3373
3374 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
3375 Adjust paths to gnulib imported files.
3376
3377 2012-04-19 Pedro Alves <palves@redhat.com>
3378
3379 * gnulib/: Move whole directory ...
3380 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
3381 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
3382 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
3383 (aclocal_m4_deps): Adjust.
3384 * aclocal.m4: Regenerate.
3385 * configure: Regenerate.
3386 * configure.ac: Adjust AC_OUTPUT output.
3387
3388 2012-04-19 Yao Qi <yao@codesourcery.com>
3389
3390 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
3391 (vec.o): New rule.
3392 * vec.c: Move it ...
3393 * common/vec.c: ... here.
3394 * vec.h: Move it ...
3395 * common/vec.h: ... here.
3396
3397 2012-04-19 Yao Qi <yao@codesourcery.com>
3398
3399 * gdb-code-style.el: New.
3400
3401 2012-04-18 Pedro Alves <palves@redhat.com>
3402
3403 Update gnulib from latest git.
3404 (639ea5ae15e39fe48d43e04864b2997301e4b969)
3405
3406 * gnulib/Makefile.am: Update.
3407 * gnulib/dummy.c: Update.
3408 * gnulib/extra/arg-nonnull.h: Update.
3409 * gnulib/extra/c++defs.h: Update.
3410 * gnulib/extra/update-copyright: Update.
3411 * gnulib/extra/warn-on-use.h: Update.
3412 * gnulib/inttypes.in.h: Update.
3413 * gnulib/m4/00gnulib.m4: Update.
3414 * gnulib/m4/extensions.m4: Update.
3415 * gnulib/m4/gnulib-cache.m4: Update.
3416 * gnulib/m4/gnulib-common.m4: Update.
3417 * gnulib/m4/gnulib-comp.m4: Update.
3418 * gnulib/m4/gnulib-tool.m4: Update.
3419 * gnulib/m4/include_next.m4: Update.
3420 * gnulib/m4/inttypes-pri.m4: Update.
3421 * gnulib/m4/inttypes.m4: Update.
3422 * gnulib/m4/longlong.m4: Update.
3423 * gnulib/m4/memchr.m4: Update.
3424 * gnulib/m4/memmem.m4: Update.
3425 * gnulib/m4/mmap-anon.m4: Update.
3426 * gnulib/m4/multiarch.m4: Update.
3427 * gnulib/m4/onceonly.m4: Update.
3428 * gnulib/m4/stddef_h.m4: Update.
3429 * gnulib/m4/stdint.m4: Update.
3430 * gnulib/m4/string_h.m4: Update.
3431 * gnulib/m4/warn-on-use.m4: Update.
3432 * gnulib/m4/wchar_h.m4: Update.
3433 * gnulib/m4/wchar_t.m4: Update.
3434 * gnulib/m4/wint_t.m4: Update.
3435 * gnulib/memchr.c: Update.
3436 * gnulib/memmem.c: Update.
3437 * gnulib/stddef.in.h: Update.
3438 * gnulib/stdint.in.h: Update.
3439 * gnulib/str-two-way.h: Update.
3440 * gnulib/string.in.h: Update.
3441 * gnulib/wchar.in.h: Update.
3442
3443 * gnulib/extra/arg-nonnull.h: Delete.
3444 * gnulib/extra/c++defs.h: Delete.
3445 * gnulib/extra/warn-on-use.h: Delete.
3446 * gnulib/m4/wchar_h.m4: Delete.
3447 * gnulib/m4/wint_t.m4: Delete.
3448 * gnulib/wchar.in.h: Delete.
3449
3450 * gnulib/extra/snippets/arg-nonnull.h: New.
3451 * gnulib/extra/snippets/c++defs.h: New.
3452 * gnulib/extra/snippets/warn-on-use.h: New.
3453
3454 * aclocal.m4: Regenerate.
3455 * config.in: Regenerate.
3456 * configure: Regenerate.
3457 * gnulib/Makefile.in: Regenerate.
3458
3459 2012-04-18 Pedro Alves <palves@redhat.com>
3460
3461 Reimport the update-copyright module from gnulib
3462 (250b80067c1e1d8faa0c42fb572f721975b929c5).
3463
3464 * configure: Regenerate.
3465 * gnulib/Makefile.am: Update.
3466 * gnulib/Makefile.in: Regenerate.
3467 * gnulib/extra/update-copyright: Update.
3468 * gnulib/m4/gnulib-cache.m4: Update.
3469 * gnulib/m4/gnulib-comp.m4: Update.
3470
3471 2012-04-18 Tristan Gingold <gingold@adacore.com>
3472
3473 * configure.ac (aix): Put -lpthread into libs.
3474 * configure: Regenerate.
3475
3476 2012-04-18 Tom Tromey <tromey@redhat.com>
3477
3478 * linespec.c (convert_linespec_to_sals): Don't use
3479 SYMBOL_OBJ_SECTION.
3480 (compare_msymbols): Arguments are minsym_and_objfile, not
3481 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
3482
3483 2012-04-18 Pedro Alves <palves@redhat.com>
3484
3485 Revert gnulib/ part of:
3486 2011-01-01 Joel Brobecker <brobecker@adacore.com>
3487 Copyright year update in most files (performed by copyright.sh).
3488
3489 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3490
3491 Fix 64-bit constants on 32-bit hosts.
3492 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
3493 from unsigned long to ULONGEST.
3494 (read_signed_leb128): Change declaration return type from long to
3495 LONGEST.
3496 (dwarf2_const_value_attr): Change declaration parameter value from long
3497 to LONGEST.
3498 (dwarf2_compute_name): Change variable value from long to LONGEST.
3499 (read_unsigned_leb128): Change return type, variable result and some
3500 casts from unsigned long to ULONGEST.
3501 (read_signed_leb128): Change return type, variable result and some
3502 casts from long to LONGEST.
3503 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
3504 value from long to LONGEST.
3505 (dwarf2_const_value): Change variable value from long to LONGEST.
3506 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
3507 plongest and hex_string.
3508 * symtab.h (struct general_symbol_info): Change ivalue from long to
3509 LONGEST, remove the comment.
3510 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
3511 Change SYMBOL_VALUE format strings to use plongest and hex_string.
3512
3513 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
3514
3515 PR symtab/7259:
3516 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
3517 * ada-lang.c (ada_discrete_type_high_bound)
3518 (ada_discrete_type_low_bound): Fix function comment. Use
3519 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
3520 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
3521 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
3522 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
3523 Use TYPE_FIELD_ENUMVAL.
3524 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
3525 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
3526 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
3527 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
3528 TYPE_CODE_ENUM.
3529 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
3530 * dwarf2read.c (process_enumeration_scope): Likewise.
3531 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
3532 field.bitpos.
3533 (class StructMainTypePrettyPrinter): Support also
3534 FIELD_LOC_KIND_ENUMVAL.
3535 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
3536 TYPE_CODE_ENUM.
3537 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
3538 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
3539 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
3540 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
3541 field enumval.
3542 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
3543 accommodate enumval.
3544 (struct call_site): Adjust loc_kind to accommodate enumval.
3545 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
3546 (TYPE_FIELD_ENUMVAL): New macros.
3547 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
3548 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
3549 TYPE_CODE_ENUM.
3550 * p-typeprint.c (pascal_type_print_base): Likewise.
3551 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
3552 enumval.
3553 * python/lib/gdb/types.py (make_enum_dict): Likewise.
3554 * python/py-type.c (convert_field): New variable addrstring. Use
3555 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
3556 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
3557 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
3558 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
3559 TYPE_CODE_ENUM.
3560 * valprint.c (generic_val_print): Likewise.
3561
3562 2012-04-17 Doug Evans <dje@google.com>
3563
3564 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
3565
3566 * dwarf2read.c: Whitespace fixes.
3567 (lookup_signatured_type): Tweak comment.
3568 (get_die_type_at_offset): Fix comment.
3569
3570 2012-04-17 Joel Brobecker <brobecker@adacore.com>
3571
3572 * xcoffread.c (xcoff_secnum_to_sections): New function.
3573 (secnum_to_section, secnum_to_bfd_section): Reimplement
3574 using xcoff_secnum_to_sections. Rename "secnum" parameter
3575 into "n_scnum".
3576 (RECORD_MINIMAL_SYMBOL): Delete.
3577 (record_minimal_symbol): New function.
3578 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
3579 by call to record_minimal_symbol and set misc_func_recorded
3580 to 1. Set last_csect_sec to the XCOFF section index instead
3581 of GDB's section_offset index. Update calls to
3582 prim_record_minimal_symbol_and_info to pass the BFD section
3583 as well.
3584
3585 2012-04-17 Joel Brobecker <brobecker@adacore.com>
3586
3587 * xcoffread.c (read_xcoff_symtab): Delete variables
3588 last_csect_val and last_csect_sec and associated code.
3589
3590 2012-04-17 Doug Evans <dje@google.com>
3591
3592 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
3593 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
3594 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
3595 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
3596
3597 * cleanups.h: New file.
3598 * cleanups.c: New file.
3599 * Makefile.in (SFILES): Add cleanups.c.
3600 (HFILES_NO_SRCDIR): Add cleanups.h.
3601 (COMMON_OBS): Add cleanups.o.
3602 * defs.h (struct cleanup): Moved to cleanups.h.
3603 (do_cleanups,do_final_cleanups): Ditto.
3604 (discard_cleanups,discard_final_cleanups): Ditto
3605 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
3606 (save_cleanups,save_final_cleanups): Ditto.
3607 (restore_cleanups,restore_final_cleanups): Ditto.
3608 (null_cleanup): Ditto.
3609 (make_my_cleanup,make_my_cleanup2): Ditto.
3610 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
3611 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
3612 (do_cleanups,do_final_cleanups): Ditto.
3613 (discard_cleanups,discard_final_cleanups): Ditto
3614 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
3615 (save_cleanups,save_final_cleanups): Ditto.
3616 (restore_cleanups,restore_final_cleanups): Ditto.
3617 (null_cleanup): Ditto.
3618 (make_my_cleanup,make_my_cleanup2): Ditto.
3619 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
3620
3621 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
3622 make_my_cleanup.
3623 (make_cleanup_dyn_string_delete): Ditto.
3624 (make_cleanup_ui_file_delete): Ditto.
3625 (make_cleanup_ui_out_redirect_pop): Ditto.
3626 (make_cleanup_free_section_addr_info): Ditto.
3627 (make_cleanup_restore_integer): Ditto.
3628 (make_cleanup_unpush_target): Ditto.
3629 (make_cleanup_value_free_to_mark): Ditto.
3630 (make_cleanup_value_free): Ditto.
3631 (make_cleanup_free_so): Ditto.
3632
3633 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3634
3635 New option "set debug auto-load".
3636 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
3637 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
3638 (auto_load_safe_path_vec_update)
3639 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
3640 if DEBUG_AUTO_LOAD.
3641 (file_is_auto_load_safe): New parameters debug_fmt and ....
3642 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
3643 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
3644 caller by explanatory string.
3645 (_initialize_auto_load): Register "set debug auto-load".
3646 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
3647 and ....
3648 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
3649 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
3650 by explanatory string.
3651 * main.c (captured_main): Likewise.
3652 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
3653 (source_section_scripts): Likewise.
3654
3655 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3656
3657 New option "set auto-load safe-path".
3658 * NEWS: New commands "set auto-load safe-path"
3659 and "show auto-load safe-path".
3660 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
3661 (auto_load_safe_path, auto_load_safe_path_vec)
3662 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
3663 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
3664 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
3665 (source_gdb_script_for_objfile): New variable is_safe. Call
3666 file_is_auto_load_safe. Return if it is not.
3667 (struct loaded_script): New field loaded.
3668 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
3669 (print_script): Use LOADED indicator instead of FULL_PATH. Change
3670 output "Missing" to "No".
3671 (_initialize_auto_load): New variable cmd. Initialize
3672 auto_load_safe_path. Register "set auto-load safe-path",
3673 "show auto-load safe-path" and "add-auto-load-safe-path".
3674 * auto-load.h (maybe_add_script): Add parameter loaded.
3675 (file_is_auto_load_safe): New declaration.
3676 * config.in: Regenerate.
3677 * configure: Regenerate.
3678 * configure.ac: New parameters --with-auto-load-safe-path
3679 and --without-auto-load-safe-path.
3680 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
3681 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
3682 * main.c (captured_main): Check file_is_auto_load_safe for
3683 LOCAL_GDBINIT.
3684 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
3685 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
3686 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
3687 not.
3688
3689 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3690
3691 auto-load: Implementation.
3692 * NEWS: New descriptions for "info auto-load",
3693 "info auto-load gdb-scripts", "info auto-load python-scripts",
3694 "info auto-load local-gdbinit" and "info auto-load libthread-db".
3695 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
3696 and "show auto-load-scripts". New description for "set auto-load",
3697 "show auto-load", "set auto-load gdb-scripts",
3698 "show auto-load gdb-scripts", "set auto-load python-scripts",
3699 "show auto-load python-scripts", "set auto-load local-gdbinit",
3700 "show auto-load local-gdbinit", "set auto-load libthread-db" and
3701 "show auto-load libthread-db".
3702 * auto-load.c: Remove include python/python-internal.h. Add includes
3703 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
3704 cli/cli-setshow.h.
3705 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
3706 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
3707 (gdbpy_global_auto_load): Rename to ...
3708 (global_auto_load): ... here.
3709 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
3710 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
3711 (script_language_gdb, source_gdb_script_for_objfile): New.
3712 (struct loaded_script): New field language.
3713 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
3714 LANGUAGE.
3715 (maybe_add_script): Add parameter language. Drop redundant
3716 entry.full_path initialization. Initialize entry.language and
3717 (*slot)->language.
3718 (auto_load_objfile_script): Change parameter suffix to language.
3719 Remove the call of maybe_add_script.
3720 Call language->source_script_for_objfile.
3721 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
3722 New.
3723 (collect_matching_scripts): Adjust it for
3724 struct collect_matching_scripts_data.
3725 (auto_load_info_scripts_pattern_nl): New variable.
3726 (info_auto_load_scripts): Rename to ...
3727 (auto_load_info_scripts): ... here, add parameter language. Adjust it
3728 for struct collect_matching_scripts_data.
3729 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
3730 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
3731 (auto_load_show_cmdlist_get, info_auto_load_cmd)
3732 (auto_load_info_cmdlist_get): New.
3733 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
3734 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
3735 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
3736 "info auto-load local-gdbinit".
3737 * auto-load.h (struct script_language): New.
3738 (gdbpy_global_auto_load): Rename to ...
3739 (global_auto_load): ... here.
3740 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
3741 (auto_load_local_gdbinit_loaded): New declarations.
3742 (maybe_add_script): New parameter language.
3743 (auto_load_objfile_script): Change parameter suffix to language.
3744 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
3745 (auto_load_info_scripts, auto_load_set_cmdlist_get)
3746 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
3747 declarations.
3748 * linux-thread-db.c: Include auto-load.h and ctype.h.
3749 (auto_load_thread_db, show_auto_load_thread_db): New.
3750 (struct thread_db_info): New field filename.
3751 (delete_thread_db_info): Call xfree for FILENAME.
3752 (try_thread_db_load): Initialize FILENAME.
3753 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
3754 if !AUTO_LOAD_THREAD_DB.
3755 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
3756 (_initialize_thread_db): Install auto_load_thread_db
3757 as "set auto-load libthread-db" and install info_auto_load_libthread_db
3758 as "info auto-load libthread-db".
3759 * main.c (captured_main): Rename gdbpy_global_auto_load to
3760 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
3761 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
3762 (print_gdb_help): Extend the help for 'local init file'.
3763 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
3764 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
3765 (auto_load_scripts): Rename to ...
3766 (auto_load_python_scripts): ... here, update the comment.
3767 (gdbpy_load_auto_script_for_objfile): New declaration.
3768 (show_auto_load_python_scripts, script_language_python)
3769 (gdbpy_load_auto_script_for_objfile): New.
3770 (source_section_scripts): Refactor the code.
3771 (load_auto_scripts_for_objfile): Rename to ...
3772 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
3773 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
3774 (info_auto_load_python_scripts): New.
3775 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
3776 Rename "set auto-load-scripts" to "set auto-load python-scripts".
3777 Register "set auto-load-scripts" as its deprecated alias. Register
3778 "info auto-load python-scripts". Register "info auto-load-scripts" as
3779 its deprecated alias.
3780 (load_auto_scripts_for_objfile): Rename to ...
3781 (gdbpy_load_auto_scripts_for_objfile): ... here.
3782 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
3783 (gdbpy_load_auto_scripts_for_objfile): ... here.
3784
3785 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3786
3787 auto-load: Move files.
3788 * Makefile.in (SFILES): Add auto-load.c.
3789 (HFILES_NO_SRCDIR): Add auto-load.h.
3790 (COMMON_OBS): Add auto-load.o.
3791 (distclean): Change .gdbinit for gdb-gdb.gdb.
3792 * auto-load.c: New file, with parts from python/py-auto-load.c.
3793 * auto-load.h: New file, with parts from python/python.h.
3794 * configure: Regenerate.
3795 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
3796 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
3797 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
3798 * main.c: Include auto-load.h.
3799 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
3800 command.h, observer.h and progspace.h to auto-load.c. Add include
3801 auto-load.h.
3802 (gdbpy_global_auto_load, struct auto_load_pspace_info)
3803 (struct loaded_script, auto_load_pspace_data)
3804 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
3805 (hash_loaded_script_entry, eq_loaded_script_entry)
3806 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
3807 (maybe_add_script): Move to auto-load.c.
3808 (source_section_scripts): Change maybe_add_script parameters passing,
3809 use script_not_found_warning_print.
3810 (clear_section_scripts, auto_load_objfile_script)
3811 (auto_load_new_objfile, loaded_script_ptr)
3812 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
3813 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
3814 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
3815 auto_load_new_objfile and info_auto_load_scripts initizations to
3816 auto-load.c.
3817 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
3818
3819 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3820
3821 Code cleanup.
3822 * charset.c (find_charset_names): Remove variables ix and elt.
3823 Use free_char_ptr_vec.
3824 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
3825 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
3826 debugdir_end. New variable debugdir_len.
3827 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
3828 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
3829 declarations.
3830 * progspace.c (clear_program_space_solib_cache): Remove variables ix
3831 and elt. Use free_char_ptr_vec.
3832 * source.c (add_path): Remove variables argv, arg and argv_index.
3833 New variables dir_vec, back_to, ix and name.
3834 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
3835 make_cleanup_freeargv. Remove variable separator. Simplify the code
3836 no longer expecting DIRNAME_SEPARATOR.
3837 (openp): Remove variable p, p1 and len. New variables dir_vec,
3838 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
3839 no longer expecting DIRNAME_SEPARATOR.
3840 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
3841 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
3842 debugdir_end.
3843 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
3844 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
3845 (dirnames_to_char_ptr_vec): New functions.
3846
3847 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3848
3849 Code cleanup.
3850 * source.c (add_path): Remove always true conditional 'p == 0' and
3851 unindent its code block.
3852
3853 2012-04-17 Pedro Alves <palves@redhat.com>
3854
3855 * gdbtypes.h (FIELD_BITPOS): Rename to ...
3856 (FIELD_BITPOS_LVAL): ... this.
3857 (FIELD_BITPOS): New.
3858 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
3859 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
3860 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
3861 SET_FIELD_BITPOS.
3862 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
3863 SET_FIELD_BITPOS.
3864 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
3865 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
3866 * target-descriptions.c (tdesc_gdb_type): Adjust to use
3867 SET_FIELD_BITPOS.
3868
3869 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3870
3871 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
3872 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
3873 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
3874 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
3875 * jv-lang.c (java_link_class_type): Likewise, once.
3876 * stabsread.c (read_enum_type): Likewise.
3877
3878 2012-04-16 Yao Qi <yao@codesourcery.com>
3879
3880 * common/agent.c (agent_run_command): Add one more parameter `len'.
3881 Update callers.
3882 * common/agent.h: Update declaration.
3883 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
3884 Update.
3885 (linux_child_static_tracepoint_markers_by_strid): Ditto.
3886
3887 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
3888
3889 PR mi/13393
3890 * value.c (value_actual_type): New function.
3891 * value.h (value_actual_type): New declaration.
3892 * varobj.c (update_type_if_necessary): New function.
3893 (varobj_create): Call value_actual_type instead of
3894 value_type.
3895 (install_dynamic_child): distinct changed and type changed MI variable
3896 objects.
3897 (update_dynamic_varobj_children): Updated for install_dynamic_child
3898 change. All callers updated.
3899 (varobj_update): Support for MI variable object type change if
3900 the value changed and RTTI is used to determine the type.
3901 (create_child_with_value): Call value_actual_type instead of
3902 value_type.
3903 (adjust_value_for_child_access): Extended with a new parameter which
3904 specify whether the given value should be casted to enclosing type.
3905 All callers updated.
3906
3907 2012-04-14 Yao Qi <yao@codesourcery.com>
3908
3909 Import gnulib module inttypes from git
3910 (250b80067c1e1d8faa0c42fb572f721975b929c5)
3911 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
3912 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
3913 gnulib/m4/inttypes-pri.m4
3914 * aclocal.m4, config.in, configure: Regenerated.
3915 * gnulib/Makefile.am: Update.
3916 * gnulib/Makefile.in: Update.
3917 * gnulib/m4/gnulib-cache.m4: Update.
3918 * gnulib/m4/gnulib-comp.m4: Update.
3919 * gnulib/inttypes.in.h: New.
3920 * gnulib/m4/inttypes-pri.m4: New.
3921 * gnulib/m4/inttypes.m4: New.
3922
3923 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
3924
3925 * infrun.c (resume): Update PC address to the real PC after
3926 preparing to do displaced stepping.
3927
3928 2012-04-12 Doug Evans <dje@google.com>
3929
3930 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
3931 All callers updated.
3932
3933 2012-04-12 Mark Kettenis <kettenis@gnu.org>
3934
3935 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
3936
3937 2012-04-12 Doug Evans <dje@google.com>
3938
3939 * dwarf2read.c (create_all_type_units): Renamed from
3940 create_debug_types_hash_table. All callers updated.
3941
3942 * dwarf2read.c (create_signatured_type_table_from_index): Rename
3943 local type_sig to sig_type, type_offset to type_offset_in_tu.
3944 (hash_signatured_type): Renamed from hash_type_signature,
3945 all callers updated.
3946 (eq_signatured_type): Renamed from eq_type_signature,
3947 all callers updated.
3948 (create_debug_types_hash_table): Rename local type_sig to sig_type.
3949 (process_enumeration_scope): Ditto.
3950 (lookup_signatured_type_at_offset): Ditto.
3951 (load_full_type_unit, read_signatured_type): Ditto.
3952
3953 2012-04-12 Yao Qi <yao@codesourcery.com>
3954
3955 * remote.c (async_remote_interrupt): Correct function name in
3956 debug message.
3957 (async_remote_interrupt_twice): Ditto.
3958
3959 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
3960
3961 * source.c (find_and_open_source): Consistently pass resulting
3962 full path through xfullpath.
3963
3964 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3965
3966 Provide more specific displaced-stepping memory error message.
3967 * infrun.c (displaced_step_prepare): New variable status. Call
3968 target_read_memory instead of read_memory, provide more specific
3969 error message.
3970
3971 2012-04-11 Tristan Gingold <gingold@adacore.com>
3972
3973 PR gdb/13901
3974 * darwin-nat.c (darwin_execvp): Revert previous patch.
3975
3976 2012-04-11 Tristan Gingold <gingold@adacore.com>
3977
3978 PR gdb/13901
3979 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
3980 in case of change.
3981
3982 2012-04-11 Tristan Gingold <gingold@adacore.com>
3983
3984 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
3985 warning.
3986
3987 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
3988
3989 New command 'explore' which helps explore values and types in
3990 scope.
3991 * NEWS: Add an entry about the new 'explore' command.
3992 * data-directory/Makefile.in: Add gdb/command/explore.py
3993 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
3994 command using the GDB Python API.
3995
3996 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
3997
3998 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
3999 extension in jump target calculation.
4000
4001 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
4002
4003 * mips-tdep.c (mips32_next_pc): Handle JALX.
4004
4005 2012-04-10 Yao Qi <yao@codesourcery.com>
4006
4007 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
4008
4009 2012-04-10 Yao Qi <yao@codesourcery.com>
4010
4011 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
4012 and gnulib/m4/gnulib-tool.m4.
4013
4014 2012-04-10 Doug Evans <dje@google.com>
4015
4016 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
4017 (load_partial_dies): Clarify comment.
4018 (find_partial_die): Support rereading type units.
4019 Clarify CU handling, if we know offset is in CU, don't search for the
4020 containing CU. Add comment regarding memory waste.
4021
4022 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
4023
4024 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
4025 i386/x32-avx and i386/x32-avx-linux.
4026 (i386/x32-expedite): New.
4027 (i386/x32-linux-expedite): Likewise.
4028 (i386/x32-avx-expedite): Likewise.
4029 (i386/x32-avx-linux-expedite): Likewise.
4030 ($(outdir)/i386/x32.dat): Likewise.
4031 ($(outdir)/i386/x32-linux.dat): Likewise.
4032 ($(outdir)/i386/x32-avx.dat): Likewise.
4033 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
4034
4035 * features/i386/x32-avx-linux.xml: New file.
4036 * features/i386/x32-avx.xml: Likewise.
4037 * features/i386/x32-core.xml: Likewise.
4038 * features/i386/x32-linux.xml: Likewise.
4039 * features/i386/x32.xml: Likewise.
4040
4041 * features/i386/x32-avx-linux.c: New. Generated.
4042 * features/i386/x32-avx.c: Likewise.
4043 * features/i386/x32-linux.c: Likewise.
4044 * features/i386/x32.c: Likewise.
4045 * regformats/i386/x32-avx-linux.dat: Likewise.
4046 * regformats/i386/x32-avx.dat: Likewise.
4047 * regformats/i386/x32-linux.dat: Likewise.
4048 * regformats/i386/x32.dat: Likewise.
4049
4050 2012-04-10 Tristan Gingold <gingold@adacore.com>
4051
4052 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
4053 code to kill the inferior.
4054
4055 2012-04-09 Mark Kettenis <kettenis@gnu.org>
4056
4057 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4058 defines.
4059 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4060 defines.
4061 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
4062 (yyvsp): New defines.
4063 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4064 defines.
4065 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4066 defines.
4067 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4068 defines.
4069 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4070 defines.
4071 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
4072 defines.
4073
4074 2012-04-09 Mark Kettenis <kettenis@gnu.org>
4075
4076 * sparc64-tdep.c (sparc64_store_arguments)
4077 (sparc64_store_arguments): Fix coding style.
4078
4079 2012-04-07 Mark Kettenis <kettenis@gnu.org>
4080
4081 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
4082 complex floats, adjust some related comments and tighten a related
4083 assertion.
4084 (sparc64_extract_return_value): Handle complex floats.
4085
4086 2012-04-07 Doug Evans <dje@google.com>
4087
4088 * dwarf2read.c (load_partial_dies): Change condition to assert.
4089
4090 2012-04-06 Doug Evans <dje@google.com>
4091
4092 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
4093 "mov %rsp,%rbp".
4094
4095 2012-04-05 Kevin Buettner <kevinb@redhat.com>
4096
4097 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
4098 fencepost error.
4099 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
4100 (v850_gdbarch_init): Set `num_regs' as appropriate for the
4101 architecture.
4102
4103 2012-04-05 Keith Seitz <keiths@redhat.com>
4104
4105 * linespec.c (decode_compound): Remove.
4106 (enum offset_relative_sign): New enum.
4107 (struct line_offset): New struct.
4108 (struct linespec): New struct.
4109 (struct linespec_state): Move file_symtabs,
4110 user_filename, and user_function into struct linespec.
4111 Make result an anonymous struct holding vectors of
4112 symbolp and minsym_and_objfile_d.
4113 Add language member.
4114 (enum ls_token_type): New enum.
4115 (linespec_keywords): New array.
4116 (struct ls_token): New struct.
4117 (struct ls_parser): New struct.
4118 (linespec_lexer_lex_number): New function.
4119 (linespec_lexer_lex_keyword): New function.
4120 (is_ada_operator): New function.
4121 (skip_quote_char): New function.
4122 (copy_token_string): New function.
4123 (is_closing_quote_enclosed): New function.
4124 (find_parameter_list_end): New function.
4125 (linespec_lexer_lex_string): New function.
4126 (linespec_lexer_lex_one): New function.
4127 (linespec_lexer_consume_token): New function.
4128 (linespec_lexer_peek_token): New function.
4129 (cplusplus_error): Remove unused function.
4130 (find_methods): Update comment.
4131 (find_toplevel_char): Return const.
4132 (is_objc_method_format): Remove unused function.
4133 (find_toplevel_string): New function.
4134 (is_linespec_boundary): Remove.
4135 (symbol_not_found_error): New function.
4136 (find_method_overload_end): Remove function.
4137 (unexpected_linespec_error): New function.
4138 (keep_name_info): Remove.
4139 (linespec_parse_line_offset): New function.
4140 (linespec_parse_basic): New function.
4141 (canonicalize_linespec): New function.
4142 (decode_line_internal): Remove.
4143 (create_sals_line_offset): New function adapted from
4144 decode_all_digits.
4145 (convert_linespec_to_sals): New function.
4146 (parse_linespec): New function.
4147 (linespec_parser_new): New function.
4148 (linespec_state_destructor): Change parameter type to
4149 struct linespec_state *.
4150 Add language parameter.
4151 Remove freeing of moved members.
4152 (linespec_parser_delete): New function.
4153 (decode_line_full): Use parse_linespec and linespec_parser_new.
4154 (decode_line_1): Likewise.
4155 (decode_indirect): Rename to ...
4156 (linespec_expression_to_pc): ... this and rewrite
4157 to simply find CORE_ADDR, storing this result for later
4158 conversion to SALs.
4159 (locate_first_half): Remove.
4160 (deocde_objc): Add parameter LS.
4161 Initialize new struct collect_info members.
4162 Handle minimal symbols, too.
4163 (decode_compound): Delete.
4164 (lookup_prefix_sym): Rewrite.
4165 (compare_msymbols): New function.
4166 (find_method): Rewrite.
4167 Do not call cplusplus_error.
4168 (symtabs_from_filename): Rewrite.
4169 (collect_function_symbols): Delete.
4170 (find_function_symbols): Rewrite without ARGPTR-style
4171 processing.
4172 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
4173 (decode_dollar): Adapted and renamed to ...
4174 (linespec_parse_variable): ... this.
4175 (find_linespec_symbols): New function.
4176 (decode_label): Adapted and renamed to ...
4177 (find_label_symbols): ... this.
4178 (decode_digits_list_mode): Add and use LS argument.
4179 (decode_digits_ordinary): Likewise.
4180 (collect_symbols): Do not collect SALs, just symbols and msymbols.
4181 If in list mode, allow any symbol class. Otherwise, only
4182 permit LOC_BLOCK symbols.
4183 (minsym_found): Update comments.
4184 (search_minsyms_for_name): Do not convert the matching symbol
4185 into a SAL. Simply push the symbol and objfile into the
4186 result vector.
4187 (decode_variable): Delete. Contents adapted into
4188 find_linespec_symbols.
4189
4190 * cp-support.c (SKIP_SPACE): Remove.
4191 (operator_tokens): Remove unused global.
4192 (cp_validate_operator): Remove.
4193 * cp-support.h (cp_validate_operator): Remove declaration.
4194
4195 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4196
4197 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
4198 for TYPE_VPTR_FIELDNO.
4199 * valprint.c (valprint_check_validity): Make it global, move the
4200 function comment ...
4201 * value.h (valprint_check_validity): ... to this new declaration.
4202
4203 2012-04-02 Tristan Gingold <gingold@adacore.com>
4204
4205 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
4206 the STATE32 api for i386 state.
4207 (i386_darwin_store_inferior_registers): Likewise.
4208
4209 2012-04-02 Tristan Gingold <gingold@adacore.com>
4210
4211 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
4212 SS offset.
4213 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
4214 format_string.
4215
4216 2012-04-02 Tristan Gingold <gingold@adacore.com>
4217
4218 PR gdb/13901
4219 * darwin-nat.c (darwin_execvp): Set binary preference.
4220
4221 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4222
4223 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
4224
4225 2012-03-30 Tom Tromey <tromey@redhat.com>
4226
4227 * python/python.c (gdbpy_decode_line): Move cleanup creation out
4228 of TRY_CATCH. Fix error handling.
4229 * python/py-value.c (convert_value_from_python): Move 'old'
4230 declaration to innermost scope.
4231
4232 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4233 Andrey Smirnov <andrew.smirnov@gmail.com>
4234
4235 -Wshadow warning fix.
4236 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
4237 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
4238 Adjust code accordingly.
4239
4240 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4241
4242 * ada-lang.c (symbol_completion_add): Rename parameter
4243 "encoded" into "encoded_p". Ajust code and documentation
4244 accordingly.
4245
4246 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4247 Andrey Smirnov <andrew.smirnov@gmail.com>
4248
4249 -Wshadow warning fix.
4250 * ada-lang.c (symbol_completion_add): Rename parameter
4251 "wild_match" into wild_match_p. Update code and documentation
4252 accordingly.
4253
4254 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4255
4256 * ada-lang.c (symbol_completion_match): Rename parameter
4257 "encoded" into "encoded_p". Ajust code and documentation
4258 accordingly.
4259
4260 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4261 Andrey Smirnov <andrew.smirnov@gmail.com>
4262
4263 -Wshadow warning fix.
4264 * ada-lang.c (symbol_completion_match): Rename parameter
4265 "wild_match" into "wild_match_p". Adjust code and function
4266 documentation accordingly.
4267
4268 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4269 Andrey Smirnov <andrew.smirnov@gmail.com>
4270
4271 -Wshadow warning fix.
4272 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
4273 "symbol_info" into "info". Adjust code accordingly.
4274 (ada_lookup_symbol): Likewise.
4275
4276 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4277
4278 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
4279 of this function's documentation.
4280
4281 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4282 Andrey Smirnov <andrew.smirnov@gmail.com>
4283
4284 -Wshadow warning fix.
4285 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
4286 variable into "wild_match_p". Adjust code accordingly.
4287
4288 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4289 Andrey Smirnov <andrew.smirnov@gmail.com>
4290
4291 -Wshadow warning fix.
4292 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
4293 parameter into "wild_match_p". Adjust code accordingly.
4294 Document this parameter in the function description.
4295
4296 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4297 Andrey Smirnov <andrew.smirnov@gmail.com>
4298
4299 -Wshadow warning fix.
4300 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
4301 "wild_match" parameter to "wild_match_p" (-Wshadow).
4302
4303 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4304
4305 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
4306 in function documentation.
4307
4308 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4309 Andrey Smirnov <andrew.smirnov@gmail.com>
4310
4311 -Wshadow warning fix.
4312 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
4313 variable into wild_match_p. Adjust code accordingly.
4314
4315 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4316 Andrey Smirnov <andrew.smirnov@gmail.com>
4317
4318 * ada-valprint.c (ada_val_print_1): Move the code handling
4319 TYPE_CODE_ENUM inside its own lexical block. Declare
4320 variables len and val there, instead of in the function's
4321 top level block. Avoid declaring deref_val again in a way
4322 that shadows another variable of the same name declared
4323 in one of the up-level blocks. Just re-use the up-level
4324 variable instead.
4325
4326 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4327
4328 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
4329 Replace block_found argument by symbol_info. Adjust
4330 implementation accordingly. Add function documentation.
4331 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
4332 Fix documentation.
4333 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
4334 * ada-exp.y (write_object_renaming): Adjust to new
4335 ada_lookup_encoded_symbol API.
4336
4337 2012-03-29 Joel Brobecker <brobecker@adacore.com>
4338
4339 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
4340 documentation.
4341
4342 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
4343
4344 * v850-tdep.c: Add the enum values for mpu and fpu registers.
4345 (v850_register_name): Add the mpu and fpu register names.
4346 (v850e_register_name): Add the mpu and fpu register names.
4347 (v850e2_register_name): New function.
4348 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
4349 bfd_mach_v850e2v3.
4350
4351 2012-03-28 Joel Brobecker <brobecker@adacore.com>
4352
4353 * NEWS: Add entry for Ada varobj support.
4354
4355 2012-03-28 Joel Brobecker <brobecker@adacore.com>
4356
4357 * varobj.c (default_value_is_changeable_p): New function,
4358 extracted from varobj_value_is_changeable_p. Add declaration.
4359 (ada_value_is_changeable_p): New function, extracted from
4360 varobj_value_is_changeable_p. Add declaration.
4361 (struct language_specific): New field "value_is_changeable_p".
4362 (languages): Add entries for new field.
4363 (varobj_create): Set language before calling install_new_value.
4364 (varobj_value_is_changeable_p): Reimplement to call the varobj's
4365 "value_is_changeable_p" language callback.
4366
4367 2012-03-28 Joel Brobecker <brobecker@adacore.com>
4368
4369 * ada-varobj.h, ada-varobj.c: New files.
4370 * Makefile.in (SFILES): Add ada-varobj.c.
4371 (HFILES_NO_SRCDIR): Add ada-varobj.h.
4372 (COMMON_OBS): Add ada-varobj.o.
4373
4374 2012-03-28 Joel Brobecker <brobecker@adacore.com>
4375
4376 * varobj.c (ada_value_has_mutated): Add declaration. New function.
4377 (struct language_specific): New field "value_has_mutated".
4378 (languages): Set field "value_has_mutated" in each entry of array.
4379 (varobj_value_has_mutated): New function.
4380 (varobj_udpdate): Add handling of type mutation.
4381 (value_of_root): Add handling of type mutation.
4382 (ada_value_has_mutated): New function.
4383
4384 2012-03-28 Pedro Alves <palves@redhat.com>
4385
4386 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
4387 Always supply $fr0 as 0.0 and $fr1 as 1.0.
4388
4389 2012-03-28 Tom Tromey <tromey@redhat.com>
4390
4391 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
4392 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
4393 before returning.
4394
4395 2012-03-28 Tom Tromey <tromey@redhat.com>
4396
4397 * .dir-locals.el: New file.
4398
4399 2012-03-28 Pedro Alves <palves@redhat.com>
4400
4401 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
4402
4403 2012-03-28 Joel Brobecker <brobecker@adacore.com>
4404
4405 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
4406 handling for r0.
4407
4408 2012-03-27 Pedro Alves <palves@redhat.com>
4409
4410 Eliminate struct ui_stream.
4411
4412 * ui-out.h (struct ui_stream): Delete.
4413 (ui_out_field_stream): Adjust prototype.
4414 (ui_out_stream_new, ui_out_stream_delete)
4415 (make_cleanup_ui_out_stream_delete): Delete declarations.
4416 * ui-out.c (ui_out_field_stream): Change prototype to take a
4417 ui_file instead of a ui_stream. Adjust.
4418 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
4419 (make_cleanup_ui_out_stream_delete): Delete.
4420 * breakpoint.c (print_breakpoint_location)
4421 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
4422 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
4423 * disasm.c (dump_insns): Ditto.
4424 (do_mixed_source_and_assembly, do_assembly_only): Adjust
4425 prototype.
4426 (gdb_disassembly): Use ui_file/mem_fileopen instead of
4427 ui_stream/ui_out_stream_new.
4428 * infcmd.c (print_return_value): Ditto.
4429 * osdata.c (info_osdata_command): Don't allocate a local
4430 ui_stream.
4431 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
4432 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
4433 * tracepoint.c (print_one_static_tracepoint_marker): Don't
4434 allocate a local ui_stream.
4435 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
4436 instead of ui_stream/ui_out_stream_new.
4437 (list_args_or_locals): Don't allocate a local ui_stream.
4438 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
4439 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
4440 ui_stream/ui_out_stream_new.
4441 * cli/cli-setshow.c (do_setshow_command): Ditto.
4442
4443 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
4444
4445 * arm-linux-tdep.c (arm_linux_init_abi): Call
4446 set_gdbarch_process_record. Initialize `arm_swi_record' field.
4447 * arm-tdep.c (arm_process_record): New function.
4448 (deallocate_reg_mem): New function.
4449 (decode_insn): New function.
4450 (thumb_record_branch): New function.
4451 (thumb_record_ldm_stm_swi(): New function.
4452 (thumb_record_misc): New function.
4453 (thumb_record_ld_st_stack): New function.
4454 (thumb_record_ld_st_imm_offset): New function.
4455 (thumb_record_ld_st_reg_offset(): New function.
4456 (thumb_record_add_sub_cmp_mov): New function.
4457 (thumb_record_shift_add_sub): New function.
4458 (arm_record_coproc_data_proc): New function.
4459 (arm_record_coproc): New function.
4460 (arm_record_b_bl): New function.
4461 (arm_record_ld_st_multiple): New function.
4462 (arm_record_ld_st_reg_offset): New function.
4463 (arm_record_ld_st_imm_offset): New function.
4464 (arm_record_data_proc_imm): New function.
4465 (arm_record_data_proc_misc_ld_str): New function.
4466 (arm_record_extension_space): New function.
4467 (arm_record_strx): New function.
4468 (sbo_sbz): New function.
4469 (struct insn_decode_record): New structure for arm insn record.
4470 (REG_ALLOC): New macro for reg allocations.
4471 (MEM_ALLOC): New macro for memory allocations.
4472 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
4473
4474 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
4475
4476 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
4477 (store_register): Likewise.
4478
4479 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
4480
4481 * MAINTAINERS (Write After Approval): Add myself to the list.
4482
4483 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4484
4485 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
4486 Describe also the option "auto".
4487
4488 2012-03-22 Richard Henderson <rth@redhat.com>
4489
4490 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
4491 * sparc-nat.c (sparc_xfer_wcookie): Make static.
4492
4493 2012-03-22 Richard Henderson <rth@redhat.com>
4494
4495 * jit.c (jit_read_code_entry): Compute alignment and offset of
4496 int64_t member before computing entry_size.
4497
4498 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
4499
4500 Python scripting: Add new method Value.referenced_value to
4501 gdb.Value which can dereference pointer as well as reference
4502 values.
4503 * NEWS: Add entry under 'Python scripting' about the new method
4504 Value.referenced_value on gdb.Value objects.
4505 * python/py-value.c (valpy_referenced_value): New function
4506 defining a new method on gdb.Value objects which can dereference
4507 pointer and reference values.
4508
4509 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
4510
4511 * MAINTAINERS (Write After Approval): Add myself to the list.
4512
4513 2012-03-21 Kevin Buettner <kevinb@redhat.com>
4514
4515 * symtab.c (skip_prologue_sal): Change test to check for "main()"
4516 in addition to "main".
4517
4518 2012-03-21 Joel Brobecker <brobecker@adacore.com>
4519
4520 * expression.h (op_name): Add declaration.
4521 * expprint.c (op_name): Remove declaration. Make non-static.
4522 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
4523
4524 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
4525
4526 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
4527 of struct siginfo.
4528 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
4529 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4530 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
4531 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
4532 (linux_nat_get_siginfo): Likewise.
4533 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
4534 (linux_nat_get_siginfo): Likewise.
4535 * linux-tdep.c (linux_get_siginfo_type): Likewise.
4536 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
4537 * procfs.c (gdb_siginfo_t): Likewise.
4538
4539 2012-03-21 Mike Frysinger <vapier@gentoo.org>
4540
4541 * .gitignore: Ignore more files.
4542
4543 2012-03-20 Pedro Alves <palves@redhat.com>
4544
4545 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
4546 returns.
4547
4548 2012-03-20 Yao Qi <yao@codesourcery.com>
4549
4550 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
4551 comment.
4552
4553 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
4554
4555 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
4556 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
4557 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
4558 sect_offset.
4559 * dwarf2expr.h (cu_offset, sect_offset): New types.
4560 (struct dwarf_expr_context_funcs) <dwarf_call>
4561 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
4562 sect_offset.
4563 (struct dwarf_expr_context) <len>: Improve the comment.
4564 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
4565 cu_offset and sect_offset.
4566 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
4567 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
4568 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
4569 * dwarf2loc.h: Include dwarf2expr.h.
4570 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
4571 and sect_offset.
4572 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
4573 Improve the comment.
4574 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
4575 (struct signatured_type, struct line_header, struct partial_die_info)
4576 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
4577 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
4578 (get_die_type_at_offset, create_cus_from_index)
4579 (create_signatured_type_table_from_index, dw2_get_file_names)
4580 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
4581 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
4582 (create_debug_types_hash_table, process_psymtab_comp_unit)
4583 (load_partial_comp_unit, create_all_comp_units)
4584 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
4585 (load_full_comp_unit, dwarf2_physname, read_import_statement)
4586 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
4587 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
4588 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
4589 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
4590 (find_partial_die, read_attribute_value, lookup_die_type)
4591 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
4592 (is_ref_attr): New function comment.
4593 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
4594 Use cu_offset and sect_offset.
4595 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
4596 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
4597 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
4598 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
4599 (offset_and_type_hash, offset_and_type_eq, set_die_type)
4600 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
4601 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
4602 sect_offset.
4603
4604 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
4605
4606 Code cleanup.
4607 * python/py-auto-load.c (source_section_scripts): New variable back_to.
4608 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
4609 with xfree.
4610 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
4611
4612 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
4613
4614 * NEWS: Describe new options --init-command=FILE, -ix and
4615 --init-eval-command=COMMAND, -iex.
4616 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
4617 CMDARG_INIT_COMMAND.
4618 (captured_main): New enum items OPT_IX and OPT_IEX. Add
4619 "init-command", "init-eval-command", "ix" and "iex" to the variable
4620 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
4621 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
4622 (print_gdb_help): Describe --init-command=FILE, -ix and
4623 --init-eval-command=COMMAND, -iex.
4624
4625 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
4626
4627 Code cleanup.
4628 * main.c (struct cmdarg): Move it here from main. Add more comments.
4629 (cmdarg_s, VEC (cmdarg_s)): New.
4630 (main): Move struct cmdarg from here. New variables cmdarg_vec and
4631 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
4632 Install cleanup for cmdarg_vec. Update filling for options 'x' and
4633 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
4634 of CMDARG.
4635
4636 2012-03-19 Tom Tromey <tromey@redhat.com>
4637
4638 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
4639
4640 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4641
4642 PR symtab/13777
4643 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
4644 GCC >=4.5.
4645
4646 2012-03-16 Chris January <chris.january@allinea.com>
4647
4648 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
4649 of clear.
4650
4651 2012-03-16 Chris January <chris.january@allinea.com>
4652
4653 * source.c (add_path): Use memmove instead of strcpy because the
4654 strings overlap.
4655
4656 2012-03-16 Joel Brobecker <brobecker@adacore.com>
4657
4658 * value.h (set_value_parent): Add declaration.
4659 * value.c (set_value_parent): New function.
4660 (value_address): If VALUE->PARENT is not NULL, then use it as
4661 the base address instead of VALUE->LOCATION.address.
4662 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
4663 the same as OBJ's address. Adjust V's offset accordingly.
4664 Set V's parent.
4665
4666 2012-03-16 Gary Benson <gbenson@redhat.com>
4667
4668 PR breakpoints/10738
4669 * dwarf2read.c (use_deprecated_index_sections): New global.
4670 (struct partial_die_info): New member may_be_inlined.
4671 (read_partial_die): Set may_be_inlined where appropriate.
4672 (add_partial_subprogram): Add partial symbols for partial
4673 DIEs that may be inlined.
4674 (new_symbol_full): Add inlined subroutines to the current
4675 scope.
4676 (write_psymtabs_to_index): Bump version number.
4677 (dwarf2_read_index): Read only version 6 indices unless
4678 use_deprecated_index_sections is set.
4679 * linespec.c (symbol_and_data_callback): New structure.
4680 (iterate_inline_only): New function.
4681 (iterate_over_all_matching_symtabs): New argument
4682 "include_inline". If nonzero, also call the callback for
4683 symbols representing inlined subroutines.
4684 (lookup_prefix_sym): Pass extra argument to the above.
4685 (find_function_symbols): Likewise.
4686 (add_matching_symbols_to_info): Likewise.
4687 * NEWS: Mention that GDB can now set breakpoints on inlined
4688 functions.
4689
4690 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
4691
4692 * p-typeprint.c (pascal_type_print_method_args):
4693 Fix display of parameter of methods.
4694
4695 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
4696
4697 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
4698 Add missing prototype.
4699
4700 2012-03-16 Yao Qi <yao@codesourcery.com>
4701 Jan Kratochvil <jan.kratochvil@redhat.com>
4702
4703 Fix false compilation warning.
4704 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
4705
4706 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
4707 Pedro Alves <pedro@codesourcery.com>
4708
4709 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
4710 (arm_register_g_packet_guesses): New function.
4711 (arm_gdbarch_init): Don't force a target description with
4712 registers when the executable is detected as M-profile. Instead
4713 set gdbarch->tdep->is_m. Register `g' packet guesses.
4714 (_initialize_arm_tdep): Initialize the new target description.
4715 * features/arm-with-m-fpa-layout.xml: New description.
4716 * features/arm-with-m-fpa-layout.c: New, generated.
4717
4718 2012-03-15 Joel Brobecker <brobecker@adacore.com>
4719
4720 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
4721 Update function description.
4722 (insert_bp_location): Do not wipe bl->target_info out.
4723 * mem-break.c: #include "gdb_string.h".
4724 (default_memory_insert_breakpoint): Do not call target_read_memory
4725 with a pointer to the breakpoint's shadow_contents buffer. Use
4726 a local buffer instead.
4727 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
4728
4729 2012-03-15 Tom Tromey <tromey@redhat.com>
4730
4731 * NEWS: Mention "info vtbl", not "info vtable".
4732 * cp-support.c (info_vtbl_command): Fix comment.
4733 (_initialize_cp_support): Fix text.
4734
4735 2012-03-15 Tom Tromey <tromey@redhat.com>
4736
4737 * cp-valprint.c (cp_print_value_fields): Use
4738 print_function_pointer_address for vtable slot.
4739
4740 2012-03-15 Tom Tromey <tromey@redhat.com>
4741
4742 * gnu-v3-abi.c (struct value_and_voffset): New.
4743 (hash_value_and_voffset, eq_value_and_voffset)
4744 (compare_value_and_voffset, compute_vtable_size)
4745 (print_one_vtable, gnuv3_print_vtable): New functions.
4746 (init_gnuv3_ops): Initialize 'print_vtable' field.
4747 * cp-support.c (info_vtbl_command): New function.
4748 (_initialize_cp_support): Add "info vtbl".
4749 * cp-abi.h (cplus_print_vtable): Declare.
4750 (struct cp_abi_ops) <print_vtable>: New field.
4751 * cp-abi.c (cplus_print_vtable): New function.
4752 * NEWS: Update.
4753
4754 2012-03-15 Tom Tromey <tromey@redhat.com>
4755
4756 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
4757 iterate_over_symbols.
4758
4759 2012-03-14 Doug Evans <dje@google.com>
4760
4761 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
4762 DW_OP_GNU_parameter_ref.
4763
4764 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4765
4766 Fix double prompt of 'interpreter-exec mi'.
4767 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
4768 (mi_interpreter_resume): use it.
4769 (mi_execute_command_input_handler): New function.
4770 * mi/mi-main.c (mi_execute_command): Move prompt printing to
4771 mi_execute_command_input_handler.
4772
4773 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
4774
4775 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
4776 prototype.
4777 (darwin_debug_port_info): Make static.
4778 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
4779 * machoread.c (_initialize_machoread): Add prototype.
4780 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
4781 (i386_darwin_set_control, i386_darwin_get_control)
4782 i386_darwin_dr_set_addr, i386_darwin_get_addr)
4783 i386_darwin_get_status, i386_darwin_get_control):
4784 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
4785
4786 2012-03-13 Joel Brobecker <brobecker@adacore.com>
4787
4788 * ax-gdb.c (gen_usual_unary): Remove special handling of
4789 enum and bool types.
4790
4791 2012-03-13 Joel Brobecker <brobecker@adacore.com>
4792
4793 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
4794
4795 2012-03-13 Joel Brobecker <brobecker@adacore.com>
4796
4797 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
4798
4799 2012-03-13 Chris January <chris.january@allinea.com>
4800
4801 * aix-thread.c (fill_sprs): Store the floating point registers
4802 at the correct offsets into vals.
4803
4804 2012-03-13 Doug Evans <dje@google.com>
4805
4806 * NEWS: Mention symbol-reloading has been deleted.
4807 * symfile.c (symbol_reloading): Delete.
4808 (show_symbol_reloading): Delete.
4809 (_initialize_symfile): Delete set/show symbol-reloading.
4810
4811 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
4812 read_in_chain until we have successfully read it in.
4813 (load_full_comp_unit): Ditto.
4814 (read_signatured_type): Add comment.
4815
4816 2012-03-13 Chris January <chris.january@allinea.com>
4817
4818 * stabsread.c (fix_common_block): Change type of valu argument
4819 to CORE_ADDR.
4820
4821 2012-03-13 Chris January <chris.january@allinea.com>
4822
4823 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
4824 instruction.
4825
4826 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4827
4828 * common/linux-procfs.c (linux_proc_get_int): New, from
4829 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
4830 field.
4831 (linux_proc_get_tgid): Only call linux_proc_get_int.
4832 (linux_proc_get_tracerpid): New.
4833 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
4834 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
4835 linux_proc_pid_has_state.
4836 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
4837 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
4838 (linux_ptrace_attach_warnings): New.
4839 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
4840 New declaration.
4841 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
4842 (linux_nat_attach): New variables ex, buffer, message and message_s.
4843 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
4844
4845 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4846
4847 * Makefile.in (linux-ptrace.o): New.
4848 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
4849 from linux-nat.c.
4850 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
4851 * common/linux-ptrace.c: New file.
4852 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
4853 * config/arm/linux.mh: Likewise.
4854 * config/i386/linux.mh: Likewise.
4855 * config/i386/linux64.mh: Likewise.
4856 * config/ia64/linux.mh: Likewise.
4857 * config/m32r/linux.mh: Likewise.
4858 * config/m68k/linux.mh: Likewise.
4859 * config/mips/linux.mh: Likewise.
4860 * config/pa/linux.mh: Likewise.
4861 * config/powerpc/linux.mh: Likewise.
4862 * config/powerpc/ppc64-linux.mh: Likewise.
4863 * config/powerpc/spu-linux.mh: Likewise.
4864 * config/s390/s390.mh: Likewise.
4865 * config/sparc/linux.mh: Likewise.
4866 * config/sparc/linux64.mh: Likewise.
4867 * config/xtensa/linux.mh: Likewise.
4868 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
4869 common/linux-procfs.c.
4870 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
4871
4872 2012-03-13 Hui Zhu <teawater@gmail.com>
4873 Pedro Alves <palves@redhat.com>
4874
4875 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
4876 CREATE_BREAKPOINT_FLAGS_INSERTED.
4877 (create_breakpoint_sal, create_breakpoints_sal)
4878 (base_breakpoint_create_breakpoints_sal)
4879 (tracepoint_create_breakpoints_sal)
4880 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
4881 down.
4882 (break_command_1, handle_gnu_v3_exceptions, trace_command)
4883 (ftrace_command, strace_command): Adjust.
4884 (create_tracepoint_from_upload): Pass
4885 CREATE_BREAKPOINT_FLAGS_INSERTED.
4886 * breakpoint.h (enum breakpoint_create_flags): New.
4887 (create_breakpoint): New flags parameter.
4888 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
4889 * python/py-breakpoint.c (bppy_init): Adjust.
4890 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
4891 * spu-tdep.c (spu_catch_start): Adjust.
4892
4893 2012-03-13 Pedro Alves <palves@redhat.com>
4894 Hui Zhu <teawater@gmail.com>
4895 Yao Qi <yao@codesourcery.com>
4896
4897 * remote.c (struct remote_state): New field `starting_up'.
4898 (remote_start_remote): Set and clear it.
4899 (remote_can_download_tracepoint): If starting up, return false.
4900
4901 2012-03-13 Yao Qi <yao@codesourcery.com>
4902
4903 * inferior.h (struct inferior): Remove fields any_syscall_count,
4904 syscalls_counts and total_syscalls_count. Move them to new
4905 struct catch_syscall_inferior_data in breakpoint.c.
4906 * breakpoint.c: Call DEF_VEC_I(int).
4907 (struct catch_syscall_inferior_data): New.
4908 (get_catch_syscall_inferior_data): New.
4909 (catch_syscall_inferior_data_cleanup): New.
4910 (insert_catch_syscall): Update to access data in
4911 struct catch_syscall_inferior_data.
4912 (insert_catch_syscall): Likewise.
4913 (remove_catch_syscall): Likewise.
4914 (remove_catch_syscall): Likewise.
4915 (is_syscall_catchpoint_enabled): Likewise.
4916 (add_catch_command): Likewise.
4917 (_initialize_breakpoint): Register cleanup.
4918 * breakpoint.h: Removed DEF_VEC_I(int).
4919 * dwarf2loc.c: Call DEF_VEC_I(int).
4920 * mi/mi-main.c: Likewise.
4921
4922 2012-03-12 Mark Kettenis <kettenis@gnu.org>
4923
4924 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
4925
4926 2012-03-12 Chris January <chris.january@allinea.com>
4927
4928 * aix-thread.c (_initialize_aix_thread): Add prototype.
4929 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
4930 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
4931
4932 2012-03-12 Joel Brobecker <brobecker@adacore.com>
4933
4934 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
4935 include of "amd64-nat.h".
4936
4937 2012-03-12 Tom Tromey <tromey@redhat.com>
4938
4939 * buildsym.c (record_pending_block): Now static.
4940 * buildsym.h: (record_pending_block): Remove.
4941
4942 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
4943
4944 * amd64bsd-nat.c: Include amd64bsd-nat.h.
4945
4946 2012-03-09 Tom Tromey <tromey@redhat.com>
4947
4948 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
4949 producer_is_gxx_lt_4_6>: New fields.
4950 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
4951
4952 2012-03-09 Tom Tromey <tromey@redhat.com>
4953
4954 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
4955
4956 2012-03-08 Joel Brobecker <brobecker@adacore.com>
4957
4958 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
4959 prototype.
4960
4961 2012-03-08 Joel Brobecker <brobecker@adacore.com>
4962
4963 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
4964
4965 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4966
4967 Fix -Wmissing-prototypes build.
4968 * arm-linux-nat.c (get_thread_id): Make it static.
4969 * xtensa-linux-nat.c (get_thread_id): Likewise.
4970
4971 2012-03-08 Joel Brobecker <brobecker@adacore.com>
4972
4973 * server.c (process_point_options): If a conditional expression
4974 is found, only print a message if remote_debug is nonzero.
4975
4976 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
4977
4978 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
4979 of internal error for unknown/unsupported types.
4980
4981 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4982
4983 Fix CU relative vs. absolute DIE offsets.
4984 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
4985 offset to offset_in_cu.
4986 * dwarf2read.c (process_enumeration_scope): Add CU offset to
4987 TYPE_OFFSET.
4988 (dwarf2_fetch_die_location_block): Rename parameter offset to
4989 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
4990
4991 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4992
4993 * libunwind-frame.c: Rename to ...
4994 * ia64-libunwind-tdep.c: ... here.
4995 * libunwind-frame.h: Rename to ...
4996 * ia64-libunwind-tdep.h: ... here.
4997 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
4998 ia64-libunwind-tdep.h.
4999 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
5000 * README (--with-libunwind): Rename to ...
5001 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
5002 * config.in: Regenerate.
5003 * configure: Regenerate.
5004 * configure.ac: New option --with-libunwind-ia64, make the
5005 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
5006 Remove AC_DEFINE for HAVE_LIBUNWIND.
5007 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
5008 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
5009 Rename libunwind-frame in the general comment.
5010 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
5011 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
5012 Move forward declarations inside #ifndef. Rename libunwind-frame in
5013 the general comment.
5014 * ia64-tdep.c: Rename libunwind-frame.h #include to
5015 ia64-libunwind-tdep.h.
5016 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
5017 (ia64_libunwind_descr): Rename libunwind-frame to
5018 ia64-libunwind-tdep in these function comments.
5019 * ia64-tdep.h: Rename libunwind-frame.h #include to
5020 ia64-libunwind-tdep.h.
5021 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
5022 ia64-libunwind-tdep in that data comment.
5023
5024 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5025
5026 * libunwind-frame.h (struct frame_unwind): New declaration.
5027
5028 2012-03-08 Joel Brobecker <brobecker@adacore.com>
5029
5030 * breakpoint.c (_initialize_breakpoint): Fix error in help of
5031 "set breakpoint condition-evaluation" command.
5032
5033 2012-03-08 Tristan Gingold <gingold@adacore.com>
5034
5035 * sparc-stub.c: Move to stubs/
5036 * sh-stub.c: Likewise.
5037 * m68k-stub.c: Likewise.
5038 * m32r-stub.c: Likewise.
5039 * i386-stub.c: Likewise.
5040
5041 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
5042
5043 * m68klinux-tdep.c (m68k_linux_init_abi): Register
5044 linux_get_siginfo_type.
5045
5046 * m68klinux-nat.c: Include "gdb_proc_service.h".
5047 (PTRACE_GET_THREAD_AREA): Define.
5048 (ps_get_thread_area): New function.
5049
5050 2012-03-08 Yao Qi <yao@codesourcery.com>
5051
5052 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
5053 `xsnprintf'.
5054 (remote_query_attached): Likewise.
5055 (remote_static_tracepoint_marker_at): Likewise.
5056 (remote_set_permissions): Likewise.
5057 (remote_detach_1, extended_remote_attach_1): Likewise.
5058 (send_g_packet, remote_vkill): Likewise.
5059 (extended_remote_disable_randomization): Likewise.
5060 (remote_add_target_side_condition): Likewise.
5061 (remote_insert_breakpoint): Likewise.
5062 (remote_remove_breakpoint): Likewise.
5063 (remote_insert_watchpoint): Likewise.
5064 (remote_remove_watchpoint): Likewise.
5065 (remote_insert_hw_breakpoint): Likewise.
5066 (remote_insert_hw_breakpoint): Likewise.
5067 (remote_remove_hw_breakpoint): Likewise.
5068 (remote_download_command_source): Likewise.
5069 (remote_download_tracepoint): Likewise.
5070 (remote_download_trace_state_variable): Likewise.
5071 (remote_disable_tracepoint): Likewise.
5072 (remote_trace_set_readonly_regions): Likewise.
5073 (remote_get_tracepoint_status): Likewise.
5074 (remote_trace_find): Likewise.
5075 (remote_get_trace_state_variable_value): Likewise.
5076 (remote_set_disconnected_tracing): Likewise.
5077 (remote_set_circular_trace_buffer): Likewise.
5078 (remote_get_min_fast_tracepoint_insn_len): Likewise.
5079 (remote_use_agent): Likewise.
5080 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
5081 Update callers.
5082
5083 2012-03-07 Pedro Alves <palves@redhat.com>
5084
5085 * NEWS: Mention QProgramSignals.
5086 * inferior.h (update_signals_program_target): Declare.
5087 * infrun.c: (update_signals_program_target): New.
5088 (handle_command): Update the target of the new program signals
5089 array changes.
5090 * remote.c (PACKET_QProgramSignals): New enum.
5091 (last_program_signals_packet): New global.
5092 (remote_program_signals): New.
5093 (remote_start_remote): Update the target with the program signals
5094 list.
5095 (remote_protocol_features): Add entry for QPassSignals.
5096 (remote_open_1): Free anc clear last_program_signals_packet.
5097 (init_remote_ops): Install remote_program_signals.
5098 * target.c (update_current_target): Adjust.
5099 (target_program_signals): New.
5100 * target.h (struct target_ops) <to_program_signals>: New field.
5101 (target_program_signals): Declare.
5102
5103 2012-03-07 Pedro Alves <palves@redhat.com>
5104
5105 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
5106 extensions.
5107
5108 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
5109
5110 * m68klinux-nat.c (getregs_supplies): Make static.
5111 (getfpregs_supplies): Likewise.
5112 (have_ptrace_getregs): Likewise.
5113
5114 2012-03-06 Joel Brobecker <brobecker@adacore.com>
5115
5116 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
5117 in call to get_die_type_at_offset.
5118
5119 2012-03-06 Stan Shebs <stan@codesourcery.com>
5120
5121 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
5122 * mi/mi-cmd-disas.c: Ditto.
5123 * mi/mi-cmd-env.c: Ditto.
5124 * mi/mi-cmd-file.c: Ditto.
5125 * mi/mi-cmd-stack.c: Ditto.
5126 * mi/mi-cmd-target.c: Ditto.
5127 * mi/mi-cmd-var.c: Ditto.
5128 * mi/mi-cmds.c: Ditto.
5129 * mi/mi-cmds.h: Ditto.
5130 * mi/mi-console.c: Ditto.
5131 * mi/mi-getopt.c: Ditto.
5132 * mi/mi-getopt.h: Ditto.
5133 * mi/mi-interp.c: Ditto.
5134 * mi/mi-main.c: Ditto.
5135 * mi/mi-out.c: Ditto.
5136 * mi/mi-parse.c: Ditto.
5137 * mi/mi-parse.h: Ditto.
5138 * mi/mi-symbol-cmds.c: Ditto.
5139
5140 * mi/mi-getopt.h: Move mi_opt struct up.
5141 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
5142 return.
5143 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
5144
5145 2012-03-06 Tom Tromey <tromey@redhat.com>
5146
5147 * proc-service.c (ps_pglobal_lookup): Set the current program
5148 space.
5149
5150 2012-03-06 Pedro Alves <palves@redhat.com>
5151
5152 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
5153
5154 2012-03-05 Joel Brobecker <brobecker@adacore.com>
5155
5156 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
5157
5158 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5159
5160 Code cleanup.
5161 * common/linux-osdata.c (linux_common_core_of_thread): New function
5162 comment.
5163 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
5164 call by linux_common_core_of_thread.
5165 (linux_nat_core_of_thread_1): Remove.
5166 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
5167 * linux-thread-db.c: Include linux-osdata.h.
5168 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
5169 linux_common_core_of_thread.
5170
5171 2012-03-05 Tom Tromey <tromey@redhat.com>
5172
5173 * value.c (value_primitive_field): Don't fetch contents for
5174 non-virtual bases.
5175
5176 2012-03-05 Tom Tromey <tromey@redhat.com>
5177
5178 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
5179
5180 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
5181
5182 * s390-nat.c: Include "gregset.h".
5183
5184 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5185
5186 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
5187 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
5188 (libunwind_load): New variable so_error, use it for dlerror. Try to
5189 load also LIBUNWIND_SO_7.
5190
5191 2012-03-05 Pedro Alves <palves@redhat.com>
5192
5193 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
5194 is not NULL, and remove resulting dead code.
5195
5196 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
5197
5198 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
5199 prologue to sh_analyze_prologue.
5200 (sh_analyze_prologue): Make better use of such an upper limit, and
5201 generally be more cautious about accessing memory.
5202
5203 2012-03-05 Tom Tromey <tromey@redhat.com>
5204
5205 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
5206 _initialize_ia64_hpux_tdep.
5207
5208 2012-03-05 Pedro Alves <palves@redhat.com>
5209
5210 PR gdb/13766
5211
5212 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
5213 the register state is clear, supply explicit zero, instead of
5214 marking the register unavailable.
5215
5216 2012-03-05 Tristan Gingold <gingold@adacore.com>
5217
5218 * NEWS: Mention OpenVMS ia64 new target.
5219
5220 2012-03-05 Tristan Gingold <gingold@adacore.com>
5221
5222 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
5223 (ia64_unw_accessors, ia64_unw_rse_accessors)
5224 (ia64_libunwind_descr): Declare.
5225 * ia64-vms-tdep.c: New file.
5226 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
5227 (ia64_libunwind_descr): Make them public.
5228 * configure.tgt: Add ia64-*-*vms*.
5229 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
5230 (ALLDEPFILES): Add ia64-vms-tdep.c
5231
5232 2012-03-05 Tristan Gingold <gingold@adacore.com>
5233
5234 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
5235 * remote.c (PACKET_qXfer_uib): New enum value.
5236 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
5237 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
5238 (_initialize_remote): Call add_packet_config_cmd for
5239 xfer:uib packet.
5240
5241 2012-03-05 Tristan Gingold <gingold@adacore.com>
5242
5243 * osabi.c (gdb_osabi_names): Add OpenVMS.
5244 (generic_elf_osabi_sniffer): Likewise.
5245 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
5246
5247 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5248
5249 Removed unused code.
5250 * libunwind-frame.c (libunwind_frame_unwind)
5251 (libunwind_frame_base_address): Remove.
5252 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
5253
5254 2012-03-04 Yao Qi <yao@codesourcery.com>
5255
5256 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
5257 remove trailing new line.
5258 (agent_run_command, agent_run_command): Add _ markup.
5259 (agent_capability_check): Likewise.
5260
5261 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5262
5263 * breakpoint.c (set_condition_evaluation_mode): Set
5264 CONDITION_EVALUATION_MODE unconditionally.
5265
5266 2012-03-03 Yao Qi <yao@codesourcery.com>
5267
5268 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
5269 * common/agent.h: Update declaration.
5270 * inf-child.c (inf_child_use_agent): New.
5271 (inf_child_can_use_agent): New.
5272 (inf_child_target): Initialize fields `to_use_agent'
5273 and `to_can_use_agent'.
5274 * agent.c (agent_new_objfile): New.
5275 (_initialize_agent): Add agent_new_objfile to new_objfile
5276 observer.
5277
5278 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
5279 New.
5280 (linux_target_install_ops): Initialize field
5281 `to_static_tracepoint_markers_by_strid'.
5282 * remote.c (free_current_marker): Move it to ...
5283 * tracepoint.c (free_current_marker): ... here. New.
5284 (cleanup_target_stop): New.
5285 * tracepoint.h: Declare free_current_marker.
5286 * NEWS: Add one entry about `info static-tracepoint-marker'.
5287
5288 2012-03-03 Yao Qi <yao@codesourcery.com>
5289
5290 * common/agent.c (agent_loaded_p): New.
5291 (agent_look_up_symbols): New global.
5292 * common/agent.h: Declare agent_loaded_p.
5293
5294 2012-03-03 Yao Qi <yao@codesourcery.com>
5295
5296 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
5297 (agent_capability_check, agent_capability_invalidate): New.
5298 (symbol_list): New array element.
5299 * common/agent.h (enum agent_capa): New.
5300 * target.c (target_pre_inferior): Call agent_capability_invalidate.
5301
5302 2012-03-03 Yao Qi <yao@codesourcery.com>
5303
5304 * target.h (struct target_ops) <to_use_agent>: New field.
5305 (struct target_ops) <to_can_use_agent>: New field.
5306 (target_use_agent, target_can_use_agent): New macro.
5307 * target.c (update_current_target): Update.
5308 * remote.c: New enum `PACKET_QAgent'.
5309 (remote_protocol_features): Add a new element.
5310 (remote_use_agent, remote_can_use_agent): New.
5311 (init_remote_ops): Initialize field `can_use_agent' with
5312 remote_can_use_agent. Intiailize field `use_agent' with
5313 remote_use_agent.
5314 * common/agent.c (use_agent): New global.
5315 * common/agent.h: Declare it.
5316 * tracepoint.c (info_static_tracepoint_markers_command): Add
5317 comment.
5318 * Makefile.in (SFILES): Add common/agent.c and agent.c.
5319 (COMMON_OBS): Add common/agent.o and agent.o
5320 (common-agent.o): New rule.
5321 * agent.c: New.
5322
5323 2012-03-03 Yao Qi <yao@codesourcery.com>
5324
5325 * common/agent.c: New.
5326 * common/agent.h: New.
5327 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
5328 AC_CHECK_HEADERS.
5329 * configure, configh.in: Regenerated.
5330
5331 2012-03-02 Kevin Buettner <kevinb@redhat.com>
5332
5333 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
5334 unless it exists for this architecture.
5335
5336 2012-03-02 Joel Brobecker <brobecker@adacore.com>
5337
5338 * language.h (struct language_defn): New "method" la_read_var_value.
5339 * findvar.c: #include "language.h".
5340 (default_read_var_value): Renames read_var_value. Rewrite
5341 function description.
5342 (read_var_value): New function.
5343 * value.h (default_read_var_value): Add prototype.
5344 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
5345 New functions.
5346 (ada_language_defn): Add entry for la_read_var_value.
5347 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
5348 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
5349 language_defn structures to add entry for new la_read_var_value
5350 field.
5351
5352 2012-03-02 Tom Tromey <tromey@redhat.com>
5353 Pedro Alves <palves@redhat.com>
5354
5355 PR breakpoints/13776:
5356 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
5357 breakpoints.
5358 (delete_longjmp_breakpoint_at_next_stop): New.
5359 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
5360 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
5361 before deleting the inferior. Add comments.
5362 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
5363 breakpoints immediately, but only on next stop. Move that code
5364 next to where we mark other breakpoints for deletion.
5365
5366 2012-03-02 Joel Brobecker <brobecker@adacore.com>
5367
5368 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
5369 marker.
5370 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
5371 violation.
5372
5373 2012-03-02 Pedro Alves <palves@redhat.com>
5374
5375 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
5376
5377 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
5378
5379 Fix -Wmissing-prototypes build.
5380 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
5381 * remote-sim.c (gdbsim_has_all_memory): Likewise.
5382 (gdbsim_has_memory): Likewise.
5383
5384 2012-03-02 Yao Qi <yao@codesourcery.com>
5385
5386 Fix -Wmissing-prototypes build.
5387 * charset.c (phony_iconv_open): Make static.
5388 (phony_iconv_close, phony_iconv): Likewise.
5389 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
5390 * i386-windows-nat.c (_initialize_i386_windows_nat): New
5391 prototype.
5392 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
5393 * ser-mingw.c (create_select_thread): Make static.
5394 * windows-termcap.c (tgetent): New prototype.
5395 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
5396
5397 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
5398
5399 Fix -Wmissing-prototypes build.
5400 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
5401 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
5402 (_initialize_loadable): New prototypes.
5403
5404 2012-03-02 Doug Evans <dje@google.com>
5405
5406 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
5407 abbrev table, read_comp_unit will do it.
5408
5409 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5410
5411 Fix -Wmissing-prototypes build.
5412 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
5413 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
5414 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
5415 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
5416 (_initialize_arm_symbian_tdep): New prototype.
5417 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
5418 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
5419 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
5420 static.
5421 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
5422 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
5423 prototype.
5424 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
5425 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
5426 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
5427 static.
5428 * moxie-tdep.c (moxie_process_record): Likewise.
5429 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
5430 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
5431 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
5432 (_initialize_rl78_tdep): New prototype.
5433 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
5434 (_initialize_rx_tdep): New prototype.
5435 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
5436 (_initialize_darwin_solib): New prototype.
5437 * solib-spu.c: Include solib-spu.h.
5438 (_initialize_spu_solib): New prototype.
5439 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
5440 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
5441 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
5442 (tic6x_software_single_step): Make it static.
5443 (_initialize_tic6x_tdep): New prototype.
5444
5445 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5446
5447 Fix -Wmissing-prototypes build.
5448 * cris-tdep.c (cris_can_use_hardware_watchpoint)
5449 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
5450
5451 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5452
5453 Fix -Wmissing-prototypes build.
5454 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
5455 (frv_have_stopped_data_address): Remove.
5456
5457 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5458
5459 Fix -Wmissing-prototypes build.
5460 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
5461 * sh-tdep.c: Include sh64-tdep.h.
5462 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
5463 * sh64-tdep.c: Include sh64-tdep.h.
5464 * sh64-tdep.h: New file.
5465
5466 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
5467
5468 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
5469
5470 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
5471
5472 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
5473 sp_regnum once the gdbarch_init_osabi hook has been called.
5474
5475 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
5476
5477 * mips-tdep.c (mips32_bc1_pc): New function.
5478 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
5479 BPOSGE32 and BPOSGE64 instructions.
5480 (deal_with_atomic_sequence): Likewise.
5481 (mips32_instruction_has_delay_slot): Likewise.
5482
5483 2012-03-01 Maciej W. Rozycki <macro@mips.com>
5484 Chris Dearman <chris@mips.com>
5485 Maciej W. Rozycki <macro@codesourcery.com>
5486 Joseph Myers <joseph@codesourcery.com>
5487
5488 * features/mips-dsp.xml: New file.
5489 * features/mips64-dsp.xml: New file.
5490 * features/mips-dsp-linux.xml: New file.
5491 * features/mips64-dsp-linux.xml: New file.
5492 * features/Makefile (WHICH): Add mips-dsp-linux and
5493 mips64-dsp-linux.
5494 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
5495 * features/mips-dsp-linux.c: New file.
5496 * features/mips64-dsp-linux.c: New file.
5497 * regformats/mips-dsp-linux.dat: New file.
5498 * regformats/mips64-dsp-linux.dat: New file.
5499 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
5500 registers.
5501 (mips64_linux_register_addr): Likewise.
5502 (mips64_linux_regsets_fetch_registers): Likewise.
5503 (mips64_linux_regsets_store_registers): Likewise.
5504 (mips64_linux_fetch_registers): Update call to
5505 mips64_linux_regsets_fetch_registers.
5506 (mips64_linux_store_registers): Update call to
5507 mips64_linux_regsets_store_registers.
5508 (mips_linux_read_description): Probe for DSP registers.
5509 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
5510 and initialize_tdesc_mips64_dsp_linux.
5511 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
5512 Remove padding of no longer used embedded register slots.
5513 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
5514 (MIPS_RESTART_REGNUM): Redefine enum value.
5515 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
5516 strings.
5517 (mips_tx39_reg_names): Likewise.
5518 (mips_linux_reg_names): New array of register names for Linux
5519 targets.
5520 (mips_register_name): Check for a null pointer in
5521 mips_processor_reg_names and return an empty string.
5522 (mips_register_type): Exclude embedded registers for the IRIX
5523 and Linux ABIs.
5524 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
5525 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
5526 DSP registers.
5527 (mips_stab_reg_to_regnum): Handle DSP accumulators.
5528 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
5529 (mips_gdbarch_init): Likewise. Initialize internal register
5530 indices for the Linux ABI. Use dynamic numbers to refer to
5531 registers, as applicable, while parsing the target description.
5532 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
5533
5534 2012-03-01 Joel Brobecker <brobecker@adacore.com>
5535
5536 * frame.h (read_frame_register_unsigned): Fix typo in function
5537 description.
5538
5539 2012-03-01 Pedro Alves <palves@redhat.com>
5540
5541 * jit-reader.in [!__cplusplus]
5542 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
5543
5544 2012-03-01 Pedro Alves <palves@redhat.com>
5545
5546 * configure.ac (build_warnings): Add -Wmissing-prototypes.
5547 * configure: Regenerate.
5548
5549 2012-03-01 Pedro Alves <palves@redhat.com>
5550
5551 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
5552 * breakpoint.c (create_exception_master_breakpoint, trace_command)
5553 (ftrace_command, strace_command): Make static.
5554 * d-lang.c (_initialize_d_language): Declare.
5555 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
5556 * dwarf2loc.c (_initialize_dwarf2loc):
5557 * dwarf2read.c (process_psymtab_comp_unit): Make static.
5558 * exec.c (exec_get_section_table): Make static.
5559 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
5560 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
5561 * inferior.c (remove_inferior_command, add_inferior_command)
5562 (clone_inferior_command): Make static.
5563 * linux-nat.c (linux_nat_thread_address_space)
5564 (linux_nat_core_of_thread): Make static.
5565 * linux-tdep.c (_initialize_linux_tdep): Declare.
5566 * objc-lang.c (_initialize_objc_lang): Declare.
5567 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
5568 Make static.
5569 (_initialize_opencl_language): Declare.
5570 * record.c (_initialize_record): Declare.
5571 * remote.c (demand_private_info, remote_get_tib_address)
5572 (remote_supports_cond_tracepoints)
5573 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
5574 Make static.
5575 * skip.c (_initialize_step_skip): Declare.
5576 * symtab.c (skip_prologue_using_lineinfo): Make static.
5577 * tracepoint.c (delete_trace_state_variable)
5578 (trace_variable_command, delete_trace_variable_command)
5579 (get_uploaded_tsv, find_matching_tracepoint_location)
5580 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
5581 Make static.
5582 * value.c (pack_unsigned_long): Make static.
5583 * varobj.c (varobj_ensure_python_env): Make static.
5584 * windows-tdep.c (_initialize_windows_tdep): Declare.
5585 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
5586
5587 2012-03-01 Pedro Alves <palves@redhat.com>
5588
5589 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
5590 gdbarch parameter.
5591 (linux_init_abi): Install it as has_shared_address_space gdbarch
5592 callback.
5593
5594 2012-03-01 Pedro Alves <palves@redhat.com>
5595
5596 * observer.c (observer_test_first_notification_function)
5597 (observer_test_second_notification_function)
5598 (observer_test_third_notification_function): Add declarations.
5599
5600 2012-03-01 Pedro Alves <palves@redhat.com>
5601
5602 * common/signals.c (default_target_signal_to_host)
5603 (default_target_signal_from_host): Move ...
5604 * arch-utils.c: ... here.
5605 * arch-utils.h (default_target_signal_to_host)
5606 (default_target_signal_from_host): Declare.
5607
5608 * common/signals.c (target_signal_from_command): Move ...
5609 * infrun.c: ... here.
5610 * inferior.h (target_signal_from_command): Declare.
5611 * target.h (target_signal_from_command)
5612 (default_target_signal_from_host, default_target_signal_to_host):
5613 Delete declarations.
5614
5615 * common/signals.c (_initialize_signals): Delete.
5616
5617 2012-03-01 Pedro Alves <palves@redhat.com>
5618
5619 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
5620 both __cplusplus and !__cplusplus.
5621
5622 2012-03-01 Pedro Alves <palves@redhat.com>
5623
5624 * psymtab.c (find_and_open_source): Delete declaration.
5625 * source.c (find_and_open_source): Move comment ...
5626 * source.h (find_and_open_source): ... to this new declaration.
5627
5628 2012-03-01 Pedro Alves <palves@redhat.com>
5629
5630 * inline-frame.c: Include inline-frame.h.
5631
5632 2012-03-01 Pedro Alves <palves@redhat.com>
5633
5634 * tui/tui-data.c (set_gen_win_origin): Delete.
5635 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
5636 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
5637
5638 2012-03-01 Pedro Alves <palves@redhat.com>
5639
5640 * remote.c (encode_actions): Delete declaration.
5641 * tracepoint.c (encode_actions): Make extern.
5642 * tracepoint.h (encode_actions): Declare.
5643
5644 2012-03-01 Pedro Alves <palves@redhat.com>
5645
5646 * python/py-breakpoint.c: Include python.h.
5647 * python/py-continueevent.c (create_continue_event_object): Make
5648 static.
5649 * python/py-lazy-string.c (stpy_get_type): Make static.
5650 * python/py-newobjfileevent.c (create_new_objfile_event_object):
5651 Make static.
5652 * python/py-utils.c (unicode_to_target_python_string): Make
5653 static.
5654 * python/py-value.c: Include python.h.
5655
5656 2012-03-01 Pedro Alves <palves@redhat.com>
5657
5658 * inferior.c (delete_threads_of_inferior): Delete.
5659
5660 2012-03-01 Pedro Alves <palves@redhat.com>
5661
5662 Import fallback definitions from glibc.
5663
5664 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
5665 ps_prochandle): Forward declare.
5666 (ps_err_e): Use glibc's comments.
5667 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
5668 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
5669 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
5670 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
5671 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
5672 (struct ps_prochandle): Adjust comment.
5673
5674 2012-03-01 Pedro Alves <palves@redhat.com>
5675
5676 * ada-lang.c (ada_modulus_from_name): Delete.
5677 * ada-lex.l (lexer_init): Make static.
5678
5679 2012-03-01 Pedro Alves <palves@redhat.com>
5680
5681 PR gdb/13767
5682
5683 * frame.c (read_frame_register_unsigned): New.
5684 * frame.h (read_frame_register_unsigned): Declare.
5685 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
5686 Handle it.
5687 (print_i387_control_word): New parameter `control_p'. Handle it.
5688 (i387_print_float_info): Handle unavailable float registers.
5689
5690 2012-03-01 Keith Seitz <keiths@redhat.com>
5691
5692 * linespec.c (decode_line_2): Sort the list of methods
5693 alphabetically before presenting the user with a selection
5694 menu.
5695
5696 2012-03-01 Doug Evans <dje@google.com>
5697
5698 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
5699 has_namespace_info.
5700 (dwarf2_read_abbrevs): Remove corresponding initialization.
5701
5702 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
5703
5704 * NEWS: Mention new python command class gdb.COMMAND_USER.
5705 * cli/cli-cmds.c (show_user): Print error when used on a python
5706 command.
5707 (init_cli_cmds): Update documentation strings for "show user" and
5708 "set/show max-user-call-depth" to clarify that it does not apply to
5709 python commands.
5710 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
5711 error check.
5712 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
5713 gdb python api.
5714 * top.c (execute_command): Only execute a user-defined command as a
5715 legacy macro if c->user_commands is set.
5716
5717 2012-03-01 Tom Tromey <tromey@redhat.com>
5718
5719 * valprint.h (struct generic_val_print_decorations): New.
5720 (generic_val_print): Declare.
5721 * valprint.c (generic_val_print): New function.
5722 * p-valprint.c (p_decorations): New global.
5723 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
5724 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
5725 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
5726 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
5727 * m2-valprint.c (m2_decorations): New global.
5728 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
5729 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
5730 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
5731 TYPE_CODE_ERROR>: Call generic_val_print.
5732 * f-valprint.c (f_decorations): New global.
5733 (f_val_print): Use print_function_pointer_address.
5734 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
5735 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
5736 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
5737 generic_val_print.
5738 * c-valprint.c (c_decorations): New global.
5739 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
5740 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
5741 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
5742 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
5743 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
5744 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
5745 case.
5746
5747 2012-03-01 Tom Tromey <tromey@redhat.com>
5748
5749 * valprint.c (val_print): Update.
5750 * p-valprint (pascal_val_print): Return void.
5751 * p-lang.h (pascal_val_print): Return void.
5752 * m2-valprint.c (m2_val_print): Return void.
5753 * m2-lang.h (m2_val_print): Return void.
5754 * language.h (struct language_defn) <la_val_print>: Return void.
5755 * language.c (unk_lang_val_print): Return void.
5756 * jv-valprint.c (java_val_print): Return void.
5757 * jv-lang.h (java_val_print): Return void.
5758 * f-valprint.c (f_val_print): Return void.
5759 * f-lang.h (f_val_print): Return void.
5760 * d-valprint.c (d_val_print): Return void.
5761 (dynamic_array_type): Update.
5762 * d-lang.h (d_val_print): Return void.
5763 * c-valprint.c (c_val_print): Return void.
5764 * c-lang.h (c_val_print): Return void.
5765 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
5766 void.
5767 * ada-lang.h (ada_val_print): Return void.
5768
5769 2012-03-01 Tom Tromey <tromey@redhat.com>
5770
5771 * value.h (val_print): Return void.
5772 * valprint.c (val_print): Return void.
5773
5774 2012-03-01 Tom Tromey <tromey@redhat.com>
5775
5776 * value.h (common_val_print): Return void.
5777 * valprint.c (common_val_print): Return void.
5778
5779 2012-03-01 Tom Tromey <tromey@redhat.com>
5780
5781 * value.h (value_print): Return void.
5782 * valprint.c (value_print): Return void.
5783 * p-valprint.c (pascal_value_print): Return void.
5784 * p-lang.h (pascal_value_print): Return void.
5785 * language.h (struct language_defn) <la_value_print>: Return
5786 void.
5787 * language.c (unk_lang_value_print): Return void.
5788 * jv-valprint.c (java_value_print): Return void.
5789 * jv-lang.h (java_value_print): Return void.
5790 * f-valprint.c (c_value_print): Don't declare.
5791 Include c-lang.h.
5792 * c-valprint.c (c_value_print): Return void.
5793 * c-lang.h (c_value_print): Return void.
5794 * ada-valprint.c (ada_value_print): Return void.
5795 * ada-lang.h (ada_value_print): Return void.
5796
5797 2012-03-01 Tom Tromey <tromey@redhat.com>
5798
5799 * value.c (value_primitive_field): Handle virtual base classes.
5800
5801 2012-03-01 Tom Tromey <tromey@redhat.com>
5802
5803 * gdbtypes.h (struct vbase): Remove.
5804
5805 2012-03-01 Tom Tromey <tromey@redhat.com>
5806
5807 * c-valprint.c (print_function_pointer_address): Move...
5808 * valprint.c: ... here. Make non-static.
5809 * m2-valprint.c (print_function_pointer_address): Remove.
5810 * valprint.h (print_function_pointer_address): Declare.
5811
5812 2012-03-01 Joel Brobecker <brobecker@adacore.com>
5813
5814 * NEWS: Document the fact that one can provide a condition when
5815 creating an Ada exception catchpoint.
5816
5817 2012-03-01 Tom Tromey <tromey@redhat.com>
5818
5819 * valprint.c (val_print_type_code_flags): Fix placement of
5820 trailing brace.
5821
5822 2012-03-01 Joel Brobecker <brobecker@adacore.com>
5823
5824 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
5825 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
5826 environment variable before calling update-copyright.
5827
5828 2012-03-01 Joel Brobecker <brobecker@adacore.com>
5829
5830 * gnulib/extra/update-copyright: Update to the latest from
5831 gnulib's git repository.
5832 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
5833 variable to 2 instead of 1.
5834
5835 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5836
5837 * varobj.c (c_value_of_variable): Remove dead code.
5838
5839 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5840
5841 * ada-lex.p (processId): Do not modify already encoded IDs.
5842 Update function documentation.
5843
5844 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5845
5846 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
5847 "name" with "struct symbol *name_sym".
5848 * ada-exp.y (write_var_or_type): Update call to
5849 ada_find_renaming_symbol.
5850 "name" with "struct symbol *name_sym". Adjust Implementation
5851 accordingly. Adjust the function documentation.
5852
5853 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5854
5855 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
5856 * ada-lang.c (ada_find_any_type): Add advance declaration.
5857 Make static. Replace ada_find_any_symbol by
5858 ada_find_any_type_symbol.
5859 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
5860 Improve function description. Make static.
5861 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
5862 Replace ada_find_any_symbol by ada_find_any_type_symbol.
5863
5864 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5865
5866 * ada-lang.c (struct tag_args): Delete.
5867 (ada_get_tsd_type): Function body moved up in source file.
5868 (ada_tag_name_1, ada_tag_name_2): Delete.
5869 (ada_get_tsd_from_tag): New function.
5870 (ada_tag_name_from_tsd): New function.
5871 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
5872 to determine the tag name.
5873
5874 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5875
5876 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
5877 declaration.
5878 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
5879 function.
5880
5881 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5882
5883 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
5884
5885 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5886
5887 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
5888 full searches.
5889
5890 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5891
5892 * ada-lang.c (constrained_packed_array_type): If there is a
5893 parallel XA type, use it to determine the array index type.
5894
5895 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5896
5897 * ada-valprint.c (ada_val_print_1): If our value is a reference
5898 to an array descriptor, dereference it before converting it
5899 to a simple array.
5900
5901 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5902
5903 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
5904 creating fixed value.
5905 (ada_value_ind, ada_coerce_ref, assign_component)
5906 (ada_evaluate_subexp): Remove call to unwrap_value before
5907 call to ada_to_fixed_value.
5908
5909 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5910
5911 * ada-lang.c (to_fixed_array_type): Set result's type name.
5912
5913 2012-02-29 Joel Brobecker <brobecker@adacore.com>
5914
5915 * ada-lang.c (catch_ada_exception_command_split): Add new
5916 argument cond_string. Add support for condition at end of
5917 "catch exception" commands.
5918 (ada_decode_exception_location): Add new argument cond_string.
5919 Update call to catch_ada_exception_command_split.
5920 (create_ada_exception_catchpoint): Add new argument cond_string.
5921 Set the breakpoint condition if needed.
5922 (catch_ada_exception_command): Update call to
5923 ada_decode_exception_location.
5924 (ada_decode_assert_location): Add function documentation.
5925 Add support for condition at end of "catch assert" command.
5926 (catch_assert_command): Update calls to ada_decode_assert_location
5927 and create_ada_exception_catchpoint.
5928
5929 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
5930
5931 Fix disp-step-syscall.exp: fork: single step over fork.
5932 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
5933 (i386_linux_get_syscall_number_from_regcache): ... here, new function
5934 comment, change parameters gdbarch and ptid to regcache. Remove
5935 parameter regcache, initialize gdbarch from regcache here.
5936 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
5937 New functions.
5938 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
5939 instead.
5940 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
5941 'syscall'. Make the 'int' check more strict.
5942
5943 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
5944
5945 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
5946 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
5947 (i386_linux_intx80_sysenter_syscall_record): ... here.
5948 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
5949 Use the renamed function name.
5950
5951 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
5952
5953 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
5954 * breakpoint.c (until_break_command): Likewise.
5955 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
5956 * infcall.c (call_function_by_hand): Likewise.
5957 * infcmd.c (finish_forward): Likewise.
5958 * infrun.c (insert_exception_resume_breakpoint): Likewise.
5959
5960 2012-02-28 Tristan Gingold <gingold@adacore.com>
5961
5962 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
5963 avoid variable assignments inside condition.
5964
5965 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5966
5967 Fix static analysis issue found by cppcheck.
5968 * microblaze-tdep.c (microblaze_extract_return_value): Fix
5969 uninitialized BUF for size 2.
5970
5971 2012-02-27 Chris Dearman <chris@mips.com>
5972 Nathan Froyd <froydnj@codesourcery.com>
5973 Maciej W. Rozycki <macro@codesourcery.com>
5974
5975 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
5976 (mips16_instruction_has_delay_slot): Likewise.
5977 (mips_segment_boundary): Likewise.
5978 (mips_adjust_breakpoint_address): Likewise.
5979 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
5980
5981 2012-02-27 Maciej W. Rozycki <macro@mips.com>
5982 Maciej W. Rozycki <macro@codesourcery.com>
5983
5984 * infrun.c (handle_inferior_event): Don't proceed through
5985 shared library trampolines if stepping at the machine
5986 instruction level.
5987
5988 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
5989
5990 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
5991 too.
5992
5993 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
5994
5995 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
5996 (sh_stub_unwind_sniffer): New functions.
5997 (sh_stub_unwind): New variable.
5998 (sh_gdbarch_init): Wire everything.
5999
6000 2012-02-27 Pedro Alves <palves@redhat.com>
6001
6002 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
6003 (linux_nat_post_attach_wait): Adjust to use
6004 linux_proc_pid_is_stopped.
6005 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
6006 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
6007 based on pid_is_stopped from both linux-nat.c and
6008 gdbserver/linux-low.c, and renamed.
6009
6010 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
6011
6012 * remote.c (remote_watchpoint_addr_within_range): New function.
6013 (init_remote_ops): Use it.
6014
6015 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
6016
6017 * target.h (target_watchpoint_addr_within_range): Document macro.
6018
6019 2012-02-24 Pedro Alves <palves@redhat.com>
6020
6021 * stack.c (set_last_displayed_sal): Issue internal_error instead
6022 of warning, and issue it after clearing the last displayed sal.
6023
6024 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
6025 Pedro Alves <palves@redhat.com>
6026
6027 * breakpoint.c (until_break_command): Install breakpoints after
6028 all frame manipulations.
6029
6030 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
6031
6032 * remote.c (remote_supports_cond_breakpoints): New forward
6033 declaration.
6034 (remote_add_target_side_condition): New function.
6035 (remote_insert_breakpoint): Add target-side breakpoint
6036 conditional if supported.
6037 (remote_insert_hw_breakpoint): Likewise.
6038 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
6039 hook.
6040
6041 * target.c (update_current_target): Inherit
6042 to_supports_evaluation_of_breakpoint_conditions.
6043 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
6044
6045 * target.h (struct target_ops)
6046 <to_supports_evaluation_of_breakpoint_conditions>: New field.
6047 (target_supports_evaluation_of_breakpoint_conditions): New #define.
6048
6049 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
6050 (condition_evaluation_both, condition_evaluation_auto,
6051 condition_evaluation_host, condition_evaluation_target,
6052 condition_evaluation_enums, condition_evaluation_mode_1,
6053 condition_evaluation_mode): New static globals.
6054 (translate_condition_evaluation_mode): New function.
6055 (breakpoint_condition_evaluation_mode): New function.
6056 (gdb_evaluates_breakpoint_condition_p): New function.
6057 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
6058 (mark_breakpoint_modified): New function.
6059 (mark_breakpoint_location_modified): New function.
6060 (set_condition_evaluation_mode): New function.
6061 (show_condition_evaluation_mode): New function.
6062 (bp_location_compare_addrs): New function.
6063 (get_first_location_gte_addr): New helper function.
6064 (set_breakpoint_condition): Free condition bytecode if locations
6065 has become unconditional. Call mark_breakpoint_modified (...).
6066 (condition_command): Call update_global_location_list (1) for
6067 breakpoints.
6068 (breakpoint_xfer_memory): Use is_breakpoint (...).
6069 (is_breakpoint): New function.
6070 (parse_cond_to_aexpr): New function.
6071 (build_target_condition_list): New function.
6072 (insert_bp_location): Handle target-side conditional
6073 breakpoints and call build_target_condition_list (...).
6074 (update_inserted_breakpoint_locations): New function.
6075 (insert_breakpoint_locations): Handle target-side conditional
6076 breakpoints.
6077 (bpstat_check_breakpoint_conditions): Add comment.
6078 (bp_condition_evaluator): New function.
6079 (bp_location_condition_evaluator): New function.
6080 (print_breakpoint_location): Print information on where the condition
6081 will be evaluated.
6082 (print_one_breakpoint_location): Likewise.
6083 (init_bp_location): Call mark_breakpoint_location_modified (...) for
6084 breakpoint location.
6085 (force_breakpoint_reinsertion): New functions.
6086 (update_global_location_list): Handle target-side breakpoint
6087 conditions.
6088 Reinsert locations that are already inserted if conditions have
6089 changed.
6090 (bp_location_dtor): Free agent expression bytecode.
6091 (disable_breakpoint): Call mark_breakpoint_modified (...).
6092 Call update_global_location_list (...) with parameter 1 for breakpoints.
6093 (disable_command): Call mark_breakpoint_location_modified (...).
6094 Call update_global_location_list (...) with parameter 1 for breakpoints.
6095 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
6096 (enable_command): mark_breakpoint_location_modified (...).
6097 (_initialize_breakpoint): Update documentation and add
6098 condition-evaluation breakpoint subcommand.
6099
6100 * breakpoint.h: Include ax.h.
6101 (condition_list): New data structure.
6102 (condition_status): New enum.
6103 (bp_target_info) <cond_list>: New field.
6104 (bp_location) <condition_changed, cond_bytecode>: New fields.
6105 (is_breakpoint): New prototype.
6106
6107 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
6108
6109 * remote.c (remote_state) <cond_breakpoints>: New field.
6110 (PACKET_ConditionalBreakpoints): New enum.
6111 (remote_cond_breakpoint_feature): New function.
6112 (remote_protocol_features): Add new ConditionalBreakpoints entry.
6113 (remote_supports_cond_breakpoints): New function.
6114 (_initialize_remote): Add new packet configuration for
6115 target-side conditional breakpoints.
6116
6117 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
6118
6119 * NEWS: Mention target-side conditional breakpoint support,
6120 new condition-evaluation breakpoint subcommand and remote
6121 packet extensions.
6122
6123 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
6124
6125 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
6126 number.
6127
6128 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
6129
6130 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
6131 (after_prologue): Remove.
6132
6133 2012-02-23 Tom Tromey <tromey@redhat.com>
6134
6135 * jv-valprint.c (java_val_print): Remove dead code.
6136
6137 2012-02-23 Tristan Gingold <gingold@adacore.com>
6138
6139 * ada-tasks.c (struct ada_tasks_inferior_data): Add
6140 known_tasks_element and known_tasks_length fields.
6141 (read_known_tasks_array): Change argument type. Use pointer type
6142 and number of elements from DATA. Adjust.
6143 (read_known_tasks_list): Likewise.
6144 (get_known_tasks_addr): Remove.
6145 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
6146 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
6147 type and array length. Merge former get_known_tasks_addr code.
6148
6149 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
6150
6151 PR backtrace/13716
6152 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
6153 it after set_momentary_breakpoint.
6154
6155 2012-02-22 Sterling Augustine <saugustine@google.com>
6156
6157 PR 13689:
6158 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
6159
6160 2012-02-22 Gary Benson <gbenson@redhat.com>
6161
6162 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
6163 (find_slot_in_mapped_hash): Likewise.
6164
6165 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6166
6167 PR build/13638
6168 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
6169 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
6170 * configure: Regenerate.
6171
6172 2012-02-21 Tristan Gingold <gingold@adacore.com>
6173 Pedro Alves <palves@redhat.com>
6174
6175 * ia64-tdep.c: Do not include libunwind-ia64.h.
6176 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
6177 Include libunwind-ia64.h instead of libunwind.h.
6178 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
6179 for libunwind.h existence.
6180 * configure, config.in: Regenerate.
6181
6182 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
6183
6184 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
6185 instead of value_rtti_target_type.
6186 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
6187 instead of value_rtti_target_type.
6188 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
6189 value_rtti_target_type.
6190 * valops.c (value_ind): Extract function readjust_indirect_value_type.
6191 (value_rtti_target_type): Rename to ...
6192 (value_rtti_indirect_type): ... here and make it indirect. Update
6193 function comment.
6194 * value.c (readjust_indirect_value_type): New function.
6195 (coerce_ref): Support for enclosing type setting for references
6196 with readjust_indirect_value_type.
6197 * value.h (readjust_value_type): New declaration.
6198 (value_rtti_target_type): Rename to ...
6199 (value_rtti_indirect_type): ... here.
6200
6201 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
6202
6203 * MAINTAINERS (Write After Approval): Add myself to the list.
6204
6205 2012-02-20 Doug Evans <dje@google.com>
6206
6207 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
6208 Rename objfile_p_char parameter to objfilep.
6209 (build_objfile_section_table): Result is now void. All callers
6210 updated.
6211 * objfiles.h (struct objfile): Tweak comments, whitespace.
6212 (build_objfile_section_table): Update.
6213
6214 * elfread.c (elf_symfile_segments): Fix warning text.
6215
6216 2012-02-20 Tom Tromey <tromey@redhat.com>
6217
6218 PR gdb/13498:
6219 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
6220 particular set of file names once.
6221 (dw2_map_symbol_filenames): Likewise.
6222
6223 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6224
6225 Code cleanup.
6226 * main.c (write_files): Remove the declaration.
6227 (external_editor_command): Move the declaration ...
6228 [GDBTK] (external_editor_command): ... here. Fix the comment.
6229
6230 2012-02-20 Tom Tromey <tromey@redhat.com>
6231
6232 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
6233 extraneous block.
6234
6235 2012-02-20 Tristan Gingold <gingold@adacore.com>
6236
6237 * darwin-nat.h (enum darwin_msg_state): Add comments.
6238
6239 2012-02-20 Tristan Gingold <gingold@adacore.com>
6240
6241 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
6242 value.
6243
6244 2012-20-18 Joel Brobecker <brobecker@adacore.com>
6245
6246 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
6247 between function description and implementation.
6248
6249 2012-02-17 Tom Tromey <tromey@redhat.com>
6250
6251 PR python/12070:
6252 * python/py-event.c (event_object_getset): New global.
6253 (event_object_type): Reference it.
6254 * python/py-type.c (field_object_getset): New global.
6255 (field_object_type): Reference it.
6256 * python/python-internal.h (gdb_py_generic_dict): Declare.
6257 * python/py-utils.c (gdb_py_generic_dict): New function.
6258
6259 2012-02-17 Tristan Gingold <gingold@adacore.com>
6260
6261 * solib-darwin.c (darwin_current_sos): Check magic and filetype
6262
6263 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
6264
6265 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
6266 TYPE_CALLING_CONVENTION annotation.
6267
6268 2012-02-16 Kevin Buettner <kevinb@redhat.com>
6269
6270 * MAINTAINERS: Add rx to target ISA section.
6271 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
6272 (ALLDEPFILES): Add rx-tdep.c.
6273
6274 2012-02-16 Tom Tromey <tromey@redhat.com>
6275
6276 * symfile.c (symbol_file_add_main_1): Use inferior's
6277 symfile_flags.
6278 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
6279 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
6280 inferior.
6281 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
6282 inferior.
6283 (follow_exec): Use inferior's symfile_flags.
6284 * inferior.h (struct inferior) <symfile_flags>: New field.
6285
6286 2012-02-16 Mike Frysinger <vapier@gentoo.org>
6287
6288 PR gdb/9734:
6289 * remote-sim.c (gdbsim_create_inferior): Call error() when
6290 sim_create_inferior() fails.
6291
6292 2012-02-16 Josh Matthews <josh@joshmatthews.net>
6293
6294 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
6295
6296 2012-02-16 Tom Tromey <tromey@redhat.com>
6297
6298 PR c++/13653:
6299 * thread.c (struct current_thread_cleanup) <was_removable>: New
6300 field.
6301 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
6302 (make_cleanup_restore_current_thread): Initialize new field.
6303
6304 2012-02-15 Kevin Buettner <kevinb@redhat.com>
6305
6306 * MAINTAINERS: Add rl78 to target ISA section.
6307 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
6308 (ALLDEPFILES): Add rl78-tdep.c.
6309 * NEWS: Mention rl78 as a new target.
6310
6311 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
6312
6313 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
6314 data.
6315 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
6316
6317 2012-02-15 Tom Tromey <tromey@redhat.com>
6318
6319 PR gdb/12659:
6320 * infcmd.c (registers_info): Print just the current register's
6321 name.
6322
6323 2012-02-15 Tom Tromey <tromey@redhat.com>
6324
6325 * python/py-symbol.c (sympy_value): Use _().
6326
6327 2012-02-15 Pedro Alves <palves@redhat.com>
6328
6329 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
6330 output to be like native targets'.
6331 (remote_pid_to_str): Special case the null ptid.
6332
6333 2012-02-14 Stan Shebs <stan@codesourcery.com>
6334
6335 * NEWS: Mention enable count command.
6336 * breakpoint.h (struct breakpoint): New field enable_count.
6337 * breakpoint.c (enable_breakpoint_disp): Add count argument.
6338 (enable_breakpoint): Add arg to call.
6339 (struct disp_data): New struct.
6340 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
6341 (do_map_enable_once_breakpoint): Create a struct and pass it.
6342 (do_map_enable_delete_breakpoint): Ditto.
6343 (do_map_enable_count_breakpoint): New function.
6344 (enable_count_command): New function.
6345 (bpstat_stop_status): Decrement enable_count.
6346 (print_one_breakpoint_location): Report enable count.
6347 (_initialize_breakpoint): Add enable count command.
6348
6349 2012-02-14 Kevin Buettner <kevinb@redhat.com>
6350
6351 * rl78-tdep.c (reggroups.h): Include.
6352 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
6353 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
6354 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
6355 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
6356 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
6357 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
6358 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
6359 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
6360 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
6361 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
6362 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
6363 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
6364 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
6365 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
6366 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
6367 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
6368 beginning of register list.
6369 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
6370 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
6371 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
6372 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
6373 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
6374 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
6375 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
6376 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
6377 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
6378 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
6379 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
6380 the pseudo registers. Rearrange other pseudo registers too so
6381 that the bank registers appear at the end.
6382 (rl78_register_type): Account for the fact that the byte sized
6383 bank registers are now pseudo-registers.
6384 (rl78_register_name): Rearrange the register name array. Make
6385 initial set of raw banked registers inaccessible.
6386 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
6387 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
6388 case for copying bytes back and forth between raw and pseudo
6389 versions of the banked registers. Update other cases to reflect
6390 the changed names.
6391 (rl78_return_value): Update to account for changed names of
6392 raw registers.
6393 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
6394 rl78_register_sim_regno().
6395
6396 2012-02-14 Kevin Buettner <kevinb@redhat.com>
6397
6398 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
6399 the name parameter being passed to find_pc_partial_function().
6400
6401 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6402
6403 * MAINTAINERS: Step down from being ia64 target maintainer.
6404
6405 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6406
6407 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
6408 compilation warning.
6409
6410 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6411
6412 Fix crash on loaded shlibs without loaded exec_bfd.
6413 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
6414 (set_section_command): Replace exec_bfd by p->bfd.
6415
6416 2012-02-10 Tom Tromey <tromey@redhat.com>
6417
6418 * linespec.c (decode_line_internal): Skip symtabs_from_filename
6419 when we have a C++ qualified name.
6420
6421 2012-02-10 Pedro Alves <palves@redhat.com>
6422
6423 * inferior.c (inferior_pid_to_str): New.
6424 (print_inferior, inferior_command): Use it.
6425
6426 2012-02-10 Pedro Alves <palves@redhat.com>
6427
6428 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
6429 the test CFLAGS.
6430 * configure: Regenerate.
6431
6432 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
6433
6434 * linespec.c (decode_line_internal): Fix comment correctness.
6435
6436 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
6437
6438 PR gdb/12953
6439 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
6440 * amd64bsd-nat.c: Add support for debug registers (adapted from
6441 i386bsd-nat.c).
6442 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
6443 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
6444 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
6445 (amd64bsd_dr_get_control): New functions.
6446 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
6447 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
6448 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
6449 watchpoints initialization.
6450 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
6451
6452 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6453
6454 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
6455 flds_bnds.fields.
6456 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
6457
6458 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6459
6460 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
6461
6462 2012-02-08 Joel Brobecker <brobecker@adacore.com>
6463
6464 * language.h (symbol_name_cmp_ftype): Renames
6465 symbol_name_match_p_ftype.
6466 (struct language_defn)[la_get_symbol_name_cmp]: Renames
6467 la_get_symbol_name_match_p.
6468 * ada-lang.c (ada_get_symbol_name_cmp): Renames
6469 ada_get_symbol_name_match_p. Update comment.
6470 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
6471 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
6472 Renames symbol_name_match_p. Update field type.
6473 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
6474 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
6475 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
6476 "la_get_symbol_name_cmp" in comments.
6477 * language.c: Likewise.
6478
6479 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
6480
6481 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
6482 %eflags offset.
6483 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
6484 (amd64_sol2_gregset32_reg_offs): Likewise.
6485
6486 2012-02-08 Joel Brobecker <brobecker@adacore.com>
6487
6488 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
6489 of the returned BFD is allocated by GDB.
6490
6491 2012-02-07 Tom Tromey <tromey@redhat.com>
6492
6493 PR python/12027:
6494 * python/python-internal.h (frame_object_type): Declare.
6495 * python/py-symbol.c (sympy_needs_frame): New function.
6496 (sympy_value): New function.
6497 (symbol_object_getset): Add "needs_frame".
6498 (symbol_object_methods): Add "value".
6499 * python/py-frame.c (frame_object_type): No longer static.
6500
6501 2012-02-07 Tom Tromey <tromey@redhat.com>
6502
6503 PR python/13599:
6504 * python/py-symbol.c (sympy_line): New function.
6505 (symbol_object_getset): Add "line".
6506
6507 2012-02-07 Tom Tromey <tromey@redhat.com>
6508
6509 * charset.c (find_charset_names): Check 'in' against NULL.
6510
6511 2012-02-06 Doug Evans <dje@google.com>
6512
6513 * gdbtypes.h (struct main_type): Change type of name,tag_name,
6514 and fields.name members from char * to const char *. All uses updated.
6515 (struct cplus_struct_type): Change type of fn_fieldlists.name member
6516 from char * to const char *. All uses updated.
6517 (type_name_no_tag): Update.
6518 (lookup_unsigned_typename, lookup_signed_typename): Update.
6519 * gdbtypes.c (type_name_no_tag): Change result type
6520 from char * to const char *. All callers updated.
6521 (lookup_unsigned_typename, lookup_signed_typename): Change type of
6522 name parameter from char * to const char *.
6523 * symtab.h (struct cplus_specific): Change type of demangled_name
6524 member from char * to const char *. All uses updated.
6525 (struct general_symbol_info): Change type of name and
6526 mangled_lang.demangled_name members from char * to const char *.
6527 All uses updated.
6528 (symbol_get_demangled_name, symbol_natural_name): Update.
6529 (symbol_demangled_name, symbol_search_name): Update.
6530 * symtab.c (symbol_get_demangled_name): Change result type
6531 from char * to const char *. All callers updated.
6532 (symbol_natural_name, symbol_demangled_name): Ditto.
6533 (symbol_search_name): Ditto.
6534 (completion_list_add_name): Change type of symname,sym_text,
6535 text,word parameters from char * to const char *.
6536 (completion_list_objc_symbol): Change type of sym_text,
6537 text,word parameters from char * to const char *.
6538 * ada-lang.c (find_struct_field): Change type of name parameter
6539 from char * to const char *.
6540 (encoded_ordered_before): Similarly for N0,N1 parameters.
6541 (old_renaming_is_invisible): Similarly for function_name parameter.
6542 (ada_type_name): Change result type from char * to const char *.
6543 All callers updated.
6544 * ada-lang.h (ada_type_name): Update.
6545 * buildsym.c (hashname): Change type of name parameter
6546 from char * to const char *.
6547 * buildsym.h (hashname): Update.
6548 * dbxread.c (end_psymtab): Change type of include_list parameter
6549 from char ** to const char **.
6550 * dwarf2read.c (determine_prefix): Change result type
6551 from char * to const char *. All callers updated.
6552 * f-lang.c (find_common_for_function): Change type of name, funcname
6553 parameters from char * to const char *.
6554 * f-lang.c (find_common_for_function): Update.
6555 * f-valprint.c (list_all_visible_commons): Change type of funcname
6556 parameters from char * to const char *.
6557 * gdbarch.sh (static_transform_name): Change type of name parameter
6558 and result from char * to const char *.
6559 * gdbarch.c: Regenerate.
6560 * gdbarch.h: Regenerate.
6561 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
6562 of name parameter from char * to const char *.
6563 * jv-lang.c (java_primitive_type_from_name): Ditto.
6564 (java_demangled_signature_length): Similarly for signature parameter.
6565 (java_demangled_signature_copy): Ditto.
6566 (java_demangle_type_signature): Ditto.
6567 * jv-lang.h (java_primitive_type_from_name): Update.
6568 (java_demangle_type_signature): Update.
6569 * objc-lang.c (specialcmp): Change type of a,b parameters
6570 from char * to const char *.
6571 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
6572 from char * to const char *. All callers updated.
6573 * p-lang.h (is_pascal_string_type): Update.
6574 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
6575 of name parameter from char * to const char *.
6576 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
6577 * utils.c (fprintf_symbol_filtered): Ditto.
6578 * defs.h (fprintf_symbol_filtered): Update.
6579 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
6580 * stabsread.h (end_psymtab): Update.
6581 * stack.c (find_frame_funname): Change type of funname parameter
6582 from char ** to const char **.
6583 * stack.h (find_frame_funname): Update.
6584 * typeprint.c (type_print): Change type of varstring parameter
6585 from char * to const char *.
6586 * value.h (type_print): Update.
6587 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
6588 from char * to const char *. All callers updated.
6589 (xcoff_end_psymtab): Change type of include_list parameter
6590 from char ** to const char **. All callers updated.
6591 (swap_sym): Similarly for name parameter. All callers updated.
6592 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
6593 Use xstrdup.
6594 (process_coff_symbol): Use xstrdup.
6595 * stabsread.c (stabs_method_name_from_physname): Renamed from
6596 update_method_name_from_physname. Change result type from void
6597 to char *. All callers updated.
6598 (read_member_functions): In has_destructor case, store name in objfile
6599 obstack instead of malloc space. In !has_stub case, fix mem leak.
6600
6601 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
6602
6603 * configure: Rebuild.
6604 * configure.ac: Put -L../bfd and -L../libiberty at the front of
6605 LDFLAGS.
6606
6607 2012-02-03 Kevin Buettner <kevinb@redhat.com>
6608
6609 * configure.tgt (rl78-*-elf): New target.
6610 * rl78-tdep.c: New file.
6611
6612 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6613
6614 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
6615 and continue the loop. Add QUIT statement.
6616
6617 2012-02-03 Tom Tromey <tromey@redhat.com>
6618
6619 PR gdb/13596:
6620 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
6621 bfd_lookup_symbol_from_symtab.
6622 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
6623 gdb_bfd_lookup_symbol_from_symtab.
6624
6625 2012-02-03 Joel Brobecker <brobecker@adacore.com>
6626
6627 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
6628 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
6629 symbol. Add assertion that sym2 is never NULL.
6630
6631 2012-02-02 Doug Evans <dje@google.com>
6632
6633 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
6634 "name" parameter to const char ** from char **. All callers updated.
6635 (find_pc_partial_function): Ditto.
6636 (cache_pc_function_name): Change type to const char * from char *.
6637 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
6638 (find_pc_partial_function): Update.
6639 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
6640 type of "name" parameter to const char * from char *.
6641 All uses updated.
6642 * arch-utils.c (generic_in_solib_return_trampoline): Change
6643 type of "name" parameter to const char * from char *.
6644 * arch-utils.h (generic_in_solib_return_trampoline): Update.
6645 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
6646 type of "name" parameter to const char * from char *.
6647 * gdbarch.sh (in_solib_return_trampoline): Ditto.
6648 * gdbarch.c: Regenerate.
6649 * gdbarch.h: Regenerate.
6650 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
6651 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
6652 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
6653 type of "name" parameter to const char * from char *.
6654 * skip.c (skip_function_pc): Ditto.
6655 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
6656 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
6657 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
6658 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
6659 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
6660 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
6661 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
6662 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
6663 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
6664
6665 2012-02-02 Pedro Alves <palves@redhat.com>
6666
6667 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
6668 the current inferior has no execution. Make sure the current
6669 remote process matches gdb's current inferior.
6670
6671 2012-02-02 Tom Tromey <tromey@redhat.com>
6672
6673 PR gdb/13405:
6674 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
6675 read-only memory.
6676
6677 2012-02-02 Tom Tromey <tromey@redhat.com>
6678
6679 PR gdb/9307:
6680 * symtab.c (lookup_language_this): Set block_found.
6681
6682 2012-02-01 Tom Tromey <tromey@redhat.com>
6683
6684 PR gdb/13431:
6685 * jit.c (struct jit_inferior_data): Rewrite.
6686 (struct jit_objfile_data): New.
6687 (get_jit_objfile_data): New function.
6688 (add_objfile_entry): Update.
6689 (jit_read_descriptor): Return int. Replace descriptor_addr
6690 argument with inf_data. Update. Don't call error.
6691 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
6692 descriptor here.
6693 (jit_inferior_init): Don't look up descriptor. Don't call error.
6694 (jit_reset_inferior_data_and_breakpoints)
6695 (jit_inferior_created_observer): Remove.
6696 (jit_inferior_exit_hook): Update.
6697 (jit_executable_changed_observer): Remove.
6698 (jit_event_handler): Update.
6699 (free_objfile_data): Reset inferior data if needed.
6700 (_initialize_jit): Update.
6701
6702 2012-02-01 Tom Tromey <tromey@redhat.com>
6703
6704 * jit.c (bfd_open_from_target_memory): Move higher in file.
6705
6706 2012-02-01 Tristan Gingold <gingold@adacore.com>
6707
6708 * libunwind-frame.c (libunwind_load): Display message if dlopen
6709 failed.
6710
6711 2012-02-01 Gary Benson <gbenson@redhat.com>
6712
6713 * symtab.h (symbol_found_callback_ftype): New typedef.
6714 (iterate_over_symbols): Use the above.
6715 * symtab.c (iterate_over_symbols): Likewise.
6716 * language.h (language_defn->la_iterate_over_symbols): Likewise.
6717 * ada-lang.c (ada_iterate_over_symbols): Likewise.
6718 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
6719 (iterate_name_matcher): Document return values.
6720 (collect_one_symbol): Likewise.
6721 (collect_function_symbols): Likewise.
6722 (collect_symbols): Likewise.
6723
6724 2012-02-01 Tom Tromey <tromey@redhat.com>
6725
6726 * ada-lang.c (resolve_subexp): Update.
6727 (ada_lookup_symbol_list): Add 'full_search' argument.
6728 (ada_iterate_over_symbols): Pass 0 as full_search argument to
6729 ada_lookup_symbol_list.
6730 (ada_lookup_encoded_symbol): Update.
6731 (get_var_value): Update.
6732 * ada-exp.y (block_lookup): Update.
6733 (write_var_or_type): Update.
6734 (write_name_assoc): Update.
6735 * ada-lang.h (ada_lookup_symbol_list): Update.
6736
6737 2012-01-31 Tom Tromey <tromey@redhat.com>
6738
6739 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
6740 comment.
6741
6742 2012-01-31 Doug Evans <dje@google.com>
6743
6744 * symtab.h: Remove outdated comment.
6745 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
6746
6747 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
6748
6749 Fix build error in Darwin port.
6750 * i386-darwin-nat.c: Include i386-nat.h.
6751
6752 2012-01-30 Tom Tromey <tromey@redhat.com>
6753
6754 PR breakpoints/13568:
6755 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
6756 argument. Check for recursive includes.
6757 (dwarf_decode_macros): Create an include hash.
6758
6759 2012-01-30 Michael Eager <eager@eagercon.com>
6760
6761 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
6762 * ppc-linux-tdep.c: Include glibc-tdep.h.
6763 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
6764 (powerpc_linux_in_plt_stub): New function.
6765 (powerpc_linux_in_dynsym_resolve_code): New function.
6766 (ppc_skip_trampoline_code): New function.
6767 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
6768 Use glibc_skip_solib_resolver.
6769
6770 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6771
6772 Code cleanup: Make 1440 bytes of data segment read-only.
6773 * arch-utils.c (endian_enum): Make it const char *const [].
6774 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
6775 Likewise.
6776 * breakpoint.c (always_inserted_enums): Likewise.
6777 * cli/cli-cmds.c (script_ext_enums): Likewise.
6778 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
6779 enumlist parameter const char *const *.
6780 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
6781 const char *const *.
6782 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
6783 parameter const char *const *.
6784 * cris-tdep.c (cris_modes): Make it const char *const [].
6785 * filesystem.c (target_file_system_kinds): Likewise.
6786 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
6787 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
6788 (can_use_displaced_stepping_enum, scheduler_enums)
6789 (exec_direction_names): Likewise.
6790 * language.c (_initialize_language): Make the type_or_range_names and
6791 case_sensitive_names variables const char *const [].
6792 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
6793 * python/python.c (python_excp_enums): Likewise.
6794 * remote.c (interrupt_sequence_modes): Likewise.
6795 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
6796 * serial.c (logbase_enums): Likewise.
6797 * sh-tdep.c (sh_cc_enum): Likewise.
6798 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
6799 Likewise.
6800 * symtab.c (multiple_symbols_modes): Likewise.
6801 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
6802 Likewise.
6803 * utils.c (internal_problem_modes): Likewise.
6804
6805 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
6806
6807 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
6808 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
6809 result.
6810
6811 2012-01-27 Doug Evans <dje@google.com>
6812
6813 * configure.ac (with_python): Fix absolute path handling for win32.
6814 * configure: Regenerate.
6815
6816 2012-01-26 Doug Evans <dje@google.com>
6817
6818 * symtab.c: Whitespace cleanup, no code changes.
6819
6820 * symtab.c (lookup_symbol_in_language): Improve comment.
6821 (lookup_symbol_aux): Fix comment.
6822
6823 * psymtab.c (add_psymbol_to_list): Result is now "void".
6824 * psympriv.h (add_psymbol_to_list): Update.
6825
6826 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
6827
6828 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6829
6830 Do not open script filenames twice.
6831 * cli/cli-cmds.c (source_script_from_stream): Pass to
6832 source_python_script also STREAM.
6833 * python/py-auto-load.c (source_section_scripts): Pass to
6834 source_python_script_for_objfile also STREAM.
6835 (auto_load_objfile_script): Pass to source_python_script_for_objfile
6836 also INPUT.
6837 * python/python-internal.h (source_python_script_for_objfile): New
6838 parameter file, rename parameter file to filename.
6839 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
6840 instead if !_WIN32. Update the function comment.
6841 (source_python_script, source_python_script_for_objfile)
6842 (source_python_script): New parameter file, rename parameter file to
6843 filename. Pass FILENAME to python_run_simple_file.
6844 * python/python.h (source_python_script): New parameter file, rename
6845 parameter file to filename.
6846
6847 2012-01-26 Pedro Alves <palves@redhat.com>
6848
6849 * corelow.c (core_has_fake_pid): Delete.
6850 (core_close): Delete references to `core_has_fake_pid'.
6851 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
6852 (core_open): Delete references to `core_has_fake_pid'.
6853 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
6854 the removed global.
6855
6856 2012-01-26 Joel Brobecker <brobecker@adacore.com>
6857
6858 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
6859 Remove language parameter from name_matcher. Adjust the comment.
6860 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
6861 Remove language parameter.
6862 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
6863 * linespec.c (iterate_name_matcher): Likewise.
6864 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
6865 name_matcher. Adjust call accordingly.
6866 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
6867 (maintenance_check_symtabs): Adjust type of parameter "fun".
6868 * psymtab.h (maintenance_check_symtabs): Likewise.
6869
6870 2012-01-26 Joel Brobecker <brobecker@adacore.com>
6871
6872 * language.h (symbol_name_match_p_ftype): New typedef.
6873 (struct language_defn): Replace field la_symbol_name_compare
6874 by la_get_symbol_name_match_p.
6875 * ada-lang.c (ada_get_symbol_name_match_p): New function.
6876 (ada_language_defn): Use it.
6877 * linespec.c (struct symbol_matcher_data): New type.
6878 (iterate_name_matcher): Rewrite.
6879 (iterate_over_all_matching_symtabs): Pass a pointer to
6880 a symbol_matcher_data struct to expand_symtabs_matching
6881 instead of just the lookup name.
6882 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
6883 opencl-lang.c, p-lang.c, language.c: Delete field
6884 la_symbol_name_compare, and replace by NULL for new field
6885 la_get_symbol_name_match_p.
6886 * symfile.h (struct quick_symbol_functions): Update comment.
6887
6888 2012-01-25 Tom Tromey <tromey@redhat.com>
6889
6890 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
6891 dereferencing.
6892
6893 2012-01-24 Tom Tromey <tromey@redhat.com>
6894
6895 PR symtab/12406:
6896 * solib.c (update_solib_list): Update the program space's
6897 added_solibs and deleted_solibs fields.
6898 * progspace.h (struct program_space) <added_solibs,
6899 deleted_solibs>: New fields.
6900 (clear_program_space_solib_cache): Declare.
6901 * progspace.c (release_program_space): Call
6902 clear_program_space_solib_cache.
6903 (clear_program_space_solib_cache): New function.
6904 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
6905 bpstat_stop_status. Use handle_solib_event.
6906 * breakpoint.c: Include gdb_regex.h.
6907 (print_solib_event): New function.
6908 (bpstat_print): Use print_solib_event.
6909 (bpstat_stop_status): Add special case for bp_shlib_event.
6910 (handle_solib_event): New function.
6911 (bpstat_what): Use handle_solib_event.
6912 (struct solib_catchpoint): New.
6913 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
6914 (breakpoint_hit_catch_solib, check_status_catch_solib)
6915 (print_it_catch_solib, print_one_catch_solib)
6916 (print_mention_catch_solib, print_recreate_catch_solib): New
6917 functions.
6918 (catch_solib_breakpoint_ops): New global.
6919 (catch_load_or_unload, catch_load_command_1)
6920 (catch_unload_command_1): New functions.
6921 (internal_bkpt_check_status): Add special case for
6922 bp_shlib_event.
6923 (internal_bkpt_print_it): Use print_solib_event.
6924 (initialize_breakpoint_ops): Initialize
6925 catch_solib_breakpoint_ops.
6926 (_initialize_breakpoint): Register "catch load" and "catch
6927 unload".
6928 * breakpoint.h (handle_solib_event): Declare.
6929 * NEWS: Add entry for "catch load" and "catch unload".
6930
6931 2012-01-24 Tom Tromey <tromey@redhat.com>
6932
6933 * ada-lang.c: Include gdb_vecs.h.
6934 * charset.c: Include gdb_vecs.h.
6935 * tracepoint.h: Include gdb_vecs.h.
6936 * gdb_vecs.h: New file.
6937
6938 2012-01-24 Pedro Alves <pedro@codesourcery.com>
6939
6940 * breakpoint.c (breakpoint_hit_catch_fork)
6941 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
6942 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
6943 * infrun.c (inferior_has_forked, inferior_has_vforked)
6944 (inferior_has_execd, inferior_has_called_syscall): Delete.
6945 (handle_syscall_event): Get syscall_number from the execution
6946 control state's wait status.
6947 (wait_for_inferior): Don't clear syscall_number.
6948
6949 2012-01-24 Pedro Alves <palves@redhat.com>
6950
6951 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
6952 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
6953 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
6954 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
6955 `ws' parameter.
6956 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
6957 false for events other than TARGET_SIGNAL_TRAP.
6958 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
6959 Add `ws' parameter.
6960 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
6961 events other than TARGET_SIGNAL_TRAP.
6962 (tracepoint_breakpoint_hit): Add `ws' parameter.
6963 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
6964 parameter.
6965 (bpstat_stop_status): Same.
6966 (pc_at_non_inline_function): Same.
6967 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
6968 to pass the current event's waitstatus to bpstat_stop_status
6969 and pc_at_non_inline_function.
6970
6971 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
6972
6973 Code cleanup.
6974 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
6975 Update the function comment for it.
6976 (source_script_with_search): Call make_cleanup_fclose for STREAM.
6977 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
6978 for STREAM.
6979
6980 2012-01-24 Pedro Alves <palves@redhat.com>
6981
6982 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
6983 outside `bs->stop' block.
6984 (bpstat_what): Rework bp_shlib_event handling.
6985 (internal_bkpt_check_status): If the breakpoint is a
6986 bp_shlib_event, then set bs->stop and bs->print if
6987 stop_on_solib_events is set.
6988
6989 2012-01-24 Gary Benson <gbenson@redhat.com>
6990
6991 Delete #if 0'd out code.
6992 * stack.c (print_frame_label_vars): Remove.
6993 (catch_info): Likewise.
6994 (_initialize_stack): Remove "info catch" command.
6995 * NEWS: Mention the above.
6996
6997 2012-01-24 Pedro Alves <palves@redhat.com>
6998
6999 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
7000 it.
7001 (remote_notice_new_inferior): If the remote end doesn't support
7002 the multiprocess extensions, then the PID is fake.
7003 (add_current_inferior_and_thread): New.
7004 (remote_start_remote): Use it.
7005 (extended_remote_attach_1): Adjust.
7006 (extended_remote_create_inferior_1): Use
7007 add_current_inferior_and_thread.
7008
7009 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7010
7011 Fix watchpoints to be specific for each inferior.
7012 * breakpoint.c (watchpoint_in_thread_scope): Verify also
7013 current_program_space.
7014 * i386-nat.c (i386_inferior_data_cleanup): New.
7015 (i386_inferior_data_get): Replace variable inf_data_local by an
7016 inferior_data call.
7017 (i386_use_watchpoints): Initialize i386_inferior_data.
7018 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
7019 specific iterate_over_lwps.
7020
7021 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7022
7023 Fix watchpoints across inferior fork.
7024 * amd64-linux-nat.c (update_debug_registers_callback): Update the
7025 comment for linux_nat_iterate_watchpoint_lwps.
7026 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
7027 linux_nat_iterate_watchpoint_lwps.
7028 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
7029 * i386-linux-nat.c (update_debug_registers_callback): Update the
7030 comment for linux_nat_iterate_watchpoint_lwps.
7031 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
7032 linux_nat_iterate_watchpoint_lwps.
7033 (i386_linux_prepare_to_resume): New comment on Linux kernel.
7034 * i386-nat.c: Include inferior.h.
7035 (dr_mirror): Remove.
7036 (i386_inferior_data, struct i386_inferior_data)
7037 (i386_inferior_data_get): New.
7038 (i386_debug_reg_state): Use i386_inferior_data_get.
7039 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
7040 (i386_insert_watchpoint, i386_remove_watchpoint)
7041 (i386_stopped_data_address, i386_insert_hw_breakpoint)
7042 (i386_remove_hw_breakpoint): New variable state, use
7043 i386_debug_reg_state instead of DR_MIRROR.
7044 * linux-nat.c (delete_lwp): New declaration.
7045 (num_lwps): Move here from downwards.
7046 (delete_lwp_cleanup): New.
7047 (linux_child_follow_fork): Create new child_lp, call
7048 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
7049 PTRACE_DETACH.
7050 (num_lwps): Move upwards.
7051 (linux_nat_iterate_watchpoint_lwps): New.
7052 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
7053 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
7054
7055 2012-01-24 Joel Brobecker <brobecker@adacore.com>
7056
7057 GDB 7.4 released.
7058
7059 2012-01-23 Pedro Alves <palves@redhat.com>
7060
7061 * top.c (caution): Rename to ...
7062 (confirm): ... this.
7063 (show_caution): Rename to ...
7064 (show_confirm): ... this.
7065 (quit_cover): Adjust.
7066 (init_main): Adjust.
7067 * top.h (caution): Rename to ...
7068 (confirm): ... this.
7069 * utils.c (internal_vproblem, defaulted_query): Adjust.
7070
7071 2012-01-23 Pedro Alves <palves@redhat.com>
7072
7073 * top.c (caution): Update comment.
7074 (execute_command): Don't consider the current value of `caution'.
7075
7076 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
7077
7078 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
7079
7080 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
7081
7082 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
7083 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
7084 * target.c (target_fileio_pwrite): Remove buffer address from
7085 debug output.
7086 (target_fileio_pread): Likewise.
7087
7088 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7089
7090 * NEWS: Document remote "info proc" and "generate-core-file".
7091
7092 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7093
7094 * gdbarch.sh (find_memory_regions): New callback.
7095 * gdbarch.c, gdbarch.h: Regenerate.
7096
7097 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
7098 callback before falling back to target method.
7099
7100 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
7101 (linux_target_install_ops): No longer install it.
7102
7103 * linux-tdep.c (linux_find_memory_regions): New function.
7104 (linux_init_abi): Install it.
7105
7106 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7107
7108 * gdbarch.sh (make_corefile_notes): New architecture callback.
7109 * gdbarch.c: Regenerate.
7110 * gdbarch.h: Likewise.
7111
7112 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
7113 before target_make_corefile_notes. If NULL is returned, the
7114 target does not support core file generation.
7115
7116 * linux-nat.c: Include "linux-tdep.h".
7117 (find_signalled_thread, find_stop_signal): Remove.
7118 (linux_nat_do_thread_registers): Likewise.
7119 (struct linux_nat_corefile_thread_data): Likewise.
7120 (linux_nat_corefile_thread_callback): Likewise.
7121 (iterate_over_spus): Likewise.
7122 (struct linux_spu_corefile_data): Likewise.
7123 (linux_spu_corefile_callback): Likewise.
7124 (linux_spu_make_corefile_notes): Likewise.
7125 (linux_nat_collect_thread_registers): New function.
7126 (linux_nat_make_corefile_notes): Replace contents by call to
7127 linux_make_corefile_notes passing linux_nat_collect_thread_registers
7128 as native-only callback.
7129
7130 * linux-tdep.h: Include "bfd.h".
7131 (struct regcache): Add forward declaration.
7132 (linux_collect_thread_registers_ftype): New typedef.
7133 (linux_make_corefile_notes): Add prototype.
7134 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
7135 "regset.h", and "elf-bfd.h".
7136 (find_signalled_thread, find_stop_signal): New functions.
7137 (linux_spu_make_corefile_notes): Likewise.
7138 (linux_collect_thread_registers): Likewise.
7139 (struct linux_corefile_thread_data): New data structure.
7140 (linux_corefile_thread_callback): New funcion.
7141 (linux_make_corefile_notes): Likewise.
7142 (linux_make_corefile_notes_1): Likewise.
7143 (linux_init_abi): Install it.
7144
7145 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7146
7147 * gdbarch.sh (info_proc): New callback.
7148 * gdbarch.c, gdbarch.h: Regenerate.
7149
7150 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
7151 before falling back to the target info_proc callback.
7152
7153 * linux-nat.c: Do not include "cli/cli-utils.h".
7154 (linux_nat_info_proc): Remove.
7155 (linux_target_install_ops): No longer install it.
7156
7157 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
7158 (read_mapping): New function.
7159 (linux_info_proc): Likewise.
7160 (linux_init_abi): Install it.
7161
7162 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7163
7164 * defs.h (enum info_proc_what): Moved here from linux-nat.c
7165 * infcmd.c: (info_proc_cmd_1): New function.
7166 (info_proc_cmd): New function, moved here from equivalent routine
7167 orignally in linux-nat.c.
7168 (info_proc_cmd_mappings): Likewise.
7169 (info_proc_cmd_stat): Likewise.
7170 (info_proc_cmd_status): Likewise.
7171 (info_proc_cmd_cwd): Likewise.
7172 (info_proc_cmd_cmdline): Likewise.
7173 (info_proc_cmd_exe): Likewise.
7174 (info_proc_cmd_all): Likewise.
7175 (_initialize_infcmd): Install "info proc" command and subcommands.
7176
7177 * target.h (struct target_ops): Add to_info_proc.
7178 (target_info_proc): Add prototype.
7179 * target.c (target_info_proc): New function.
7180
7181 * procfs.c (procfs_info_proc): Add prototype.
7182 (info_proc_cmd): Rename into ...
7183 (procfs_info_proc): ... this. Update argument types as appropriate
7184 for a to_info_proc implementation. Handle "what" argument.
7185 (procfs_target): Install procfs_info_proc.
7186 (_initialize_procfs): No longer install "info proc" command.
7187
7188 * linux-nat.c: (enum info_proc_what): Remove.
7189 (linux_nat_info_proc_cmd_1): Rename into ...
7190 (linux_nat_info_proc): ... this. Update argument types as appropriate
7191 for a to_info_proc implementation.
7192 (linux_nat_info_proc_cmd): Remove.
7193 (linux_nat_info_proc_cmd_mappings): Likewise.
7194 (linux_nat_info_proc_cmd_stat): Likewise.
7195 (linux_nat_info_proc_cmd_status): Likewise.
7196 (linux_nat_info_proc_cmd_cwd): Likewise.
7197 (linux_nat_info_proc_cmd_cmdline): Likewise.
7198 (linux_nat_info_proc_cmd_exe): Likewise.
7199 (linux_nat_info_proc_cmd_all): Likewise.
7200 (linux_target_install_ops): Install linux_nat_info_proc.
7201 (_initialize_linux_nat): No longer install "info proc" command
7202 and subcommands.
7203
7204 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
7205
7206 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
7207 * config.in, configure: Regenerate.
7208
7209 * target.h (struct target_ops): Add to_fileio_readlink.
7210 (target_fileio_readlink): Add prototype.
7211 * target.c (target_fileio_readlink): New function.
7212
7213 * inf-child.c: Conditionally include <sys/param.h>.
7214 (inf_child_fileio_readlink): New function.
7215 (inf_child_target): Install it.
7216
7217 * remote.c (PACKET_vFile_readlink): New enum value.
7218 (remote_hostio_readlink): New function.
7219 (init_remote_ops): Install it.
7220 (_initialize_remote): Handle vFile:readlink packet type.
7221
7222 2012-01-20 Pedro Alves <palves@redhat.com>
7223 Ulrich Weigand <ulrich.weigand@linaro.org>
7224
7225 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
7226 * config.in, configure: Regenerate.
7227
7228 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
7229 to_fileio_pread, to_fileio_close, to_fileio_unlink.
7230 (target_fileio_open): Add prototype.
7231 (target_fileio_pwrite): Likewise.
7232 (target_fileio_pread): Likewise.
7233 (target_fileio_close): Likewise.
7234 (target_fileio_unlink): Likewise.
7235 (target_fileio_read_alloc): Likewise.
7236 (target_fileio_read_stralloc): Likewise.
7237
7238 * target.c: Include "gdb/fileio.h".
7239 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
7240 (default_fileio_target): New function.
7241 (target_fileio_open): Likewise.
7242 (target_fileio_pwrite): Likewise.
7243 (target_fileio_pread): Likewise.
7244 (target_fileio_close): Likewise.
7245 (target_fileio_unlink): Likewise.
7246 (target_fileio_close_cleanup): Likewise.
7247 (target_fileio_read_alloc_1): Likewise.
7248 (target_fileio_read_alloc): Likewise.
7249 (target_fileio_read_stralloc): Likewise.
7250
7251 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
7252 <fcntl.h>, and <unistd.h>.
7253 (inf_child_fileio_open_flags_to_host): New function.
7254 (inf_child_errno_to_fileio_error): Likewise.
7255 (inf_child_fileio_open): Likewise.
7256 (inf_child_fileio_pwrite): Likewise.
7257 (inf_child_fileio_pread): Likewise.
7258 (inf_child_fileio_close): Likewise.
7259 (inf_child_fileio_unlink): Likewise.
7260 (inf_child_target): Install to_fileio routines.
7261
7262 * remote.c (init_remote_ops): Install to_fileio routines.
7263
7264 2012-01-20 Pedro Alves <palves@redhat.com>
7265 Ulrich Weigand <ulrich.weigand@linaro.org>
7266
7267 * remote.c (remote_multi_process_p): Only check for multi-process
7268 protocol feature, do not check for extended protocol.
7269 (remote_supports_multi_process): Check for extended protocol here.
7270 (set_general_process): Likewise.
7271 (extended_remote_kill): Likewise.
7272 (remote_pid_to_str): Likewise.
7273 (remote_query_supported): Always query multiprocess mode.
7274
7275 2012-01-20 Pedro Alves <palves@redhat.com>
7276 Ulrich Weigand <ulrich.weigand@linaro.org>
7277
7278 * inferior.h (struct inferior): Add fake_pid_p.
7279 * inferior.c (exit_inferior_1): Clear fake_pid_p.
7280 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
7281 magic_null_ptid since the remote side doesn't provide a real PID.
7282
7283 2012-01-19 Tom Tromey <tromey@redhat.com>
7284
7285 * NEWS: Combine the two Python sections.
7286
7287 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7288
7289 * target.h (target_close): Update comment on the target's unpush state.
7290
7291 2012-01-19 Pedro Alves <palves@redhat.com>
7292
7293 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
7294 linux_nat_async directly instead of going through the target
7295 vector.
7296 * target.c (unpush_target): Close target after unpushing it, not
7297 before.
7298
7299 2012-01-19 Gary Benson <gbenson@redhat.com>
7300
7301 * mdebugread.c (sort_blocks): Replace integer constants with ones
7302 derived from FIRST_LOCAL_BLOCK.
7303
7304 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
7305 Jan Kratochvil <jan.kratochvil@redhat.com>
7306
7307 PR gdb/9538
7308 * symfile.c (find_separate_debug_file): New function.
7309 (terminate_after_last_dir_separator): Likewise.
7310 (find_separate_debug_file_by_debuglink): Also try realpath.
7311 * configure.ac (AC_CHECK_FUNCS): Add lstat.
7312 * configure: Regenerate.
7313 * config.in: Regenerate.
7314
7315 2012-01-18 Doug Evans <dje@google.com>
7316
7317 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
7318 (main.o): Remove rule.
7319 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
7320 (--with-sysroot): Rewrite.
7321 * configure: Regenerate.
7322 * config.in: Regenerate.
7323
7324 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
7325
7326 * parse.c (initialize_expout): New function.
7327 (reallocate_expout): Likewise.
7328 (parse_exp_in_context): Use `initialize_expout' and
7329 `reallocate_expout' when appropriate.
7330
7331 2012-01-18 Pedro Alves <palves@redhat.com>
7332
7333 * record.c (struct record_breakpoint, record_breakpoint_p)
7334 (record_breakpoints): New.
7335 (record_insert_breakpoint, record_remove_breakpoint): Manage
7336 record breakpoints list. Only remove breakpoints from the
7337 inferior if they had been inserted there in the first place.
7338
7339 2012-01-17 Doug Evans <dje@google.com>
7340
7341 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
7342 if we know we don't have a file name to look for.
7343
7344 2012-01-17 Pedro Alves <palves@redhat.com>
7345
7346 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
7347 the frame's stop reason is UNWIND_UNAVAILABLE.
7348
7349 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7350
7351 Fix compilation error.
7352 * m2-exp.y (yyerror): Use ANSI C prototype.
7353
7354 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
7355
7356 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
7357 (growbuf_by_size): Likewise.
7358 (yyerror): Likewise.
7359 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
7360 (modblock): Remove variable (was #if 0'ed).
7361 (parse_number): Convert prototype from K&R to ANSI C.
7362 (yyerror): Likewise.
7363 * objc-exp.y (parse_number): Likewise.
7364 (yyerror): Likewise.
7365 (yylex): Remove #if 0'ed code.
7366 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
7367 (yyerror): Likewise.
7368
7369 2012-01-16 Tom Tromey <tromey@redhat.com>
7370
7371 * NEWS: Add item.
7372 * symtab.h (compare_filenames_for_search): Declare.
7373 * symtab.c (compare_filenames_for_search): New function.
7374 (iterate_over_some_symtabs): Use it.
7375 * symfile.h (struct quick_symbol_functions)
7376 <map_symtabs_matching_filename>: Change spec.
7377 * psymtab.c (partial_map_symtabs_matching_filename): Use
7378 compare_filenames_for_search. Update for new spec.
7379 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
7380 compare_filenames_for_search. Update for new spec.
7381 * breakpoint.c (clear_command): Use compare_filenames_for_search.
7382
7383 2012-01-16 Tom Tromey <tromey@redhat.com>
7384
7385 PR python/13281:
7386 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
7387 (struct main_type) <flag_flag_enum>: New field.
7388 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
7389 * NEWS: Add entries.
7390 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
7391 enums.
7392 * python/lib/gdb/printing.py (_EnumInstance): New class.
7393 (FlagEnumerationPrinter): Likewise.
7394
7395 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
7396
7397 * breakpoint.c (create_sals_from_address_default): New function.
7398 (create_breakpoints_sal_default): Likewise.
7399 (decode_linespec_default): Likewise.
7400 (is_marker_spec): Removed.
7401 (strace_marker_p): New function.
7402 (init_breakpoint_sal): Using `strace_marker_p' instead of
7403 `is_marker_spec'.
7404 (create_breakpoint): Call method `create_sals_from_address' from
7405 breakpoint_ops, replacing code that created SALs conditionally
7406 on the type of the breakpoint. Call method `create_breakpoints_sal',
7407 replacing code that created breakpoints conditionally on the type
7408 wanted.
7409 (base_breakpoint_create_sals_from_address): New function.
7410 (base_breakpoint_create_breakpoints_sal): Likewise.
7411 (base_breakpoint_decode_linespec): Likewise.
7412 (base_breakpoint_ops): Add methods
7413 `base_breakpoint_create_sals_from_address',
7414 `base_breakpoint_create_breakpoints_sal' and
7415 `base_breakpoint_decode_linespec'.
7416 (bkpt_create_sals_from_address): New function.
7417 (bkpt_create_breakpoints_sal): Likewise.
7418 (bkpt_decode_linespec): Likewise.
7419 (tracepoint_create_sals_from_address): Likewise.
7420 (tracepoint_create_breakpoints_sal): Likewise.
7421 (tracepoint_decode_linespec): Likewise.
7422 (strace_marker_create_sals_from_address): Likewise.
7423 (strace_marker_create_breakpoints_sal): Likewise.
7424 (strace_marker_decode_linespec): Likewise.
7425 (strace_marker_breakpoint_ops): New variable.
7426 (addr_string_to_sals): Remove `marker_spec'. Call method
7427 `decode_linespec' from breakpoint_ops, replacing code that decoded
7428 an address string into a SAL. Use `strace_marker_p' instead of
7429 `marker_spec'.
7430 (strace_command): Decide whether we are dealing with a static
7431 tracepoint with marker or not. Use the appropriate breakpoint_ops.
7432 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
7433 * breakpoint.h (linespec_result, linespec_sals): New forward
7434 declarations.
7435 (breakpoint_ops) <create_sals_from_address>,
7436 <create_breakpoints_sal>, <decode_linespec>: New methods.
7437
7438 2012-01-14 Doug Evans <dje@google.com>
7439
7440 * NEWS: Update text for "maint set python print-stack".
7441 It is deprecated in gdb 7.4 and deleted in 7.5.
7442
7443 2012-01-13 Eli Zaretskii <eliz@gnu.org>
7444
7445 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
7446 including curses.h.
7447
7448 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7449
7450 * configure: Regenerate.
7451 * config.in: Regenerate.
7452
7453 2012-01-12 Keith Seitz <keiths@redhat.com>
7454
7455 PR mi/10586
7456 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
7457 (ANONYMOUS_UNION_NAME): Define.
7458 (is_path_expr_parent): New function.
7459 (get_path_expr_parent): New function.
7460 (is_anonymous_child): New function.
7461 (create_child_with_value): If the child is anonymous and without
7462 a name, assign an object name to it.
7463 (c_describe_child): Use get_path_expr_parent to determine
7464 the parent expression.
7465 If there field represents an anonymous struct or union and
7466 has no name, set an appropriate display name and expression.
7467 (cplus_describe_child): Likewise.
7468
7469 2012-01-12 Pedro Alves <palves@redhat.com>
7470
7471 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
7472 available when %ebp is found to be zero (outermost).
7473
7474 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
7475
7476 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
7477 an internal gdb_static_assert.
7478 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
7479
7480 2012-01-11 Tom Tromey <tromey@redhat.com>
7481
7482 PR gdb/9598:
7483 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
7484 catch" and "catch throw".
7485
7486 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
7487
7488 * blockframe.c (block_innermost_frame): Start search from selected
7489 frame, if present, or otherwise the current frame.
7490
7491 * c-exp.y (variable): Update innermost_block for
7492 'block COLONCOLON NAME' clause.
7493 * m2-exp.y (variable): Ditto.
7494 * objc-exp.y (variable): Ditto.
7495
7496 2012-01-10 Tom Tromey <tromey@redhat.com>
7497
7498 PR python/13199:
7499 * python/python.c (finish_python_initialization): Set sys.argv.
7500
7501 2012-01-10 Doug Evans <dje@google.com>
7502
7503 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
7504 "want_line_info". All callers updated.
7505 (dwarf_decode_lines_1): New function.
7506 (handle_DW_AT_stmt_list): Add function comment.
7507 New arg "want_line_info". All callers updated.
7508 (read_file_scope,read_type_unit_scope): Move comment from
7509 handle_DW_AT_stmt_list to here.
7510
7511 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7512
7513 Fix regression after libiberty/ update for GCC PR 6057 and others.
7514 * c-exp.y (operator) <OPERATOR DELETE>
7515 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
7516 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
7517 (make_builtin_type, make_name): New variable i, add gdb_assert.
7518 (operator) <OPERATOR NEW>: Update ARGS to 3.
7519 (operator) <OPERATOR DELETE>: Add trailing space.
7520 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
7521 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
7522 * cp-support.c (cp_canonicalize_string): Check NULL from
7523 cp_comp_to_string, call warning and return.
7524
7525 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7526
7527 Fix duplicate .o files after omitting libbfd.a.
7528 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
7529 (SFILES): Add corelow.c.
7530 (COMMON_OBS): Add corelow.o.
7531 (ALLDEPFILES): Remove corelow.c.
7532 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
7533 * config/alpha/alpha-osf3.mh: Likewise.
7534 * config/alpha/fbsd.mh: Likewise.
7535 * config/arm/nbsdaout.mh: Likewise.
7536 * config/arm/nbsdelf.mh: Likewise.
7537 * config/i386/i386gnu.mh: Likewise.
7538 * config/ia64/hpux.mh: Likewise.
7539 * config/ia64/linux.mh: Likewise.
7540 * config/m32r/linux.mh: Likewise.
7541 * config/m68k/linux.mh: Likewise.
7542 * config/mips/irix5.mh: Likewise.
7543 * config/mips/irix6.mh: Likewise.
7544 * config/pa/hpux.mh: Likewise.
7545 * config/pa/linux.mh: Likewise.
7546 * config/powerpc/aix.mh: Likewise.
7547 * config/sparc/linux.mh: Likewise.
7548 * config/sparc/linux64.mh: Likewise.
7549 * config/sparc/sol2.mh: Likewise.
7550 * config/vax/vax.mh: Likewise.
7551 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
7552 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
7553 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
7554 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
7555 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
7556 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
7557 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
7558 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
7559 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
7560 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
7561 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
7562 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
7563 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
7564 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
7565 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
7566 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
7567 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
7568 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
7569 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
7570 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
7571 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
7572 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
7573 corelow.o from gdb_target_obs.
7574 * corefile.c (core_target): Update the comment on NULL value.
7575 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
7576 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
7577 MATCHES. Drop YUMMY set on NULL.
7578 (core_close): Do not call exit_inferior_silent on zero PID. Do not
7579 reclaim CORE_DATA if it is already NULL.
7580
7581 2012-01-09 Doug Evans <dje@google.com>
7582
7583 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
7584 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
7585
7586 2012-01-09 Keith Seitz <keiths@redhat.com>
7587
7588 * breakpoint.c (wrapper.h): Don't include.
7589
7590 2012-01-09 Keith Seitz <keiths@redhat.com>
7591
7592 * Makefile.in (SFILES): Remove wrapper.c.
7593 (HFILES_NO_SRCDIR): Remove wrapper.h.
7594 (COMMON_OBS): Remove wrapper.o.
7595 * cli/cli-interp.c: Don't inlude wrapper.h.
7596 * corelow.c: Likewise.
7597 (core_open): Replace gdb_target_find_new_threads with
7598 TRY_CATCH around target_find_new_threads.
7599 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
7600 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
7601 * varobj.c (varobj_create): Likewise for parse_exp_1 and
7602 evaluate_expression.
7603 (varobj_set_value): Likewise for evaluate_expression and
7604 value_assign.
7605 (install_new_variable): Likewise for value_fetch_lazy.
7606 (adjust_value_for_child_access): Likewise for value_ind.
7607 (c_describe_child): Likewise for value_subscript and
7608 value_ind.
7609 (c_value_of_root): Likewise for evaluate_expression.
7610 * wrapper.c: Remove.
7611 * wrapper.h: Remove.
7612
7613 2012-01-09 Doug Evans <dje@google.com>
7614
7615 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
7616 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
7617 "abfd" args with "section". All callers updated.
7618 Error checking code moved ...
7619 (error_check_comp_unit_head): ... here. New function.
7620 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
7621 Delete arg "abfd". New arg "type_offset". All callers updated.
7622 (create_debug_types_hash_table): Simplify by using
7623 read_and_check_type_unit_head.
7624
7625 * parser-defs.h (namecopy): Delete.
7626 * parse.c (namecopy, namecopy_size): Move into copy_name.
7627
7628 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
7629
7630 Partially fix duplicate .o files after omitting libbfd.a.
7631 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
7632 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
7633 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
7634 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
7635 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
7636 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
7637 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
7638
7639 2012-01-09 Pedro Alves <palves@redhat.com>
7640
7641 * MAINTAINERS: Update my email address.
7642
7643 2012-01-08 Doug Evans <dje@google.com>
7644
7645 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
7646 n_type_units. Rename type_comp_units to all_type_units.
7647 All uses updated.
7648 (add_signatured_type_cu_to_table): Renamed from
7649 add_signatured_type_cu_to_list. All callers updated.
7650
7651 * gdbtypes.h (struct cplus_struct_type): Delete member
7652 nfn_fields_total. All uses removed.
7653
7654 2012-01-06 Doug Evans <dje@google.com>
7655
7656 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
7657 to top of file.
7658 (dwarf2_find_comp_unit): Delete.
7659 (process_psymtab_comp_unit): Make result "void".
7660 Delete args buffer, info_ptr, buffer_size, and replace with
7661 "section". All callers updated.
7662 (dwarf2_build_psymtabs_hard): Simplify.
7663
7664 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
7665 Thiago Jung Bauermann <bauerman@br.ibm.com>
7666
7667 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
7668 before `struct gdb_exception'.
7669 * breakpoint.c (update_global_location_list_nothrow)
7670 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
7671 * cp-abi.c (value_rtti_type): Likewise.
7672 * cp-support.c (cp_validate_operator): Likewise.
7673 * infrun.c (insert_exception_resume_breakpoint)
7674 (check_exception_resume, keep_going): Likewise.
7675 * mi-interp.c (mi_breakpoint_created)
7676 (mi_breakpoint_modified): Likewise.
7677 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
7678 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
7679 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
7680
7681 2012-01-05 Doug Evans <dje@google.com>
7682
7683 * dwarf2read.c (statement_prologue): Delete, unused.
7684
7685 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
7686 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
7687
7688 * dwarf2read.c (comp_unit_header): Delete, unused.
7689
7690 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
7691
7692 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
7693 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
7694
7695 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
7696
7697 * infrun.c (normal_stop): Don't skip calling the normal_stop
7698 observers if the thread was doing a multi-step, but stopped for
7699 some reason other than stepping.
7700
7701 2012-01-05 Pedro Alves <alves.ped@gmail.com>
7702
7703 * cli/cli-decode.h: Add comments.
7704 (CMD_LIST_AMBIGUOUS): Moved to command.h
7705 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
7706 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
7707 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
7708 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
7709 (add_com, add_com_alias, add_info, add_info_alias)
7710 (complete_on_cmdlist, complete_on_enum, help_list): Remove
7711 declarations.
7712 * command.h: Add and adjust comments.
7713 (CMD_LIST_AMBIGUOUS): Moved here.
7714 (help_cmd, help_cmd_list): Delete declarations.
7715
7716 2012-01-04 Doug Evans <dje@google.com>
7717
7718 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
7719 All callers updated.
7720 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
7721 Replace all arguments with "per_cu". All callers updated.
7722
7723 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
7724
7725 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
7726 New arg "per_cu". All callers updated.
7727
7728 Delete #if 0'd out code.
7729 * language.c (binop_result_type): Delete.
7730 (simple_type, ordered_type, same_type, integral_type): Delete.
7731 (numeric_type, character_type, string_type, boolean_type): Delete.
7732 (float_type, structured_type): Delete.
7733 * language.h: Update.
7734
7735 2012-01-04 Tom Tromey <tromey@redhat.com>
7736
7737 * python/py-value.c (valpy_binop): Initialize 'res_val'.
7738
7739 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7740
7741 * corefile.c (close_exec_file): Delete.
7742 (reopen_exec_file): Remove commented out code that seems related
7743 to close_exec_file, which is being deleted here.
7744 * inferior.h (close_exec_file): Delete.
7745 * fork-child.c (fork_inferior): Remove call to fork_inferior.
7746
7747 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7748
7749 * ada-lang.c: #include "cli/cli-utils.h".
7750 (get_selections): Use skip_spaces.
7751 (ada_get_next_arg): Use skip_spaces and skip_to_space.
7752 (catch_ada_exception_command_split): Use skip_spaces.
7753 (ada_decode_assert_location): Likewise.
7754
7755 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7756
7757 * linespec.c (decode_line_internal): Check for C++ or Java
7758 compound constructs only if the current language is C, C++
7759 or Java.
7760
7761 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7762
7763 Revert:
7764 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7765 Joel Brobecker <brobecker@adacore.com>
7766 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
7767 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
7768 3 times.
7769 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
7770 fall through into AT_ENTRY_POINT.
7771 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
7772 DUMMY_ADDR with it.
7773 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
7774 PPC_INSN_SIZE skip to 3 times.
7775
7776 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7777
7778 * linespec.c (add_minsym): Preserve function descriptors.
7779
7780 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7781
7782 * breakpoint.c (all_locations_are_pending): Consider locations
7783 in program spaces executing during startup pending as well.
7784
7785 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7786
7787 Copyright year update in most files of the GDB Project.
7788
7789 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7790
7791 * copyright.sh: Delete.
7792 * copyright.py: Rewrite.
7793
7794 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7795
7796 * gnulib/extra/update-copyright: New file, imported from gnulib.
7797
7798 2012-01-04 Joel Brobecker <brobecker@adacore.com>
7799
7800 * README (Copyright and License Notices): New section.
7801
7802 2012-01-03 Tom Tromey <tromey@redhat.com>
7803
7804 PR python/12533:
7805 * python/py-value.c (valpy_dereference, valpy_get_address
7806 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
7807 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
7808 (valpy_absolute, valpy_richcompare): Free intermediate values.
7809
7810 2011-01-03 Joel Brobecker <brobecker@adacore.com>
7811
7812 * ada-lang.c: Reformat the copyright notice.
7813
7814 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7815
7816 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
7817 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
7818 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
7819 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
7820 Revert this part of:
7821 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7822 Build gdb directly from *.o files not using libgdb.a.
7823 * Makefile.in (COMMON_OBS): Remove solib-target.o.
7824
7825 2012-01-02 Joel Brobecker <brobecker@adacore.com>
7826
7827 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
7828 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
7829 Reformat the copyright header.
7830
7831 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7832
7833 Revert this part of:
7834 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7835 Remove the gdbtui binary.
7836 * gdb.c (main): Remove args.interpreter_p initialization.
7837 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
7838 * main.h (struct captured_main_args): Remove interpreter_p.
7839
7840 2012-01-02 Joel Brobecker <brobecker@adacore.com>
7841
7842 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
7843
7844 2012-01-02 Joel Brobecker <brobecker@adacore.com>
7845
7846 * top.c (print_gdb_version): Update copyright year.
7847
7848 2012-01-02 Yao Qi <yao@codesourcery.com>
7849
7850 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
7851
7852 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7853 Joel Brobecker <brobecker@adacore.com>
7854
7855 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
7856 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
7857 3 times.
7858 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
7859 fall through into AT_ENTRY_POINT.
7860 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
7861 DUMMY_ADDR with it.
7862 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
7863 PPC_INSN_SIZE skip to 3 times.
7864
7865 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7866
7867 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
7868 the return value.
7869 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
7870
7871 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7872
7873 Build gdb directly from *.o files not using libgdb.a.
7874 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
7875 (COMMON_OBS): Remove solib-target.o.
7876 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
7877 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
7878 (LIBGDB_OBS, libgdb.a): Move it above.
7879 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
7880 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
7881 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
7882 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
7883 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
7884 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
7885 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
7886 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
7887 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
7888 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
7889 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
7890 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
7891 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
7892 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
7893 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
7894 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
7895 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
7896 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
7897 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
7898 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
7899 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
7900 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
7901 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
7902 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
7903 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
7904 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
7905 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
7906
7907 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7908
7909 Remove the gdbtui binary.
7910 * .gitignore (/gdbtui): Remove.
7911 * Makefile.in (TUI): Remove.
7912 (SUBDIR_TUI_OBS): Remove tui-main.o.
7913 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
7914 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
7915 (tui-main.o): Remove.
7916 (all_object_files): Remove tui-main.o.
7917 * NEWS: New note for the gdbtui removal.
7918 * configure: Rebuilt.
7919 * configure.ac: No longer add all-tui, clean-tui, install-tui and
7920 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
7921 CONFIG_UNINSTALL respectively.
7922 * gdb.c (main): Remove args.interpreter_p initialization.
7923 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
7924 * main.h (struct captured_main_args): Remove interpreter_p.
7925 * tui/tui-main.c: Remove.
7926
7927 2012-01-01 Doug Evans <dje@google.com>
7928
7929 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
7930 (dwarf2_physname, read_import_statement): Ditto.
7931 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
7932 (process_structure_scope read_subroutine_type): Ditto.
7933 (read_typedef, load_partial_dies, read_partial_die): Ditto.
7934 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
7935 (dwarf2_fetch_die_location_block): Ditto.
7936 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
7937
7938 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
7939 All callers updated.
7940 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
7941 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
7942 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
7943
7944 * dwarf2read.c (load_cu): Move assert to more useful location.
7945
7946 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
7947 All callers updated.
7948
7949 * dwarf2read.c (dwarf2_per_objfile): Add comment.
7950 (dwarf2_elf_names): Minor reformat.
7951 (dwarf2_per_cu_data): Tweak comment.
7952 (dwarf2_read_section): Fix comment.
7953 (create_all_comp_units): Fix comment.
7954 (load_full_comp_unit): Fix comment.
7955 (process_full_comp_unit): Fix comment.
7956 (read_signatured_type): Fix comment.
7957
7958 For older changes see ChangeLog-2011.
7959 \f
7960 Local Variables:
7961 mode: change-log
7962 left-margin: 8
7963 fill-column: 74
7964 version-control: never
7965 coding: utf-8
7966 End:
This page took 0.197613 seconds and 5 git commands to generate.