* psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
[external/binutils.git] / gdb / ChangeLog
1 2012-05-18  Tom Tromey  <tromey@redhat.com>
2
3         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
4         directly corresponding to the found psymtab.
5         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6         (dw2_find_pc_sect_symtab): Use it.
7         * block.h (blockvector_contains_pc): Declare.
8         * block.c (find_block_in_blockvector): New function.
9         (blockvector_for_pc_sect): Use it.
10         (blockvector_contains_pc): New function.
11
12 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
13
14         * mips-tdep.h (mips_write_pc): New prototype.
15         * mips-tdep.c (mips_write_pc): Make external, add description.
16         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
17         add description.
18
19 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
20
21         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
22         mips_regnum->pc.
23         (mips_unwind_pc, mips_write_pc): Likewise.
24         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
25         gdbarch_read_pc.
26
27 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
28
29         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
30         proc_warn, proc_error, proc_get_status, proc_flags,
31         proc_why, proc_what, proc_nsysarg, proc_sysargs,
32         proc_set_run_on_last_close, proc_unset_run_on_last_close,
33         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
34         proc_stop_process, proc_wait_for_stop, proc_run_process,
35         proc_set_traced_signals, proc_set_traced_faults,
36         proc_set_traced_sysentry, proc_set_traced_sysexit,
37         proc_set_held_signals, proc_get_held_signals,
38         proc_get_traced_signals, proc_get_traced_faults,
39         proc_get_traced_sysentry, proc_get_traced_sysexit,
40         proc_clear_current_fault, proc_set_current_signal,
41         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
42         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
43         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
44         proc_get_current_thread, proc_get_current_thread,
45         proc_get_current_thread, proc_update_threads,
46         proc_update_threads, proc_update_threads, proc_update_threads,
47         proc_iterate_over_threads, procfs_find_new_threads,
48         procfs_pid_to_str): Make static.  Remove advance declaration.
49         (proc_cursig): Make static.  Conditionalized defintion on
50         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
51         (proc_syscall, proc_set_kill_on_last_close,
52         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
53         proc_get_pending_signals, proc_get_signal_actions,
54         proc_trace_signal, proc_ignore_signal): Delete.
55
56 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
57
58         * coffread.c (cs_section_address): Passing proper argument for
59         `bfd_get_section_vma'.
60         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
61         `bfd_get_section_flags'.
62         * remote.c (remote_trace_set_readonly_regions): Likewise, for
63         `bfd_get_section_vma'.
64
65 2012-05-16  Tom Tromey  <tromey@redhat.com>
66
67         PR macros/13205:
68         * macrotab.h: (macro_define_special): Declare.
69         (enum macro_special_kind): New.
70         (struct macro_definition) <argc, replacement>: Update comments.
71         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
72         (macro_define_object_internal): New function.
73         (macro_define_object): Use it.
74         (macro_define_special): New function.
75         (fixup_definition): New function.
76         (macro_lookup_definition, foreach_macro_in_scope)
77         (foreach_macro): Use fixup_definition.
78         * macroexp.h (macro_stringify): Declare.
79         * macroexp.c (free_buffer_return_text): New function.
80         (stringify): Constify "arg".
81         (macro_stringify): New function.
82         * dwarf2read.c (macro_start_file): Call macro_define_special.
83
84 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
85             Maciej W. Rozycki  <macro@mips.com>
86
87         * breakpoint.h (bp_location): Add related_address member.
88         * inferior.h (get_return_value): Take a pointer to struct value
89         instead of struct type for the function requested.
90         * value.h (using_struct_return): Likewise.
91         * gdbarch.sh (return_value): Take a pointer to struct value
92         instead of struct type for the function requested.
93         * breakpoint.c (set_breakpoint_location_function): Initialize
94         related_address for bp_gnu_ifunc_resolver breakpoints.
95         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
96         requested function's address to gdbarch_return_value.
97         * eval.c (evaluate_subexp_standard): Pass the requested
98         function's address to using_struct_return.
99         * infcall.c (call_function_by_hand): Pass the requested
100         function's address to using_struct_return and
101         gdbarch_return_value.
102         * infcmd.c (get_return_value): Take a pointer to struct value
103         instead of struct type for the function requested.
104         (print_return_value): Update accordingly.
105         (finish_command_continuation): Likewise.
106         * stack.c (return_command): Pass the requested function's
107         address to using_struct_return and gdbarch_return_value.
108         * value.c (using_struct_return): Take a pointer to struct value
109         instead of struct type for the function requested.  Pass the
110         requested function's address to gdbarch_return_value.
111         * python/py-finishbreakpoint.c (finish_breakpoint_object):
112         New function_value member, replacing function_type.
113         (bpfinishpy_dealloc): Update accordingly.
114         (bpfinishpy_pre_stop_hook): Likewise.
115         (bpfinishpy_init): Likewise.  Record the requested function's
116         address.
117         * mips-tdep.c (mips_fval_reg): New enum.
118         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
119         words put in GP registers.
120         (mips_o64_push_dummy_call): Update a comment.
121         (mips_o32_return_value): Take a pointer to struct value instead
122         of struct type for the function requested and use it to check if
123         using the MIPS16 calling convention.  Return the designated
124         general purpose registers for floating-point values returned in
125         MIPS16 mode.
126         (mips_o64_return_value): Likewise.
127         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
128         (ppc_sysv_abi_broken_return_value): Likewise.
129         (ppc64_sysv_abi_return_value): Likewise.
130         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
131         value instead of struct type for the function requested.
132         * amd64-tdep.c (amd64_return_value): Likewise.
133         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
134         * arm-tdep.c (arm_return_value): Likewise.
135         * avr-tdep.c (avr_return_value): Likewise.
136         * bfin-tdep.c (bfin_return_value): Likewise.
137         * cris-tdep.c (cris_return_value): Likewise.
138         * frv-tdep.c (frv_return_value): Likewise.
139         * h8300-tdep.c (h8300_return_value): Likewise.
140         (h8300h_return_value): Likewise.
141         * hppa-tdep.c (hppa32_return_value): Likewise.
142         (hppa64_return_value): Likewise.
143         * i386-tdep.c (i386_return_value): Likewise.
144         * ia64-tdep.c (ia64_return_value): Likewise.
145         * iq2000-tdep.c (iq2000_return_value): Likewise.
146         * lm32-tdep.c (lm32_return_value): Likewise.
147         * m32c-tdep.c (m32c_return_value): Likewise.
148         * m32r-tdep.c (m32r_return_value): Likewise.
149         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
150         * m68k-tdep.c (m68k_return_value): Likewise.
151         (m68k_svr4_return_value): Likewise.
152         * m88k-tdep.c (m88k_return_value): Likewise.
153         * mep-tdep.c (mep_return_value): Likewise.
154         * microblaze-tdep.c (microblaze_return_value): Likewise.
155         * mn10300-tdep.c (mn10300_return_value): Likewise.
156         * moxie-tdep.c (moxie_return_value): Likewise.
157         * mt-tdep.c (mt_return_value): Likewise.
158         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
159         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
160         (ppc_sysv_abi_broken_return_value): Likewise.
161         (ppc64_sysv_abi_return_value): Likewise.
162         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
163         * rl78-tdep.c (rl78_return_value): Likewise.
164         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
165         * rx-tdep.c (rx_return_value): Likewise.
166         * s390-tdep.c (s390_return_value): Likewise.
167         * score-tdep.c (score_return_value): Likewise.
168         * sh-tdep.c (sh_return_value_nofpu): Likewise.
169         (sh_return_value_fpu): Likewise.
170         * sh64-tdep.c (sh64_return_value): Likewise.
171         * sparc-tdep.c (sparc32_return_value): Likewise.
172         * sparc64-tdep.c (sparc64_return_value): Likewise.
173         * spu-tdep.c (spu_return_value): Likewise.
174         * tic6x-tdep.c (tic6x_return_value): Likewise.
175         * v850-tdep.c (v850_return_value): Likewise.
176         * vax-tdep.c (vax_return_value): Likewise.
177         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
178         * xtensa-tdep.c (xtensa_return_value): Likewise.
179         * gdbarch.c: Regenerate.
180         * gdbarch.h: Regenerate.
181
182 2012-05-15  Tom Tromey  <tromey@redhat.com>
183
184         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
185
186 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
187
188         * breakpoint.c (init_breakpoint_sal): Add quotes around part
189         of command in two error message.
190
191 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
192
193         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
194
195 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
196
197         * breakpoint.c (find_condition_and_thread): Minor reformatting.
198
199 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
200
201         * NEWS (show auto-load scripts-directory): Add forgotten command.
202
203 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
204
205         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
206         parameters.
207
208 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
209
210         * amd64-tdep.c: Include features/i386/x32.c and
211         features/i386/x32-avx.c.
212         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
213         initialize_tdesc_x32_avx.
214
215 2012-05-14  Stan Shebs  <stan@codesourcery.com>
216
217         Add dynamic printf.
218         * breakpoint.h (enum bptype): New type bp_dprintf.
219         (struct breakpoint): New field extra_string.
220         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
221         (create_breakpoint): Add extra_string arg.
222         * breakpoint.c (dprintf_breakpoint_ops): New.
223         (is_breakpoint): Add bp_dprintf.
224         (bpstat_what): Add dprintf case.
225         (bptype_string): Ditto.
226         (print_one_breakpoint_location): Ditto.
227         (init_bp_location): Ditto.
228         (bkpt_print_mention): Ditto.
229         (dprintf_style_enums): New array.
230         (dprintf_style): New global.
231         (dprintf_function): New global.
232         (dprintf_channel): New global.
233         (update_dprintf_command_list): New function.
234         (update_dprintf_commands): New function.
235         (init_breakpoint_sal): Add extra_string argument, handle it.
236         (create_breakpoint_sal): Add extra_string argument.
237         (create_breakpoints_sal): Add extra_string argument, update callers.
238         (find_condition_and_thread): Add extra argument.
239         (create_breakpoint): Add extra_string argument, record it.
240         (dprintf_command): New function.
241         (break_command_1): Add arg to create_breakpoint call.
242         (handle_gnu_v3_exceptions): Ditto.
243         (trace_command): Ditto.
244         (ftrace_command): Ditto.
245         (strace_command): Ditto.
246         (bkpt_print_mention): Add dprintf case.
247         (create_breakpoint_sal_default): Add extra_string argument.
248         (_initialize_breakpoint): Add new commands.
249         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
250         * python/py-breakpoint.c (bppy_init): Ditto.
251         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
252
253 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
254
255         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
256
257 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
258
259         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
260         unsigned long long.
261
262 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
263
264         Add a new function gdb.find_pc_line to the Python API.
265         * NEWS (Python Scripting): Add entry about the new function.
266         * python/python.c (gdbpy_find_pc_line): New function which
267         implements gdb.find_pc_line.
268         (GdbMethods): Add entry for the new function.
269
270 2012-05-12  Pedro Alves  <palves@redhat.com>
271
272         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
273         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
274
275 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
276
277         * inferior.c: Include completer.h
278         (initialize_inferiors): Set completer of add-inferior to
279         filename_completer.
280
281 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
282
283         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
284         gdbarch_ptr_bit for x32 core dump.
285
286 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
287
288         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
289         and features/i386/x32-avx-linux.c.
290
291 2012-05-11  Stan Shebs  <stan@codesourcery.com>
292             Kwok Cheung Yeung  <kcy@codesourcery.com>
293
294         * NEWS: Describe new info os commands.
295         * common/linux-osdata.c (PID_T, TIME_T): Define.
296         (MAX_PID_T_STRLEN): New.
297         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
298         MAX_PID_T_STRLEN.
299         (command_from_pid): Add comment.  Change to use PID_T.
300         (commandline_from_pid):  Change to use PID_T.
301         (user_from_pid): Add comment.
302         (get_process_owner): Add comment. Change to use PID_T and
303         MAX_PID_T_STRLEN.
304         (get_number_of_cpu_cores): Add comment.
305         (get_cores_used_by_process): Add comment.  Change to use PID_T and
306         MAX_PID_T_STRLEN.
307         (linux_xfer_osdata_processes): Change to use PID_T and
308         MAX_PID_T_STRLEN.
309         (compare_processes): New function.
310         (linux_xfer_osdata_processgroups): New function.
311         (linux_xfer_osdata_threads): Change to use PID_T.
312         (linux_xfer_osdata_fds): New function.
313         (format_socket_state, print_sockets): New functions.
314         (union socket_addr): New union.
315         (linux_xfer_osdata_isockets): New function.
316         (time_from_time_t, group_from_gid): New functions.
317         (linux_xfer_osdata_shm): New function.
318         (linux_xfer_osdata_sem): New function.
319         (linux_xfer_osdata_msg): New function.
320         (linux_xfer_osdata_modules): New function.
321         (osdata_table): Add new entries.
322         * common/buffer.c (buffer_xml_printf): Add support for long and
323         long long format specifiers.
324
325 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
326
327         * amd64-linux-tdep.h (tdesc_x32_linux): New.
328         (tdesc_x32_avx_linux): Likewise.
329
330 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
331
332         Implement multi-component --with-auto-load-dir.
333         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
334         entries.
335         (--with-auto-load-safe-path): Update the default value description.
336         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
337         New.
338         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
339         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
340         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
341         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
342         "set auto-load scripts-directory".
343         * config.in: Regenerate.
344         * configure: Regenerate.
345         * configure.ac (--with-auto-load-dir): New configure option.
346         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
347
348 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
349
350         Provide $ddir substitution for --with-auto-load-safe-path.
351         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
352         entries.
353         * auto-load.c: Include observer.h.
354         (auto_load_safe_path_vec_update): Call substitute_path_component for
355         each component.  New variable ddir_subst.
356         (auto_load_gdb_datadir_changed): New function.
357         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
358         AUTO_LOAD_SAFE_PATH.  New comment.
359         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
360         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
361         * config.in: Regenerate.
362         * configure: Regenerate.
363         * configure.ac (--auto-load-safe-path): Rename
364         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
365         GDB_DATADIR/auto-load.
366         * defs.h (substitute_path_component): New declaration.
367         * top.c: Include observer.h.
368         (set_gdb_datadir): New function.
369         (init_main): Install it for "set data-directory".
370         * utils.c (substitute_path_component): New function.
371
372 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
373
374         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
375         * auto-load.c (auto_load_objfile_script): Remove check for NULL
376         DEBUG_FILE_DIRECTORY.  Handle multiple components of
377         DEBUG_FILE_DIRECTORY.
378
379 2012-05-10  Tom Tromey  <tromey@redhat.com>
380
381         * dwarf2read.c (recursively_write_psymbols): New function.
382         (write_psymtabs_to_index): Use it.
383
384         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
385         field.
386         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
387         (load_partial_comp_unit): Update.
388         (queue_comp_unit): Add argument 'pretend_language'.
389         (process_queue): Update.
390         (psymtab_to_symtab_1): Skip dependencies that have a user.
391         (load_partial_comp_unit_reader): Give meaning to the 'data'
392         argument.
393         (load_full_comp_unit): Add 'pretend_language' argument.
394         (process_full_comp_unit): Add 'pretend_language' argument.  Set
395         language on CU.
396         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
397         Update.
398         (maybe_queue_comp_unit): Add 'pretend_language' argument.
399         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
400         Update.
401         (prepare_one_comp_unit): Add 'pretend_language' argument.
402
403         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
404         (struct dwarf2_per_objfile) <just_read_cus>: New field.
405         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
406         (dw2_do_instantiate_symtab): Check whether symtab was read in
407         before queueing.
408         (dw2_instantiate_symtab): Add assertion.  Call
409         process_cu_includes.
410         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
411         (partial_symtab_p): New typedef.
412         (set_partial_user): New function.
413         (dwarf2_build_psymtabs_hard): Use set_partial_user.
414         (scan_partial_symbols): Add imported CU to imported_symtabs.
415         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
416         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
417         (get_symtab, recursively_compute_inclusions)
418         (compute_symtab_includes, process_cu_includes)
419         (process_imported_unit_die): New functions.
420         (process_die) <DW_TAG_imported_unit>: New case.
421         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
422
423         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
424         comment.
425         (struct partial_die_info) <locdesc>: Remove.
426         <d>: New field.
427         (process_psymtab_comp_unit): Add 'read_partial' argument.
428         Update.
429         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
430         (scan_partial_symbols): Handle DW_TAG_imported_unit.
431         (add_partial_symbol): Update.
432         (process_die): Handle DW_TAG_partial_unit.
433         (read_file_scope): Update comment.
434         (load_partial_dies): Handle DW_TAG_imported_unit.
435         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
436         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
437
438 2012-05-10  Tom Tromey  <tromey@redhat.com>
439
440         * cc-with-dwz.sh: New file.
441
442 2012-05-10  Tom Tromey  <tromey@redhat.com>
443
444         * symtab.h (struct symtab) <includes, user>: New fields.
445         * block.h (struct block_iterator) <d, idx, which>: New fields.
446         * block.c (initialize_block_iterator, find_iterator_symtab)
447         (block_iterator_step, block_iter_name_step)
448         (block_iter_match_step): New functions.
449         (block_iterator_first, block_iterator_next)
450         (block_iter_name_first, block_iter_name_next)
451         (block_iter_match_first, block_iter_match_next): Rewrite.
452         (get_block_symtab): New function.
453
454 2012-05-10  Tom Tromey  <tromey@redhat.com>
455
456         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
457         set_block_symtab.
458         * jit.c (finalize_symtab): Use allocate_global_block,
459         set_block_symtab.
460         * buildsym.c (finish_block_internal): New function, from old
461         finish_block.
462         (finish_block): Rewrite.
463         (end_symtab): Use finish_block_internal, set_block_symtab.
464         * block.h (struct global_block): New.
465         (allocate_global_block, set_block_symtab): Declare.
466         * block.c (allocate_global_block, set_block_symtab): New
467         functions.
468
469 2012-05-10  Tom Tromey  <tromey@redhat.com>
470
471         * psymtab.c (partial_map_expand_apply): Add assertion.
472         (partial_map_symtabs_matching_filename): Skip included psymtabs.
473         (psymtab_to_symtab): Find unshared psymtab.
474         (dump_psymtab): Print including psymtabs.
475         (recursively_search_psymtabs): New function.
476         (expand_symtabs_matching_via_partial): Use it.
477         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
478         fields.
479         (enum psymtab_search_status): New.
480
481 2012-05-10  Tom Tromey  <tromey@redhat.com>
482
483         * tracepoint.c (scope_info): Update.
484         * symtab.c (lookup_block_symbol, iterate_over_symbols)
485         (find_pc_sect_symtab, search_symbols)
486         (default_make_symbol_completion_list_break_on)
487         (make_file_symbol_completion_list): Update.
488         * symmisc.c (dump_symtab_1): Update.
489         * stack.c (print_frame_args, iterate_over_block_locals)
490         (print_frame_labels, iterate_over_block_arg_vars): Update.
491         * python/py-block.c (block_object) <dict>: Remove.
492         <block>: New field.
493         <iter>: Change type.
494         (blpy_iter): Update.
495         (blpy_block_syms_iternext): Update.
496         * psymtab.c (map_block): Use block iterators.
497         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
498         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
499         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
500         * infrun.c (check_exception_resume): Update.
501         * cp-support.c (make_symbol_overload_list_block): Update.
502         * coffread.c (patch_opaque_types): Update.
503         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
504         * block.h (struct block_iterator): New.
505         (block_iterator_first, block_iterator_next, block_iter_name_first)
506         (block_iter_name_next, block_iter_match_first)
507         (block_iter_match_next): Declare.
508         (ALL_BLOCK_SYMBOLS): Redefine.
509         * block.c (block_iterator_first, block_iterator_next)
510         (block_iter_name_first, block_iter_name_next)
511         (block_iter_match_first, block_iter_match_next): New functions.
512         * ada-lang.c (ada_add_block_symbols)
513         (ada_make_symbol_completion_list): Use block iterator.
514
515 2012-05-10  Tom Tromey  <tromey@redhat.com>
516
517         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
518         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
519         (lookup_partial_symbol, find_last_source_symtab_from_partial)
520         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
521         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
522         Update.
523
524 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
525
526         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
527         print-file-var-lib2.c, print-file-var-main.c and
528         print-file-var.exp (located in gdb/testsuite/gdb.base).
529
530 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
531
532         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
533         try locating the symbol in the symbol's own objfile first, before
534         extending the search to all objfiles.
535         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
536         out of lookup_symbol_aux_symtabs.
537         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
538         Replace extracted-out code by call to lookup_symbol_aux_objfile.
539         Do not search EXCLUDE_OBJFILE.
540         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
541         (lookup_symbol_global): Search for matches in the block's objfile
542         first, before searching all other objfiles.
543
544 2012-05-10  Tristan Gingold  <gingold@adacore.com>
545
546         * printcmd.c (set_command): Add pre/post inc/dec.
547
548 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
549
550         * gdb.1: Document -ex option.
551
552 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
553
554         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
555         * inferior.h (AT_SYMBOL): Delete.
556
557 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
558
559         * mips-tdep.c (mips_push_dummy_code): New function.
560         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
561         ON_STACK and install mips_push_dummy_code as our gdbarch
562         push_dummy_code routine.
563
564 2012-05-09  Pedro Alves  <palves@redhat.com>
565
566         * target.c (set_maintenance_target_async_permitted): Rename to ...
567         (set_target_async_command): ... this.
568         (show_maintenance_target_async_permitted): Rename to ...
569         (show_target_async_command): ... this.
570         (initialize_targets): Adjust.
571
572 2012-05-08  Doug Evans  <dje@google.com>
573
574         * go-exp.y (classify_name): Add missing assignment of fields of
575         yylval.ssym.
576
577 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
578
579         Display the ">" prompt in interactive mode while reading canned
580         commands, even when the current interpreter is MI.
581
582         * interps.c (interp_set_temp): New function.
583
584         * interps.h (interp_set_temp): Add prototype.
585
586         * cli/cli-script.c (restore_interp): New cleanup function.
587         (read_command_lines): Temporarily override the current interpreter
588         with CLI and arrange for restoring the original one.
589
590 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
591
592         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
593
594 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
595
596         * probe.c (parse_probes): Move conditional to check for
597         debuginfo files from here...
598         * stap-probe.c (stap_get_probes): ... to here.
599
600 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
601             H.J. Lu  <hongjiu.lu@intel.com>
602
603         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
604         `movl %esp, %ebp' for the X32 ABI.
605
606 2012-05-07  Tom Tromey  <tromey@redhat.com>
607
608         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
609         get_DW_TAG_name.
610         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
611         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
612         (dwarf_stack_op_name): Remove.
613         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
614         (decode_locdesc): Use get_DW_OP_name.
615         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
616         (dwarf2_compile_expr_to_ax): Likewise.
617         (disassemble_dwarf_expression): Likewise.
618         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
619
620 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
621
622         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
623         (sh_linux_sigtramp_cache): New function.
624         (sh_linux_sigreturn_init): New function.
625         (sh_linux_rt_sigreturn_init): New function.
626         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
627         patterns.
628         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
629         syscall codes.
630         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
631         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
632         (sh_linux_init_abi): Add init calls to register new tramp_frame
633         definitions under 32-bit SH, update comments.
634
635 2012-05-07  Pedro Alves  <palves@redhat.com>
636
637         PR gdb/10952
638
639         * amd64-linux-tdep.c: Include glibc-tdep.h.
640         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
641         gdbarch_skip_solib_resolver callback.
642
643 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
644
645         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
646         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
647         (show_auto_load_safe_path): Check any-directory by comparison with "/".
648         (add_auto_load_safe_path): Change the error message.
649         (_initialize_auto_load): Change the "safe-path" help text.
650         * configure: Regenerate
651         * configure.ac (--without-auto-load-safe-path): Set
652         WITH_AUTO_LOAD_SAFE_PATH to /.
653
654 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
655
656         * stap-probe.h: Do not include unecessary `probe.h'.
657
658 2012-05-05  Alan Modra  <amodra@gmail.com>
659
660         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
661         bfd_und_section_ptr.
662         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
663         and bfd_com_section_ptr.
664
665 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
666
667         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
668
669 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
670
671         * windows-nat.h (segment_register_p_ftype): New typedef.
672         (windows_set_segment_register_p): Add declaration.
673         * windows-nat.c (segment_register_p): New static global.
674         (windows_set_segment_register_p): New function.
675         (do_windows_fetch_inferior_registers): Add special handling
676         for segment registers.
677         * amd64-windows-nat.c: #include "amd64-tdep.h".
678         (amd64_windows_segment_register_p): New function.
679         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
680         * i386-windows-nat.c: #include "i386-tdep.h".
681         (i386_windows_segment_register_p): New function.
682         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
683
684 2012-05-04  Tristan Gingold  <gingold@adacore.com>
685
686         * printcmd.c (set_command): Emit a warning if the expression is not
687         an assignment.
688
689 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
690
691         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
692         Make static.
693
694 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
695
696         * stap-probe.c (stap_is_operator): Change declaration.
697         (stap_get_opcode): Change return value.
698         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
699         `stap_parse_argument_1'.
700
701 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
702
703         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
704         debug log.
705
706 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
707
708         Add two new methods global_block and static_block to gdb.Symtab
709         objects.
710         * NEWS (Python scripting): Add entry about the new methods.
711         * python/py-symtab.c (stpy_global_block): New function which
712         implements the gdb.Symtab.global_block() method.
713         (stpy_static_block): New function which implements the
714         gdb.Symtab.static_block() method.
715         (symtab_object_methods): Add entries for the two new methods.
716
717 2012-05-03  Doug Evans  <dje@google.com>
718
719         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
720         files.
721
722 2012-05-03  Yao Qi  <yao@codesourcery.com>
723
724         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
725         space.
726         (i386_process_record): Ditto.
727
728 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
729
730         * infcall.c (unwind_on_signal_p): Make static.
731
732 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
733
734         * sol-thread.c (solaris_pid_to_str): Make static.
735         (_initialize_sol_thread): Add prototype.
736
737 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
738
739         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
740
741 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
742
743         * MAINTAINERS: Remove myself.
744
745 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
746
747         Fix --without-auto-load-safe-path for MS-Windows host platform.
748         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
749
750 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
751
752         * gdb_curses.h: Undefine KEY_EVENT before including curses
753         headers.  Move "#undef MOUSE_MOVED" before any curses header
754         inclusion.
755
756 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
757
758         * features/i386/i386-mmx-linux.c: Regenerate.
759         * features/rs6000/powerpc-32.c: Likewise.
760         * features/rs6000/powerpc-32l.c: Likewise.
761         * features/rs6000/powerpc-403.c: Likewise.
762         * features/rs6000/powerpc-403gc.c: Likewise.
763         * features/rs6000/powerpc-405.c: Likewise.
764         * features/rs6000/powerpc-505.c: Likewise.
765         * features/rs6000/powerpc-601.c: Likewise.
766         * features/rs6000/powerpc-602.c: Likewise.
767         * features/rs6000/powerpc-603.c: Likewise.
768         * features/rs6000/powerpc-604.c: Likewise.
769         * features/rs6000/powerpc-64.c: Likewise.
770         * features/rs6000/powerpc-64l.c: Likewise.
771         * features/rs6000/powerpc-750.c: Likewise.
772         * features/rs6000/powerpc-860.c: Likewise.
773         * features/rs6000/powerpc-e500.c: Likewise.
774         * features/rs6000/powerpc-e500l.c: Likewise.
775         * features/rs6000/powerpc-isa205-32l.c: Likewise.
776         * features/rs6000/powerpc-isa205-64l.c: Likewise.
777         * features/rs6000/rs6000.c: Likewise.
778
779 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
780
781         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
782         variable.
783         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
784         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
785         (stap_parse_argument) <e>: Likewise.
786         (handle_stap_probe) <byte_order>: Likewise.
787
788 2012-04-30  Doug Evans  <dje@google.com>
789
790         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
791         init_and_read_dies_worker.  All callers updated.
792         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
793         replaced with init_cutu_and_read_dies.
794         (load_partial_comp_unit): Pass 1 for use_existing_cu.
795         (find_partial_die): Remove FIXME.  Don't free current CU.
796
797 2012-04-30  Sterling Augustine  <saugustine@google.com>
798
799         * contrib: New directory.
800         * contrib/test_pubnames_and_indexes.py: New file.
801
802 2012-04-30  Doug Evans  <dje@google.com>
803
804         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
805         All callers updated.
806         (init_cu_die_reader): Verify the section is non-empty.
807         (dwarf_decode_line_header): Don't dereference section->asection
808         until we know the section is present.
809
810 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
811
812         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
813         probes.
814
815 2012-04-29  Yao Qi  <yao@codesourcery.com>
816
817         * gdb-code-style.el: New hook gdb-markup-hook
818         and gdb-comment-hook.
819
820 2012-04-28  Doug Evans  <dje@google.com>
821
822         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
823         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
824         objfile->obfd.
825         * symfile.h (dwarf2_debug_sections): New member addr.
826         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
827         (ctx_no_get_addr_index): New function.
828         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
829         (ctx_no_get_addr_index): Declare.
830         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
831         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
832         (dwarf_expr_ctx_funcs): Update.
833         (needs_get_addr_index): New function.
834         (needs_frame_ctx_funcs): Update.
835         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
836         * dwarf2read.c: #include "gdbcore.h".
837         (dwarf2_per_objfile): New members addr, dwo_files.
838         (dwarf2_elf_names): Add entry for addr.
839         (struct dwo_section_names): New type.
840         (dwo_section_names): New static global.
841         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
842         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
843         old debug_types_section member updated to use this.
844         Rename member debug_types_section to info_or_types_section,
845         all uses updated.
846         (signatured_type): Rename member type_offset to type_offset_in_tu,
847         all uses updated.  New member type_offset_in_section.
848         (struct dwo_sections): New type.
849         (struct dwo_unit): New type.
850         (struct dwo_file): New type.
851         (die_reader_specs): New member dwo_file.
852         (dwarf2_locate_sections): Watch for .debug_addr.
853         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
854         (dwarf2_read_section): Get bfd of section from bfd's asection,
855         instead of objfile.
856         (create_cus_from_index): Initialize the_cu->info_or_types_section.
857         (create_signatured_type_table_from_index): Initialize
858         sig_type->info_or_types_section.
859         (dw2_get_file_names): Statement lists for type units with DWO files
860         live in the DWO file.
861         (create_debug_types_hash_table): New function.
862         (create_all_type_units): Rewrite.
863         (init_cu_die_reader): New arg dwo_file, all callers updated.
864         (init_and_read_dies_worker): Get section from
865         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
866         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
867         continue reading the CU/TU from there.
868         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
869         updated.  Get section from this_cu->info_or_types_section.
870         (create_all_comp_units): Initialize this_cu->info_or_types_section.
871         (skip_one_die): New cases DW_FORM_GNU_addr_index,
872         DW_FORM_GNU_str_index.
873         (hash_dwo_file, eq_dwo_file): New functions.
874         (allocate_dwo_file_hash_table): New function.
875         (hash_dwo_unit, eq_dwo_unit): New functions.
876         (allocate_dwo_unit_table): New function.
877         (dwarf2_locate_dwo_sections): New function.
878         (struct create_dwo_info_table_data): New type.
879         (create_debug_info_hash_table_reader): New function.
880         (create_debug_info_hash_table): New function.
881         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
882         (lookup_dwo_file): New function.
883         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
884         (free_dwo_file, free_dwo_file_cleanup): New functions.
885         (free_dwo_file_from_slot, free_dwo_files): New functions.
886         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
887         (dwarf2_record_block_ranges): Ditto.
888         (read_partial_die): Ditto.
889         (process_enumeration_scope): Update to use type_offset_in_section.
890         (read_full_die_1): New function.
891         (read_full_die): Rewrite.
892         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
893         DW_FORM_GNU_str_index.
894         (read_addr_index_1, read_addr_index): New functions.
895         (read_addr_index_from_leb128): New function.
896         (struct dwarf2_read_addr_index_data): New type.
897         (dwarf2_read_addr_index_reader): New function.
898         (dwarf2_read_addr_index): New function.
899         (read_str_index): New function.
900         (leb128_size): New function.
901         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
902         If processing a type unit from a DWO file, get the line section
903         from the DWO file.
904         (var_decode_location): Watch for DW_OP_GNU_addr_index.
905         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
906         DW_FORM_GNU_str_index.
907         (lookup_die_type): Check whether section offset of type's die is
908         known before looking it up.  Remove assert.  Condition can
909         legimately happen for inter-cu type references.
910         (dwarf_attr_name): Handle Fission attributes.
911         (dwarf_form_name): Handle Fission forms.
912         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
913         DW_FORM_GNU_str_index.
914         (follow_die_sig): Update to use type_offset_in_section.
915         (decode_locdesc): New case DW_OP_GNU_addr_index.
916         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
917         DW_FORM_GNU_str_index.
918         (cu_debug_loc_section): New function.
919         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
920         (dwarf2_per_objfile_free): Unmap .debug_addr section.
921         Free DWO files if present.
922         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
923
924         Refactor DIE reading.
925         * dwarf2read.c (dwarf2_per_objfile): Replace members
926         debug_info_type_hash and debug_types_type_hash with die_type_hash.
927         (die_reader_specs): New member "die_section".  Temporarily make
928         member "buffer" non-const, pending constifying all info_ptr uses.
929         (die_reader_func_ftype): New typedef.
930         (dw2_get_file_names_reader): New function.
931         (dw2_get_file_names): Rewrite.
932         (read_and_check_type_unit_head): Rename arg type_offset to
933         type_offset_in_tu.
934         (create_all_type_units): Improve debugging message.
935         Improve dummy type unit check.
936         (init_cu_die_reader): New arg "section".  All callers updated.
937         (init_and_read_dies_worker): New function.
938         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
939         (init_cutu_and_read_dies_no_follow): New function.
940         (init_cutu_and_read_dies_simple): New function.
941         (process_psymtab_comp_unit_reader): New function.
942         (process_psymtab_comp_unit): Delete args section,
943         is_debug_types_section.  Rewrite.  All callers updated.
944         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
945         All callers updated.  Rewrite.
946         (load_partial_comp_unit_reader): New function.
947         (load_partial_comp_unit): Rewrite.
948         (skip_children): New arg reader.  Delete args buffer, cu.
949         All callers updated.
950         (skip_one_die): New arg reader.  Delete args buffer, cu.
951         All callers updated.
952         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
953         All callers updated.
954         (load_full_comp_unit_reader): New function.
955         (load_full_comp_unit): Rewrite.
956         (read_comp_unit): Delete.
957         (read_die_and_children_1): Delete, contents moved ...
958         (read_die_and_children): ... here.
959         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
960         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
961         All callers updated.
962         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
963         All callers updated.
964         (find_partial_die): Rewrite load_all_dies support.
965         (read_attribute_value): New arg reader.  Delete args abfd, cu.
966         All callers updated.
967         (read_attribute): New arg reader.  Delete args abfd, cu.
968         All callers updated.
969         (load_full_type_unit): Add assert.
970         (read_signatured_type_reader): New function.
971         (read_signatured_type): Rewrite.
972         (free_stack_comp_unit): Remove call to age_cached_comp_units.
973         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
974         All callers updated.  Set per_cu->cu = NULL after freeing it.
975         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
976         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
977         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
978         (set_die_type): Update.
979         (get_die_type_at_offset): Update.
980         (read_file_scope): Call prepare_one_comp_unit.
981         (read_type_unit_scope): Ditto.
982         (prepare_one_comp_unit): Set producer if present.
983
984 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
985
986         * probe.c (compile_rx_or_error): Silence ARI warning about missing
987          gettext function on `error'.
988
989 2012-04-27  Doug Evans  <dje@google.com>
990
991         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
992         is empty.
993
994 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
995             Tom Tromey  <tromey@redhat.com>
996
997         * breakpoint.c (struct breakpoint_objfile_data)
998         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
999         <exception_probes>: New fields.
1000         (free_breakpoint_probes): New function.
1001         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
1002         `_Unwind_DebugHook'.
1003         (create_exception_master_breakpoint): Likewise.
1004         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
1005         * infrun.c: Including necessary header files for handling SystemTap
1006         probes.
1007         (handle_inferior_event): Handling longjmp breakpoint and exceptions
1008         via SystemTap probes.
1009         (check_exception_resume): Remove `func' argument.  Handle exception
1010         unwinding breakpoint set via a SystemTap probe.
1011         (insert_exception_resume_from_probe): New function.
1012
1013 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
1014             Tom Tromey  <tromey@redhat.com>
1015             Jan Kratochvil  <jan.kratochvil@redhat.com>
1016
1017         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
1018         (COMMON_OBS): Likewise.
1019         (HFILES_NO_SRCDIR): Add `probe'.
1020         * NEWS: Mention support for static and SystemTap probes.
1021         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
1022         SystemTap probes' arguments parser.
1023         * arm-linux-tdep.c: Including headers needed to perform the parsing
1024         of SystemTap probes' arguments.
1025         (arm_stap_is_single_operand): New function.
1026         (arm_stap_parse_special_token): Likewise.
1027         (arm_linux_init_abi): Initializing proper fields used by SystemTap
1028         probes' arguments parser.
1029         * ax-gdb.c (require_rvalue): Removing static declaration.
1030         (gen_expr): Likewise.
1031         * ax-gdb.h (gen_expr): Declaring function.
1032         (require_rvalue): Likewise.
1033         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
1034         (bkpt_probe_breakpoint_ops): New variable.
1035         (momentary_breakpoint_from_master): Set the `probe' value.
1036         (add_location_to_breakpoint): Likewise.
1037         (break_command_1): Using proper breakpoint_ops according to the
1038         argument passed by the user in the command line.
1039         (bkpt_probe_insert_location): New function.
1040         (bkpt_probe_remove_location): Likewise.
1041         (bkpt_probe_create_sals_from_address): Likewise.
1042         (bkpt_probe_decode_linespec): Likewise.
1043         (tracepoint_probe_create_sals_from_address): Likewise.
1044         (tracepoint_probe_decode_linespec): Likewise.
1045         (tracepoint_probe_breakpoint_ops): New variable.
1046         (trace_command): Using proper breakpoint_ops according to the
1047         argument passed by the user in the command line.
1048         (initialize_breakpoint_ops): Initializing breakpoint_ops for
1049         static probes on breakpoints and tracepoints.
1050         * breakpoint.h (struct bp_location) <probe>: New field.
1051         * cli-utils.c (skip_spaces_const): New function.
1052         (extract_arg): Likewise.
1053         * cli-utils.h (skip_spaces_const): Likewise.
1054         (extract_arg): Likewise.
1055         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
1056         * configure.ac: Append `stap-probe.o' to be generated when ELF
1057         support is present.
1058         * configure: Regenerate.
1059         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
1060         * elfread.c: Include `probe.h' and `arch-utils.h'.
1061         (probe_key): New variable.
1062         (elf_get_probes): New function.
1063         (elf_get_probe_argument_count): Likewise.
1064         (elf_evaluate_probe_argument): Likewise.
1065         (elf_compile_to_ax): Likewise.
1066         (elf_symfile_relocate_probe): Likewise.
1067         (stap_probe_key_free): Likewise.
1068         (elf_probe_fns): New variable.
1069         (elf_sym_fns): Add `sym_probe_fns' value.
1070         (elf_sym_fns_lazy_psyms): Likewise.
1071         (elf_sym_fns_gdb_index): Likewise.
1072         (_initialize_elfread): Initialize objfile cache for static
1073         probes.
1074         * gdb_vecs.h (struct probe): New forward declaration.
1075         (probe_p): New VEC declaration.
1076         * gdbarch.c: Regenerate.
1077         * gdbarch.h: Regenerate.
1078         * gdbarch.sh (stap_integer_prefix): New variable.
1079         (stap_integer_suffix): Likewise.
1080         (stap_register_prefix): Likewise.
1081         (stap_register_suffix): Likewise.
1082         (stap_register_indirection_prefix): Likewise.
1083         (stap_register_indirection_suffix): Likewise.
1084         (stap_gdb_register_prefix): Likewise.
1085         (stap_gdb_register_suffix): Likewise.
1086         (stap_is_single_operand): New function.
1087         (stap_parse_special_token): Likewise.
1088         (struct stap_parse_info): Forward declaration.
1089         * i386-tdep.c: Including headers needed to perform the parsing
1090         of SystemTap probes' arguments.
1091         (i386_stap_is_single_operand): New function.
1092         (i386_stap_parse_special_token): Likewise.
1093         (i386_elf_init_abi): Initializing proper fields used by SystemTap
1094         probes' arguments parser.
1095         * i386-tdep.h (i386_stap_is_single_operand): New function.
1096         (i386_stap_parse_special_token): Likewise.
1097         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
1098         * mipsread.c (ecoff_sym_fns): Likewise.
1099         * objfiles.c (objfile_relocate1): Support relocation for static
1100         probes.
1101         * parse.c (prefixify_expression): Remove static declaration.
1102         (initialize_expout): Likewise.
1103         (reallocate_expout): Likewise.
1104         * parser-defs.h (initialize_expout): Declare function.
1105         (reallocate_expout): Likewise.
1106         (prefixify_expression): Likewise.
1107         * ppc-linux-tdep.c: Including headers needed to perform the parsing
1108         of SystemTap probes' arguments.
1109         (ppc_stap_is_single_operand): New function.
1110         (ppc_stap_parse_special_token): Likewise.
1111         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
1112         probes' arguments parser.
1113         * probe.c: New file, for generic statically defined probe support.
1114         * probe.h: Likewise.
1115         * s390-tdep.c: Including headers needed to perform the parsing of
1116         SystemTap probes' arguments.
1117         (s390_stap_is_single_operand): New function.
1118         (s390_gdbarch_init): Initializing proper fields used by SystemTap
1119         probes' arguments parser.
1120         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
1121         * stap-probe.c: New file, for SystemTap probe support.
1122         * stap-probe.h: Likewise.
1123         * symfile.h: Include `gdb_vecs.h'.
1124         (struct sym_probe_fns): New struct.
1125         (struct sym_fns) <sym_probe_fns>: New field.
1126         * symtab.c (init_sal): Initialize `probe' field.
1127         * symtab.h (struct probe): Forward declaration.
1128         (struct symtab_and_line) <probe>: New field.
1129         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
1130         locations.
1131         (stop_tracing): Likewise.
1132         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
1133
1134 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
1135             Tom Tromey  <tromey@redhat.com>
1136
1137         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
1138         and to compile agent expressions.
1139         * infrun.c (siginfo_make_value): New argument `ignore'.
1140         (siginfo_funcs): New struct.
1141         (_initialize_infrun): New argument when calling
1142         `create_internalvar_type_lazy'.
1143         * thread.c (thread_id_make_value): New argument `ignore'.
1144         (thread_funcs): New struct.
1145         (_initialize_thread): New argument when calling
1146         `create_internalvar_type_lazy'.
1147         * tracepoint.c (sdata_make_value): New argument `ignore'.
1148         (sdata_funcs): New struct.
1149         (_initialize_tracepoint): New argument when calling
1150         `create_internalvar_type_lazy'.
1151         * value.c (make_value): New struct.
1152         (create_internalvar_type_lazy): New argument `data'.
1153         (compile_internalvar_to_ax): New function.
1154         (value_of_internalvar): Properly handling `make_value' case.
1155         (clear_internalvar): Likewise.
1156         (show_convenience): Adding `TRY_CATCH' block.
1157         * value.h (internalvar_make_value): Delete, replace by...
1158         (struct internalvar_funcs): ... this.
1159         (create_internalvar_type_lazy) <fun>: Delete argument.
1160         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
1161         (compile_internalvar_to_ax): New function.
1162         * windows-tdep.c (tlb_make_value): New argument `ignore'.
1163         (tlb_funcs): New struct.
1164         (_initialize_windows_tdep): New argument when calling
1165         `create_internalvar_type_lazy'.
1166
1167 2012-04-27  Mark Wielaard  <mjw@redhat.com>
1168
1169         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
1170         see whether it is an address or a constant offset from DW_AT_low_pc.
1171         (dwarf2_record_block_ranges): Likewise.
1172         (read_partial_die): Likewise.
1173
1174 2012-04-26  Mark Wielaard  <mjw@redhat.com>
1175
1176         * MAINTAINERS (Write After Approval): Add myself to the list.
1177
1178 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
1179
1180         * proc-utils.h (proc_prettyprint_signalset): New prototype.
1181         (proc_prettyprint_signal): Likewise.
1182         (proc_prettyprint_faultset): Likewise.
1183         (proc_prettyprint_fault): Likewise.
1184         (proc_prettyprint_actionset): Likewise.
1185         (proc_prettyprint_flags): Move to new proc-flags.c section.
1186         (proc_prettyfprint_flags): New prototype.
1187         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
1188         (proc_syscall, proc_cursig): Likewise.
1189         (proc_set_kill_on_last_close): Likewise.
1190         (proc_unset_kill_on_last_close): Likewise.
1191         (proc_set_watchpoint): Make static.
1192         (proc_delete_dead_threads): Likewise.
1193         (procfs_set_watchpoint): Likewise.
1194         (_initialize_procfs): Add prototype.
1195         * proc-events.c: Include proc-utils.h.
1196         (init_syscall_table): Make static.
1197         * proc-api.c (_initialize_proc_api): Add prototype.
1198         * proc-flags.c: Include proc-utils.h.
1199
1200 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
1201
1202         * configure.ac: Add AC_ARG_PROGRAM.
1203         * configure: Regenerate.
1204
1205 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1206
1207         Fix DW_AT_lower_bound defaults for DWARF-4+.
1208         * dwarf2read.c (read_subrange_type): Remove initialization of low and
1209         high.  New variable low_default_is_valid.  Implement DWARF-4+
1210         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
1211         no default by the DWARF standard.
1212
1213 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
1214             Maciej W. Rozycki  <macro@codesourcery.com>
1215
1216         * infrun.c (handle_inferior_event): Move the check for return
1217         trampolines ahead of the check for function trampolines.
1218         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
1219         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
1220         (mips_str_mips16_ret_stub): Likewise.
1221         (mips_str_call_fp_stub): Likewise.
1222         (mips_str_call_stub): Likewise.
1223         (mips_str_fn_stub): Likewise.
1224         (mips_str_pic): Likewise.
1225         (mips_in_frame_stub): New function.
1226         (mips_unwind_pc): Return the return address rather than the PC
1227         if the PC of an intermediate frame is inside a call thunk.
1228         (mips_is_stub_suffix): New function.
1229         (mips_is_stub_mode): Likewise.
1230         (mips_get_mips16_fn_stub_pc): Likewise.
1231         (mips_skip_mips16_trampoline_code): Update to handle all the
1232         currently generated stub types.  Don't recurse into __fn_stub
1233         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
1234         Use cooked register accesses.
1235         (mips_in_return_stub): Reintroduce function.
1236         (mips_skip_trampoline_code): Traverse trampolines recursively.
1237         (mips_gdbarch_init): Handle MIPS16 return trampolines.
1238
1239 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
1240
1241         GDB 7.4.1 released.
1242
1243 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
1244
1245         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
1246         * features/arm-with-m-vfp-d16.xml: New file. Describes
1247         Cortex-M with VFPv4-sp-d16 FPU register layout.
1248         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
1249         * features/arm-with-m-vfp-d16.c: New. Generated from above.
1250         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
1251         (arm-register_g_packet_guesses): Add vfp-d16 guess.
1252         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
1253
1254 2012-04-25  Doug Evans  <dje@google.com>
1255
1256         * cli/cli-decode.c (print_doc_line): Use stream instead of
1257         current_uiout.
1258
1259 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
1260
1261         * features/arm-with-iwmmxt.c: Regenerate.
1262         * features/arm-with-m-fpa-layout.c: Likewise.
1263         * features/arm-with-m.c: Likewise.
1264         * features/arm-with-neon.c: Likewise.
1265         * features/arm-with-vfpv2.c: Likewise.
1266         * features/arm-with-vfpv3.c: Likewise.
1267         * features/mips-dsp-linux.c: Likewise.
1268         * features/mips-linux.c: Likewise.
1269         * features/mips64-dsp-linux.c: Likewise.
1270         * features/mips64-linux.c: Likewise.
1271         * features/s390-linux32.c: Likewise.
1272         * features/s390-linux32v1.c: Likewise.
1273         * features/s390-linux32v2.c: Likewise.
1274         * features/s390-linux64.c: Likewise.
1275         * features/s390-linux64v1.c: Likewise.
1276         * features/s390-linux64v2.c: Likewise.
1277         * features/s390x-linux64.c: Likewise.
1278         * features/s390x-linux64v1.c: Likewise.
1279         * features/s390x-linux64v2.c: Likewise.
1280         * features/tic6x-c62x-linux.c: Likewise.
1281         * features/tic6x-c62x.c: Likewise.
1282         * features/tic6x-c64x-linux.c: Likewise.
1283         * features/tic6x-c64x.c: Likewise.
1284         * features/tic6x-c64xp-linux.c: Likewise.
1285         * features/tic6x-c64xp.c: Likewise.
1286         * target-descriptions.c: Only generate `field_type' and `type'
1287         variables when needed.
1288
1289 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
1290
1291         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
1292
1293 2012-04-25  Doug Evans  <dje@google.com>
1294
1295         Initial pass at Go language support.
1296         * NEWS: Mention Go.
1297         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
1298         go-valprint.c.
1299         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
1300         (YYFILES): Add go-exp.c.
1301         (YYOBJ): Add go-exp.o.
1302         (local-maintainer-clean): Delete go-exp.c.
1303         * defs.h (enum language): Add language_go.
1304         * dwarf2read.c: #include "go-lang.h".
1305         (fixup_go_packaging): New function.
1306         (process_full_comp_unit): Call it when processing Go CUs.
1307         (dwarf2_physname): Add Go support.
1308         (read_file_scope): Handle missing language spec for GNU Go.
1309         (set_cu_language): Handle DW_LANG_Go.
1310         * go-exp.y: New file.
1311         * go-lang.h: New file.
1312         * go-lang.c: New file.
1313         * go-typeprint.c: New file.
1314         * go-valprint.c: New file.
1315         * symtab.c: #include "go-lang.h".
1316         (symbol_set_language): Handle language_go.
1317         (symbol_find_demangled_name, symbol_set_names): Ditto.
1318         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
1319
1320 2012-04-24  Jim Meyering  <meyering@redhat.com>
1321
1322         avoid a few strncpy-induced buffer overruns
1323         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
1324         fname and psargs before trying to concatenate.
1325         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
1326         "name" before applying strchr.
1327
1328 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
1329
1330         * CONTRIBUTE: Use unified diff instead of context diff when
1331         generating patches.
1332
1333 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
1334
1335         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
1336         code.  Handle JR.HB correctly.
1337
1338 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
1339
1340         * mips-tdep.c
1341         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
1342         with the other MIPS16 helpers.
1343
1344 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
1345
1346         * observer.sh: Conditionally declare `args', thus cleaning up
1347         unused instances of this variable.
1348
1349 2012-04-24  Yao Qi  <yao@codesourcery.com>
1350
1351         Revert this patch to allow breakpoint always-inserted
1352         in record target.
1353         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
1354         * breakpoint.c: Include record.h.
1355         (breakpoints_always_inserted_mode): Return false when the record
1356         target is in use.
1357
1358         * breakpoint.c (iterate_over_bp_locations): New.
1359         * breakpoint.h: Declare.
1360         New typedef walk_bp_location_callback.
1361         * record.c (record_open): Call record_init_record_breakpoints.
1362         (record_sync_record_breakpoints): New.
1363         (record_init_record_breakpoints): New.
1364         * NEWS: Mention supporting breakpoint always-inserted mode in
1365         record target.
1366
1367 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
1368
1369         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
1370         any thread.
1371
1372 2012-04-24  Yao Qi  <yao@codesourcery.com>
1373
1374         * breakpoint.c (ep_is_catchpoint): Renamed to ...
1375         (is_catchpoint): ... it.
1376         (print_one_breakpoint_location): Caller update.
1377         * breakpoint.h: Update declaration.
1378
1379 2012-04-23  David S. Miller  <davem@davemloft.net>
1380
1381         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
1382
1383 2012-04-23  Tom Tromey  <tromey@redhat.com>
1384
1385         * buildsym.c (add_free_pendings): Remove.
1386         * buildsym.h (add_free_pendings): Remove.
1387
1388 2012-04-23  Doug Evans  <dje@google.com>
1389
1390         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
1391         attr.u.unsnd instead of attr.u.addr.
1392         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
1393         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
1394         DW_FORM_ref_udata.
1395         (dump_die_shallow): Update cases DW_FORM_ref_addr,
1396         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
1397         DW_FORM_ref_udata.
1398         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
1399
1400 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
1401
1402         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
1403         (mips_o32_return_value): Likewise.
1404         (mips_o64_return_value): Likewise.
1405
1406 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
1407
1408         * ada-lang.c (ada_evaluate_subexp): Add cases for
1409         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
1410         their treatment in eval.c.
1411
1412 2012-04-21  David S. Miller  <davem@davemloft.net>
1413
1414         * sparc-tdep.c (X_DISP10): Define.
1415         (sparc_analyze_control_transfer): Handle compare-and-branch.
1416
1417 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
1418
1419         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
1420         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
1421
1422 2012-04-20  Nigel Stephens  <nigel@mips.com>
1423             Maciej W. Rozycki  <macro@codesourcery.com>
1424
1425         * mips-tdep.c (mips_float_register_p): New function.
1426         (mips_convert_register_float_case_p): Use mips_float_register_p.
1427         (mips_register_type): Likewise.
1428         (mips_print_register): Likewise.
1429         (print_gp_register_row): Likewise.
1430         (mips_print_registers_info): Likewise.
1431
1432 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
1433
1434         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
1435         of mips16 symbols.
1436
1437 2012-04-20  Andrew Pinski  <apinski@cavium.com>
1438
1439         * MAINTAINERS (Write After Approval): Add myself to the list.
1440
1441 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
1442
1443         * MAINTAINERS: Update my e-mail address.
1444
1445 2012-04-20  Pedro Alves  <palves@redhat.com>
1446
1447         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
1448         $srcdir.
1449         * configure: Regenerate.
1450
1451 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
1452
1453         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
1454         declaration.
1455         * gdb_vecs.h: Declare `const_char_ptr' VEC.
1456
1457 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
1458
1459         Fix compilation compatibility with python-2.4
1460         * python/py-type.c (convert_field): Cast ADDRSTRING for
1461         PyObject_SetAttrString as non-const.  New comment.
1462
1463 2012-04-19  Tom Tromey  <tromey@redhat.com>
1464
1465         * top.c (quit_target): Use all_cleanups.
1466         * main.c (captured_command_loop): Use all_cleanups.
1467         * exceptions.c (throw_exception): Use all_cleanups.
1468
1469 2012-04-19  Pedro Alves  <palves@redhat.com>
1470
1471         * Makefile.in (GNULIB_BUILDDIR): New.
1472         (LIBGNU, INCGNU, GNULIB_H): Adjust.
1473         (SUBDIRS): Add $(GNULIB_BUILDDIR).
1474         (CLEANDIRS). Remove gnulib/import.
1475         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
1476         (all-lib): Ditto.
1477         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
1478         (gnulib/import/Makefile): Replace gnulib/import with
1479         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
1480         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
1481         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
1482         acx_configure_dir.m4.
1483         * acinclude.m4: Include acx_configure_dir.m4.
1484         * acx_configure_dir.m4: New file.
1485         * aclocal.m4: Regenerate.
1486         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
1487         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
1488         (GNULIB): New variable.
1489         (GNULIB_STDINT_H): Adjust.
1490         (AC_OUTPUT): Don't output gnulib/Makefile.
1491         * gdb/defs.h: Include build-gnulib/config.h.
1492         * aclocal.m4: Regenerate.
1493         * config.in: Regenerate.
1494         * configure: Regenerate.
1495
1496         * gnulib/Makefile.in: New file.
1497         * gnulib/configure.ac: New file.
1498         * gnulib/aclocal.m4: New file.
1499         * gnulib/config.in: New file.
1500         * gnulib/configure: New file.
1501         * gnulib/: Re-run gnulib-tool to adjust.
1502
1503 2012-04-19  Doug Evans  <dje@google.com>
1504
1505         * cleanups.h (struct cleanup): Move to cleanups.c.
1506         (make_cleanup_dtor_ftype): New typedef.
1507         (make_cleanup_dtor): Use it.
1508         (ALL_CLEANUPS): Replace with ...
1509         (all_cleanups): ... this.  Declare.  All uses updated.
1510         * cleanups.c: #include "gdb_assert.h".
1511         (sentinel_cleanup): New static global.
1512         (SENTINEL_CLEANUP): Define.
1513         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
1514         (make_my_cleanup2): Assert result is non-NULL.
1515         (all_cleanups): New function.
1516         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
1517         of NULL.
1518
1519 2012-04-19  Pedro Alves  <palves@redhat.com>
1520
1521         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
1522         Adjust paths to gnulib imported files.
1523
1524 2012-04-19  Pedro Alves  <palves@redhat.com>
1525
1526         * gnulib/: Move whole directory ...
1527         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
1528         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
1529         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
1530         (aclocal_m4_deps): Adjust.
1531         * aclocal.m4: Regenerate.
1532         * configure: Regenerate.
1533         * configure.ac: Adjust AC_OUTPUT output.
1534
1535 2012-04-19  Yao Qi  <yao@codesourcery.com>
1536
1537         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
1538         (vec.o): New rule.
1539         * vec.c: Move it ...
1540         * common/vec.c: ... here.
1541         * vec.h: Move it ...
1542         * common/vec.h: ... here.
1543
1544 2012-04-19  Yao Qi  <yao@codesourcery.com>
1545
1546         * gdb-code-style.el: New.
1547
1548 2012-04-18  Pedro Alves  <palves@redhat.com>
1549
1550         Update gnulib from latest git.
1551         (639ea5ae15e39fe48d43e04864b2997301e4b969)
1552
1553         * gnulib/Makefile.am: Update.
1554         * gnulib/dummy.c: Update.
1555         * gnulib/extra/arg-nonnull.h: Update.
1556         * gnulib/extra/c++defs.h: Update.
1557         * gnulib/extra/update-copyright: Update.
1558         * gnulib/extra/warn-on-use.h: Update.
1559         * gnulib/inttypes.in.h: Update.
1560         * gnulib/m4/00gnulib.m4: Update.
1561         * gnulib/m4/extensions.m4: Update.
1562         * gnulib/m4/gnulib-cache.m4: Update.
1563         * gnulib/m4/gnulib-common.m4: Update.
1564         * gnulib/m4/gnulib-comp.m4: Update.
1565         * gnulib/m4/gnulib-tool.m4: Update.
1566         * gnulib/m4/include_next.m4: Update.
1567         * gnulib/m4/inttypes-pri.m4: Update.
1568         * gnulib/m4/inttypes.m4: Update.
1569         * gnulib/m4/longlong.m4: Update.
1570         * gnulib/m4/memchr.m4: Update.
1571         * gnulib/m4/memmem.m4: Update.
1572         * gnulib/m4/mmap-anon.m4: Update.
1573         * gnulib/m4/multiarch.m4: Update.
1574         * gnulib/m4/onceonly.m4: Update.
1575         * gnulib/m4/stddef_h.m4: Update.
1576         * gnulib/m4/stdint.m4: Update.
1577         * gnulib/m4/string_h.m4: Update.
1578         * gnulib/m4/warn-on-use.m4: Update.
1579         * gnulib/m4/wchar_h.m4: Update.
1580         * gnulib/m4/wchar_t.m4: Update.
1581         * gnulib/m4/wint_t.m4: Update.
1582         * gnulib/memchr.c: Update.
1583         * gnulib/memmem.c: Update.
1584         * gnulib/stddef.in.h: Update.
1585         * gnulib/stdint.in.h: Update.
1586         * gnulib/str-two-way.h: Update.
1587         * gnulib/string.in.h: Update.
1588         * gnulib/wchar.in.h: Update.
1589
1590         * gnulib/extra/arg-nonnull.h: Delete.
1591         * gnulib/extra/c++defs.h: Delete.
1592         * gnulib/extra/warn-on-use.h: Delete.
1593         * gnulib/m4/wchar_h.m4: Delete.
1594         * gnulib/m4/wint_t.m4: Delete.
1595         * gnulib/wchar.in.h: Delete.
1596
1597         * gnulib/extra/snippets/arg-nonnull.h: New.
1598         * gnulib/extra/snippets/c++defs.h: New.
1599         * gnulib/extra/snippets/warn-on-use.h: New.
1600
1601         * aclocal.m4: Regenerate.
1602         * config.in: Regenerate.
1603         * configure: Regenerate.
1604         * gnulib/Makefile.in: Regenerate.
1605
1606 2012-04-18  Pedro Alves  <palves@redhat.com>
1607
1608         Reimport the update-copyright module from gnulib
1609         (250b80067c1e1d8faa0c42fb572f721975b929c5).
1610
1611         * configure: Regenerate.
1612         * gnulib/Makefile.am: Update.
1613         * gnulib/Makefile.in: Regenerate.
1614         * gnulib/extra/update-copyright: Update.
1615         * gnulib/m4/gnulib-cache.m4: Update.
1616         * gnulib/m4/gnulib-comp.m4: Update.
1617
1618 2012-04-18  Tristan Gingold  <gingold@adacore.com>
1619
1620         * configure.ac (aix): Put -lpthread into libs.
1621         * configure: Regenerate.
1622
1623 2012-04-18  Tom Tromey  <tromey@redhat.com>
1624
1625         * linespec.c (convert_linespec_to_sals): Don't use
1626         SYMBOL_OBJ_SECTION.
1627         (compare_msymbols): Arguments are minsym_and_objfile, not
1628         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
1629
1630 2012-04-18  Pedro Alves  <palves@redhat.com>
1631
1632         Revert gnulib/ part of:
1633         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
1634         Copyright year update in most files (performed by copyright.sh).
1635
1636 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
1637
1638         Fix 64-bit constants on 32-bit hosts.
1639         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
1640         from unsigned long to ULONGEST.
1641         (read_signed_leb128): Change declaration return type from long to
1642         LONGEST.
1643         (dwarf2_const_value_attr): Change declaration parameter value from long
1644         to LONGEST.
1645         (dwarf2_compute_name): Change variable value from long to LONGEST.
1646         (read_unsigned_leb128): Change return type, variable result and some
1647         casts from unsigned long to ULONGEST.
1648         (read_signed_leb128): Change return type, variable result and some
1649         casts from long to LONGEST.
1650         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
1651         value from long to LONGEST.
1652         (dwarf2_const_value): Change variable value from long to LONGEST.
1653         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
1654         plongest and hex_string.
1655         * symtab.h (struct general_symbol_info): Change ivalue from long to
1656         LONGEST, remove the comment.
1657         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
1658         Change SYMBOL_VALUE format strings to use plongest and hex_string.
1659
1660 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
1661
1662         PR symtab/7259:
1663         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
1664         * ada-lang.c (ada_discrete_type_high_bound)
1665         (ada_discrete_type_low_bound): Fix function comment.  Use
1666         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
1667         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
1668         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
1669         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
1670         Use TYPE_FIELD_ENUMVAL.
1671         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
1672         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
1673         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
1674         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
1675         TYPE_CODE_ENUM.
1676         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
1677         * dwarf2read.c (process_enumeration_scope): Likewise.
1678         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
1679         field.bitpos.
1680         (class StructMainTypePrettyPrinter): Support also
1681         FIELD_LOC_KIND_ENUMVAL.
1682         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
1683         TYPE_CODE_ENUM.
1684         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
1685         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
1686         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
1687         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
1688         field enumval.
1689         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
1690         accommodate enumval.
1691         (struct call_site): Adjust loc_kind to accommodate enumval.
1692         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
1693         (TYPE_FIELD_ENUMVAL): New macros.
1694         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
1695         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
1696         TYPE_CODE_ENUM.
1697         * p-typeprint.c (pascal_type_print_base): Likewise.
1698         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
1699         enumval.
1700         * python/lib/gdb/types.py (make_enum_dict): Likewise.
1701         * python/py-type.c (convert_field): New variable addrstring.  Use
1702         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
1703         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
1704         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
1705         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
1706         TYPE_CODE_ENUM.
1707         * valprint.c (generic_val_print): Likewise.
1708
1709 2012-04-17  Doug Evans  <dje@google.com>
1710
1711         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
1712
1713         * dwarf2read.c: Whitespace fixes.
1714         (lookup_signatured_type): Tweak comment.
1715         (get_die_type_at_offset): Fix comment.
1716
1717 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
1718
1719         * xcoffread.c (xcoff_secnum_to_sections): New function.
1720         (secnum_to_section, secnum_to_bfd_section): Reimplement
1721         using xcoff_secnum_to_sections.  Rename "secnum" parameter
1722         into "n_scnum".
1723         (RECORD_MINIMAL_SYMBOL): Delete.
1724         (record_minimal_symbol): New function.
1725         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
1726         by call to record_minimal_symbol and set misc_func_recorded
1727         to 1.  Set last_csect_sec to the XCOFF section index instead
1728         of GDB's section_offset index.  Update calls to
1729         prim_record_minimal_symbol_and_info to pass the BFD section
1730         as well.
1731
1732 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
1733
1734         * xcoffread.c (read_xcoff_symtab): Delete variables
1735         last_csect_val and last_csect_sec and associated code.
1736
1737 2012-04-17  Doug Evans  <dje@google.com>
1738
1739         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
1740         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
1741         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
1742         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
1743
1744         * cleanups.h: New file.
1745         * cleanups.c: New file.
1746         * Makefile.in (SFILES): Add cleanups.c.
1747         (HFILES_NO_SRCDIR): Add cleanups.h.
1748         (COMMON_OBS): Add cleanups.o.
1749         * defs.h (struct cleanup): Moved to cleanups.h.
1750         (do_cleanups,do_final_cleanups): Ditto.
1751         (discard_cleanups,discard_final_cleanups): Ditto
1752         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
1753         (save_cleanups,save_final_cleanups): Ditto.
1754         (restore_cleanups,restore_final_cleanups): Ditto.
1755         (null_cleanup): Ditto.
1756         (make_my_cleanup,make_my_cleanup2): Ditto.
1757         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
1758         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
1759         (do_cleanups,do_final_cleanups): Ditto.
1760         (discard_cleanups,discard_final_cleanups): Ditto
1761         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
1762         (save_cleanups,save_final_cleanups): Ditto.
1763         (restore_cleanups,restore_final_cleanups): Ditto.
1764         (null_cleanup): Ditto.
1765         (make_my_cleanup,make_my_cleanup2): Ditto.
1766         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
1767
1768         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
1769         make_my_cleanup.
1770         (make_cleanup_dyn_string_delete): Ditto.
1771         (make_cleanup_ui_file_delete): Ditto.
1772         (make_cleanup_ui_out_redirect_pop): Ditto.
1773         (make_cleanup_free_section_addr_info): Ditto.
1774         (make_cleanup_restore_integer): Ditto.
1775         (make_cleanup_unpush_target): Ditto.
1776         (make_cleanup_value_free_to_mark): Ditto.
1777         (make_cleanup_value_free): Ditto.
1778         (make_cleanup_free_so): Ditto.
1779
1780 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1781
1782         New option "set debug auto-load".
1783         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
1784         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
1785         (auto_load_safe_path_vec_update)
1786         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
1787         if DEBUG_AUTO_LOAD.
1788         (file_is_auto_load_safe): New parameters debug_fmt and ....
1789         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
1790         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
1791         caller by explanatory string.
1792         (_initialize_auto_load): Register "set debug auto-load".
1793         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
1794         and ....
1795         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
1796         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
1797         by explanatory string.
1798         * main.c (captured_main): Likewise.
1799         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1800         (source_section_scripts): Likewise.
1801
1802 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1803
1804         New option "set auto-load safe-path".
1805         * NEWS: New commands "set auto-load safe-path"
1806         and "show auto-load safe-path".
1807         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
1808         (auto_load_safe_path, auto_load_safe_path_vec)
1809         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
1810         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
1811         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
1812         (source_gdb_script_for_objfile): New variable is_safe.  Call
1813         file_is_auto_load_safe.  Return if it is not.
1814         (struct loaded_script): New field loaded.
1815         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
1816         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
1817         output "Missing" to "No".
1818         (_initialize_auto_load): New variable cmd.  Initialize
1819         auto_load_safe_path.  Register "set auto-load safe-path",
1820         "show auto-load safe-path" and "add-auto-load-safe-path".
1821         * auto-load.h (maybe_add_script): Add parameter loaded.
1822         (file_is_auto_load_safe): New declaration.
1823         * config.in: Regenerate.
1824         * configure: Regenerate.
1825         * configure.ac: New parameters --with-auto-load-safe-path
1826         and --without-auto-load-safe-path.
1827         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
1828         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
1829         * main.c (captured_main): Check file_is_auto_load_safe for
1830         LOCAL_GDBINIT.
1831         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
1832         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
1833         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
1834         not.
1835
1836 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1837
1838         auto-load: Implementation.
1839         * NEWS: New descriptions for "info auto-load",
1840         "info auto-load gdb-scripts", "info auto-load python-scripts",
1841         "info auto-load local-gdbinit" and "info auto-load libthread-db".
1842         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
1843         and "show auto-load-scripts".  New description for "set auto-load",
1844         "show auto-load", "set auto-load gdb-scripts",
1845         "show auto-load gdb-scripts", "set auto-load python-scripts",
1846         "show auto-load python-scripts", "set auto-load local-gdbinit",
1847         "show auto-load local-gdbinit", "set auto-load libthread-db" and
1848         "show auto-load libthread-db".
1849         * auto-load.c: Remove include python/python-internal.h.  Add includes
1850         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
1851         cli/cli-setshow.h.
1852         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
1853         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
1854         (gdbpy_global_auto_load): Rename to ...
1855         (global_auto_load): ... here.
1856         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
1857         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
1858         (script_language_gdb, source_gdb_script_for_objfile): New.
1859         (struct loaded_script): New field language.
1860         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
1861         LANGUAGE.
1862         (maybe_add_script): Add parameter language.  Drop redundant
1863         entry.full_path initialization.  Initialize entry.language and
1864         (*slot)->language.
1865         (auto_load_objfile_script): Change parameter suffix to language.
1866         Remove the call of maybe_add_script.
1867         Call language->source_script_for_objfile.
1868         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
1869         New.
1870         (collect_matching_scripts): Adjust it for
1871         struct collect_matching_scripts_data.
1872         (auto_load_info_scripts_pattern_nl): New variable.
1873         (info_auto_load_scripts): Rename to ...
1874         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
1875         for struct collect_matching_scripts_data.
1876         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
1877         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
1878         (auto_load_show_cmdlist_get, info_auto_load_cmd)
1879         (auto_load_info_cmdlist_get): New.
1880         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
1881         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
1882         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
1883         "info auto-load local-gdbinit".
1884         * auto-load.h (struct script_language): New.
1885         (gdbpy_global_auto_load): Rename to ...
1886         (global_auto_load): ... here.
1887         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
1888         (auto_load_local_gdbinit_loaded): New declarations.
1889         (maybe_add_script): New parameter language.
1890         (auto_load_objfile_script): Change parameter suffix to language.
1891         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
1892         (auto_load_info_scripts, auto_load_set_cmdlist_get)
1893         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
1894         declarations.
1895         * linux-thread-db.c: Include auto-load.h and ctype.h.
1896         (auto_load_thread_db, show_auto_load_thread_db): New.
1897         (struct thread_db_info): New field filename.
1898         (delete_thread_db_info): Call xfree for FILENAME.
1899         (try_thread_db_load): Initialize FILENAME.
1900         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
1901         if !AUTO_LOAD_THREAD_DB.
1902         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
1903         (_initialize_thread_db): Install auto_load_thread_db
1904         as "set auto-load libthread-db" and install info_auto_load_libthread_db
1905         as "info auto-load libthread-db".
1906         * main.c (captured_main): Rename gdbpy_global_auto_load to
1907         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
1908         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
1909         (print_gdb_help): Extend the help for 'local init file'.
1910         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
1911         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
1912         (auto_load_scripts): Rename to ...
1913         (auto_load_python_scripts): ... here, update the comment.
1914         (gdbpy_load_auto_script_for_objfile): New declaration.
1915         (show_auto_load_python_scripts, script_language_python)
1916         (gdbpy_load_auto_script_for_objfile): New.
1917         (source_section_scripts): Refactor the code.
1918         (load_auto_scripts_for_objfile): Rename to ...
1919         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
1920         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
1921         (info_auto_load_python_scripts): New.
1922         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
1923         Rename "set auto-load-scripts" to "set auto-load python-scripts".
1924         Register "set auto-load-scripts" as its deprecated alias.  Register
1925         "info auto-load python-scripts".  Register "info auto-load-scripts" as
1926         its deprecated alias.
1927         (load_auto_scripts_for_objfile): Rename to ...
1928         (gdbpy_load_auto_scripts_for_objfile): ... here.
1929         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
1930         (gdbpy_load_auto_scripts_for_objfile): ... here.
1931
1932 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1933
1934         auto-load: Move files.
1935         * Makefile.in (SFILES): Add auto-load.c.
1936         (HFILES_NO_SRCDIR): Add auto-load.h.
1937         (COMMON_OBS): Add auto-load.o.
1938         (distclean): Change .gdbinit for gdb-gdb.gdb.
1939         * auto-load.c: New file, with parts from python/py-auto-load.c.
1940         * auto-load.h: New file, with parts from python/python.h.
1941         * configure: Regenerate.
1942         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
1943         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
1944         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
1945         * main.c: Include auto-load.h.
1946         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
1947         command.h, observer.h and progspace.h to auto-load.c.  Add include
1948         auto-load.h.
1949         (gdbpy_global_auto_load, struct auto_load_pspace_info)
1950         (struct loaded_script, auto_load_pspace_data)
1951         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
1952         (hash_loaded_script_entry, eq_loaded_script_entry)
1953         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
1954         (maybe_add_script): Move to auto-load.c.
1955         (source_section_scripts): Change maybe_add_script parameters passing,
1956         use script_not_found_warning_print.
1957         (clear_section_scripts, auto_load_objfile_script)
1958         (auto_load_new_objfile, loaded_script_ptr)
1959         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
1960         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
1961         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
1962         auto_load_new_objfile and info_auto_load_scripts initizations to
1963         auto-load.c.
1964         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
1965
1966 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1967
1968         Code cleanup.
1969         * charset.c (find_charset_names): Remove variables ix and elt.
1970         Use free_char_ptr_vec.
1971         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
1972         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
1973         debugdir_end.  New variable debugdir_len.
1974         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
1975         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
1976         declarations.
1977         * progspace.c (clear_program_space_solib_cache): Remove variables ix
1978         and elt.  Use free_char_ptr_vec.
1979         * source.c (add_path): Remove variables argv, arg and argv_index.
1980         New variables dir_vec, back_to, ix and name.
1981         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
1982         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
1983         no longer expecting DIRNAME_SEPARATOR.
1984         (openp): Remove variable p, p1 and len.  New variables dir_vec,
1985         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
1986         no longer expecting DIRNAME_SEPARATOR.
1987         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
1988         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
1989         debugdir_end.
1990         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
1991         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
1992         (dirnames_to_char_ptr_vec): New functions.
1993
1994 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1995
1996         Code cleanup.
1997         * source.c (add_path): Remove always true conditional 'p == 0' and
1998         unindent its code block.
1999
2000 2012-04-17  Pedro Alves  <palves@redhat.com>
2001
2002         * gdbtypes.h (FIELD_BITPOS): Rename to ...
2003         (FIELD_BITPOS_LVAL): ... this.
2004         (FIELD_BITPOS): New.
2005         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
2006         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
2007         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
2008         SET_FIELD_BITPOS.
2009         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
2010         SET_FIELD_BITPOS.
2011         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
2012         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
2013         * target-descriptions.c (tdesc_gdb_type): Adjust to use
2014         SET_FIELD_BITPOS.
2015
2016 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2017
2018         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
2019         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
2020         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
2021         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
2022         * jv-lang.c (java_link_class_type): Likewise, once.
2023         * stabsread.c (read_enum_type): Likewise.
2024
2025 2012-04-16  Yao Qi  <yao@codesourcery.com>
2026
2027         * common/agent.c (agent_run_command): Add one more parameter `len'.
2028         Update callers.
2029         * common/agent.h: Update declaration.
2030         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
2031         Update.
2032         (linux_child_static_tracepoint_markers_by_strid): Ditto.
2033
2034 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
2035
2036         PR mi/13393
2037         * value.c (value_actual_type): New function.
2038         * value.h (value_actual_type): New declaration.
2039         * varobj.c (update_type_if_necessary): New function.
2040         (varobj_create): Call value_actual_type instead of
2041         value_type.
2042         (install_dynamic_child): distinct changed and type changed MI variable
2043         objects.
2044         (update_dynamic_varobj_children): Updated for install_dynamic_child
2045         change.  All callers updated.
2046         (varobj_update): Support for MI variable object type change if
2047         the value changed and RTTI is used to determine the type.
2048         (create_child_with_value): Call value_actual_type instead of
2049         value_type.
2050         (adjust_value_for_child_access): Extended with a new parameter which
2051         specify whether the given value should be casted to enclosing type.
2052         All callers updated.
2053
2054 2012-04-14  Yao Qi  <yao@codesourcery.com>
2055
2056         Import gnulib module inttypes from git
2057         (250b80067c1e1d8faa0c42fb572f721975b929c5)
2058         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
2059         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
2060         gnulib/m4/inttypes-pri.m4
2061         * aclocal.m4, config.in, configure: Regenerated.
2062         * gnulib/Makefile.am: Update.
2063         * gnulib/Makefile.in: Update.
2064         * gnulib/m4/gnulib-cache.m4: Update.
2065         * gnulib/m4/gnulib-comp.m4: Update.
2066         * gnulib/inttypes.in.h: New.
2067         * gnulib/m4/inttypes-pri.m4: New.
2068         * gnulib/m4/inttypes.m4: New.
2069
2070 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
2071
2072         * infrun.c (resume): Update PC address to the real PC after
2073         preparing to do displaced stepping.
2074
2075 2012-04-12  Doug Evans  <dje@google.com>
2076
2077         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
2078         All callers updated.
2079
2080 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
2081
2082         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
2083
2084 2012-04-12  Doug Evans  <dje@google.com>
2085
2086         * dwarf2read.c (create_all_type_units): Renamed from
2087         create_debug_types_hash_table.  All callers updated.
2088
2089         * dwarf2read.c (create_signatured_type_table_from_index): Rename
2090         local type_sig to sig_type, type_offset to type_offset_in_tu.
2091         (hash_signatured_type): Renamed from hash_type_signature,
2092         all callers updated.
2093         (eq_signatured_type): Renamed from eq_type_signature,
2094         all callers updated.
2095         (create_debug_types_hash_table): Rename local type_sig to sig_type.
2096         (process_enumeration_scope): Ditto.
2097         (lookup_signatured_type_at_offset): Ditto.
2098         (load_full_type_unit, read_signatured_type): Ditto.
2099
2100 2012-04-12  Yao Qi  <yao@codesourcery.com>
2101
2102         * remote.c (async_remote_interrupt): Correct function name in
2103         debug message.
2104         (async_remote_interrupt_twice): Ditto.
2105
2106 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
2107
2108         * source.c (find_and_open_source): Consistently pass resulting
2109         full path through xfullpath.
2110
2111 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
2112
2113         Provide more specific displaced-stepping memory error message.
2114         * infrun.c (displaced_step_prepare): New variable status.  Call
2115         target_read_memory instead of read_memory, provide more specific
2116         error message.
2117
2118 2012-04-11  Tristan Gingold  <gingold@adacore.com>
2119
2120         PR gdb/13901
2121         * darwin-nat.c (darwin_execvp): Revert previous patch.
2122
2123 2012-04-11  Tristan Gingold  <gingold@adacore.com>
2124
2125         PR gdb/13901
2126         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
2127         in case of change.
2128
2129 2012-04-11  Tristan Gingold  <gingold@adacore.com>
2130
2131         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
2132         warning.
2133
2134 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
2135
2136         New command 'explore' which helps explore values and types in
2137         scope.
2138         * NEWS: Add an entry about the new 'explore' command.
2139         * data-directory/Makefile.in: Add gdb/command/explore.py
2140         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
2141         command using the GDB Python API.
2142
2143 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
2144
2145         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
2146         extension in jump target calculation.
2147
2148 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
2149
2150         * mips-tdep.c (mips32_next_pc): Handle JALX.
2151
2152 2012-04-10  Yao Qi  <yao@codesourcery.com>
2153
2154         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
2155
2156 2012-04-10  Yao Qi  <yao@codesourcery.com>
2157
2158         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
2159         and gnulib/m4/gnulib-tool.m4.
2160
2161 2012-04-10  Doug Evans  <dje@google.com>
2162
2163         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
2164         (load_partial_dies): Clarify comment.
2165         (find_partial_die): Support rereading type units.
2166         Clarify CU handling, if we know offset is in CU, don't search for the
2167         containing CU.  Add comment regarding memory waste.
2168
2169 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
2170
2171         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
2172         i386/x32-avx and i386/x32-avx-linux.
2173         (i386/x32-expedite): New.
2174         (i386/x32-linux-expedite): Likewise.
2175         (i386/x32-avx-expedite): Likewise.
2176         (i386/x32-avx-linux-expedite): Likewise.
2177         ($(outdir)/i386/x32.dat): Likewise.
2178         ($(outdir)/i386/x32-linux.dat): Likewise.
2179         ($(outdir)/i386/x32-avx.dat): Likewise.
2180         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
2181
2182         * features/i386/x32-avx-linux.xml: New file.
2183         * features/i386/x32-avx.xml: Likewise.
2184         * features/i386/x32-core.xml: Likewise.
2185         * features/i386/x32-linux.xml: Likewise.
2186         * features/i386/x32.xml: Likewise.
2187
2188         * features/i386/x32-avx-linux.c: New.  Generated.
2189         * features/i386/x32-avx.c: Likewise.
2190         * features/i386/x32-linux.c: Likewise.
2191         * features/i386/x32.c: Likewise.
2192         * regformats/i386/x32-avx-linux.dat: Likewise.
2193         * regformats/i386/x32-avx.dat: Likewise.
2194         * regformats/i386/x32-linux.dat: Likewise.
2195         * regformats/i386/x32.dat: Likewise.
2196
2197 2012-04-10  Tristan Gingold  <gingold@adacore.com>
2198
2199         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
2200         code to kill the inferior.
2201
2202 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
2203
2204         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2205         defines.
2206         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2207         defines.
2208         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
2209         (yyvsp): New defines.
2210         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2211         defines.
2212         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2213         defines.
2214         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2215         defines.
2216         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2217         defines.
2218         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2219         defines.
2220
2221 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
2222
2223         * sparc64-tdep.c (sparc64_store_arguments)
2224         (sparc64_store_arguments): Fix coding style.
2225
2226 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
2227
2228         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
2229         complex floats, adjust some related comments and tighten a related
2230         assertion.
2231         (sparc64_extract_return_value): Handle complex floats.
2232
2233 2012-04-07  Doug Evans  <dje@google.com>
2234
2235         * dwarf2read.c (load_partial_dies): Change condition to assert.
2236
2237 2012-04-06  Doug Evans  <dje@google.com>
2238
2239         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
2240         "mov %rsp,%rbp".
2241
2242 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
2243
2244         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
2245         fencepost error.
2246         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
2247         (v850_gdbarch_init): Set `num_regs' as appropriate for the
2248         architecture.
2249
2250 2012-04-05  Keith Seitz  <keiths@redhat.com>
2251
2252         * linespec.c (decode_compound): Remove.
2253         (enum offset_relative_sign): New enum.
2254         (struct line_offset): New struct.
2255         (struct linespec): New struct.
2256         (struct linespec_state): Move file_symtabs,
2257         user_filename, and user_function into struct linespec.
2258         Make result an anonymous struct holding vectors of
2259         symbolp and minsym_and_objfile_d.
2260         Add language member.
2261         (enum ls_token_type): New enum.
2262         (linespec_keywords): New array.
2263         (struct ls_token): New struct.
2264         (struct ls_parser): New struct.
2265         (linespec_lexer_lex_number): New function.
2266         (linespec_lexer_lex_keyword): New function.
2267         (is_ada_operator): New function.
2268         (skip_quote_char): New function.
2269         (copy_token_string): New function.
2270         (is_closing_quote_enclosed): New function.
2271         (find_parameter_list_end): New function.
2272         (linespec_lexer_lex_string): New function.
2273         (linespec_lexer_lex_one): New function.
2274         (linespec_lexer_consume_token): New function.
2275         (linespec_lexer_peek_token): New function.
2276         (cplusplus_error): Remove unused function.
2277         (find_methods): Update comment.
2278         (find_toplevel_char): Return const.
2279         (is_objc_method_format): Remove unused function.
2280         (find_toplevel_string): New function.
2281         (is_linespec_boundary): Remove.
2282         (symbol_not_found_error): New function.
2283         (find_method_overload_end): Remove function.
2284         (unexpected_linespec_error): New function.
2285         (keep_name_info): Remove.
2286         (linespec_parse_line_offset): New function.
2287         (linespec_parse_basic): New function.
2288         (canonicalize_linespec): New function.
2289         (decode_line_internal): Remove.
2290         (create_sals_line_offset): New function adapted from
2291         decode_all_digits.
2292         (convert_linespec_to_sals): New function.
2293         (parse_linespec): New function.
2294         (linespec_parser_new): New function.
2295         (linespec_state_destructor): Change parameter type to
2296         struct linespec_state *.
2297         Add language parameter.
2298         Remove freeing of moved members.
2299         (linespec_parser_delete): New function.
2300         (decode_line_full): Use parse_linespec and linespec_parser_new.
2301         (decode_line_1): Likewise.
2302         (decode_indirect): Rename to ...
2303         (linespec_expression_to_pc): ... this and rewrite
2304         to simply find CORE_ADDR, storing this result for later
2305         conversion to SALs.
2306         (locate_first_half): Remove.
2307         (deocde_objc): Add parameter LS.
2308         Initialize new struct collect_info members.
2309         Handle minimal symbols, too.
2310         (decode_compound): Delete.
2311         (lookup_prefix_sym): Rewrite.
2312         (compare_msymbols): New function.
2313         (find_method): Rewrite.
2314         Do not call cplusplus_error.
2315         (symtabs_from_filename): Rewrite.
2316         (collect_function_symbols): Delete.
2317         (find_function_symbols): Rewrite without ARGPTR-style
2318         processing.
2319         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
2320         (decode_dollar): Adapted and renamed to ...
2321         (linespec_parse_variable): ... this.
2322         (find_linespec_symbols): New function.
2323         (decode_label): Adapted and renamed to ...
2324         (find_label_symbols): ... this.
2325         (decode_digits_list_mode): Add and use LS argument.
2326         (decode_digits_ordinary): Likewise.
2327         (collect_symbols): Do not collect SALs, just symbols and msymbols.
2328         If in list mode, allow any symbol class.  Otherwise, only
2329         permit LOC_BLOCK symbols.
2330         (minsym_found): Update comments.
2331         (search_minsyms_for_name): Do not convert the matching symbol
2332         into a SAL.  Simply push the symbol and objfile into the
2333         result vector.
2334         (decode_variable): Delete. Contents adapted into
2335         find_linespec_symbols.
2336
2337         * cp-support.c (SKIP_SPACE): Remove.
2338         (operator_tokens): Remove unused global.
2339         (cp_validate_operator): Remove.
2340         * cp-support.h (cp_validate_operator): Remove declaration.
2341
2342 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
2343
2344         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
2345         for TYPE_VPTR_FIELDNO.
2346         * valprint.c (valprint_check_validity): Make it global, move the
2347         function comment ...
2348         * value.h (valprint_check_validity): ... to this new declaration.
2349
2350 2012-04-02  Tristan Gingold  <gingold@adacore.com>
2351
2352         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
2353         the STATE32 api for i386 state.
2354         (i386_darwin_store_inferior_registers): Likewise.
2355
2356 2012-04-02  Tristan Gingold  <gingold@adacore.com>
2357
2358         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
2359         SS offset.
2360         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
2361         format_string.
2362
2363 2012-04-02  Tristan Gingold  <gingold@adacore.com>
2364
2365         PR gdb/13901
2366         * darwin-nat.c (darwin_execvp): Set binary preference.
2367
2368 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
2369
2370         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
2371
2372 2012-03-30  Tom Tromey  <tromey@redhat.com>
2373
2374         * python/python.c (gdbpy_decode_line): Move cleanup creation out
2375         of TRY_CATCH.  Fix error handling.
2376         * python/py-value.c (convert_value_from_python): Move 'old'
2377         declaration to innermost scope.
2378
2379 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2380             Andrey Smirnov  <andrew.smirnov@gmail.com>
2381
2382         -Wshadow warning fix.
2383         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
2384         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
2385         Adjust code accordingly.
2386
2387 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2388
2389         * ada-lang.c (symbol_completion_add): Rename parameter
2390         "encoded" into "encoded_p".  Ajust code and documentation
2391         accordingly.
2392
2393 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2394             Andrey Smirnov  <andrew.smirnov@gmail.com>
2395
2396         -Wshadow warning fix.
2397         * ada-lang.c (symbol_completion_add): Rename parameter
2398         "wild_match" into wild_match_p.  Update code and documentation
2399         accordingly.
2400
2401 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2402
2403         * ada-lang.c (symbol_completion_match): Rename parameter
2404         "encoded" into "encoded_p".  Ajust code and documentation
2405         accordingly.
2406
2407 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2408             Andrey Smirnov  <andrew.smirnov@gmail.com>
2409
2410         -Wshadow warning fix.
2411         * ada-lang.c (symbol_completion_match): Rename parameter
2412         "wild_match" into "wild_match_p".  Adjust code and function
2413         documentation accordingly.
2414
2415 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2416             Andrey Smirnov  <andrew.smirnov@gmail.com>
2417
2418         -Wshadow warning fix.
2419         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
2420         "symbol_info" into "info".  Adjust code accordingly.
2421         (ada_lookup_symbol): Likewise.
2422
2423 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2424
2425         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
2426         of this function's documentation.
2427
2428 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2429             Andrey Smirnov  <andrew.smirnov@gmail.com>
2430
2431         -Wshadow warning fix.
2432         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
2433         variable into "wild_match_p".  Adjust code accordingly.
2434
2435 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2436             Andrey Smirnov  <andrew.smirnov@gmail.com>
2437
2438         -Wshadow warning fix.
2439         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
2440         parameter into "wild_match_p".  Adjust code accordingly.
2441         Document this parameter in the function description.
2442
2443 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2444             Andrey Smirnov  <andrew.smirnov@gmail.com>
2445
2446         -Wshadow warning fix.
2447         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
2448         "wild_match" parameter to "wild_match_p" (-Wshadow).
2449
2450 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2451
2452         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
2453         in function documentation.
2454
2455 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2456             Andrey Smirnov  <andrew.smirnov@gmail.com>
2457
2458         -Wshadow warning fix.
2459         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
2460         variable into wild_match_p.  Adjust code accordingly.
2461
2462 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2463             Andrey Smirnov  <andrew.smirnov@gmail.com>
2464
2465         * ada-valprint.c (ada_val_print_1): Move the code handling
2466         TYPE_CODE_ENUM inside its own lexical block.  Declare
2467         variables len and val there, instead of in the function's
2468         top level block.  Avoid declaring deref_val again in a way
2469         that shadows another variable of the same name declared
2470         in one of the up-level blocks.  Just re-use the up-level
2471         variable instead.
2472
2473 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2474
2475         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
2476         Replace block_found argument by symbol_info.  Adjust
2477         implementation accordingly.  Add function documentation.
2478         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
2479         Fix documentation.
2480         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
2481         * ada-exp.y (write_object_renaming): Adjust to new
2482         ada_lookup_encoded_symbol API.
2483
2484 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
2485
2486         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
2487         documentation.
2488
2489 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
2490
2491         * v850-tdep.c: Add the enum values for mpu and fpu registers.
2492         (v850_register_name): Add the mpu and fpu register names.
2493         (v850e_register_name): Add the mpu and fpu register names.
2494         (v850e2_register_name): New function.
2495         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
2496         bfd_mach_v850e2v3.
2497
2498 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
2499
2500         * NEWS: Add entry for Ada varobj support.
2501
2502 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
2503
2504         * varobj.c (default_value_is_changeable_p): New function,
2505         extracted from varobj_value_is_changeable_p.  Add declaration.
2506         (ada_value_is_changeable_p): New function, extracted from
2507         varobj_value_is_changeable_p.  Add declaration.
2508         (struct language_specific): New field "value_is_changeable_p".
2509         (languages): Add entries for new field.
2510         (varobj_create): Set language before calling install_new_value.
2511         (varobj_value_is_changeable_p): Reimplement to call the varobj's
2512         "value_is_changeable_p" language callback.
2513
2514 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
2515
2516         * ada-varobj.h, ada-varobj.c: New files.
2517         * Makefile.in (SFILES): Add ada-varobj.c.
2518         (HFILES_NO_SRCDIR): Add ada-varobj.h.
2519         (COMMON_OBS): Add ada-varobj.o.
2520
2521 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
2522
2523         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
2524         (struct language_specific): New field "value_has_mutated".
2525         (languages): Set field "value_has_mutated" in each entry of array.
2526         (varobj_value_has_mutated): New function.
2527         (varobj_udpdate): Add handling of type mutation.
2528         (value_of_root): Add handling of type mutation.
2529         (ada_value_has_mutated): New function.
2530
2531 2012-03-28  Pedro Alves  <palves@redhat.com>
2532
2533         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
2534         Always supply $fr0 as 0.0 and $fr1 as 1.0.
2535
2536 2012-03-28  Tom Tromey  <tromey@redhat.com>
2537
2538         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
2539         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
2540         before returning.
2541
2542 2012-03-28  Tom Tromey  <tromey@redhat.com>
2543
2544         * .dir-locals.el: New file.
2545
2546 2012-03-28  Pedro Alves  <palves@redhat.com>
2547
2548         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
2549
2550 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
2551
2552         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
2553         handling for r0.
2554
2555 2012-03-27  Pedro Alves  <palves@redhat.com>
2556
2557         Eliminate struct ui_stream.
2558
2559         * ui-out.h (struct ui_stream): Delete.
2560         (ui_out_field_stream): Adjust prototype.
2561         (ui_out_stream_new, ui_out_stream_delete)
2562         (make_cleanup_ui_out_stream_delete): Delete declarations.
2563         * ui-out.c (ui_out_field_stream): Change prototype to take a
2564         ui_file instead of a ui_stream.  Adjust.
2565         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
2566         (make_cleanup_ui_out_stream_delete): Delete.
2567         * breakpoint.c (print_breakpoint_location)
2568         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
2569         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
2570         * disasm.c (dump_insns): Ditto.
2571         (do_mixed_source_and_assembly, do_assembly_only): Adjust
2572         prototype.
2573         (gdb_disassembly): Use ui_file/mem_fileopen instead of
2574         ui_stream/ui_out_stream_new.
2575         * infcmd.c (print_return_value): Ditto.
2576         * osdata.c (info_osdata_command): Don't allocate a local
2577         ui_stream.
2578         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
2579         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
2580         * tracepoint.c (print_one_static_tracepoint_marker): Don't
2581         allocate a local ui_stream.
2582         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
2583         instead of ui_stream/ui_out_stream_new.
2584         (list_args_or_locals): Don't allocate a local ui_stream.
2585         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
2586         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
2587         ui_stream/ui_out_stream_new.
2588         * cli/cli-setshow.c (do_setshow_command): Ditto.
2589
2590 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
2591
2592         * arm-linux-tdep.c (arm_linux_init_abi): Call
2593         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
2594         * arm-tdep.c (arm_process_record): New function.
2595         (deallocate_reg_mem): New function.
2596         (decode_insn): New function.
2597         (thumb_record_branch): New function.
2598         (thumb_record_ldm_stm_swi(): New function.
2599         (thumb_record_misc): New function.
2600         (thumb_record_ld_st_stack): New function.
2601         (thumb_record_ld_st_imm_offset): New function.
2602         (thumb_record_ld_st_reg_offset(): New function.
2603         (thumb_record_add_sub_cmp_mov): New function.
2604         (thumb_record_shift_add_sub): New function.
2605         (arm_record_coproc_data_proc): New function.
2606         (arm_record_coproc): New function.
2607         (arm_record_b_bl): New function.
2608         (arm_record_ld_st_multiple): New function.
2609         (arm_record_ld_st_reg_offset): New function.
2610         (arm_record_ld_st_imm_offset): New function.
2611         (arm_record_data_proc_imm): New function.
2612         (arm_record_data_proc_misc_ld_str): New function.
2613         (arm_record_extension_space): New function.
2614         (arm_record_strx): New function.
2615         (sbo_sbz): New function.
2616         (struct insn_decode_record): New structure for arm insn record.
2617         (REG_ALLOC): New macro for reg allocations.
2618         (MEM_ALLOC): New macro for memory allocations.
2619         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
2620
2621 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
2622
2623         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
2624         (store_register): Likewise.
2625
2626 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
2627
2628         * MAINTAINERS (Write After Approval): Add myself to the list.
2629
2630 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
2631
2632         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
2633         Describe also the option "auto".
2634
2635 2012-03-22  Richard Henderson  <rth@redhat.com>
2636
2637         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
2638         * sparc-nat.c (sparc_xfer_wcookie): Make static.
2639
2640 2012-03-22  Richard Henderson  <rth@redhat.com>
2641
2642         * jit.c (jit_read_code_entry): Compute alignment and offset of
2643         int64_t member before computing entry_size.
2644
2645 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
2646
2647         Python scripting: Add new method Value.referenced_value to
2648         gdb.Value which can dereference pointer as well as reference
2649         values.
2650         * NEWS: Add entry under 'Python scripting' about the new method
2651         Value.referenced_value on gdb.Value objects.
2652         * python/py-value.c (valpy_referenced_value): New function
2653         defining a new method on gdb.Value objects which can dereference
2654         pointer and reference values.
2655
2656 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
2657
2658         * MAINTAINERS (Write After Approval): Add myself to the list.
2659
2660 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
2661
2662         * symtab.c (skip_prologue_sal): Change test to check for "main()"
2663         in addition to "main".
2664
2665 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
2666
2667         * expression.h (op_name): Add declaration.
2668         * expprint.c (op_name): Remove declaration.  Make non-static.
2669         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
2670
2671 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
2672
2673         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
2674         of struct siginfo.
2675         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
2676         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
2677         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
2678         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
2679         (linux_nat_get_siginfo): Likewise.
2680         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
2681         (linux_nat_get_siginfo): Likewise.
2682         * linux-tdep.c (linux_get_siginfo_type): Likewise.
2683         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
2684         * procfs.c (gdb_siginfo_t): Likewise.
2685
2686 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
2687
2688         * .gitignore: Ignore more files.
2689
2690 2012-03-20  Pedro Alves  <palves@redhat.com>
2691
2692         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
2693         returns.
2694
2695 2012-03-20  Yao Qi  <yao@codesourcery.com>
2696
2697         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
2698         comment.
2699
2700 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2701
2702         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
2703         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
2704         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
2705         sect_offset.
2706         * dwarf2expr.h (cu_offset, sect_offset): New types.
2707         (struct dwarf_expr_context_funcs) <dwarf_call>
2708         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
2709         sect_offset.
2710         (struct dwarf_expr_context) <len>: Improve the comment.
2711         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
2712         cu_offset and sect_offset.
2713         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
2714         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
2715         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
2716         * dwarf2loc.h: Include dwarf2expr.h.
2717         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
2718         and sect_offset.
2719         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
2720         Improve the comment.
2721         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
2722         (struct signatured_type, struct line_header, struct partial_die_info)
2723         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
2724         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
2725         (get_die_type_at_offset, create_cus_from_index)
2726         (create_signatured_type_table_from_index, dw2_get_file_names)
2727         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
2728         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
2729         (create_debug_types_hash_table, process_psymtab_comp_unit)
2730         (load_partial_comp_unit, create_all_comp_units)
2731         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
2732         (load_full_comp_unit, dwarf2_physname, read_import_statement)
2733         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
2734         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
2735         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
2736         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
2737         (find_partial_die, read_attribute_value, lookup_die_type)
2738         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
2739         (is_ref_attr): New function comment.
2740         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
2741         Use cu_offset and sect_offset.
2742         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
2743         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
2744         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
2745         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
2746         (offset_and_type_hash, offset_and_type_eq, set_die_type)
2747         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
2748         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
2749         sect_offset.
2750
2751 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2752
2753         Code cleanup.
2754         * python/py-auto-load.c (source_section_scripts): New variable back_to.
2755         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
2756         with xfree.
2757         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
2758
2759 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2760
2761         * NEWS: Describe new options --init-command=FILE, -ix and
2762         --init-eval-command=COMMAND, -iex.
2763         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
2764         CMDARG_INIT_COMMAND.
2765         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
2766         "init-command", "init-eval-command", "ix" and "iex" to the variable
2767         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
2768         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
2769         (print_gdb_help): Describe --init-command=FILE, -ix and
2770         --init-eval-command=COMMAND, -iex.
2771
2772 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2773
2774         Code cleanup.
2775         * main.c (struct cmdarg): Move it here from main.  Add more comments.
2776         (cmdarg_s, VEC (cmdarg_s)): New.
2777         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
2778         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
2779         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
2780         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
2781         of CMDARG.
2782
2783 2012-03-19  Tom Tromey  <tromey@redhat.com>
2784
2785         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
2786
2787 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2788
2789         PR symtab/13777
2790         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
2791         GCC >=4.5.
2792
2793 2012-03-16  Chris January  <chris.january@allinea.com>
2794
2795         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
2796         of clear.
2797
2798 2012-03-16  Chris January  <chris.january@allinea.com>
2799
2800         * source.c (add_path): Use memmove instead of strcpy because the
2801         strings overlap.
2802
2803 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
2804
2805         * value.h (set_value_parent): Add declaration.
2806         * value.c (set_value_parent): New function.
2807         (value_address): If VALUE->PARENT is not NULL, then use it as
2808         the base address instead of VALUE->LOCATION.address.
2809         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
2810         the same as OBJ's address.  Adjust V's offset accordingly.
2811         Set V's parent.
2812
2813 2012-03-16  Gary Benson  <gbenson@redhat.com>
2814
2815         PR breakpoints/10738
2816         * dwarf2read.c (use_deprecated_index_sections): New global.
2817         (struct partial_die_info): New member may_be_inlined.
2818         (read_partial_die): Set may_be_inlined where appropriate.
2819         (add_partial_subprogram): Add partial symbols for partial
2820         DIEs that may be inlined.
2821         (new_symbol_full): Add inlined subroutines to the current
2822         scope.
2823         (write_psymtabs_to_index): Bump version number.
2824         (dwarf2_read_index): Read only version 6 indices unless
2825         use_deprecated_index_sections is set.
2826         * linespec.c (symbol_and_data_callback): New structure.
2827         (iterate_inline_only): New function.
2828         (iterate_over_all_matching_symtabs): New argument
2829         "include_inline".  If nonzero, also call the callback for
2830         symbols representing inlined subroutines.
2831         (lookup_prefix_sym): Pass extra argument to the above.
2832         (find_function_symbols): Likewise.
2833         (add_matching_symbols_to_info): Likewise.
2834         * NEWS: Mention that GDB can now set breakpoints on inlined
2835         functions.
2836
2837 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
2838
2839         * p-typeprint.c (pascal_type_print_method_args):
2840         Fix display of parameter of methods.
2841
2842 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
2843
2844         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
2845         Add missing prototype.
2846
2847 2012-03-16  Yao Qi  <yao@codesourcery.com>
2848             Jan Kratochvil  <jan.kratochvil@redhat.com>
2849
2850         Fix false compilation warning.
2851         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
2852
2853 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
2854             Pedro Alves  <pedro@codesourcery.com>
2855
2856         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
2857         (arm_register_g_packet_guesses): New function.
2858         (arm_gdbarch_init): Don't force a target description with
2859         registers when the executable is detected as M-profile.  Instead
2860         set gdbarch->tdep->is_m.  Register `g' packet guesses.
2861         (_initialize_arm_tdep): Initialize the new target description.
2862         * features/arm-with-m-fpa-layout.xml: New description.
2863         * features/arm-with-m-fpa-layout.c: New, generated.
2864
2865 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
2866
2867         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
2868         Update function description.
2869         (insert_bp_location): Do not wipe bl->target_info out.
2870         * mem-break.c: #include "gdb_string.h".
2871         (default_memory_insert_breakpoint): Do not call target_read_memory
2872         with a pointer to the breakpoint's shadow_contents buffer.  Use
2873         a local buffer instead.
2874         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
2875
2876 2012-03-15  Tom Tromey  <tromey@redhat.com>
2877
2878         * NEWS: Mention "info vtbl", not "info vtable".
2879         * cp-support.c (info_vtbl_command): Fix comment.
2880         (_initialize_cp_support): Fix text.
2881
2882 2012-03-15  Tom Tromey  <tromey@redhat.com>
2883
2884         * cp-valprint.c (cp_print_value_fields): Use
2885         print_function_pointer_address for vtable slot.
2886
2887 2012-03-15  Tom Tromey  <tromey@redhat.com>
2888
2889         * gnu-v3-abi.c (struct value_and_voffset): New.
2890         (hash_value_and_voffset, eq_value_and_voffset)
2891         (compare_value_and_voffset, compute_vtable_size)
2892         (print_one_vtable, gnuv3_print_vtable): New functions.
2893         (init_gnuv3_ops): Initialize 'print_vtable' field.
2894         * cp-support.c (info_vtbl_command): New function.
2895         (_initialize_cp_support): Add "info vtbl".
2896         * cp-abi.h (cplus_print_vtable): Declare.
2897         (struct cp_abi_ops) <print_vtable>: New field.
2898         * cp-abi.c (cplus_print_vtable): New function.
2899         * NEWS: Update.
2900
2901 2012-03-15  Tom Tromey  <tromey@redhat.com>
2902
2903         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
2904         iterate_over_symbols.
2905
2906 2012-03-14  Doug Evans  <dje@google.com>
2907
2908         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
2909         DW_OP_GNU_parameter_ref.
2910
2911 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2912
2913         Fix double prompt of 'interpreter-exec mi'.
2914         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
2915         (mi_interpreter_resume): use it.
2916         (mi_execute_command_input_handler): New function.
2917         * mi/mi-main.c (mi_execute_command): Move prompt printing to
2918         mi_execute_command_input_handler.
2919
2920 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
2921
2922         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
2923         prototype.
2924         (darwin_debug_port_info): Make static.
2925         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
2926         * machoread.c (_initialize_machoread): Add prototype.
2927         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
2928         (i386_darwin_set_control, i386_darwin_get_control)
2929         i386_darwin_dr_set_addr, i386_darwin_get_addr)
2930         i386_darwin_get_status, i386_darwin_get_control):
2931         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
2932
2933 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
2934
2935         * ax-gdb.c (gen_usual_unary): Remove special handling of
2936         enum and bool types.
2937
2938 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
2939
2940         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
2941
2942 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
2943
2944         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
2945
2946 2012-03-13  Chris January  <chris.january@allinea.com>
2947
2948         * aix-thread.c (fill_sprs): Store the floating point registers
2949         at the correct offsets into vals.
2950
2951 2012-03-13  Doug Evans  <dje@google.com>
2952
2953         * NEWS: Mention symbol-reloading has been deleted.
2954         * symfile.c (symbol_reloading): Delete.
2955         (show_symbol_reloading): Delete.
2956         (_initialize_symfile): Delete set/show symbol-reloading.
2957
2958         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
2959         read_in_chain until we have successfully read it in.
2960         (load_full_comp_unit): Ditto.
2961         (read_signatured_type): Add comment.
2962
2963 2012-03-13  Chris January  <chris.january@allinea.com>
2964
2965         * stabsread.c (fix_common_block): Change type of valu argument
2966         to CORE_ADDR.
2967
2968 2012-03-13  Chris January  <chris.january@allinea.com>
2969
2970         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
2971         instruction.
2972
2973 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2974
2975         * common/linux-procfs.c (linux_proc_get_int): New, from
2976         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
2977         field.
2978         (linux_proc_get_tgid): Only call linux_proc_get_int.
2979         (linux_proc_get_tracerpid): New.
2980         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
2981         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
2982         linux_proc_pid_has_state.
2983         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
2984         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
2985         (linux_ptrace_attach_warnings): New.
2986         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
2987         New declaration.
2988         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
2989         (linux_nat_attach): New variables ex, buffer, message and message_s.
2990         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
2991
2992 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2993
2994         * Makefile.in (linux-ptrace.o): New.
2995         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
2996         from linux-nat.c.
2997         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
2998         * common/linux-ptrace.c: New file.
2999         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
3000         * config/arm/linux.mh: Likewise.
3001         * config/i386/linux.mh: Likewise.
3002         * config/i386/linux64.mh: Likewise.
3003         * config/ia64/linux.mh: Likewise.
3004         * config/m32r/linux.mh: Likewise.
3005         * config/m68k/linux.mh: Likewise.
3006         * config/mips/linux.mh: Likewise.
3007         * config/pa/linux.mh: Likewise.
3008         * config/powerpc/linux.mh: Likewise.
3009         * config/powerpc/ppc64-linux.mh: Likewise.
3010         * config/powerpc/spu-linux.mh: Likewise.
3011         * config/s390/s390.mh: Likewise.
3012         * config/sparc/linux.mh: Likewise.
3013         * config/sparc/linux64.mh: Likewise.
3014         * config/xtensa/linux.mh: Likewise.
3015         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
3016         common/linux-procfs.c.
3017         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
3018
3019 2012-03-13  Hui Zhu  <teawater@gmail.com>
3020             Pedro Alves  <palves@redhat.com>
3021
3022         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
3023         CREATE_BREAKPOINT_FLAGS_INSERTED.
3024         (create_breakpoint_sal, create_breakpoints_sal)
3025         (base_breakpoint_create_breakpoints_sal)
3026         (tracepoint_create_breakpoints_sal)
3027         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
3028         down.
3029         (break_command_1, handle_gnu_v3_exceptions, trace_command)
3030         (ftrace_command, strace_command): Adjust.
3031         (create_tracepoint_from_upload): Pass
3032         CREATE_BREAKPOINT_FLAGS_INSERTED.
3033         * breakpoint.h (enum breakpoint_create_flags): New.
3034         (create_breakpoint): New flags parameter.
3035         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
3036         * python/py-breakpoint.c (bppy_init): Adjust.
3037         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
3038         * spu-tdep.c (spu_catch_start): Adjust.
3039
3040 2012-03-13  Pedro Alves  <palves@redhat.com>
3041             Hui Zhu  <teawater@gmail.com>
3042             Yao Qi  <yao@codesourcery.com>
3043
3044         * remote.c (struct remote_state): New field `starting_up'.
3045         (remote_start_remote): Set and clear it.
3046         (remote_can_download_tracepoint): If starting up, return false.
3047
3048 2012-03-13  Yao Qi  <yao@codesourcery.com>
3049
3050         * inferior.h (struct inferior): Remove fields any_syscall_count,
3051         syscalls_counts and total_syscalls_count.  Move them to new
3052         struct catch_syscall_inferior_data in breakpoint.c.
3053         * breakpoint.c: Call DEF_VEC_I(int).
3054         (struct catch_syscall_inferior_data): New.
3055         (get_catch_syscall_inferior_data): New.
3056         (catch_syscall_inferior_data_cleanup): New.
3057         (insert_catch_syscall): Update to access data in
3058         struct catch_syscall_inferior_data.
3059         (insert_catch_syscall): Likewise.
3060         (remove_catch_syscall): Likewise.
3061         (remove_catch_syscall): Likewise.
3062         (is_syscall_catchpoint_enabled): Likewise.
3063         (add_catch_command): Likewise.
3064         (_initialize_breakpoint): Register cleanup.
3065         * breakpoint.h: Removed DEF_VEC_I(int).
3066         * dwarf2loc.c: Call DEF_VEC_I(int).
3067         * mi/mi-main.c: Likewise.
3068
3069 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
3070
3071         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
3072
3073 2012-03-12  Chris January  <chris.january@allinea.com>
3074
3075         * aix-thread.c (_initialize_aix_thread): Add prototype.
3076         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
3077         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
3078
3079 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
3080
3081         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
3082         include of "amd64-nat.h".
3083
3084 2012-03-12  Tom Tromey  <tromey@redhat.com>
3085
3086         * buildsym.c (record_pending_block): Now static.
3087         * buildsym.h: (record_pending_block): Remove.
3088
3089 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
3090
3091         * amd64bsd-nat.c: Include amd64bsd-nat.h.
3092
3093 2012-03-09  Tom Tromey  <tromey@redhat.com>
3094
3095         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
3096         producer_is_gxx_lt_4_6>: New fields.
3097         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
3098
3099 2012-03-09  Tom Tromey  <tromey@redhat.com>
3100
3101         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
3102
3103 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3104
3105         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
3106         prototype.
3107
3108 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3109
3110         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
3111
3112 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3113
3114         Fix -Wmissing-prototypes build.
3115         * arm-linux-nat.c (get_thread_id): Make it static.
3116         * xtensa-linux-nat.c (get_thread_id): Likewise.
3117
3118 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3119
3120         * server.c (process_point_options): If a conditional expression
3121         is found, only print a message if remote_debug is nonzero.
3122
3123 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
3124
3125         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
3126         of internal error for unknown/unsupported types.
3127
3128 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3129
3130         Fix CU relative vs. absolute DIE offsets.
3131         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
3132         offset to offset_in_cu.
3133         * dwarf2read.c (process_enumeration_scope): Add CU offset to
3134         TYPE_OFFSET.
3135         (dwarf2_fetch_die_location_block): Rename parameter offset to
3136         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
3137
3138 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3139
3140         * libunwind-frame.c: Rename to ...
3141         * ia64-libunwind-tdep.c: ... here.
3142         * libunwind-frame.h: Rename to ...
3143         * ia64-libunwind-tdep.h: ... here.
3144         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
3145         ia64-libunwind-tdep.h.
3146         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
3147         * README (--with-libunwind): Rename to ...
3148         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
3149         * config.in: Regenerate.
3150         * configure: Regenerate.
3151         * configure.ac: New option --with-libunwind-ia64, make the
3152         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
3153         Remove AC_DEFINE for HAVE_LIBUNWIND.
3154         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
3155         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
3156         Rename libunwind-frame in the general comment.
3157         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
3158         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
3159         Move forward declarations inside #ifndef.  Rename libunwind-frame in
3160         the general comment.
3161         * ia64-tdep.c: Rename libunwind-frame.h #include to
3162         ia64-libunwind-tdep.h.
3163         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
3164         (ia64_libunwind_descr): Rename libunwind-frame to
3165         ia64-libunwind-tdep in these function comments.
3166         * ia64-tdep.h: Rename libunwind-frame.h #include to
3167         ia64-libunwind-tdep.h.
3168         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
3169         ia64-libunwind-tdep in that data comment.
3170
3171 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3172
3173         * libunwind-frame.h (struct frame_unwind): New declaration.
3174
3175 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3176
3177         * breakpoint.c (_initialize_breakpoint): Fix error in help of
3178         "set breakpoint condition-evaluation" command.
3179
3180 2012-03-08  Tristan Gingold  <gingold@adacore.com>
3181
3182         * sparc-stub.c: Move to stubs/
3183         * sh-stub.c: Likewise.
3184         * m68k-stub.c: Likewise.
3185         * m32r-stub.c: Likewise.
3186         * i386-stub.c: Likewise.
3187
3188 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
3189
3190         * m68klinux-tdep.c (m68k_linux_init_abi): Register
3191         linux_get_siginfo_type.
3192
3193         * m68klinux-nat.c: Include "gdb_proc_service.h".
3194         (PTRACE_GET_THREAD_AREA): Define.
3195         (ps_get_thread_area): New function.
3196
3197 2012-03-08  Yao Qi  <yao@codesourcery.com>
3198
3199         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
3200         `xsnprintf'.
3201         (remote_query_attached): Likewise.
3202         (remote_static_tracepoint_marker_at): Likewise.
3203         (remote_set_permissions): Likewise.
3204         (remote_detach_1, extended_remote_attach_1): Likewise.
3205         (send_g_packet, remote_vkill): Likewise.
3206         (extended_remote_disable_randomization): Likewise.
3207         (remote_add_target_side_condition): Likewise.
3208         (remote_insert_breakpoint): Likewise.
3209         (remote_remove_breakpoint): Likewise.
3210         (remote_insert_watchpoint): Likewise.
3211         (remote_remove_watchpoint): Likewise.
3212         (remote_insert_hw_breakpoint): Likewise.
3213         (remote_insert_hw_breakpoint): Likewise.
3214         (remote_remove_hw_breakpoint): Likewise.
3215         (remote_download_command_source): Likewise.
3216         (remote_download_tracepoint): Likewise.
3217         (remote_download_trace_state_variable): Likewise.
3218         (remote_disable_tracepoint): Likewise.
3219         (remote_trace_set_readonly_regions): Likewise.
3220         (remote_get_tracepoint_status): Likewise.
3221         (remote_trace_find): Likewise.
3222         (remote_get_trace_state_variable_value): Likewise.
3223         (remote_set_disconnected_tracing): Likewise.
3224         (remote_set_circular_trace_buffer): Likewise.
3225         (remote_get_min_fast_tracepoint_insn_len): Likewise.
3226         (remote_use_agent): Likewise.
3227         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
3228         Update callers.
3229
3230 2012-03-07  Pedro Alves  <palves@redhat.com>
3231
3232         * NEWS: Mention QProgramSignals.
3233         * inferior.h (update_signals_program_target): Declare.
3234         * infrun.c: (update_signals_program_target): New.
3235         (handle_command): Update the target of the new program signals
3236         array changes.
3237         * remote.c (PACKET_QProgramSignals): New enum.
3238         (last_program_signals_packet): New global.
3239         (remote_program_signals): New.
3240         (remote_start_remote): Update the target with the program signals
3241         list.
3242         (remote_protocol_features): Add entry for QPassSignals.
3243         (remote_open_1): Free anc clear last_program_signals_packet.
3244         (init_remote_ops): Install remote_program_signals.
3245         * target.c (update_current_target): Adjust.
3246         (target_program_signals): New.
3247         * target.h (struct target_ops) <to_program_signals>: New field.
3248         (target_program_signals): Declare.
3249
3250 2012-03-07  Pedro Alves  <palves@redhat.com>
3251
3252         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
3253         extensions.
3254
3255 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
3256
3257         * m68klinux-nat.c (getregs_supplies): Make static.
3258         (getfpregs_supplies): Likewise.
3259         (have_ptrace_getregs): Likewise.
3260
3261 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
3262
3263         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
3264         in call to get_die_type_at_offset.
3265
3266 2012-03-06  Stan Shebs  <stan@codesourcery.com>
3267
3268         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
3269         * mi/mi-cmd-disas.c: Ditto.
3270         * mi/mi-cmd-env.c: Ditto.
3271         * mi/mi-cmd-file.c: Ditto.
3272         * mi/mi-cmd-stack.c: Ditto.
3273         * mi/mi-cmd-target.c: Ditto.
3274         * mi/mi-cmd-var.c: Ditto.
3275         * mi/mi-cmds.c: Ditto.
3276         * mi/mi-cmds.h: Ditto.
3277         * mi/mi-console.c: Ditto.
3278         * mi/mi-getopt.c: Ditto.
3279         * mi/mi-getopt.h: Ditto.
3280         * mi/mi-interp.c: Ditto.
3281         * mi/mi-main.c: Ditto.
3282         * mi/mi-out.c: Ditto.
3283         * mi/mi-parse.c: Ditto.
3284         * mi/mi-parse.h: Ditto.
3285         * mi/mi-symbol-cmds.c: Ditto.
3286
3287         * mi/mi-getopt.h: Move mi_opt struct up.
3288         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
3289         return.
3290         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
3291
3292 2012-03-06  Tom Tromey  <tromey@redhat.com>
3293
3294         * proc-service.c (ps_pglobal_lookup): Set the current program
3295         space.
3296
3297 2012-03-06  Pedro Alves  <palves@redhat.com>
3298
3299         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
3300
3301 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
3302
3303         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
3304
3305 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3306
3307         Code cleanup.
3308         * common/linux-osdata.c (linux_common_core_of_thread): New function
3309         comment.
3310         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
3311         call by linux_common_core_of_thread.
3312         (linux_nat_core_of_thread_1): Remove.
3313         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
3314         * linux-thread-db.c: Include linux-osdata.h.
3315         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
3316         linux_common_core_of_thread.
3317
3318 2012-03-05  Tom Tromey  <tromey@redhat.com>
3319
3320         * value.c (value_primitive_field): Don't fetch contents for
3321         non-virtual bases.
3322
3323 2012-03-05  Tom Tromey  <tromey@redhat.com>
3324
3325         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
3326
3327 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3328
3329         * s390-nat.c: Include "gregset.h".
3330
3331 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3332
3333         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
3334         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
3335         (libunwind_load): New variable so_error, use it for dlerror.  Try to
3336         load also LIBUNWIND_SO_7.
3337
3338 2012-03-05  Pedro Alves  <palves@redhat.com>
3339
3340         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
3341         is not NULL, and remove resulting dead code.
3342
3343 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
3344
3345         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
3346         prologue to sh_analyze_prologue.
3347         (sh_analyze_prologue): Make better use of such an upper limit, and
3348         generally be more cautious about accessing memory.
3349
3350 2012-03-05  Tom Tromey  <tromey@redhat.com>
3351
3352         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
3353         _initialize_ia64_hpux_tdep.
3354
3355 2012-03-05  Pedro Alves  <palves@redhat.com>
3356
3357         PR gdb/13766
3358
3359         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
3360         the register state is clear, supply explicit zero, instead of
3361         marking the register unavailable.
3362
3363 2012-03-05  Tristan Gingold  <gingold@adacore.com>
3364
3365         * NEWS: Mention OpenVMS ia64 new target.
3366
3367 2012-03-05  Tristan Gingold  <gingold@adacore.com>
3368
3369         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
3370         (ia64_unw_accessors, ia64_unw_rse_accessors)
3371         (ia64_libunwind_descr): Declare.
3372         * ia64-vms-tdep.c: New file.
3373         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
3374         (ia64_libunwind_descr): Make them public.
3375         * configure.tgt: Add ia64-*-*vms*.
3376         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
3377         (ALLDEPFILES): Add ia64-vms-tdep.c
3378
3379 2012-03-05  Tristan Gingold  <gingold@adacore.com>
3380
3381         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
3382         * remote.c (PACKET_qXfer_uib): New enum value.
3383         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
3384         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
3385         (_initialize_remote): Call add_packet_config_cmd for
3386         xfer:uib packet.
3387
3388 2012-03-05  Tristan Gingold  <gingold@adacore.com>
3389
3390         * osabi.c (gdb_osabi_names): Add OpenVMS.
3391         (generic_elf_osabi_sniffer): Likewise.
3392         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
3393
3394 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
3395
3396         Removed unused code.
3397         * libunwind-frame.c (libunwind_frame_unwind)
3398         (libunwind_frame_base_address): Remove.
3399         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
3400
3401 2012-03-04  Yao Qi  <yao@codesourcery.com>
3402
3403         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
3404         remove trailing new line.
3405         (agent_run_command, agent_run_command): Add _ markup.
3406         (agent_capability_check): Likewise.
3407
3408 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
3409
3410         * breakpoint.c (set_condition_evaluation_mode): Set
3411         CONDITION_EVALUATION_MODE unconditionally.
3412
3413 2012-03-03  Yao Qi  <yao@codesourcery.com>
3414
3415         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
3416         * common/agent.h: Update declaration.
3417         * inf-child.c (inf_child_use_agent): New.
3418         (inf_child_can_use_agent): New.
3419         (inf_child_target): Initialize fields `to_use_agent'
3420         and `to_can_use_agent'.
3421         * agent.c (agent_new_objfile): New.
3422         (_initialize_agent): Add agent_new_objfile to new_objfile
3423         observer.
3424
3425         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
3426         New.
3427         (linux_target_install_ops): Initialize field
3428         `to_static_tracepoint_markers_by_strid'.
3429         * remote.c (free_current_marker): Move it to ...
3430         * tracepoint.c (free_current_marker): ... here.  New.
3431         (cleanup_target_stop): New.
3432         * tracepoint.h: Declare free_current_marker.
3433         * NEWS: Add one entry about `info static-tracepoint-marker'.
3434
3435 2012-03-03  Yao Qi  <yao@codesourcery.com>
3436
3437         * common/agent.c (agent_loaded_p): New.
3438         (agent_look_up_symbols): New global.
3439         * common/agent.h: Declare agent_loaded_p.
3440
3441 2012-03-03  Yao Qi  <yao@codesourcery.com>
3442
3443         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
3444         (agent_capability_check, agent_capability_invalidate): New.
3445         (symbol_list): New array element.
3446         * common/agent.h (enum agent_capa): New.
3447         * target.c (target_pre_inferior): Call agent_capability_invalidate.
3448
3449 2012-03-03  Yao Qi  <yao@codesourcery.com>
3450
3451         * target.h (struct target_ops) <to_use_agent>: New field.
3452         (struct target_ops) <to_can_use_agent>: New field.
3453         (target_use_agent, target_can_use_agent): New macro.
3454         * target.c (update_current_target): Update.
3455         * remote.c: New enum `PACKET_QAgent'.
3456         (remote_protocol_features): Add a new element.
3457         (remote_use_agent, remote_can_use_agent): New.
3458         (init_remote_ops): Initialize field `can_use_agent' with
3459         remote_can_use_agent.  Intiailize field `use_agent' with
3460         remote_use_agent.
3461         * common/agent.c (use_agent): New global.
3462         * common/agent.h: Declare it.
3463         * tracepoint.c (info_static_tracepoint_markers_command): Add
3464         comment.
3465         * Makefile.in (SFILES): Add common/agent.c and agent.c.
3466         (COMMON_OBS): Add common/agent.o and agent.o
3467         (common-agent.o): New rule.
3468         * agent.c: New.
3469
3470 2012-03-03  Yao Qi  <yao@codesourcery.com>
3471
3472         * common/agent.c: New.
3473         * common/agent.h: New.
3474         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
3475         AC_CHECK_HEADERS.
3476         * configure, configh.in: Regenerated.
3477
3478 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
3479
3480         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
3481         unless it exists for this architecture.
3482
3483 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
3484
3485         * language.h (struct language_defn): New "method" la_read_var_value.
3486         * findvar.c: #include "language.h".
3487         (default_read_var_value): Renames read_var_value.  Rewrite
3488         function description.
3489         (read_var_value): New function.
3490         * value.h (default_read_var_value): Add prototype.
3491         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
3492         New functions.
3493         (ada_language_defn): Add entry for la_read_var_value.
3494         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
3495         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
3496         language_defn structures to add entry for new la_read_var_value
3497         field.
3498
3499 2012-03-02  Tom Tromey  <tromey@redhat.com>
3500             Pedro Alves  <palves@redhat.com>
3501
3502         PR breakpoints/13776:
3503         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
3504         breakpoints.
3505         (delete_longjmp_breakpoint_at_next_stop): New.
3506         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
3507         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
3508         before deleting the inferior.  Add comments.
3509         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
3510         breakpoints immediately, but only on next stop.  Move that code
3511         next to where we mark other breakpoints for deletion.
3512
3513 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
3514
3515         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
3516         marker.
3517         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
3518         violation.
3519
3520 2012-03-02  Pedro Alves  <palves@redhat.com>
3521
3522         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
3523
3524 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
3525
3526         Fix -Wmissing-prototypes build.
3527         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
3528         * remote-sim.c (gdbsim_has_all_memory): Likewise.
3529         (gdbsim_has_memory): Likewise.
3530
3531 2012-03-02  Yao Qi  <yao@codesourcery.com>
3532
3533         Fix -Wmissing-prototypes build.
3534         * charset.c (phony_iconv_open): Make static.
3535         (phony_iconv_close, phony_iconv): Likewise.
3536         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
3537         * i386-windows-nat.c (_initialize_i386_windows_nat): New
3538         prototype.
3539         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
3540         * ser-mingw.c (create_select_thread): Make static.
3541         * windows-termcap.c (tgetent): New prototype.
3542         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
3543
3544 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
3545
3546         Fix -Wmissing-prototypes build.
3547         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
3548         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
3549         (_initialize_loadable): New prototypes.
3550
3551 2012-03-02  Doug Evans  <dje@google.com>
3552
3553         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
3554         abbrev table, read_comp_unit will do it.
3555
3556 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3557
3558         Fix -Wmissing-prototypes build.
3559         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
3560         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
3561         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
3562         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
3563         (_initialize_arm_symbian_tdep): New prototype.
3564         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
3565         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
3566         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
3567         static.
3568         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
3569         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
3570         prototype.
3571         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
3572         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
3573         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
3574         static.
3575         * moxie-tdep.c (moxie_process_record): Likewise.
3576         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
3577         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
3578         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
3579         (_initialize_rl78_tdep): New prototype.
3580         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
3581         (_initialize_rx_tdep): New prototype.
3582         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
3583         (_initialize_darwin_solib): New prototype.
3584         * solib-spu.c: Include solib-spu.h.
3585         (_initialize_spu_solib): New prototype.
3586         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
3587         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
3588         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
3589         (tic6x_software_single_step): Make it static.
3590         (_initialize_tic6x_tdep): New prototype.
3591
3592 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3593
3594         Fix -Wmissing-prototypes build.
3595         * cris-tdep.c (cris_can_use_hardware_watchpoint)
3596         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
3597
3598 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
3599
3600         Fix -Wmissing-prototypes build.
3601         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
3602         (frv_have_stopped_data_address): Remove.
3603
3604 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
3605
3606         Fix -Wmissing-prototypes build.
3607         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
3608         * sh-tdep.c: Include sh64-tdep.h.
3609         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
3610         * sh64-tdep.c: Include sh64-tdep.h.
3611         * sh64-tdep.h: New file.
3612
3613 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
3614
3615         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
3616
3617 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
3618
3619         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
3620         sp_regnum once the gdbarch_init_osabi hook has been called.
3621
3622 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
3623
3624         * mips-tdep.c (mips32_bc1_pc): New function.
3625         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
3626         BPOSGE32 and BPOSGE64 instructions.
3627         (deal_with_atomic_sequence): Likewise.
3628         (mips32_instruction_has_delay_slot): Likewise.
3629
3630 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
3631             Chris Dearman  <chris@mips.com>
3632             Maciej W. Rozycki  <macro@codesourcery.com>
3633             Joseph Myers  <joseph@codesourcery.com>
3634
3635         * features/mips-dsp.xml: New file.
3636         * features/mips64-dsp.xml: New file.
3637         * features/mips-dsp-linux.xml: New file.
3638         * features/mips64-dsp-linux.xml: New file.
3639         * features/Makefile (WHICH): Add mips-dsp-linux and
3640         mips64-dsp-linux.
3641         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
3642         * features/mips-dsp-linux.c: New file.
3643         * features/mips64-dsp-linux.c: New file.
3644         * regformats/mips-dsp-linux.dat: New file.
3645         * regformats/mips64-dsp-linux.dat: New file.
3646         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
3647         registers.
3648         (mips64_linux_register_addr): Likewise.
3649         (mips64_linux_regsets_fetch_registers): Likewise.
3650         (mips64_linux_regsets_store_registers): Likewise.
3651         (mips64_linux_fetch_registers): Update call to
3652         mips64_linux_regsets_fetch_registers.
3653         (mips64_linux_store_registers): Update call to
3654         mips64_linux_regsets_store_registers.
3655         (mips_linux_read_description): Probe for DSP registers.
3656         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
3657         and initialize_tdesc_mips64_dsp_linux.
3658         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
3659         Remove padding of no longer used embedded register slots.
3660         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
3661         (MIPS_RESTART_REGNUM): Redefine enum value.
3662         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
3663         strings.
3664         (mips_tx39_reg_names): Likewise.
3665         (mips_linux_reg_names): New array of register names for Linux
3666         targets.
3667         (mips_register_name): Check for a null pointer in
3668         mips_processor_reg_names and return an empty string.
3669         (mips_register_type): Exclude embedded registers for the IRIX
3670         and Linux ABIs.
3671         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
3672         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
3673         DSP registers.
3674         (mips_stab_reg_to_regnum): Handle DSP accumulators.
3675         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
3676         (mips_gdbarch_init): Likewise.  Initialize internal register
3677         indices for the Linux ABI.  Use dynamic numbers to refer to
3678         registers, as applicable, while parsing the target description.
3679         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
3680
3681 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
3682
3683         * frame.h (read_frame_register_unsigned): Fix typo in function
3684         description.
3685
3686 2012-03-01  Pedro Alves  <palves@redhat.com>
3687
3688         * jit-reader.in [!__cplusplus]
3689         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
3690
3691 2012-03-01  Pedro Alves  <palves@redhat.com>
3692
3693         * configure.ac (build_warnings): Add -Wmissing-prototypes.
3694         * configure: Regenerate.
3695
3696 2012-03-01  Pedro Alves  <palves@redhat.com>
3697
3698         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
3699         * breakpoint.c (create_exception_master_breakpoint, trace_command)
3700         (ftrace_command, strace_command): Make static.
3701         * d-lang.c (_initialize_d_language): Declare.
3702         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
3703         * dwarf2loc.c (_initialize_dwarf2loc):
3704         * dwarf2read.c (process_psymtab_comp_unit): Make static.
3705         * exec.c (exec_get_section_table): Make static.
3706         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
3707         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
3708         * inferior.c (remove_inferior_command, add_inferior_command)
3709         (clone_inferior_command): Make static.
3710         * linux-nat.c (linux_nat_thread_address_space)
3711         (linux_nat_core_of_thread): Make static.
3712         * linux-tdep.c (_initialize_linux_tdep): Declare.
3713         * objc-lang.c (_initialize_objc_lang): Declare.
3714         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
3715         Make static.
3716         (_initialize_opencl_language): Declare.
3717         * record.c (_initialize_record): Declare.
3718         * remote.c (demand_private_info, remote_get_tib_address)
3719         (remote_supports_cond_tracepoints)
3720         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
3721         Make static.
3722         * skip.c (_initialize_step_skip): Declare.
3723         * symtab.c (skip_prologue_using_lineinfo): Make static.
3724         * tracepoint.c (delete_trace_state_variable)
3725         (trace_variable_command, delete_trace_variable_command)
3726         (get_uploaded_tsv, find_matching_tracepoint_location)
3727         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
3728         Make static.
3729         * value.c (pack_unsigned_long): Make static.
3730         * varobj.c (varobj_ensure_python_env): Make static.
3731         * windows-tdep.c (_initialize_windows_tdep): Declare.
3732         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
3733
3734 2012-03-01  Pedro Alves  <palves@redhat.com>
3735
3736         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
3737         gdbarch parameter.
3738         (linux_init_abi): Install it as has_shared_address_space gdbarch
3739         callback.
3740
3741 2012-03-01  Pedro Alves  <palves@redhat.com>
3742
3743         * observer.c (observer_test_first_notification_function)
3744         (observer_test_second_notification_function)
3745         (observer_test_third_notification_function): Add declarations.
3746
3747 2012-03-01  Pedro Alves  <palves@redhat.com>
3748
3749         * common/signals.c (default_target_signal_to_host)
3750         (default_target_signal_from_host): Move ...
3751         * arch-utils.c: ... here.
3752         * arch-utils.h (default_target_signal_to_host)
3753         (default_target_signal_from_host): Declare.
3754
3755         * common/signals.c (target_signal_from_command): Move ...
3756         * infrun.c: ... here.
3757         * inferior.h (target_signal_from_command): Declare.
3758         * target.h (target_signal_from_command)
3759         (default_target_signal_from_host, default_target_signal_to_host):
3760         Delete declarations.
3761
3762         * common/signals.c (_initialize_signals): Delete.
3763
3764 2012-03-01  Pedro Alves  <palves@redhat.com>
3765
3766         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
3767         both __cplusplus and !__cplusplus.
3768
3769 2012-03-01  Pedro Alves  <palves@redhat.com>
3770
3771         * psymtab.c (find_and_open_source): Delete declaration.
3772         * source.c (find_and_open_source): Move comment ...
3773         * source.h (find_and_open_source): ... to this new declaration.
3774
3775 2012-03-01  Pedro Alves  <palves@redhat.com>
3776
3777         * inline-frame.c: Include inline-frame.h.
3778
3779 2012-03-01  Pedro Alves  <palves@redhat.com>
3780
3781         * tui/tui-data.c (set_gen_win_origin): Delete.
3782         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
3783         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
3784
3785 2012-03-01  Pedro Alves  <palves@redhat.com>
3786
3787         * remote.c (encode_actions): Delete declaration.
3788         * tracepoint.c (encode_actions): Make extern.
3789         * tracepoint.h (encode_actions): Declare.
3790
3791 2012-03-01  Pedro Alves  <palves@redhat.com>
3792
3793         * python/py-breakpoint.c: Include python.h.
3794         * python/py-continueevent.c (create_continue_event_object): Make
3795         static.
3796         * python/py-lazy-string.c (stpy_get_type): Make static.
3797         * python/py-newobjfileevent.c (create_new_objfile_event_object):
3798         Make static.
3799         * python/py-utils.c (unicode_to_target_python_string): Make
3800         static.
3801         * python/py-value.c: Include python.h.
3802
3803 2012-03-01  Pedro Alves  <palves@redhat.com>
3804
3805         * inferior.c (delete_threads_of_inferior): Delete.
3806
3807 2012-03-01  Pedro Alves  <palves@redhat.com>
3808
3809         Import fallback definitions from glibc.
3810
3811         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
3812         ps_prochandle): Forward declare.
3813         (ps_err_e): Use glibc's comments.
3814         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
3815         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
3816         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
3817         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
3818         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
3819         (struct ps_prochandle): Adjust comment.
3820
3821 2012-03-01  Pedro Alves  <palves@redhat.com>
3822
3823         * ada-lang.c (ada_modulus_from_name): Delete.
3824         * ada-lex.l (lexer_init): Make static.
3825
3826 2012-03-01  Pedro Alves  <palves@redhat.com>
3827
3828         PR gdb/13767
3829
3830         * frame.c (read_frame_register_unsigned): New.
3831         * frame.h (read_frame_register_unsigned): Declare.
3832         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
3833         Handle it.
3834         (print_i387_control_word): New parameter `control_p'.  Handle it.
3835         (i387_print_float_info): Handle unavailable float registers.
3836
3837 2012-03-01  Keith Seitz  <keiths@redhat.com>
3838
3839         * linespec.c (decode_line_2): Sort the list of methods
3840         alphabetically before presenting the user with a selection
3841         menu.
3842
3843 2012-03-01  Doug Evans  <dje@google.com>
3844
3845         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
3846         has_namespace_info.
3847         (dwarf2_read_abbrevs): Remove corresponding initialization.
3848
3849 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
3850
3851         * NEWS: Mention new python command class gdb.COMMAND_USER.
3852         * cli/cli-cmds.c (show_user): Print error when used on a python
3853         command.
3854         (init_cli_cmds): Update documentation strings for "show user" and
3855         "set/show max-user-call-depth" to clarify that it does not apply to
3856         python commands.
3857         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
3858         error check.
3859         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
3860         gdb python api.
3861         * top.c (execute_command): Only execute a user-defined command as a
3862         legacy macro if c->user_commands is set.
3863
3864 2012-03-01  Tom Tromey  <tromey@redhat.com>
3865
3866         * valprint.h (struct generic_val_print_decorations): New.
3867         (generic_val_print): Declare.
3868         * valprint.c (generic_val_print): New function.
3869         * p-valprint.c (p_decorations): New global.
3870         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
3871         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
3872         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
3873         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
3874         * m2-valprint.c (m2_decorations): New global.
3875         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
3876         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
3877         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
3878         TYPE_CODE_ERROR>: Call generic_val_print.
3879         * f-valprint.c (f_decorations): New global.
3880         (f_val_print): Use print_function_pointer_address.
3881         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
3882         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
3883         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
3884         generic_val_print.
3885         * c-valprint.c (c_decorations): New global.
3886         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
3887         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
3888         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
3889         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
3890         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
3891         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
3892         case.
3893
3894 2012-03-01  Tom Tromey  <tromey@redhat.com>
3895
3896         * valprint.c (val_print): Update.
3897         * p-valprint (pascal_val_print): Return void.
3898         * p-lang.h (pascal_val_print): Return void.
3899         * m2-valprint.c (m2_val_print): Return void.
3900         * m2-lang.h (m2_val_print): Return void.
3901         * language.h (struct language_defn) <la_val_print>: Return void.
3902         * language.c (unk_lang_val_print): Return void.
3903         * jv-valprint.c (java_val_print): Return void.
3904         * jv-lang.h (java_val_print): Return void.
3905         * f-valprint.c (f_val_print): Return void.
3906         * f-lang.h (f_val_print): Return void.
3907         * d-valprint.c (d_val_print): Return void.
3908         (dynamic_array_type): Update.
3909         * d-lang.h (d_val_print): Return void.
3910         * c-valprint.c (c_val_print): Return void.
3911         * c-lang.h (c_val_print): Return void.
3912         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
3913         void.
3914         * ada-lang.h (ada_val_print): Return void.
3915
3916 2012-03-01  Tom Tromey  <tromey@redhat.com>
3917
3918         * value.h (val_print): Return void.
3919         * valprint.c (val_print): Return void.
3920
3921 2012-03-01  Tom Tromey  <tromey@redhat.com>
3922
3923         * value.h (common_val_print): Return void.
3924         * valprint.c (common_val_print): Return void.
3925
3926 2012-03-01  Tom Tromey  <tromey@redhat.com>
3927
3928         * value.h (value_print): Return void.
3929         * valprint.c (value_print): Return void.
3930         * p-valprint.c (pascal_value_print): Return void.
3931         * p-lang.h (pascal_value_print): Return void.
3932         * language.h (struct language_defn) <la_value_print>: Return
3933         void.
3934         * language.c (unk_lang_value_print): Return void.
3935         * jv-valprint.c (java_value_print): Return void.
3936         * jv-lang.h (java_value_print): Return void.
3937         * f-valprint.c (c_value_print): Don't declare.
3938         Include c-lang.h.
3939         * c-valprint.c (c_value_print): Return void.
3940         * c-lang.h (c_value_print): Return void.
3941         * ada-valprint.c (ada_value_print): Return void.
3942         * ada-lang.h (ada_value_print): Return void.
3943
3944 2012-03-01  Tom Tromey  <tromey@redhat.com>
3945
3946         * value.c (value_primitive_field): Handle virtual base classes.
3947
3948 2012-03-01  Tom Tromey  <tromey@redhat.com>
3949
3950         * gdbtypes.h (struct vbase): Remove.
3951
3952 2012-03-01  Tom Tromey  <tromey@redhat.com>
3953
3954         * c-valprint.c (print_function_pointer_address): Move...
3955         * valprint.c: ... here.  Make non-static.
3956         * m2-valprint.c (print_function_pointer_address): Remove.
3957         * valprint.h (print_function_pointer_address): Declare.
3958
3959 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
3960
3961         * NEWS: Document the fact that one can provide a condition when
3962         creating an Ada exception catchpoint.
3963
3964 2012-03-01  Tom Tromey  <tromey@redhat.com>
3965
3966         * valprint.c (val_print_type_code_flags): Fix placement of
3967         trailing brace.
3968
3969 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
3970
3971         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
3972         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
3973         environment variable before calling update-copyright.
3974
3975 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
3976
3977         * gnulib/extra/update-copyright: Update to the latest from
3978         gnulib's git repository.
3979         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
3980         variable to 2 instead of 1.
3981
3982 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
3983
3984         * varobj.c (c_value_of_variable): Remove dead code.
3985
3986 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
3987
3988         * ada-lex.p (processId): Do not modify already encoded IDs.
3989         Update function documentation.
3990
3991 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
3992
3993         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
3994         "name" with "struct symbol *name_sym".
3995         * ada-exp.y (write_var_or_type): Update call to
3996         ada_find_renaming_symbol.
3997         "name" with "struct symbol *name_sym". Adjust Implementation
3998         accordingly.  Adjust the function documentation.
3999
4000 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4001
4002         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
4003         * ada-lang.c (ada_find_any_type): Add advance declaration.
4004         Make static.  Replace ada_find_any_symbol by
4005         ada_find_any_type_symbol.
4006         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
4007         Improve function description.  Make static.
4008         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
4009         Replace ada_find_any_symbol by ada_find_any_type_symbol.
4010
4011 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4012
4013         * ada-lang.c (struct tag_args): Delete.
4014         (ada_get_tsd_type): Function body moved up in source file.
4015         (ada_tag_name_1, ada_tag_name_2): Delete.
4016         (ada_get_tsd_from_tag): New function.
4017         (ada_tag_name_from_tsd): New function.
4018         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
4019         to determine the tag name.
4020
4021 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4022
4023         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
4024         declaration.
4025         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
4026         function.
4027
4028 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4029
4030         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
4031
4032 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4033
4034         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
4035         full searches.
4036
4037 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4038
4039         * ada-lang.c (constrained_packed_array_type): If there is a
4040         parallel XA type, use it to determine the array index type.
4041
4042 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4043
4044         * ada-valprint.c (ada_val_print_1): If our value is a reference
4045         to an array descriptor, dereference it before converting it
4046         to a simple array.
4047
4048 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4049
4050         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
4051         creating fixed value.
4052         (ada_value_ind, ada_coerce_ref, assign_component)
4053         (ada_evaluate_subexp): Remove call to unwrap_value before
4054         call to ada_to_fixed_value.
4055
4056 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4057
4058         * ada-lang.c (to_fixed_array_type): Set result's type name.
4059
4060 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4061
4062         * ada-lang.c (catch_ada_exception_command_split): Add new
4063         argument cond_string.  Add support for condition at end of
4064         "catch exception" commands.
4065         (ada_decode_exception_location): Add new argument cond_string.
4066         Update call to catch_ada_exception_command_split.
4067         (create_ada_exception_catchpoint): Add new argument cond_string.
4068         Set the breakpoint condition if needed.
4069         (catch_ada_exception_command): Update call to
4070         ada_decode_exception_location.
4071         (ada_decode_assert_location): Add function documentation.
4072         Add support for condition at end of "catch assert" command.
4073         (catch_assert_command): Update calls to ada_decode_assert_location
4074         and create_ada_exception_catchpoint.
4075
4076 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
4077
4078         Fix disp-step-syscall.exp: fork: single step over fork.
4079         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
4080         (i386_linux_get_syscall_number_from_regcache): ... here, new function
4081         comment, change parameters gdbarch and ptid to regcache.  Remove
4082         parameter regcache, initialize gdbarch from regcache here.
4083         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
4084         New functions.
4085         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
4086         instead.
4087         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
4088         'syscall'.  Make the 'int' check more strict.
4089
4090 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
4091
4092         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
4093         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
4094         (i386_linux_intx80_sysenter_syscall_record): ... here.
4095         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
4096         Use the renamed function name.
4097
4098 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
4099
4100         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
4101         * breakpoint.c (until_break_command): Likewise.
4102         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
4103         * infcall.c (call_function_by_hand): Likewise.
4104         * infcmd.c (finish_forward): Likewise.
4105         * infrun.c (insert_exception_resume_breakpoint): Likewise.
4106
4107 2012-02-28  Tristan Gingold  <gingold@adacore.com>
4108
4109         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
4110         avoid variable assignments inside condition.
4111
4112 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4113
4114         Fix static analysis issue found by cppcheck.
4115         * microblaze-tdep.c (microblaze_extract_return_value): Fix
4116         uninitialized BUF for size 2.
4117
4118 2012-02-27  Chris Dearman  <chris@mips.com>
4119             Nathan Froyd  <froydnj@codesourcery.com>
4120             Maciej W. Rozycki  <macro@codesourcery.com>
4121
4122         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
4123         (mips16_instruction_has_delay_slot): Likewise.
4124         (mips_segment_boundary): Likewise.
4125         (mips_adjust_breakpoint_address): Likewise.
4126         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
4127
4128 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
4129             Maciej W. Rozycki  <macro@codesourcery.com>
4130
4131         * infrun.c (handle_inferior_event): Don't proceed through
4132         shared library trampolines if stepping at the machine
4133         instruction level.
4134
4135 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
4136
4137         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
4138         too.
4139
4140 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
4141
4142         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
4143         (sh_stub_unwind_sniffer): New functions.
4144         (sh_stub_unwind): New variable.
4145         (sh_gdbarch_init): Wire everything.
4146
4147 2012-02-27  Pedro Alves  <palves@redhat.com>
4148
4149         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
4150         (linux_nat_post_attach_wait): Adjust to use
4151         linux_proc_pid_is_stopped.
4152         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
4153         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
4154         based on pid_is_stopped from both linux-nat.c and
4155         gdbserver/linux-low.c, and renamed.
4156
4157 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
4158
4159         * remote.c (remote_watchpoint_addr_within_range): New function.
4160         (init_remote_ops): Use it.
4161
4162 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
4163
4164         * target.h (target_watchpoint_addr_within_range): Document macro.
4165
4166 2012-02-24  Pedro Alves  <palves@redhat.com>
4167
4168         * stack.c (set_last_displayed_sal): Issue internal_error instead
4169         of warning, and issue it after clearing the last displayed sal.
4170
4171 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
4172             Pedro Alves  <palves@redhat.com>
4173
4174         * breakpoint.c (until_break_command): Install breakpoints after
4175         all frame manipulations.
4176
4177 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
4178
4179         * remote.c (remote_supports_cond_breakpoints): New forward
4180         declaration.
4181         (remote_add_target_side_condition): New function.
4182         (remote_insert_breakpoint): Add target-side breakpoint
4183         conditional if supported.
4184         (remote_insert_hw_breakpoint): Likewise.
4185         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
4186         hook.
4187
4188         * target.c (update_current_target): Inherit
4189         to_supports_evaluation_of_breakpoint_conditions.
4190         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
4191
4192         * target.h (struct target_ops)
4193         <to_supports_evaluation_of_breakpoint_conditions>: New field.
4194         (target_supports_evaluation_of_breakpoint_conditions): New #define.
4195
4196         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
4197         (condition_evaluation_both, condition_evaluation_auto,
4198         condition_evaluation_host, condition_evaluation_target,
4199         condition_evaluation_enums, condition_evaluation_mode_1,
4200         condition_evaluation_mode): New static globals.
4201         (translate_condition_evaluation_mode): New function.
4202         (breakpoint_condition_evaluation_mode): New function.
4203         (gdb_evaluates_breakpoint_condition_p): New function.
4204         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
4205         (mark_breakpoint_modified): New function.
4206         (mark_breakpoint_location_modified): New function.
4207         (set_condition_evaluation_mode): New function.
4208         (show_condition_evaluation_mode): New function.
4209         (bp_location_compare_addrs): New function.
4210         (get_first_location_gte_addr): New helper function.
4211         (set_breakpoint_condition): Free condition bytecode if locations
4212         has become unconditional.  Call mark_breakpoint_modified (...).
4213         (condition_command): Call update_global_location_list (1) for
4214         breakpoints.
4215         (breakpoint_xfer_memory): Use is_breakpoint (...).
4216         (is_breakpoint): New function.
4217         (parse_cond_to_aexpr): New function.
4218         (build_target_condition_list): New function.
4219         (insert_bp_location): Handle target-side conditional
4220         breakpoints and call build_target_condition_list (...).
4221         (update_inserted_breakpoint_locations): New function.
4222         (insert_breakpoint_locations): Handle target-side conditional
4223         breakpoints.
4224         (bpstat_check_breakpoint_conditions): Add comment.
4225         (bp_condition_evaluator): New function.
4226         (bp_location_condition_evaluator): New function.
4227         (print_breakpoint_location): Print information on where the condition
4228         will be evaluated.
4229         (print_one_breakpoint_location): Likewise.
4230         (init_bp_location): Call mark_breakpoint_location_modified (...) for
4231         breakpoint location.
4232         (force_breakpoint_reinsertion): New functions.
4233         (update_global_location_list): Handle target-side breakpoint
4234         conditions.
4235         Reinsert locations that are already inserted if conditions have
4236         changed.
4237         (bp_location_dtor): Free agent expression bytecode.
4238         (disable_breakpoint): Call mark_breakpoint_modified (...).
4239         Call update_global_location_list (...) with parameter 1 for breakpoints.
4240         (disable_command): Call mark_breakpoint_location_modified (...).
4241         Call update_global_location_list (...) with parameter 1 for breakpoints.
4242         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
4243         (enable_command): mark_breakpoint_location_modified (...).
4244         (_initialize_breakpoint): Update documentation and add
4245         condition-evaluation breakpoint subcommand.
4246
4247         * breakpoint.h: Include ax.h.
4248         (condition_list): New data structure.
4249         (condition_status): New enum.
4250         (bp_target_info) <cond_list>: New field.
4251         (bp_location) <condition_changed, cond_bytecode>: New fields.
4252         (is_breakpoint): New prototype.
4253
4254 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
4255
4256         * remote.c (remote_state) <cond_breakpoints>: New field.
4257         (PACKET_ConditionalBreakpoints): New enum.
4258         (remote_cond_breakpoint_feature): New function.
4259         (remote_protocol_features): Add new ConditionalBreakpoints entry.
4260         (remote_supports_cond_breakpoints): New function.
4261         (_initialize_remote): Add new packet configuration for
4262         target-side conditional breakpoints.
4263
4264 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
4265
4266         * NEWS: Mention target-side conditional breakpoint support,
4267         new condition-evaluation breakpoint subcommand and remote
4268         packet extensions.
4269
4270 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
4271
4272         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
4273         number.
4274
4275 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
4276
4277         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
4278         (after_prologue): Remove.
4279
4280 2012-02-23  Tom Tromey  <tromey@redhat.com>
4281
4282         * jv-valprint.c (java_val_print): Remove dead code.
4283
4284 2012-02-23  Tristan Gingold  <gingold@adacore.com>
4285
4286         * ada-tasks.c (struct ada_tasks_inferior_data): Add
4287         known_tasks_element and known_tasks_length fields.
4288         (read_known_tasks_array): Change argument type.  Use pointer type
4289         and number of elements from DATA.  Adjust.
4290         (read_known_tasks_list): Likewise.
4291         (get_known_tasks_addr): Remove.
4292         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
4293         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
4294         type and array length.  Merge former get_known_tasks_addr code.
4295
4296 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
4297
4298         PR backtrace/13716
4299         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
4300         it after set_momentary_breakpoint.
4301
4302 2012-02-22  Sterling Augustine  <saugustine@google.com>
4303
4304         PR 13689:
4305         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
4306
4307 2012-02-22  Gary Benson  <gbenson@redhat.com>
4308
4309         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
4310         (find_slot_in_mapped_hash): Likewise.
4311
4312 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
4313
4314         PR build/13638
4315         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
4316         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
4317         * configure: Regenerate.
4318
4319 2012-02-21  Tristan Gingold  <gingold@adacore.com>
4320             Pedro Alves  <palves@redhat.com>
4321
4322         * ia64-tdep.c: Do not include libunwind-ia64.h.
4323         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
4324         Include libunwind-ia64.h instead of libunwind.h.
4325         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
4326         for libunwind.h existence.
4327         * configure, config.in: Regenerate.
4328
4329 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
4330
4331         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
4332         instead of value_rtti_target_type.
4333         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
4334         instead of value_rtti_target_type.
4335         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
4336         value_rtti_target_type.
4337         * valops.c (value_ind): Extract function readjust_indirect_value_type.
4338         (value_rtti_target_type): Rename to ...
4339         (value_rtti_indirect_type): ... here and make it indirect.  Update
4340         function comment.
4341         * value.c (readjust_indirect_value_type): New function.
4342         (coerce_ref): Support for enclosing type setting for references
4343         with readjust_indirect_value_type.
4344         * value.h (readjust_value_type): New declaration.
4345         (value_rtti_target_type): Rename to ...
4346         (value_rtti_indirect_type): ... here.
4347
4348 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
4349
4350         * MAINTAINERS (Write After Approval): Add myself to the list.
4351
4352 2012-02-20  Doug Evans  <dje@google.com>
4353
4354         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
4355         Rename objfile_p_char parameter to objfilep.
4356         (build_objfile_section_table): Result is now void.  All callers
4357         updated.
4358         * objfiles.h (struct objfile): Tweak comments, whitespace.
4359         (build_objfile_section_table): Update.
4360
4361         * elfread.c (elf_symfile_segments): Fix warning text.
4362
4363 2012-02-20  Tom Tromey  <tromey@redhat.com>
4364
4365         PR gdb/13498:
4366         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
4367         particular set of file names once.
4368         (dw2_map_symbol_filenames): Likewise.
4369
4370 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
4371
4372         Code cleanup.
4373         * main.c (write_files): Remove the declaration.
4374         (external_editor_command): Move the declaration ...
4375         [GDBTK] (external_editor_command): ... here.  Fix the comment.
4376
4377 2012-02-20  Tom Tromey  <tromey@redhat.com>
4378
4379         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
4380         extraneous block.
4381
4382 2012-02-20  Tristan Gingold  <gingold@adacore.com>
4383
4384         * darwin-nat.h (enum darwin_msg_state): Add comments.
4385
4386 2012-02-20  Tristan Gingold  <gingold@adacore.com>
4387
4388         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
4389         value.
4390
4391 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
4392
4393         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
4394         between function description and implementation.
4395
4396 2012-02-17  Tom Tromey  <tromey@redhat.com>
4397
4398         PR python/12070:
4399         * python/py-event.c (event_object_getset): New global.
4400         (event_object_type): Reference it.
4401         * python/py-type.c (field_object_getset): New global.
4402         (field_object_type): Reference it.
4403         * python/python-internal.h (gdb_py_generic_dict): Declare.
4404         * python/py-utils.c (gdb_py_generic_dict): New function.
4405
4406 2012-02-17  Tristan Gingold  <gingold@adacore.com>
4407
4408         * solib-darwin.c (darwin_current_sos): Check magic and filetype
4409
4410 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
4411
4412         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
4413         TYPE_CALLING_CONVENTION annotation.
4414
4415 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
4416
4417         * MAINTAINERS: Add rx to target ISA section.
4418         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
4419         (ALLDEPFILES): Add rx-tdep.c.
4420
4421 2012-02-16  Tom Tromey  <tromey@redhat.com>
4422
4423         * symfile.c (symbol_file_add_main_1): Use inferior's
4424         symfile_flags.
4425         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
4426         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
4427         inferior.
4428         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
4429         inferior.
4430         (follow_exec): Use inferior's symfile_flags.
4431         * inferior.h (struct inferior) <symfile_flags>: New field.
4432
4433 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
4434
4435         PR gdb/9734:
4436         * remote-sim.c (gdbsim_create_inferior): Call error() when
4437         sim_create_inferior() fails.
4438
4439 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
4440
4441         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
4442
4443 2012-02-16  Tom Tromey  <tromey@redhat.com>
4444
4445         PR c++/13653:
4446         * thread.c (struct current_thread_cleanup) <was_removable>: New
4447         field.
4448         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
4449         (make_cleanup_restore_current_thread): Initialize new field.
4450
4451 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
4452
4453         * MAINTAINERS: Add rl78 to target ISA section.
4454         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
4455         (ALLDEPFILES): Add rl78-tdep.c.
4456         * NEWS: Mention rl78 as a new target.
4457
4458 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
4459
4460         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
4461         data.
4462         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
4463
4464 2012-02-15  Tom Tromey  <tromey@redhat.com>
4465
4466         PR gdb/12659:
4467         * infcmd.c (registers_info): Print just the current register's
4468         name.
4469
4470 2012-02-15  Tom Tromey  <tromey@redhat.com>
4471
4472         * python/py-symbol.c (sympy_value): Use _().
4473
4474 2012-02-15  Pedro Alves  <palves@redhat.com>
4475
4476         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
4477         output to be like native targets'.
4478         (remote_pid_to_str): Special case the null ptid.
4479
4480 2012-02-14  Stan Shebs  <stan@codesourcery.com>
4481
4482         * NEWS: Mention enable count command.
4483         * breakpoint.h (struct breakpoint): New field enable_count.
4484         * breakpoint.c (enable_breakpoint_disp): Add count argument.
4485         (enable_breakpoint): Add arg to call.
4486         (struct disp_data): New struct.
4487         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
4488         (do_map_enable_once_breakpoint): Create a struct and pass it.
4489         (do_map_enable_delete_breakpoint): Ditto.
4490         (do_map_enable_count_breakpoint): New function.
4491         (enable_count_command): New function.
4492         (bpstat_stop_status): Decrement enable_count.
4493         (print_one_breakpoint_location): Report enable count.
4494         (_initialize_breakpoint): Add enable count command.
4495
4496 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
4497
4498         * rl78-tdep.c (reggroups.h): Include.
4499         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
4500         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
4501         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
4502         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
4503         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
4504         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
4505         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
4506         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
4507         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
4508         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
4509         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
4510         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
4511         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
4512         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
4513         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
4514         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
4515         beginning of register list.
4516         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
4517         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
4518         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
4519         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
4520         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
4521         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
4522         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
4523         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
4524         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
4525         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
4526         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
4527         the pseudo registers.  Rearrange other pseudo registers too so
4528         that the bank registers appear at the end.
4529         (rl78_register_type): Account for the fact that the byte sized
4530         bank registers are now pseudo-registers.
4531         (rl78_register_name): Rearrange the register name array.  Make
4532         initial set of raw banked registers inaccessible.
4533         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
4534         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
4535         case for copying bytes back and forth between raw and pseudo
4536         versions of the banked registers.  Update other cases to reflect
4537         the changed names.
4538         (rl78_return_value): Update to account for changed names of
4539         raw registers.
4540         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
4541         rl78_register_sim_regno().
4542
4543 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
4544
4545         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
4546         the name parameter being passed to find_pc_partial_function().
4547
4548 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
4549
4550         * MAINTAINERS: Step down from being ia64 target maintainer.
4551
4552 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
4553
4554         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
4555         compilation warning.
4556
4557 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
4558
4559         Fix crash on loaded shlibs without loaded exec_bfd.
4560         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
4561         (set_section_command): Replace exec_bfd by p->bfd.
4562
4563 2012-02-10  Tom Tromey  <tromey@redhat.com>
4564
4565         * linespec.c (decode_line_internal): Skip symtabs_from_filename
4566         when we have a C++ qualified name.
4567
4568 2012-02-10  Pedro Alves  <palves@redhat.com>
4569
4570         * inferior.c (inferior_pid_to_str): New.
4571         (print_inferior, inferior_command): Use it.
4572
4573 2012-02-10  Pedro Alves  <palves@redhat.com>
4574
4575         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
4576         the test CFLAGS.
4577         * configure: Regenerate.
4578
4579 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
4580
4581         * linespec.c (decode_line_internal): Fix comment correctness.
4582
4583 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
4584
4585         PR gdb/12953
4586         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
4587         * amd64bsd-nat.c: Add support for debug registers (adapted from
4588         i386bsd-nat.c).
4589         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
4590         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
4591         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
4592         (amd64bsd_dr_get_control): New functions.
4593         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
4594         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
4595         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
4596         watchpoints initialization.
4597         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
4598
4599 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
4600
4601         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
4602         flds_bnds.fields.
4603         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
4604
4605 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
4606
4607         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
4608
4609 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
4610
4611         * language.h (symbol_name_cmp_ftype): Renames
4612         symbol_name_match_p_ftype.
4613         (struct language_defn)[la_get_symbol_name_cmp]: Renames
4614         la_get_symbol_name_match_p.
4615         * ada-lang.c (ada_get_symbol_name_cmp): Renames
4616         ada_get_symbol_name_match_p.  Update comment.
4617         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
4618         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
4619         Renames symbol_name_match_p.  Update field type.
4620         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
4621         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
4622         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
4623         "la_get_symbol_name_cmp" in comments.
4624         * language.c: Likewise.
4625
4626 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4627
4628         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
4629         %eflags offset.
4630         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
4631         (amd64_sol2_gregset32_reg_offs): Likewise.
4632
4633 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
4634
4635         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
4636         of the returned BFD is allocated by GDB.
4637
4638 2012-02-07  Tom Tromey  <tromey@redhat.com>
4639
4640         PR python/12027:
4641         * python/python-internal.h (frame_object_type): Declare.
4642         * python/py-symbol.c (sympy_needs_frame): New function.
4643         (sympy_value): New function.
4644         (symbol_object_getset): Add "needs_frame".
4645         (symbol_object_methods): Add "value".
4646         * python/py-frame.c (frame_object_type): No longer static.
4647
4648 2012-02-07  Tom Tromey  <tromey@redhat.com>
4649
4650         PR python/13599:
4651         * python/py-symbol.c (sympy_line): New function.
4652         (symbol_object_getset): Add "line".
4653
4654 2012-02-07  Tom Tromey  <tromey@redhat.com>
4655
4656         * charset.c (find_charset_names): Check 'in' against NULL.
4657
4658 2012-02-06  Doug Evans  <dje@google.com>
4659
4660         * gdbtypes.h (struct main_type): Change type of name,tag_name,
4661         and fields.name members from char * to const char *.  All uses updated.
4662         (struct cplus_struct_type): Change type of fn_fieldlists.name member
4663         from char * to const char *.  All uses updated.
4664         (type_name_no_tag): Update.
4665         (lookup_unsigned_typename, lookup_signed_typename): Update.
4666         * gdbtypes.c (type_name_no_tag): Change result type
4667         from char * to const char *.  All callers updated.
4668         (lookup_unsigned_typename, lookup_signed_typename): Change type of
4669         name parameter from char * to const char *.
4670         * symtab.h (struct cplus_specific): Change type of demangled_name
4671         member from char * to const char *.  All uses updated.
4672         (struct general_symbol_info): Change type of name and
4673         mangled_lang.demangled_name members from char * to const char *.
4674         All uses updated.
4675         (symbol_get_demangled_name, symbol_natural_name): Update.
4676         (symbol_demangled_name, symbol_search_name): Update.
4677         * symtab.c (symbol_get_demangled_name): Change result type
4678         from char * to const char *.  All callers updated.
4679         (symbol_natural_name, symbol_demangled_name): Ditto.
4680         (symbol_search_name): Ditto.
4681         (completion_list_add_name): Change type of symname,sym_text,
4682         text,word parameters from char * to const char *.
4683         (completion_list_objc_symbol): Change type of sym_text,
4684         text,word parameters from char * to const char *.
4685         * ada-lang.c (find_struct_field): Change type of name parameter
4686         from char * to const char *.
4687         (encoded_ordered_before): Similarly for N0,N1 parameters.
4688         (old_renaming_is_invisible): Similarly for function_name parameter.
4689         (ada_type_name): Change result type from char * to const char *.
4690         All callers updated.
4691         * ada-lang.h (ada_type_name): Update.
4692         * buildsym.c (hashname): Change type of name parameter
4693         from char * to const char *.
4694         * buildsym.h (hashname): Update.
4695         * dbxread.c (end_psymtab): Change type of include_list parameter
4696         from char ** to const char **.
4697         * dwarf2read.c (determine_prefix): Change result type
4698         from char * to const char *.  All callers updated.
4699         * f-lang.c (find_common_for_function): Change type of name, funcname
4700         parameters from char * to const char *.
4701         * f-lang.c (find_common_for_function): Update.
4702         * f-valprint.c (list_all_visible_commons): Change type of funcname
4703         parameters from char * to const char *.
4704         * gdbarch.sh (static_transform_name): Change type of name parameter
4705         and result from char * to const char *.
4706         * gdbarch.c: Regenerate.
4707         * gdbarch.h: Regenerate.
4708         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
4709         of name parameter from char * to const char *.
4710         * jv-lang.c (java_primitive_type_from_name): Ditto.
4711         (java_demangled_signature_length): Similarly for signature parameter.
4712         (java_demangled_signature_copy): Ditto.
4713         (java_demangle_type_signature): Ditto.
4714         * jv-lang.h (java_primitive_type_from_name): Update.
4715         (java_demangle_type_signature): Update.
4716         * objc-lang.c (specialcmp): Change type of a,b parameters
4717         from char * to const char *.
4718         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
4719         from char * to const char *.  All callers updated.
4720         * p-lang.h (is_pascal_string_type): Update.
4721         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
4722         of name parameter from char * to const char *.
4723         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
4724         * utils.c (fprintf_symbol_filtered): Ditto.
4725         * defs.h (fprintf_symbol_filtered): Update.
4726         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
4727         * stabsread.h (end_psymtab): Update.
4728         * stack.c (find_frame_funname): Change type of funname parameter
4729         from char ** to const char **.
4730         * stack.h (find_frame_funname): Update.
4731         * typeprint.c (type_print): Change type of varstring parameter
4732         from char * to const char *.
4733         * value.h (type_print): Update.
4734         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
4735         from char * to const char *.  All callers updated.
4736         (xcoff_end_psymtab): Change type of include_list parameter
4737         from char ** to const char **.  All callers updated.
4738         (swap_sym): Similarly for name parameter.  All callers updated.
4739         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
4740         Use xstrdup.
4741         (process_coff_symbol): Use xstrdup.
4742         * stabsread.c (stabs_method_name_from_physname): Renamed from
4743         update_method_name_from_physname.  Change result type from void
4744         to char *.  All callers updated.
4745         (read_member_functions): In has_destructor case, store name in objfile
4746         obstack instead of malloc space.  In !has_stub case, fix mem leak.
4747
4748 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
4749
4750         * configure: Rebuild.
4751         * configure.ac: Put -L../bfd and -L../libiberty at the front of
4752         LDFLAGS.
4753
4754 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
4755
4756         * configure.tgt (rl78-*-elf): New target.
4757         * rl78-tdep.c: New file.
4758
4759 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
4760
4761         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
4762         and continue the loop.  Add QUIT statement.
4763
4764 2012-02-03  Tom Tromey  <tromey@redhat.com>
4765
4766         PR gdb/13596:
4767         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
4768         bfd_lookup_symbol_from_symtab.
4769         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
4770         gdb_bfd_lookup_symbol_from_symtab.
4771
4772 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
4773
4774         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
4775         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
4776         symbol.  Add assertion that sym2 is never NULL.
4777
4778 2012-02-02  Doug Evans  <dje@google.com>
4779
4780         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
4781         "name" parameter to const char ** from char **.  All callers updated.
4782         (find_pc_partial_function): Ditto.
4783         (cache_pc_function_name): Change type to const char * from char *.
4784         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
4785         (find_pc_partial_function): Update.
4786         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
4787         type of "name" parameter to const char * from char *.
4788         All uses updated.
4789         * arch-utils.c (generic_in_solib_return_trampoline): Change
4790         type of "name" parameter to const char * from char *.
4791         * arch-utils.h (generic_in_solib_return_trampoline): Update.
4792         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
4793         type of "name" parameter to const char * from char *.
4794         * gdbarch.sh (in_solib_return_trampoline): Ditto.
4795         * gdbarch.c: Regenerate.
4796         * gdbarch.h: Regenerate.
4797         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
4798         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
4799         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
4800         type of "name" parameter to const char * from char *.
4801         * skip.c (skip_function_pc): Ditto.
4802         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
4803         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
4804         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
4805         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
4806         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
4807         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
4808         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
4809         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
4810         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
4811
4812 2012-02-02  Pedro Alves  <palves@redhat.com>
4813
4814         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
4815         the current inferior has no execution.  Make sure the current
4816         remote process matches gdb's current inferior.
4817
4818 2012-02-02  Tom Tromey  <tromey@redhat.com>
4819
4820         PR gdb/13405:
4821         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
4822         read-only memory.
4823
4824 2012-02-02  Tom Tromey  <tromey@redhat.com>
4825
4826         PR gdb/9307:
4827         * symtab.c (lookup_language_this): Set block_found.
4828
4829 2012-02-01  Tom Tromey  <tromey@redhat.com>
4830
4831         PR gdb/13431:
4832         * jit.c (struct jit_inferior_data): Rewrite.
4833         (struct jit_objfile_data): New.
4834         (get_jit_objfile_data): New function.
4835         (add_objfile_entry): Update.
4836         (jit_read_descriptor): Return int.  Replace descriptor_addr
4837         argument with inf_data.  Update.  Don't call error.
4838         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
4839         descriptor here.
4840         (jit_inferior_init): Don't look up descriptor.  Don't call error.
4841         (jit_reset_inferior_data_and_breakpoints)
4842         (jit_inferior_created_observer): Remove.
4843         (jit_inferior_exit_hook): Update.
4844         (jit_executable_changed_observer): Remove.
4845         (jit_event_handler): Update.
4846         (free_objfile_data): Reset inferior data if needed.
4847         (_initialize_jit): Update.
4848
4849 2012-02-01  Tom Tromey  <tromey@redhat.com>
4850
4851         * jit.c (bfd_open_from_target_memory): Move higher in file.
4852
4853 2012-02-01  Tristan Gingold  <gingold@adacore.com>
4854
4855         * libunwind-frame.c (libunwind_load): Display message if dlopen
4856         failed.
4857
4858 2012-02-01  Gary Benson  <gbenson@redhat.com>
4859
4860         * symtab.h (symbol_found_callback_ftype): New typedef.
4861         (iterate_over_symbols): Use the above.
4862         * symtab.c (iterate_over_symbols): Likewise.
4863         * language.h (language_defn->la_iterate_over_symbols): Likewise.
4864         * ada-lang.c (ada_iterate_over_symbols): Likewise.
4865         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
4866         (iterate_name_matcher): Document return values.
4867         (collect_one_symbol): Likewise.
4868         (collect_function_symbols): Likewise.
4869         (collect_symbols): Likewise.
4870
4871 2012-02-01  Tom Tromey  <tromey@redhat.com>
4872
4873         * ada-lang.c (resolve_subexp): Update.
4874         (ada_lookup_symbol_list): Add 'full_search' argument.
4875         (ada_iterate_over_symbols): Pass 0 as full_search argument to
4876         ada_lookup_symbol_list.
4877         (ada_lookup_encoded_symbol): Update.
4878         (get_var_value): Update.
4879         * ada-exp.y (block_lookup): Update.
4880         (write_var_or_type): Update.
4881         (write_name_assoc): Update.
4882         * ada-lang.h (ada_lookup_symbol_list): Update.
4883
4884 2012-01-31  Tom Tromey  <tromey@redhat.com>
4885
4886         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
4887         comment.
4888
4889 2012-01-31  Doug Evans  <dje@google.com>
4890
4891         * symtab.h: Remove outdated comment.
4892         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
4893
4894 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
4895
4896         Fix build error in Darwin port.
4897         * i386-darwin-nat.c: Include i386-nat.h.
4898
4899 2012-01-30  Tom Tromey  <tromey@redhat.com>
4900
4901         PR breakpoints/13568:
4902         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
4903         argument.  Check for recursive includes.
4904         (dwarf_decode_macros): Create an include hash.
4905
4906 2012-01-30  Michael Eager  <eager@eagercon.com>
4907
4908         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
4909         * ppc-linux-tdep.c: Include glibc-tdep.h.
4910         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
4911         (powerpc_linux_in_plt_stub): New function.
4912         (powerpc_linux_in_dynsym_resolve_code): New function.
4913         (ppc_skip_trampoline_code): New function.
4914         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
4915         Use glibc_skip_solib_resolver.
4916
4917 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4918
4919         Code cleanup: Make 1440 bytes of data segment read-only.
4920         * arch-utils.c (endian_enum): Make it const char *const [].
4921         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
4922         Likewise.
4923         * breakpoint.c (always_inserted_enums): Likewise.
4924         * cli/cli-cmds.c (script_ext_enums): Likewise.
4925         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
4926         enumlist parameter const char *const *.
4927         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
4928         const char *const *.
4929         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
4930         parameter const char *const *.
4931         * cris-tdep.c (cris_modes): Make it const char *const [].
4932         * filesystem.c (target_file_system_kinds): Likewise.
4933         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
4934         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
4935         (can_use_displaced_stepping_enum, scheduler_enums)
4936         (exec_direction_names): Likewise.
4937         * language.c (_initialize_language): Make the type_or_range_names and
4938         case_sensitive_names variables const char *const [].
4939         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
4940         * python/python.c (python_excp_enums): Likewise.
4941         * remote.c (interrupt_sequence_modes): Likewise.
4942         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
4943         * serial.c (logbase_enums): Likewise.
4944         * sh-tdep.c (sh_cc_enum): Likewise.
4945         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
4946         Likewise.
4947         * symtab.c (multiple_symbols_modes): Likewise.
4948         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
4949         Likewise.
4950         * utils.c (internal_problem_modes): Likewise.
4951
4952 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
4953
4954         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
4955         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
4956         result.
4957
4958 2012-01-27  Doug Evans  <dje@google.com>
4959
4960         * configure.ac (with_python): Fix absolute path handling for win32.
4961         * configure: Regenerate.
4962
4963 2012-01-26  Doug Evans  <dje@google.com>
4964
4965         * symtab.c: Whitespace cleanup, no code changes.
4966
4967         * symtab.c (lookup_symbol_in_language): Improve comment.
4968         (lookup_symbol_aux): Fix comment.
4969
4970         * psymtab.c (add_psymbol_to_list): Result is now "void".
4971         * psympriv.h (add_psymbol_to_list): Update.
4972
4973         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
4974
4975 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
4976
4977         Do not open script filenames twice.
4978         * cli/cli-cmds.c (source_script_from_stream): Pass to
4979         source_python_script also STREAM.
4980         * python/py-auto-load.c (source_section_scripts): Pass to
4981         source_python_script_for_objfile also STREAM.
4982         (auto_load_objfile_script): Pass to source_python_script_for_objfile
4983         also INPUT.
4984         * python/python-internal.h (source_python_script_for_objfile): New
4985         parameter file, rename parameter file to filename.
4986         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
4987         instead if !_WIN32.  Update the function comment.
4988         (source_python_script, source_python_script_for_objfile)
4989         (source_python_script): New parameter file, rename parameter file to
4990         filename.  Pass FILENAME to python_run_simple_file.
4991         * python/python.h (source_python_script): New parameter file, rename
4992         parameter file to filename.
4993
4994 2012-01-26  Pedro Alves  <palves@redhat.com>
4995
4996         * corelow.c (core_has_fake_pid): Delete.
4997         (core_close): Delete references to `core_has_fake_pid'.
4998         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
4999         (core_open): Delete references to `core_has_fake_pid'.
5000         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
5001         the removed global.
5002
5003 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
5004
5005         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
5006         Remove language parameter from name_matcher.  Adjust the comment.
5007         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
5008         Remove language parameter.
5009         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
5010         * linespec.c (iterate_name_matcher): Likewise.
5011         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
5012         name_matcher.  Adjust call accordingly.
5013         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
5014         (maintenance_check_symtabs): Adjust type of parameter "fun".
5015         * psymtab.h (maintenance_check_symtabs): Likewise.
5016
5017 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
5018
5019         * language.h (symbol_name_match_p_ftype): New typedef.
5020         (struct language_defn): Replace field la_symbol_name_compare
5021         by la_get_symbol_name_match_p.
5022         * ada-lang.c (ada_get_symbol_name_match_p): New function.
5023         (ada_language_defn): Use it.
5024         * linespec.c (struct symbol_matcher_data): New type.
5025         (iterate_name_matcher): Rewrite.
5026         (iterate_over_all_matching_symtabs): Pass a pointer to
5027         a symbol_matcher_data struct to expand_symtabs_matching
5028         instead of just the lookup name.
5029         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
5030         opencl-lang.c, p-lang.c, language.c: Delete field
5031         la_symbol_name_compare, and replace by NULL for new field
5032         la_get_symbol_name_match_p.
5033         * symfile.h (struct quick_symbol_functions): Update comment.
5034
5035 2012-01-25  Tom Tromey  <tromey@redhat.com>
5036
5037         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
5038         dereferencing.
5039
5040 2012-01-24  Tom Tromey  <tromey@redhat.com>
5041
5042         PR symtab/12406:
5043         * solib.c (update_solib_list): Update the program space's
5044         added_solibs and deleted_solibs fields.
5045         * progspace.h (struct program_space) <added_solibs,
5046         deleted_solibs>: New fields.
5047         (clear_program_space_solib_cache): Declare.
5048         * progspace.c (release_program_space): Call
5049         clear_program_space_solib_cache.
5050         (clear_program_space_solib_cache): New function.
5051         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
5052         bpstat_stop_status.  Use handle_solib_event.
5053         * breakpoint.c: Include gdb_regex.h.
5054         (print_solib_event): New function.
5055         (bpstat_print): Use print_solib_event.
5056         (bpstat_stop_status): Add special case for bp_shlib_event.
5057         (handle_solib_event): New function.
5058         (bpstat_what): Use handle_solib_event.
5059         (struct solib_catchpoint): New.
5060         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
5061         (breakpoint_hit_catch_solib, check_status_catch_solib)
5062         (print_it_catch_solib, print_one_catch_solib)
5063         (print_mention_catch_solib, print_recreate_catch_solib): New
5064         functions.
5065         (catch_solib_breakpoint_ops): New global.
5066         (catch_load_or_unload, catch_load_command_1)
5067         (catch_unload_command_1): New functions.
5068         (internal_bkpt_check_status): Add special case for
5069         bp_shlib_event.
5070         (internal_bkpt_print_it): Use print_solib_event.
5071         (initialize_breakpoint_ops): Initialize
5072         catch_solib_breakpoint_ops.
5073         (_initialize_breakpoint): Register "catch load" and "catch
5074         unload".
5075         * breakpoint.h (handle_solib_event): Declare.
5076         * NEWS: Add entry for "catch load" and "catch unload".
5077
5078 2012-01-24  Tom Tromey  <tromey@redhat.com>
5079
5080         * ada-lang.c: Include gdb_vecs.h.
5081         * charset.c: Include gdb_vecs.h.
5082         * tracepoint.h: Include gdb_vecs.h.
5083         * gdb_vecs.h: New file.
5084
5085 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
5086
5087         * breakpoint.c (breakpoint_hit_catch_fork)
5088         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
5089         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
5090         * infrun.c (inferior_has_forked, inferior_has_vforked)
5091         (inferior_has_execd, inferior_has_called_syscall): Delete.
5092         (handle_syscall_event): Get syscall_number from the execution
5093         control state's wait status.
5094         (wait_for_inferior): Don't clear syscall_number.
5095
5096 2012-01-24  Pedro Alves  <palves@redhat.com>
5097
5098         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
5099         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
5100         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
5101         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
5102         `ws' parameter.
5103         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
5104         false for events other than TARGET_SIGNAL_TRAP.
5105         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
5106         Add `ws' parameter.
5107         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
5108         events other than TARGET_SIGNAL_TRAP.
5109         (tracepoint_breakpoint_hit): Add `ws' parameter.
5110         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
5111         parameter.
5112         (bpstat_stop_status): Same.
5113         (pc_at_non_inline_function): Same.
5114         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
5115         to pass the current event's waitstatus to bpstat_stop_status
5116         and pc_at_non_inline_function.
5117
5118 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5119
5120         Code cleanup.
5121         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
5122         Update the function comment for it.
5123         (source_script_with_search): Call make_cleanup_fclose for STREAM.
5124         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
5125         for STREAM.
5126
5127 2012-01-24  Pedro Alves  <palves@redhat.com>
5128
5129         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
5130         outside `bs->stop' block.
5131         (bpstat_what): Rework bp_shlib_event handling.
5132         (internal_bkpt_check_status): If the breakpoint is a
5133         bp_shlib_event, then set bs->stop and bs->print if
5134         stop_on_solib_events is set.
5135
5136 2012-01-24  Gary Benson  <gbenson@redhat.com>
5137
5138         Delete #if 0'd out code.
5139         * stack.c (print_frame_label_vars): Remove.
5140         (catch_info): Likewise.
5141         (_initialize_stack): Remove "info catch" command.
5142         * NEWS: Mention the above.
5143
5144 2012-01-24  Pedro Alves  <palves@redhat.com>
5145
5146         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
5147         it.
5148         (remote_notice_new_inferior): If the remote end doesn't support
5149         the multiprocess extensions, then the PID is fake.
5150         (add_current_inferior_and_thread): New.
5151         (remote_start_remote): Use it.
5152         (extended_remote_attach_1): Adjust.
5153         (extended_remote_create_inferior_1): Use
5154         add_current_inferior_and_thread.
5155
5156 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5157
5158         Fix watchpoints to be specific for each inferior.
5159         * breakpoint.c (watchpoint_in_thread_scope): Verify also
5160         current_program_space.
5161         * i386-nat.c (i386_inferior_data_cleanup): New.
5162         (i386_inferior_data_get): Replace variable inf_data_local by an
5163         inferior_data call.
5164         (i386_use_watchpoints): Initialize i386_inferior_data.
5165         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
5166         specific iterate_over_lwps.
5167
5168 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5169
5170         Fix watchpoints across inferior fork.
5171         * amd64-linux-nat.c (update_debug_registers_callback): Update the
5172         comment for linux_nat_iterate_watchpoint_lwps.
5173         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
5174         linux_nat_iterate_watchpoint_lwps.
5175         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
5176         * i386-linux-nat.c (update_debug_registers_callback): Update the
5177         comment for linux_nat_iterate_watchpoint_lwps.
5178         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
5179         linux_nat_iterate_watchpoint_lwps.
5180         (i386_linux_prepare_to_resume): New comment on Linux kernel.
5181         * i386-nat.c: Include inferior.h.
5182         (dr_mirror): Remove.
5183         (i386_inferior_data, struct i386_inferior_data)
5184         (i386_inferior_data_get): New.
5185         (i386_debug_reg_state): Use i386_inferior_data_get.
5186         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
5187         (i386_insert_watchpoint, i386_remove_watchpoint)
5188         (i386_stopped_data_address, i386_insert_hw_breakpoint)
5189         (i386_remove_hw_breakpoint): New variable state, use
5190         i386_debug_reg_state instead of DR_MIRROR.
5191         * linux-nat.c (delete_lwp): New declaration.
5192         (num_lwps): Move here from downwards.
5193         (delete_lwp_cleanup): New.
5194         (linux_child_follow_fork): Create new child_lp, call
5195         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
5196         PTRACE_DETACH.
5197         (num_lwps): Move upwards.
5198         (linux_nat_iterate_watchpoint_lwps): New.
5199         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
5200         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
5201
5202 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
5203
5204         GDB 7.4 released.
5205
5206 2012-01-23  Pedro Alves  <palves@redhat.com>
5207
5208         * top.c (caution): Rename to ...
5209         (confirm): ... this.
5210         (show_caution): Rename to ...
5211         (show_confirm): ... this.
5212         (quit_cover): Adjust.
5213         (init_main): Adjust.
5214         * top.h (caution): Rename to ...
5215         (confirm): ... this.
5216         * utils.c (internal_vproblem, defaulted_query): Adjust.
5217
5218 2012-01-23  Pedro Alves  <palves@redhat.com>
5219
5220         * top.c (caution): Update comment.
5221         (execute_command): Don't consider the current value of `caution'.
5222
5223 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
5224
5225         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
5226
5227 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
5228
5229         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
5230         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
5231         * target.c (target_fileio_pwrite): Remove buffer address from
5232         debug output.
5233         (target_fileio_pread): Likewise.
5234
5235 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
5236
5237         * NEWS: Document remote "info proc" and "generate-core-file".
5238
5239 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
5240
5241         * gdbarch.sh (find_memory_regions): New callback.
5242         * gdbarch.c, gdbarch.h: Regenerate.
5243
5244         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
5245         callback before falling back to target method.
5246
5247         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
5248         (linux_target_install_ops): No longer install it.
5249
5250         * linux-tdep.c (linux_find_memory_regions): New function.
5251         (linux_init_abi): Install it.
5252
5253 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
5254
5255         * gdbarch.sh (make_corefile_notes): New architecture callback.
5256         * gdbarch.c: Regenerate.
5257         * gdbarch.h: Likewise.
5258
5259         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
5260         before target_make_corefile_notes.  If NULL is returned, the
5261         target does not support core file generation.
5262
5263         * linux-nat.c: Include "linux-tdep.h".
5264         (find_signalled_thread, find_stop_signal): Remove.
5265         (linux_nat_do_thread_registers): Likewise.
5266         (struct linux_nat_corefile_thread_data): Likewise.
5267         (linux_nat_corefile_thread_callback): Likewise.
5268         (iterate_over_spus): Likewise.
5269         (struct linux_spu_corefile_data): Likewise.
5270         (linux_spu_corefile_callback): Likewise.
5271         (linux_spu_make_corefile_notes): Likewise.
5272         (linux_nat_collect_thread_registers): New function.
5273         (linux_nat_make_corefile_notes): Replace contents by call to
5274         linux_make_corefile_notes passing linux_nat_collect_thread_registers
5275         as native-only callback.
5276
5277         * linux-tdep.h: Include "bfd.h".
5278         (struct regcache): Add forward declaration.
5279         (linux_collect_thread_registers_ftype): New typedef.
5280         (linux_make_corefile_notes): Add prototype.
5281         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
5282         "regset.h", and "elf-bfd.h".
5283         (find_signalled_thread, find_stop_signal): New functions.
5284         (linux_spu_make_corefile_notes): Likewise.
5285         (linux_collect_thread_registers): Likewise.
5286         (struct linux_corefile_thread_data): New data structure.
5287         (linux_corefile_thread_callback): New funcion.
5288         (linux_make_corefile_notes): Likewise.
5289         (linux_make_corefile_notes_1): Likewise.
5290         (linux_init_abi): Install it.
5291
5292 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
5293
5294         * gdbarch.sh (info_proc): New callback.
5295         * gdbarch.c, gdbarch.h: Regenerate.
5296
5297         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
5298         before falling back to the target info_proc callback.
5299
5300         * linux-nat.c: Do not include "cli/cli-utils.h".
5301         (linux_nat_info_proc): Remove.
5302         (linux_target_install_ops): No longer install it.
5303
5304         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
5305         (read_mapping): New function.
5306         (linux_info_proc): Likewise.
5307         (linux_init_abi): Install it.
5308
5309 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
5310
5311         * defs.h (enum info_proc_what): Moved here from linux-nat.c
5312         * infcmd.c: (info_proc_cmd_1): New function.
5313         (info_proc_cmd): New function, moved here from equivalent routine
5314         orignally in linux-nat.c.
5315         (info_proc_cmd_mappings): Likewise.
5316         (info_proc_cmd_stat): Likewise.
5317         (info_proc_cmd_status): Likewise.
5318         (info_proc_cmd_cwd): Likewise.
5319         (info_proc_cmd_cmdline): Likewise.
5320         (info_proc_cmd_exe): Likewise.
5321         (info_proc_cmd_all): Likewise.
5322         (_initialize_infcmd): Install "info proc" command and subcommands.
5323
5324         * target.h (struct target_ops): Add to_info_proc.
5325         (target_info_proc): Add prototype.
5326         * target.c (target_info_proc): New function.
5327
5328         * procfs.c (procfs_info_proc): Add prototype.
5329         (info_proc_cmd): Rename into ...
5330         (procfs_info_proc): ... this.  Update argument types as appropriate
5331         for a to_info_proc implementation.  Handle "what" argument.
5332         (procfs_target): Install procfs_info_proc.
5333         (_initialize_procfs): No longer install "info proc" command.
5334
5335         * linux-nat.c: (enum info_proc_what): Remove.
5336         (linux_nat_info_proc_cmd_1): Rename into ...
5337         (linux_nat_info_proc): ... this.  Update argument types as appropriate
5338         for a to_info_proc implementation.
5339         (linux_nat_info_proc_cmd): Remove.
5340         (linux_nat_info_proc_cmd_mappings): Likewise.
5341         (linux_nat_info_proc_cmd_stat): Likewise.
5342         (linux_nat_info_proc_cmd_status): Likewise.
5343         (linux_nat_info_proc_cmd_cwd): Likewise.
5344         (linux_nat_info_proc_cmd_cmdline): Likewise.
5345         (linux_nat_info_proc_cmd_exe): Likewise.
5346         (linux_nat_info_proc_cmd_all): Likewise.
5347         (linux_target_install_ops): Install linux_nat_info_proc.
5348         (_initialize_linux_nat): No longer install "info proc" command
5349         and subcommands.
5350
5351 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
5352
5353         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
5354         * config.in, configure: Regenerate.
5355
5356         * target.h (struct target_ops): Add to_fileio_readlink.
5357         (target_fileio_readlink): Add prototype.
5358         * target.c (target_fileio_readlink): New function.
5359
5360         * inf-child.c: Conditionally include <sys/param.h>.
5361         (inf_child_fileio_readlink): New function.
5362         (inf_child_target): Install it.
5363
5364         * remote.c (PACKET_vFile_readlink): New enum value.
5365         (remote_hostio_readlink): New function.
5366         (init_remote_ops): Install it.
5367         (_initialize_remote): Handle vFile:readlink packet type.
5368
5369 2012-01-20  Pedro Alves  <palves@redhat.com>
5370             Ulrich Weigand  <ulrich.weigand@linaro.org>
5371
5372         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
5373         * config.in, configure: Regenerate.
5374
5375         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
5376         to_fileio_pread, to_fileio_close, to_fileio_unlink.
5377         (target_fileio_open): Add prototype.
5378         (target_fileio_pwrite): Likewise.
5379         (target_fileio_pread): Likewise.
5380         (target_fileio_close): Likewise.
5381         (target_fileio_unlink): Likewise.
5382         (target_fileio_read_alloc): Likewise.
5383         (target_fileio_read_stralloc): Likewise.
5384
5385         * target.c: Include "gdb/fileio.h".
5386         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
5387         (default_fileio_target): New function.
5388         (target_fileio_open): Likewise.
5389         (target_fileio_pwrite): Likewise.
5390         (target_fileio_pread): Likewise.
5391         (target_fileio_close): Likewise.
5392         (target_fileio_unlink): Likewise.
5393         (target_fileio_close_cleanup): Likewise.
5394         (target_fileio_read_alloc_1): Likewise.
5395         (target_fileio_read_alloc): Likewise.
5396         (target_fileio_read_stralloc): Likewise.
5397
5398         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
5399         <fcntl.h>, and <unistd.h>.
5400         (inf_child_fileio_open_flags_to_host): New function.
5401         (inf_child_errno_to_fileio_error): Likewise.
5402         (inf_child_fileio_open): Likewise.
5403         (inf_child_fileio_pwrite): Likewise.
5404         (inf_child_fileio_pread): Likewise.
5405         (inf_child_fileio_close): Likewise.
5406         (inf_child_fileio_unlink): Likewise.
5407         (inf_child_target): Install to_fileio routines.
5408
5409         * remote.c (init_remote_ops): Install to_fileio routines.
5410
5411 2012-01-20  Pedro Alves  <palves@redhat.com>
5412             Ulrich Weigand  <ulrich.weigand@linaro.org>
5413
5414         * remote.c (remote_multi_process_p): Only check for multi-process
5415         protocol feature, do not check for extended protocol.
5416         (remote_supports_multi_process): Check for extended protocol here.
5417         (set_general_process): Likewise.
5418         (extended_remote_kill): Likewise.
5419         (remote_pid_to_str): Likewise.
5420         (remote_query_supported): Always query multiprocess mode.
5421
5422 2012-01-20  Pedro Alves  <palves@redhat.com>
5423             Ulrich Weigand  <ulrich.weigand@linaro.org>
5424
5425         * inferior.h (struct inferior): Add fake_pid_p.
5426         * inferior.c (exit_inferior_1): Clear fake_pid_p.
5427         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
5428         magic_null_ptid since the remote side doesn't provide a real PID.
5429
5430 2012-01-19  Tom Tromey  <tromey@redhat.com>
5431
5432         * NEWS: Combine the two Python sections.
5433
5434 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
5435
5436         * target.h (target_close): Update comment on the target's unpush state.
5437
5438 2012-01-19  Pedro Alves  <palves@redhat.com>
5439
5440         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
5441         linux_nat_async directly instead of going through the target
5442         vector.
5443         * target.c (unpush_target): Close target after unpushing it, not
5444         before.
5445
5446 2012-01-19  Gary Benson  <gbenson@redhat.com>
5447
5448         * mdebugread.c (sort_blocks): Replace integer constants with ones
5449         derived from FIRST_LOCAL_BLOCK.
5450
5451 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
5452             Jan Kratochvil  <jan.kratochvil@redhat.com>
5453
5454         PR gdb/9538
5455         * symfile.c (find_separate_debug_file): New function.
5456         (terminate_after_last_dir_separator): Likewise.
5457         (find_separate_debug_file_by_debuglink): Also try realpath.
5458         * configure.ac (AC_CHECK_FUNCS): Add lstat.
5459         * configure: Regenerate.
5460         * config.in: Regenerate.
5461
5462 2012-01-18  Doug Evans  <dje@google.com>
5463
5464         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
5465         (main.o): Remove rule.
5466         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
5467         (--with-sysroot): Rewrite.
5468         * configure: Regenerate.
5469         * config.in: Regenerate.
5470
5471 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
5472
5473         * parse.c (initialize_expout): New function.
5474         (reallocate_expout): Likewise.
5475         (parse_exp_in_context): Use `initialize_expout' and
5476         `reallocate_expout' when appropriate.
5477
5478 2012-01-18  Pedro Alves  <palves@redhat.com>
5479
5480         * record.c (struct record_breakpoint, record_breakpoint_p)
5481         (record_breakpoints): New.
5482         (record_insert_breakpoint, record_remove_breakpoint): Manage
5483         record breakpoints list.  Only remove breakpoints from the
5484         inferior if they had been inserted there in the first place.
5485
5486 2012-01-17  Doug Evans  <dje@google.com>
5487
5488         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
5489         if we know we don't have a file name to look for.
5490
5491 2012-01-17  Pedro Alves  <palves@redhat.com>
5492
5493         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
5494         the frame's stop reason is UNWIND_UNAVAILABLE.
5495
5496 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5497
5498         Fix compilation error.
5499         * m2-exp.y (yyerror): Use ANSI C prototype.
5500
5501 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
5502
5503         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
5504         (growbuf_by_size): Likewise.
5505         (yyerror): Likewise.
5506         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
5507         (modblock): Remove variable (was #if 0'ed).
5508         (parse_number): Convert prototype from K&R to ANSI C.
5509         (yyerror): Likewise.
5510         * objc-exp.y (parse_number): Likewise.
5511         (yyerror): Likewise.
5512         (yylex): Remove #if 0'ed code.
5513         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
5514         (yyerror): Likewise.
5515
5516 2012-01-16  Tom Tromey  <tromey@redhat.com>
5517
5518         * NEWS: Add item.
5519         * symtab.h (compare_filenames_for_search): Declare.
5520         * symtab.c (compare_filenames_for_search): New function.
5521         (iterate_over_some_symtabs): Use it.
5522         * symfile.h (struct quick_symbol_functions)
5523         <map_symtabs_matching_filename>: Change spec.
5524         * psymtab.c (partial_map_symtabs_matching_filename): Use
5525         compare_filenames_for_search.  Update for new spec.
5526         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
5527         compare_filenames_for_search.  Update for new spec.
5528         * breakpoint.c (clear_command): Use compare_filenames_for_search.
5529
5530 2012-01-16  Tom Tromey  <tromey@redhat.com>
5531
5532         PR python/13281:
5533         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
5534         (struct main_type) <flag_flag_enum>: New field.
5535         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
5536         * NEWS: Add entries.
5537         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
5538         enums.
5539         * python/lib/gdb/printing.py (_EnumInstance): New class.
5540         (FlagEnumerationPrinter): Likewise.
5541
5542 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
5543
5544         * breakpoint.c (create_sals_from_address_default): New function.
5545         (create_breakpoints_sal_default): Likewise.
5546         (decode_linespec_default): Likewise.
5547         (is_marker_spec): Removed.
5548         (strace_marker_p): New function.
5549         (init_breakpoint_sal): Using `strace_marker_p' instead of
5550         `is_marker_spec'.
5551         (create_breakpoint): Call method `create_sals_from_address' from
5552         breakpoint_ops, replacing code that created SALs conditionally
5553         on the type of the breakpoint.  Call method `create_breakpoints_sal',
5554         replacing code that created breakpoints conditionally on the type
5555         wanted.
5556         (base_breakpoint_create_sals_from_address): New function.
5557         (base_breakpoint_create_breakpoints_sal): Likewise.
5558         (base_breakpoint_decode_linespec): Likewise.
5559         (base_breakpoint_ops): Add methods
5560         `base_breakpoint_create_sals_from_address',
5561         `base_breakpoint_create_breakpoints_sal' and
5562         `base_breakpoint_decode_linespec'.
5563         (bkpt_create_sals_from_address): New function.
5564         (bkpt_create_breakpoints_sal): Likewise.
5565         (bkpt_decode_linespec): Likewise.
5566         (tracepoint_create_sals_from_address): Likewise.
5567         (tracepoint_create_breakpoints_sal): Likewise.
5568         (tracepoint_decode_linespec): Likewise.
5569         (strace_marker_create_sals_from_address): Likewise.
5570         (strace_marker_create_breakpoints_sal): Likewise.
5571         (strace_marker_decode_linespec): Likewise.
5572         (strace_marker_breakpoint_ops): New variable.
5573         (addr_string_to_sals): Remove `marker_spec'.  Call method
5574         `decode_linespec' from breakpoint_ops, replacing code that decoded
5575         an address string into a SAL.  Use `strace_marker_p' instead of
5576         `marker_spec'.
5577         (strace_command): Decide whether we are dealing with a static
5578         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
5579         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
5580         * breakpoint.h (linespec_result, linespec_sals): New forward
5581         declarations.
5582         (breakpoint_ops) <create_sals_from_address>,
5583         <create_breakpoints_sal>, <decode_linespec>: New methods.
5584
5585 2012-01-14  Doug Evans  <dje@google.com>
5586
5587         * NEWS: Update text for "maint set python print-stack".
5588         It is deprecated in gdb 7.4 and deleted in 7.5.
5589
5590 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
5591
5592         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
5593         including curses.h.
5594
5595 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
5596
5597         * configure: Regenerate.
5598         * config.in: Regenerate.
5599
5600 2012-01-12  Keith Seitz  <keiths@redhat.com>
5601
5602         PR mi/10586
5603         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
5604         (ANONYMOUS_UNION_NAME): Define.
5605         (is_path_expr_parent): New function.
5606         (get_path_expr_parent): New function.
5607         (is_anonymous_child): New function.
5608         (create_child_with_value): If the child is anonymous and without
5609         a name, assign an object name to it.
5610         (c_describe_child): Use get_path_expr_parent to determine
5611         the parent expression.
5612         If there field represents an anonymous struct or union and
5613         has no name, set an appropriate display name and expression.
5614         (cplus_describe_child): Likewise.
5615
5616 2012-01-12  Pedro Alves  <palves@redhat.com>
5617
5618         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
5619         available when %ebp is found to be zero (outermost).
5620
5621 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
5622
5623         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
5624         an internal gdb_static_assert.
5625         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
5626
5627 2012-01-11  Tom Tromey  <tromey@redhat.com>
5628
5629         PR gdb/9598:
5630         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
5631         catch" and "catch throw".
5632
5633 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
5634
5635         * blockframe.c (block_innermost_frame): Start search from selected
5636         frame, if present, or otherwise the current frame.
5637
5638         * c-exp.y (variable): Update innermost_block for
5639         'block COLONCOLON NAME' clause.
5640         * m2-exp.y (variable): Ditto.
5641         * objc-exp.y (variable): Ditto.
5642
5643 2012-01-10  Tom Tromey  <tromey@redhat.com>
5644
5645         PR python/13199:
5646         * python/python.c (finish_python_initialization): Set sys.argv.
5647
5648 2012-01-10  Doug Evans  <dje@google.com>
5649
5650         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
5651         "want_line_info".  All callers updated.
5652         (dwarf_decode_lines_1): New function.
5653         (handle_DW_AT_stmt_list): Add function comment.
5654         New arg "want_line_info".  All callers updated.
5655         (read_file_scope,read_type_unit_scope): Move comment from
5656         handle_DW_AT_stmt_list to here.
5657
5658 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
5659
5660         Fix regression after libiberty/ update for GCC PR 6057 and others.
5661         * c-exp.y (operator) <OPERATOR DELETE>
5662         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
5663         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
5664         (make_builtin_type, make_name): New variable i, add gdb_assert.
5665         (operator) <OPERATOR NEW>: Update ARGS to 3.
5666         (operator) <OPERATOR DELETE>: Add trailing space.
5667         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
5668         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
5669         * cp-support.c (cp_canonicalize_string): Check NULL from
5670         cp_comp_to_string, call warning and return.
5671
5672 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
5673
5674         Fix duplicate .o files after omitting libbfd.a.
5675         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
5676         (SFILES): Add corelow.c.
5677         (COMMON_OBS): Add corelow.o.
5678         (ALLDEPFILES): Remove corelow.c.
5679         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
5680         * config/alpha/alpha-osf3.mh: Likewise.
5681         * config/alpha/fbsd.mh: Likewise.
5682         * config/arm/nbsdaout.mh: Likewise.
5683         * config/arm/nbsdelf.mh: Likewise.
5684         * config/i386/i386gnu.mh: Likewise.
5685         * config/ia64/hpux.mh: Likewise.
5686         * config/ia64/linux.mh: Likewise.
5687         * config/m32r/linux.mh: Likewise.
5688         * config/m68k/linux.mh: Likewise.
5689         * config/mips/irix5.mh: Likewise.
5690         * config/mips/irix6.mh: Likewise.
5691         * config/pa/hpux.mh: Likewise.
5692         * config/pa/linux.mh: Likewise.
5693         * config/powerpc/aix.mh: Likewise.
5694         * config/sparc/linux.mh: Likewise.
5695         * config/sparc/linux64.mh: Likewise.
5696         * config/sparc/sol2.mh: Likewise.
5697         * config/vax/vax.mh: Likewise.
5698         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
5699         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
5700         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
5701         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
5702         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
5703         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
5704         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
5705         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
5706         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
5707         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
5708         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
5709         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
5710         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
5711         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
5712         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
5713         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
5714         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
5715         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
5716         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
5717         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
5718         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
5719         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
5720         corelow.o from gdb_target_obs.
5721         * corefile.c (core_target): Update the comment on NULL value.
5722         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
5723         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
5724         MATCHES.  Drop YUMMY set on NULL.
5725         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
5726         reclaim CORE_DATA if it is already NULL.
5727
5728 2012-01-09  Doug Evans  <dje@google.com>
5729
5730         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
5731         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
5732
5733 2012-01-09  Keith Seitz  <keiths@redhat.com>
5734
5735         * breakpoint.c (wrapper.h): Don't include.
5736
5737 2012-01-09  Keith Seitz  <keiths@redhat.com>
5738
5739         * Makefile.in (SFILES): Remove wrapper.c.
5740         (HFILES_NO_SRCDIR): Remove wrapper.h.
5741         (COMMON_OBS): Remove wrapper.o.
5742         * cli/cli-interp.c: Don't inlude wrapper.h.
5743         * corelow.c: Likewise.
5744         (core_open): Replace gdb_target_find_new_threads with
5745         TRY_CATCH around target_find_new_threads.
5746         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
5747         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
5748         * varobj.c (varobj_create): Likewise for parse_exp_1 and
5749         evaluate_expression.
5750         (varobj_set_value): Likewise for evaluate_expression and
5751         value_assign.
5752         (install_new_variable): Likewise for value_fetch_lazy.
5753         (adjust_value_for_child_access): Likewise for value_ind.
5754         (c_describe_child): Likewise for value_subscript and
5755         value_ind.
5756         (c_value_of_root): Likewise for evaluate_expression.
5757         * wrapper.c: Remove.
5758         * wrapper.h: Remove.
5759
5760 2012-01-09  Doug Evans  <dje@google.com>
5761
5762         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
5763         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
5764         "abfd" args with "section".  All callers updated.
5765         Error checking code moved ...
5766         (error_check_comp_unit_head): ... here.  New function.
5767         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
5768         Delete arg "abfd".  New arg "type_offset".  All callers updated.
5769         (create_debug_types_hash_table): Simplify by using
5770         read_and_check_type_unit_head.
5771
5772         * parser-defs.h (namecopy): Delete.
5773         * parse.c (namecopy, namecopy_size): Move into copy_name.
5774
5775 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
5776
5777         Partially fix duplicate .o files after omitting libbfd.a.
5778         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
5779         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
5780         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
5781         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
5782         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
5783         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
5784         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
5785
5786 2012-01-09  Pedro Alves  <palves@redhat.com>
5787
5788         * MAINTAINERS: Update my email address.
5789
5790 2012-01-08  Doug Evans  <dje@google.com>
5791
5792         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
5793         n_type_units.  Rename type_comp_units to all_type_units.
5794         All uses updated.
5795         (add_signatured_type_cu_to_table): Renamed from
5796         add_signatured_type_cu_to_list.  All callers updated.
5797
5798         * gdbtypes.h (struct cplus_struct_type): Delete member
5799         nfn_fields_total.  All uses removed.
5800
5801 2012-01-06  Doug Evans  <dje@google.com>
5802
5803         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
5804         to top of file.
5805         (dwarf2_find_comp_unit): Delete.
5806         (process_psymtab_comp_unit): Make result "void".
5807         Delete args buffer, info_ptr, buffer_size, and replace with
5808         "section".  All callers updated.
5809         (dwarf2_build_psymtabs_hard): Simplify.
5810
5811 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
5812             Thiago Jung Bauermann  <bauerman@br.ibm.com>
5813
5814         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
5815         before `struct gdb_exception'.
5816         * breakpoint.c (update_global_location_list_nothrow)
5817         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
5818         * cp-abi.c (value_rtti_type): Likewise.
5819         * cp-support.c (cp_validate_operator): Likewise.
5820         * infrun.c (insert_exception_resume_breakpoint)
5821         (check_exception_resume, keep_going): Likewise.
5822         * mi-interp.c (mi_breakpoint_created)
5823         (mi_breakpoint_modified): Likewise.
5824         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
5825         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
5826         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
5827
5828 2012-01-05  Doug Evans  <dje@google.com>
5829
5830         * dwarf2read.c (statement_prologue): Delete, unused.
5831
5832         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
5833         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
5834
5835         * dwarf2read.c (comp_unit_header): Delete, unused.
5836
5837 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
5838
5839         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
5840         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
5841
5842 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
5843
5844         * infrun.c (normal_stop): Don't skip calling the normal_stop
5845         observers if the thread was doing a multi-step, but stopped for
5846         some reason other than stepping.
5847
5848 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
5849
5850         * cli/cli-decode.h: Add comments.
5851         (CMD_LIST_AMBIGUOUS): Moved to command.h
5852         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
5853         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
5854         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
5855         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
5856         (add_com, add_com_alias, add_info, add_info_alias)
5857         (complete_on_cmdlist, complete_on_enum, help_list): Remove
5858         declarations.
5859         * command.h: Add and adjust comments.
5860         (CMD_LIST_AMBIGUOUS): Moved here.
5861         (help_cmd, help_cmd_list): Delete declarations.
5862
5863 2012-01-04  Doug Evans  <dje@google.com>
5864
5865         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
5866         All callers updated.
5867         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
5868         Replace all arguments with "per_cu".  All callers updated.
5869
5870         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
5871
5872         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
5873         New arg "per_cu".  All callers updated.
5874
5875         Delete #if 0'd out code.
5876         * language.c (binop_result_type): Delete.
5877         (simple_type, ordered_type, same_type, integral_type): Delete.
5878         (numeric_type, character_type, string_type, boolean_type): Delete.
5879         (float_type, structured_type): Delete.
5880         * language.h: Update.
5881
5882 2012-01-04  Tom Tromey  <tromey@redhat.com>
5883
5884         * python/py-value.c (valpy_binop): Initialize 'res_val'.
5885
5886 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5887
5888         * corefile.c (close_exec_file): Delete.
5889         (reopen_exec_file): Remove commented out code that seems related
5890         to close_exec_file, which is being deleted here.
5891         * inferior.h (close_exec_file): Delete.
5892         * fork-child.c (fork_inferior): Remove call to fork_inferior.
5893
5894 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5895
5896         * ada-lang.c: #include "cli/cli-utils.h".
5897         (get_selections): Use skip_spaces.
5898         (ada_get_next_arg): Use skip_spaces and skip_to_space.
5899         (catch_ada_exception_command_split): Use skip_spaces.
5900         (ada_decode_assert_location): Likewise.
5901
5902 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5903
5904         * linespec.c (decode_line_internal): Check for C++ or Java
5905         compound constructs only if the current language is C, C++
5906         or Java.
5907
5908 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5909
5910         Revert:
5911         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5912                     Joel Brobecker  <brobecker@adacore.com>
5913         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
5914         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
5915         3 times.
5916         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
5917         fall through into AT_ENTRY_POINT.
5918         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
5919         DUMMY_ADDR with it.
5920         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
5921         PPC_INSN_SIZE skip to 3 times.
5922
5923 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5924
5925         * linespec.c (add_minsym): Preserve function descriptors.
5926
5927 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
5928
5929         * breakpoint.c (all_locations_are_pending): Consider locations
5930         in program spaces executing during startup pending as well.
5931
5932 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5933
5934         Copyright year update in most files of the GDB Project.
5935
5936 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5937
5938         * copyright.sh: Delete.
5939         * copyright.py: Rewrite.
5940
5941 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5942
5943         * gnulib/extra/update-copyright: New file, imported from gnulib.
5944
5945 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
5946
5947         * README (Copyright and License Notices): New section.
5948
5949 2012-01-03  Tom Tromey  <tromey@redhat.com>
5950
5951         PR python/12533:
5952         * python/py-value.c (valpy_dereference, valpy_get_address
5953         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
5954         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
5955         (valpy_absolute, valpy_richcompare): Free intermediate values.
5956
5957 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
5958
5959         * ada-lang.c: Reformat the copyright notice.
5960
5961 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5962
5963         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
5964         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
5965         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
5966         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
5967         Revert this part of:
5968         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5969         Build gdb directly from *.o files not using libgdb.a.
5970         * Makefile.in (COMMON_OBS): Remove solib-target.o.
5971
5972 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
5973
5974         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
5975         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
5976         Reformat the copyright header.
5977
5978 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5979
5980         Revert this part of:
5981         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5982         Remove the gdbtui binary.
5983         * gdb.c (main): Remove args.interpreter_p initialization.
5984         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
5985         * main.h (struct captured_main_args): Remove interpreter_p.
5986
5987 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
5988
5989         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
5990
5991 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
5992
5993         * top.c (print_gdb_version): Update copyright year.
5994
5995 2012-01-02  Yao Qi  <yao@codesourcery.com>
5996
5997         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
5998
5999 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6000             Joel Brobecker  <brobecker@adacore.com>
6001
6002         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
6003         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
6004         3 times.
6005         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
6006         fall through into AT_ENTRY_POINT.
6007         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
6008         DUMMY_ADDR with it.
6009         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
6010         PPC_INSN_SIZE skip to 3 times.
6011
6012 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6013
6014         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
6015         the return value.
6016         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
6017
6018 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6019
6020         Build gdb directly from *.o files not using libgdb.a.
6021         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
6022         (COMMON_OBS): Remove solib-target.o.
6023         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
6024         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
6025         (LIBGDB_OBS, libgdb.a): Move it above.
6026         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
6027         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
6028         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
6029         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
6030         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
6031         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
6032         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
6033         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
6034         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
6035         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
6036         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
6037         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
6038         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
6039         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
6040         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
6041         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
6042         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
6043         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
6044         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
6045         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
6046         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
6047         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
6048         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
6049         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
6050         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
6051         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
6052         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
6053
6054 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6055
6056         Remove the gdbtui binary.
6057         * .gitignore (/gdbtui): Remove.
6058         * Makefile.in (TUI): Remove.
6059         (SUBDIR_TUI_OBS): Remove tui-main.o.
6060         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
6061         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
6062         (tui-main.o): Remove.
6063         (all_object_files): Remove tui-main.o.
6064         * NEWS: New note for the gdbtui removal.
6065         * configure: Rebuilt.
6066         * configure.ac: No longer add all-tui, clean-tui, install-tui and
6067         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
6068         CONFIG_UNINSTALL respectively.
6069         * gdb.c (main): Remove args.interpreter_p initialization.
6070         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
6071         * main.h (struct captured_main_args): Remove interpreter_p.
6072         * tui/tui-main.c: Remove.
6073
6074 2012-01-01  Doug Evans  <dje@google.com>
6075
6076         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
6077         (dwarf2_physname, read_import_statement): Ditto.
6078         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
6079         (process_structure_scope read_subroutine_type): Ditto.
6080         (read_typedef, load_partial_dies, read_partial_die): Ditto.
6081         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
6082         (dwarf2_fetch_die_location_block): Ditto.
6083         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
6084
6085         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
6086         All callers updated.
6087         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
6088         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
6089         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
6090
6091         * dwarf2read.c (load_cu): Move assert to more useful location.
6092
6093         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
6094         All callers updated.
6095
6096         * dwarf2read.c (dwarf2_per_objfile): Add comment.
6097         (dwarf2_elf_names): Minor reformat.
6098         (dwarf2_per_cu_data): Tweak comment.
6099         (dwarf2_read_section): Fix comment.
6100         (create_all_comp_units): Fix comment.
6101         (load_full_comp_unit): Fix comment.
6102         (process_full_comp_unit): Fix comment.
6103         (read_signatured_type): Fix comment.
6104
6105 For older changes see ChangeLog-2011.
6106 \f
6107 Local Variables:
6108 mode: change-log
6109 left-margin: 8
6110 fill-column: 74
6111 version-control: never
6112 coding: utf-8
6113 End: