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