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