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