gdb/
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2012-10-23  Yao Qi  <yao@codesourcery.com>
2
3         * event-top.c (mark_async_signal_handler_wrapper): Remove.
4         * event-top.h: Remove its declaration.
5         (async_request_quit): Call mark_async_signal_handler instead of
6         mark_async_signal_handler_wrapper.
7         (async_do_nothing, async_disconnect): Likewise.
8         (async_stop_sig): Likewise.
9         * remote.c (handle_remote_sigint): Likewise.
10         (handle_remote_sigint_twice): Likewise.
11
12 2012-10-23  Yao Qi  <yao@codesourcery.com>
13
14         * event-top.c (sigint_token, sighup_token): Replace 'void *'
15         with 'static struct async_signal_handler *'.
16         (sighup_token, sigquit_token, sigstp_token): Likewise.
17
18 2012-10-22  Ali Anwar  <ali_anwar@codesourcery.com>
19
20         * gdbarch.sh (function_list): Use 'pstring' when printing
21         a variable which could return NULL.
22         * gdbarch.c: Regenerate.
23
24 2012-10-10  Joel Brobecker  <brobecker@adacore.com>
25             Tom Tromey  <tromey@redhat.com>
26
27         * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
28         inneffective if condition by gdb assertion.  Add function
29         description comment.
30
31 2012-10-19  Joel Brobecker  <brobecker@adacore.com>
32
33         * parser-defs.h (struct exp_descriptor): Document constraint
34         on return value for "op_name" callbacks.
35
36 2012-10-18  Tom Tromey  <tromey@redhat.com>
37
38         * tracepoint.c (print_one_static_tracepoint_marker): Constify.
39         * symtab.c (iterate_over_some_symtabs): Constify.
40         * source.h (symtab_to_fullname): Return 'const char *'.
41         * source.c (symtab_to_fullname): Return 'const char *'.
42         * python/py-symtab.c (stpy_fullname): Constify.
43         * cli/cli-cmds.c (edit_command): Constify.
44         * breakpoint.c (print_breakpoint_location)
45         (update_static_tracepoint): Constify.
46
47 2012-10-18  Tom Tromey  <tromey@redhat.com>
48
49         * breakpoint.c (compare_breakpoints): Fix comparison.
50
51 2012-10-18  Tom Tromey  <tromey@redhat.com>
52
53         * valprint.c (generic_emit_char, generic_printstr): Pass size of
54         gdb_wchar_t to convert_between_encodings.
55
56 2012-10-17  Yao Qi  <yao@codesourcery.com>
57
58         * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
59         more parameter 'inferior'.
60         * corefile.c (write_memory_with_notification): Caller update.
61
62         * mi/mi-cmd-var.c: Include "mi-main.h".
63         (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
64         to 1 and restore it later.
65         * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
66         and "data-write-memory-bytes.
67         * mi/mi-interp.c: Include objfiles.h.
68         (mi_interpreter_init): Call observer_attach_memory_changed.
69         (mi_memory_changed): New.
70         * mi/mi-main.h (struct mi_suppress_notification) <memory>:
71         New field.
72
73         * NEWS: Mention new MI notification "memory-changed".
74
75 2012-10-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
76
77         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
78
79 2012-10-15  Doug Evans  <dje@google.com>
80
81         New option -nh: inhibit loading of ~/.gdbinit.
82         * NEWS: Mention -nh.
83         * main.c (captured_main): Recognize and process -nh.
84         (print_gdb_help): Mention -nh.
85         * gdb.1: Mention -nh.  Remove erroneous docs on -nx behavior.
86
87 2012-10-15  H.J. Lu  <hongjiu.lu@intel.com>
88
89         PR backtrace/14646
90         PR gdb/14647
91         * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
92         pc_regnum_from_eax.
93         * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
94         nor pc_regnum_from_eax.
95         * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
96         nor pc_regnum_from_eax.
97
98 2012-10-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
99
100         Fix entry values resolving in inlined frames.
101         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
102         gdbarch and caller_frame initialization later.  Skip INLINE_FRAME
103         entries of FRAME.
104
105 2012-10-15  Joel Brobecker  <brobecker@adacore.com>
106
107         * configure.ac: Build with -DMS_WIN64 if building with Python
108         enabled using GCC on amd64-windows.
109         * configure: Regenerate.
110
111 2012-10-15  Tom Tromey  <tromey@redhat.com>
112
113         PR python/14635:
114         * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
115         to Py_None.
116
117 2012-10-15  Tom Tromey  <tromey@redhat.com>
118
119         PR python/14634:
120         * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
121
122 2012-10-11  Andrew Burgess  <aburgess@broadcom.com>
123
124         * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
125         reset thread numbering back to 1.
126
127 2012-10-11  Doug Evans  <dje@google.com>
128
129         PR breakpoints/14643.
130         * linespec.c (struct ls_parser): New member keyword_ok.
131         (linespec_lexer_lex_string): Add comment.
132         (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
133         for one.
134         (parse_linespec): Set keyword_ok.
135
136 2012-10-10  Doug Evans  <dje@google.com>
137
138         * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
139         "0x" prefix on address in log message.
140
141         * dwarf2read.c (read_1_byte): Add const to buf parameter.
142         (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
143         (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
144         (lookup_dwo_file): Add const to dwo_name parameter.
145         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
146
147 2012-10-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
148
149         Fix crash during stepping on ppc32.
150         * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
151         SYM.
152
153 2012-10-03  Doug Evans  <dje@google.com>
154
155         PR symtab/14601
156         * buildsym.c (buildsym_init): Reset using_directives to NULL.
157
158 2012-10-02  Andrew Burgess  <aburgess@broadcom.com>
159
160         * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
161         output and use uint32_t not long to ensure 4 byte size.
162
163 2012-10-02  Joel Brobecker  <brobecker@adacore.com>
164
165         * rs6000-nat.c (add_vmap): Set "last" to "next" after having
166         unref'ed it.
167
168 2012-10-01  Andrew Burgess  <aburgess@broadcom.com>
169
170         * target.c (simple_search_memory): Include access length in
171         warning message.
172
173 2012-09-28  Nathan Miller  <nathanm2@us.ibm.com>
174             Edjunior Machado  <emachado@linux.vnet.ibm.com>
175
176         PR gdb/13989
177         * solib.c (solib_find): Prevent GDB from loading native libraries when
178         debugging a cross-target corefile.
179
180 2012-09-28  selven  <pcthegreat@gmail.com>
181
182         Make definition match declaration.
183
184         * regcache.c (regcache_register_status): Change return type to
185         enum register_status.
186
187 2012-09-28  Yao Qi  <yao@codesourcery.com>
188
189         * mi/mi-main.c (mi_cmd_data_write_memory): Call
190         write_memory_with_notification instead of write_memory.
191         (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
192         instead of target_write_memory.
193
194 2012-09-28  Yao Qi  <yao@codesourcery.com>
195
196         * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
197         when the length of content is not an even number.
198
199 2012-09-27  Tom Tromey  <tromey@redhat.com>
200
201         Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
202         * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
203
204 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
205
206         * sol-thread.c (sol_thread_fetch_registers)
207         (sol_thread_store_registers): Delete commented out code.
208
209 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
210
211         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
212         Move these functions to sparc-sol-thread.c.
213         * sparc-sol-thread.c: New file.
214         * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
215         sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
216         configurations.
217         * configure: Regenerate.
218
219 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
220
221         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
222         Remove commented-out code.
223
224 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
225
226         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
227         Enable this code for sparc hosts only.
228
229 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
230
231         * procfs.h (procfs_find_LDT_entry): Add declaration.
232         * sol-thread.c (ps_lgetLDT): Delete local declaration of
233         function procfs_find_LDT_entry.
234
235 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
236
237         * procfs.c (proc_get_LDT_entry): Make static.
238
239 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
240
241         * procfs.c (proc_find_memory_regions): Fix declaration.
242
243 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
244
245         * amd64-tdep.c (amd64_return_value): Revert previous change
246         that used TYPE_LENGTH directly.
247         * bfin-tdep.c (bfin_extract_return_value): Likewise.
248         (bfin_store_return_value): Likewise.
249         * cris-tdep.c (cris_store_return_value): Likewise.
250         (cris_extract_return_value): Likewise.
251         * h8300-tdep.c (h8300_extract_return_value): Likewise.
252         * hppa-tdep.c (hppa64_return_value): Likewise.
253         * lm32-tdep.c (lm32_store_return_value): Likewise.
254         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
255         * spu-tdep.c (spu_value_from_register): Likewise.
256         * vax-tdep.c (vax_return_value): Likewise.
257
258 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
259
260         * gdbtypes.c (lookup_array_range_type): Expand parameters
261         LOW_BOUND and HIGH_BOUND to LONGEST.
262         (lookup_string_range_type): Likewise.
263         * gdbtypes.h (lookup_array_range_type): Likewise.
264         (lookup_string_range_type): Likewise.
265         * valops.c (value_cstring): Expand parameter LEN to ssize_t.
266         Expand HIGHBOUND to ssize_t.
267         (value_string): Likewise.
268         * value.h (value_cstring): Expand parameter LEN to ssize_t.
269         (value_string): Likewise.
270
271 2012-09-27  Yao Qi  <yao@codesourcery.com>
272
273         PR breakpoints/13898
274         * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
275         * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
276         per breakpoint type.
277
278 2012-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
279
280         * procfs.c: Add gdb_bfd header.
281         * rs6000-nat.c: Likewise.
282         * solib-pa64.c: Likewise.
283         * spu-linux-nat.c: Likewise.
284         * windows-nat.c: Likewise.
285
286 2012-09-26  Tom Tromey  <tromey@redhat.com>
287
288         * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
289
290 2012-09-26  Tom Tromey  <tromey@redhat.com>
291
292         * dwarf2read.c (mark_common_block_symbol_computed): New function.
293         (read_common_block): Handle child DIEs with
294         DW_AT_data_member_location.
295         (new_symbol_full): Add special case for common blocks.
296
297 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
298             Tom Tromey  <tromey@redhat.com>
299
300         * dwarf2read.c (read_common_block): Rewrite.
301         (new_symbol_full): Handle DW_TAG_common_block.
302         * f-lang.c (head_common_list, find_common_for_function):
303         Remove.
304         * f-lang.h (struct common_entry, struct saved_f77_common,
305         SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
306         COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
307         BLANK_COMMON_NAME_LOCAL): Remove.
308         (struct common_block): New.
309         * f-valprint.c (list_all_visible_commons): Remove.
310         (info_common_command_for_block): New function.
311         (info_common_command): Use it.
312         * stack.c (iterate_over_block_locals): Special case for
313         COMMON_BLOCK_DOMAIN.
314         * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
315         constant.
316         (struct general_symbol_info) <value.common_block>: New field.
317         (SYMBOL_VALUE_COMMON_BLOCK): New define.
318
319 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
320             Tom Tromey  <tromey@redhat.com>
321
322         * f-lang.c (allocate_saved_bf_node,
323         allocate_saved_function_node, allocate_saved_f77_common_node,
324         allocate_common_entry_node, tail_common_list, current_common,
325         saved_bf_list, saved_bf_list_end, current_head_bf_list,
326         tmp_bf_ptr, add_common_block, add_common_entry,
327         find_first_common_named, patch_common_entries,
328         patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
329         global_remote_debug, get_bf_for_fcn, saved_function_list,
330         saved_function_list_end, clear_function_list, struct saved_fcn,
331         struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
332         SAVED_BF, SAVED_BF_PTR): Remove.
333         * f-lang.h (tail_common_list, current_common,
334         UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
335         BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
336         DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
337         real_main_c_value): Remove.
338         * f-valprint.c (there_is_a_visible_common_named): Remove.
339
340 2012-09-26  Andrew Burgess  <aburgess@broadcom.com>
341
342         * breakpoint.c (update_global_location_list): Ignore previous
343         duplicate status of a breakpoint when starting a new scan for
344         duplicate breakpoints.
345
346 2012-09-26  Karthik Bhat  <kv.bhat@samsung.com>
347         PR breakpoints/14419
348         * arm-tdep.c (arm_skip_prologue): Extending producer check to
349         support LLVM compiler.
350
351 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
352
353         * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
354         * bfin-tdep.c (bfin_extract_return_value): Likewise.
355         (bfin_store_return_value): Likewise.
356         * cris-tdep.c (cris_store_return_value): Likewise.
357         (cris_extract_return_value): Likewise.
358         * h8300-tdep.c (h8300_extract_return_value): Likewise.
359         * hppa-tdep.c (hppa64_return_value): Likewise.
360         * lm32-tdep.c (lm32_store_return_value): Likewise.
361         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
362         * spu-tdep.c (spu_value_from_register): Likewise.
363         * vax-tdep.c (vax_return_value): Likewise.
364
365 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
366
367         * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
368         parameter LEN to ssize_t.
369
370 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
371
372         * ada-valprint.c (ada_val_print_1): Eliminate single-use
373         variable LEN.
374         * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
375         directly.
376         (alpha_store_return_value): Likewise.
377         * amd64-tdep.c (amd64_classify_aggregate): Likewise.
378         (amd64_push_arguments): Likewise.
379         * ax-gdb.c (gen_trace_static_fields): Likewise.
380         (gen_traced_pop): Likewise.
381         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
382         * breakpoint.c (update_watchpoint): Likewise.
383         * findcmd.c (parse_find_args): Use local variable for type
384         instead of length.
385         * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
386         * h8300-tdep.c (h8300h_extract_return_value): Likewise.
387         (h8300_store_return_value): Likewise.
388         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
389         Use i386_darwin_arg_type_alignment directly.
390         * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
391         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
392         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
393         (m68hc11_extract_return_value): Likewise.
394         * mep-tdep.c (mep_push_dummy_call): Likewise.
395         * printcmd.c (float_type_from_length): Likewise.
396         * s390-tdep.c (s390_value_from_register): Likewise.
397         * stack.c (read_frame_arg): Likewise.
398         * tracepoint.c (encode_actions_1): Likewise.
399         * valops.c (value_fetch_lazy): Use local variable for type
400         instead of length.  Use TYPE_LENGTH directly.
401         * value.c (value_contents_equal): Use TYPE_LENGTH directly.
402
403 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
404
405         * symtab.c (skip_prologue_sal): Fix typo in comment.
406
407 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
408
409         * linespec.c (create_sals_line_offset): Fix typo in comment.
410
411 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
412
413         * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
414         use plongest to print the array size.
415
416 2012-09-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
417
418         * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
419         * p-valprint.c (pascal_type_print_base): Likewise.
420
421 2012-09-22  Yao Qi  <yao@codesourcery.com>
422
423         * remote.c (remote_get_trace_status): Remove setting default
424         values of fields of 'ts'.
425
426 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
427
428         Fix internal error on canonicalization of clang types.
429         * cp-name-parser.y (operator): New comment at make_operator call for
430         new, delete, new[] and delete[].
431         (exp): Use "sizeof ".  Add new comment at make_operator call.
432
433 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
434
435         Fix disassemble without parameters in tailcall frame.
436         * cli/cli-cmds.c (disassemble_current_function): Use
437         get_frame_address_in_block.
438
439 2012-09-21  Tom Tromey  <tromey@redhat.com>
440
441         * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
442         TYPE_CODE_UNION>: Unify, removing a goto.
443
444 2012-09-21  Tom Tromey  <tromey@redhat.com>
445
446         * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
447
448 2012-09-21  Andrew Burgess  <aburgess@broadcom.com>
449
450         * findvar.c (read_frame_register_value): Mark the result value as
451         optimized out if any of the input registers have been optimized out.
452
453 2012-09-21  Andreas Schwab  <schwab@linux-m68k.org>
454
455         * python/python.c (finalize_python): Only define if HAVE_PYTHON.
456
457 2012-09-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
458
459         * eval.c (evaluate_subexp_standard): Eliminate single-use
460         variable LOWER.
461
462 2012-09-21  Yao Qi  <yao@codesourcery.com>
463
464         * mi/mi-interp.c: Declare mi_record_changed.
465         (mi_interpreter_init): Call observer_attach_record_changed.
466         (mi_record_changed): New.
467         * record.c (record_open): Call observer_notify_record_changed.
468         (cmd_record_stop): Call observer_notify_record_changed.
469         * NEWS: Mention it.
470
471 2012-09-20  Tom Tromey  <tromey@redhat.com>
472
473         * NEWS: Update.
474         * python/python.c (finalize_python): New function.
475         (_initialize_python): Make a final cleanup.
476
477 2012-09-19  Doug Evans  <dje@google.com>
478
479         * buildsym.h (param_symbols): Delete, unused.
480         (context_stack): Delete member "params", unused.
481         * buildsym.c (push_context): Update.
482         * dwarf2read.c (read_func_scope): Update.
483
484 2012-09-19  Thomas Schwinge  <thomas@codesourcery.com>
485
486         * sh-tdep.c (sh_register_convert_to_virtual)
487         (sh_register_convert_to_raw): Add a gdbarch parameter.  Update
488         all callers.  Just do a memcpy if not the little-endian case.
489
490         * h8300-tdep.c (h8300_gdbarch_init): Invoke
491         set_gdbarch_double_format and set_gdbarch_long_double_format.
492         * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
493         set_gdbarch_double_format.
494         * sh-tdep.c (sh_gdbarch_init): Likewise.
495
496         * NEWS: Document the removal of SH's 'regs' command.
497         * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
498         command.
499
500 2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
501
502         * infcmd.c (_initialize_infcmd): Register `j' as an alias for
503         `jump'.
504
505 2012-09-18  Joel Brobecker  <brobecker@adacore.com>
506
507         * linespec.c (iterate_over_all_matching_symtabs): Use the correct
508         language when iterating over symbols.
509
510 2012-09-18  Yao Qi  <yao@codesourcery.com>
511
512         * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
513         (mi_interpreter_init): Call observer_attach_tsv_created and
514         observer_attach_tsv_deleted.
515         (mi_tsv_created, mi_tsv_deleted): New.
516         * tracepoint.c (delete_trace_state_variable): Call
517         observer_notify_tsv_deleted.
518         (trace_variable_command): Call observer_notify_tsv_created.
519         (delete_trace_variable_command): Call
520         observer_notify_tsv_deleted.
521         (create_tsv_from_upload): Call observer_notify_tsv_created.
522         * NEWS: Mention it.
523
524 2012-09-18  Yao Qi  <yao@codesourcery.com>
525
526         * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
527         if traceframe changed.
528         * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
529         "trace-find".
530         * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
531         (mi_interpreter_init): Hook mi_traceframe_changed to observer
532         'traceframe_changed'.
533         (mi_traceframe_changed): New.
534         * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
535         New field.
536         * NEWS: Mention the new MI notification.
537
538 2012-09-17  Mike Wrighton  <wrighton@codesourcery.com>
539
540         * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
541
542 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
543
544         * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
545         (linux_ptrace_test_ret_to_nx): Extend comment for x86_64.  Change
546         __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
547         Extend code also for PaX support.  Convert all gdb_assert to warning
548         calls.
549
550 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
551
552         Implement auto-load user conveniences suggested by Doug Evans.
553         * auto-load.c: Include top.h.
554         (file_is_auto_load_safe): New variable advice_printed.  Print advice.
555         (_initialize_auto_load): New variable scripts_directory_help.  Mention
556         GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
557         scripts-directory.  Document in online help one can use also files for
558         set auto-load safe-path.
559         * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
560         * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
561
562 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
563
564         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
565         of LEN.
566
567 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
568
569         * m2-valprint.c (m2_print_array_contents): Eliminate variable
570         ELTLEN and use TYPE_LENGTH directly.
571         (m2_val_print): Likewise.
572         * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
573         variable LEN and use TYPE_LENGTH directly.
574         (m68k_svr4_store_return_value): Likewise.
575         * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
576         ARGLEN and use TYPE_LENGTH directly.
577         (mips_o64_push_dummy_call): Likewise.
578         * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
579         variable LENGTH and use TYPE_LENGTH directly.
580         (s390_function_arg_float): Likewise.
581         (s390_function_arg_integer): Likewise.
582         (s390_push_dummy_call): Likewise.
583         (s390_return_value_convention): Likewise.
584         * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
585         TYPE_LENGTH directly.
586
587 2012-09-17  Yao Qi  <yao@codesourcery.com>
588
589         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
590         Update comment to add_setshow_integer_cmd.
591         * cli/cli-setshow.c (do_set_command): Handle case
592         'var_zuinteger_unlimited'.
593         (do_show_command): Likewise.
594         * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
595         for command 'remotetimeout'.
596         * command.h (enum var_types): New zuinteger_unlimited.  Update comment
597         to var_integer.
598         * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
599         for command 'set listsize'.
600
601 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
602
603         * infrun.c (restore_infcall_suspend_state): Eliminate single-use
604         variable LEN.
605
606 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
607
608         PR 14119
609         * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
610         (frame_pop): Drop also TAILCALL_FRAME frames.
611         * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
612
613 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
614             Pedro Alves  <palves@redhat.com>
615
616         PR 14548
617         * infrun.c (handle_inferior_event): Do not reverse-continue back to the
618         function start if we are already at function start.  Both for
619         reverse-next and for reverse-step into function without line number
620         info.
621
622 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
623
624         Code cleanup - rename 'inline' depth to 'artificial' depth.
625         * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
626         frame_id_artificial_p, extend the comment.
627         * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
628         * frame.c (fprint_frame_id): Rename at a user, change debug output
629         text to "artificial=".
630         (skip_inlined_frames): Rename to ...
631         (skip_artificial_frames): ... here.  Extend the comment.
632         (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
633         (frame_id_inlined_p): Rename to ...
634         (frame_id_artificial_p): ... here.  Rename at a user.
635         (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
636         (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
637         at a user.
638         * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
639         Extend the comment.
640         (frame_id_inlined_p): Rename to ...
641         (frame_id_artificial_p): ... here.
642         * inline-frame.c (inline_frame_this_id): Rename at a user.
643
644 2012-09-14  Andrew Burgess  <aburgess@broadcom.com>
645
646         * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
647         vector variables using vector_size syntax rather than array
648         syntax.
649
650 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
651
652         * valarith.c (value_concat): Replace unsafe ALLOCA with
653         XMALLOC/XFREE.
654
655 2012-09-14  Pedro Alves  <palves@redhat.com>
656
657         * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
658
659 2012-09-14  Khoo Yit Phang  <khooyp@cs.umd.edu>
660
661         Point contrib/cc-with-tweaks.sh to the build-local data-directory.
662         * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
663         data-directory as appropriate.
664
665 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
666
667         * printcmd.c (ui_printf): Eliminate single-use variable
668         PARAM_LEN.
669
670 2012-09-14  Yao Qi  <yao@codesourcery.com>
671             Pedro Alves  <palves@redhat.com>
672
673         * valops.c (value_assign): Move observer_notify_target_changed
674         below to replace reinit_frame_cache.
675
676 2012-09-13  Khoo Yit Phang  <khooyp@cs.umd.edu>
677
678         Refactor Python "gdb" module into a proper Python package, by
679         introducing a new "_gdb" module for code implemented in C, and
680         using reload/__import__ instead of exec.
681         * python/lib/gdb/__init__.py: Import * from _gdb.
682         (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
683         prompt_hook, sys.argv): Moved from finish_python_initialization.
684         (pretty_printers, PYTHONDIR): Moved from _initialize_python.
685         (packages, auto_load_packages): New list and function replacing
686         module_dict and auto-loading code, using __file__ instead of
687         gdb.PYTHONDIR and reload/__import__ instead of exec.
688         (GdbSetPythonDirectory): Replacing function of the same name
689         from finish_python_initialization, using reload/__import__ instead
690         of exec, as well as call auto_load_packages.
691         * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
692         gdb_python_module and not gdb_module.
693         * python/python-internal.h (gdb_python_module): Declare.
694         * python/python.c (gdb_python_module): New global.
695         (before_prompt_hook): Check gdb_python_module and not gdb_module.
696         (_initialize_python): Rename gdb module to _gdb.
697         Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
698         (finish_python_initialization): Move Python code to
699         lib/gdb/__init__.py; instead, set up sys.path and import gdb into
700         __main__.
701
702 2012-09-13  Pedro Alves  <palves@redhat.com>
703
704         * Makefile.in (COMMON_OBS): Add registry.o.
705         * registry.c: New file.
706         * registry.h (struct registry_container): Declare.
707         (registry_data_callback): New typedef.
708         (struct registry_data, struct registry_data_registration, struct
709         registry_data_registry): New type.
710         (register_data_with_cleanup, registry_alloc_data)
711         (registry_callback_adaptor, registry_clear_data)
712         (registry_container_free_data, registry_set_data, registry_data):
713         Declare.
714         (DEFINE_REGISTRY): Refactor structures and functions as shims over
715         the new common structures and functions.
716         (DECLARE_REGISTRY): Declare struct TAG ## _data.  Use the tagged
717         callback typedefs.
718
719 2012-09-12  Mike Wrighton  <wrighton@codesourcery.com>
720
721         * remote.c (remote_insert_hw_breakpoint): Throw exception if
722         there is an error inserting hardware breakpoints and use the
723         error message from the target.
724
725         * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
726         Catch this exception and print the error message contained within. Do not
727         print the default hardware error breakpoint message in this case.
728
729 2012-09-12  Doug Evans  <dje@google.com>
730
731         * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
732         cu == NULL.
733
734 2012-09-11  Doug Evans  <dje@google.com>
735
736         * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
737         .gdb_index symbol attributes if there are none.
738
739 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
740
741         * symtab.h (struct minimal_symbol) [has_size]: New field.
742         (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
743         (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
744         * printcmd.c (build_address_symbolic): Only filter out zero-sized
745         minimal symbols if the symbol's size is actually known.
746         * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
747         of msymbol's size field.  Add comment.
748         * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
749         SET_MSYMBOL_SIZE to set the minimal symbol size.
750
751 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
752
753         * minsyms.c (install_minimal_symbols): Use memset to fill entire
754         minimal_symbol struct object, rather than setting some of its
755         fields one by one.
756
757 2012-09-11  Andrew Burgess  <aburgess@broadcom.com>
758
759         * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
760         passed_a_ptr flag when displaying typedef types.
761
762 2012-09-10  Joel Brobecker  <brobecker@adacore.com>
763
764         * ada-lang.c (coerce_unspec_val_to_type): Make sure that
765         the optimized_out flag is preserved.
766
767 2012-09-10  Anthony Green  <green@moxielogic.com>
768
769         * moxie-tdep.c (moxie_analyze_prologue): Update for function
770         prologue changes in GCC.
771
772 2012-09-10  Keith Seitz  <keiths@redhat.com>
773
774         PR gdb/13483
775         * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
776         (BOOL_CONVERSION_BADNESS): ... this.
777         * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
778         (rank_one_type): Allow all boolean conversions
779         permitted by the standard.
780
781 2012-09-06  Tom Tromey  <tromey@redhat.com>
782
783         * python/py-newobjfileevent.c (create_new_objfile_event_object):
784         Don't decref py_objfile.
785
786 2012-09-02  Khoo Yit Phang  <khooyp@cs.umd.edu>
787
788         Do not enable -lmcheck by default when Python is enabled with
789         threading support.
790         * configure.ac: (python_has_threads) New variable, by testing
791         if WITH_THREAD is defined in Python.h.
792         Move --enable-lmcheck after --with-python.
793         Do not enable -lmcheck by default if python_has_threads=yes.
794         Warn if --enable-lmcheck and python_has_threads=yes.
795         * configure: Regenerate.
796
797 2012-08-31  Yao Qi  <yao@codesourcery.com>
798
799         * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
800         DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
801         Update some commands.
802         * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
803         * mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->suppress_notification'
804         to 1.
805
806 2012-08-31  Yao Qi  <yao@codesourcery.com>
807
808         * mi/mi-cmds.c (mi_cmds): Add 'static'.
809
810 2012-08-30  Khoo Yit Phang  <khooyp@cs.umd.edu>
811
812         * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
813
814 2012-08-29  Doug Evans  <dje@google.com>
815
816         * main.c (print_gdb_help): Remove reference to
817         --use-deprecated-index-sections.
818
819 2012-08-28  Yao Qi  <yao@codesourcery.com>
820
821         * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
822         (init_cmds): Call add_setshow_uinteger_cmd for command
823         'max-user-call-depth'.
824         * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
825         declaration of 'max_user_call_depth'.
826         * frame.c (backtrace_limit): Add 'unsigned'.
827         (_initialize_frame): Call add_setshow_uinteger_cmd for command
828         'limit'.
829         * remote.c (remoteaddresssize): Add 'unsigned'.
830         (remote_address_masked): Change local var 'address_size' to
831         'unsigned'.
832         (_initialize_remote): Call add_setshow_uinteger_cmd for
833         'remoteaddresssize'.
834         * top.c (history_size): Add 'unsigned'.
835         (show_commands): Change local variables to 'unsigned'.
836         (set_history_size_command): Don't check history_size is negative.
837         Adjust the condition to call unstifle_history and set history_size
838         to UNIT_MAX.
839
840 2012-08-28  Pedro Alves  <palves@redhat.com>
841
842         PR gdb/14428
843
844         * infcmd.c (default_print_one_register_info): New, factored out
845         from default_print_registers_info.
846         (default_print_registers_info): Use it.  Mark value unavailable if
847         necessary.
848         (registers_info): Print user registers with
849         default_print_one_register_info.
850
851 2010-08-27  H.J. Lu  <hongjiu.lu@intel.com>
852
853         PR tui/14486
854         * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
855         is not NULL before referencing it.
856
857 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
858
859         * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
860         variable pc.  Call find_pc_line instead of find_pc_overlay, restore
861         original PC for it.
862
863 2012-08-27  Eli Zaretskii  <eliz@gnu.org>
864             Jan Kratochvil  <jan.kratochvil@redhat.com>
865
866         * auto-load.c (auto_load_objfile_script): Rename to ...
867         (auto_load_objfile_script_1): ... here, change variable realname to
868         parameter realname, document it, add return value, add variable retval.
869         (auto_load_objfile_script): New function.
870
871 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
872
873         * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
874         followed by a whitespace.
875
876 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
877
878         PR gdb/14494.
879         * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
880         Move the SEC_HAS_CONTENTS check here - for any NAMES use.
881         (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
882         here.
883
884 2012-08-27  Wei-cheng Wang  <cole945@gmail.com>
885
886         * memattr.c (create_mem_region): Fix memory region overlapping
887         checking.
888
889 2012-08-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
890
891         * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
892         with xmalloc/cleanup.
893         * mt-tdep.c (mt_push_dummy_call): Likewise.
894         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
895         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
896
897 2012-08-24  Yao Qi  <yao@codesourcery.com>
898
899         * jv-exp.y (push_expression_name): Add "." at the end of error
900         message.
901
902 2012-08-23  Khoo Yit Phang <khooyp@cs.umd.edu>
903
904         Document how to return from "python-interactive" to GDB.
905         * python/python.c (_initialize_python): Update documentation.
906
907 2012-08-23  Pedro Alves  <palves@redhat.com>
908
909         * infrun.c (_initialize_infrun) <handle command help text>:
910         Mention that multiple signals are supported.
911
912 2012-08-23  Pedro Alves  <palves@redhat.com>
913
914         * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
915         string.
916
917 2012-08-23  Yao Qi  <yao@codesourcery.com>
918
919         * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
920         (tfind_1): Don't call registers_changed, set_traceframe_num,
921         and clear_traceframe_info.
922         Call set_current_traceframe.
923         (set_current_traceframe): call set_traceframe_num.
924
925 2012-08-22  Sergio Durigan Junior  <sergiodj@redhat.com>
926
927         * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
928         `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
929
930 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
931
932         Enable readline in Python in a GDB-specific way and block the
933         standard Python readline module to prevent conflicts with GDB.
934         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
935         (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
936         (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
937         * python/py-gdb-readline.c: New file.
938         * python/python-internal.h (gdbpy_initialize_gdb_readline): New
939         prototype.
940         * python/python.c (_initialize_python): Call
941         gdbpy_initialize_gdb_readline.
942
943 2012-08-22  Keith Seitz  <keiths@redhat.com>
944
945         * defs.h: Include build-gnulib/config.h
946
947 2012-08-22  Joseph Myers  <joseph@codesourcery.com>
948
949         * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
950         and blx pc.
951
952 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
953
954         Add a new "python-interactive" command that starts a standard
955         Python interactive prompt with "pi" as alias, and add "py" as
956         an alias to "python".
957         * NEWS: Mention the new commands.
958         * python/python.c (eval_python_command): New function.
959         (python_interactive_command): For "python-interactive" with
960         arguments, call eval_python_command.  For "python-interactive"
961         without arguments, call PyRun_InteractiveLoop.
962         (_initialize_python): Add "python-interactive" command with
963         "pi" as alias, and add "py" as an alias to "python".
964
965 2012-08-22  Tom Tromey  <tromey@redhat.com>
966
967         * defs.h (quit_flag): Don't declare.
968         (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
969         (QUIT): Use new functions.
970         * event-top.c (command_handler): Use clear_quit_flag.
971         (handle_sigint): Use set_quit_flag.
972         (async_request_quit): Use check_quit_flag.  Don't check
973         immediate_quit.
974         * exceptions.c (throw_exception): Use clear_quit_flag.
975         * main.c (captured_main): Use clear_quit_flag.
976         * python/python.c (clear_quit_flag, set_quit_flag)
977         (check_quit_flag): New functions.
978         * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
979         clear_quit_flag.
980         * remote.c (remote_wait_as): Use check_quit_flag,
981         clear_quit_flag.
982         (remote_start_remote): Call QUIT.
983         * symfile.c (load_progress): Use check_quit_flag.
984         * top.c (command_loop): Use clear_quit_flag.
985         (command_line_input): Call QUIT.
986         * utils.c (quit_flag): Conditionally define.
987         (clear_quit_flag, check_quit_flag, set_quit_flag): New
988         functions.
989         (prompt_for_continue): Call QUIT.  Use quit, not
990         async_request_quit.
991         * remote-mips.c (mips_expect_timeout): Call QUIT.
992         * monitor.c (monitor_expect): Call QUIT.
993
994 2012-08-22  Tom Tromey  <tromey@redhat.com>
995
996         * event-top.c (sigwinch_token, handle_sigwinch): Remove.
997         (async_init_signals): Update.
998         * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
999         (SIGWINCH_HANDLER_BODY): Remove.
1000
1001 2012-08-22  Tom Tromey  <tromey@redhat.com>
1002
1003         * jit.c (jit_object_close_impl): Don't malloc the objfile
1004         name.
1005         * objfiles.c (allocate_objfile): Don't malloc the objfile
1006         name.
1007         (free_objfile): Don't free the objfile name.
1008         * objfiles.h (struct objfile) <name>: Update comment.
1009         * symfile.c (reread_symbols): Fix reference counting.  Don't
1010         malloc objfile name.
1011
1012 2012-08-22  Tom Tromey  <tromey@redhat.com>
1013
1014         * windows-nat.c (windows_make_so): Use gdb_bfd_open.
1015         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
1016         (symfile_bfd_open): Likewise.
1017         (generic_load): Likewise.
1018         * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
1019         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
1020         gdb_bfd_open.
1021         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1022         Use gdb_bfd_open.
1023         * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
1024         * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
1025         (pmon_load_fast): Likewise.
1026         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
1027         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
1028         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
1029         (macho_check_dsym): Likewise.
1030         * m32r-rom.c (m32r_load): Use gdb_bfd_open.
1031         (m32r_upload_command): Likewise.
1032         * gdb_bfd.h (gdb_bfd_cache): Declare.
1033         * gdb_bfd.c (struct gdb_bfd_data): New.
1034         (gdb_bfd_cache): New global.
1035         (struct gdb_bfd_cache_search): New.
1036         (hash_bfd): New function.
1037         (eq_bfd): Likewise.
1038         (gdb_bfd_open): Likewise.
1039         (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
1040         (gdb_bfd_unref): Remove closed BFD from cache.  Update for
1041         gdb_bfd_data.
1042         * exec.c (exec_file_attach): Use gdb_bfd_open.
1043         * dsrec.c (load_srec): Use gdb_bfd_open.
1044
1045 2012-08-22  Tom Tromey  <tromey@redhat.com>
1046
1047         * dwarf2read.c (macro_start_file): Update.
1048         * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
1049         (free_objfile_per_bfd_storage): Destroy macro_cache.
1050         (allocate_objfile, free_objfile): Update.
1051         * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
1052         New field.
1053         (struct objfile) <macro_cache>: Remove.
1054         * symfile.c (reread_symbols): Update.
1055         * symmisc.c (print_symbol_bcache_statistics): Update.
1056         (print_objfile_statistics): Update.
1057
1058 2012-08-22  Tom Tromey  <tromey@redhat.com>
1059
1060         * elfread.c (elf_symtab_read): Update.
1061         * objfiles.c (objfiles_bfd_data): New global.
1062         (get_objfile_bfd_data, free_objfile_per_bfd_storage)
1063         (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
1064         (allocate_objfile, free_objfile): Update.
1065         (_initialize_objfiles): Initialize objfiles_bfd_data.
1066         * objfiles.h (struct objfile_per_bfd_storage): New.
1067         (struct objfile) <per_bfd>: New field.
1068         <filename_cache>: Remove.
1069         (set_objfile_per_bfd): Declare.
1070         * symfile.c (reread_symbols): Update.  Call
1071         set_objfile_per_bfd.
1072         (allocate_symtab): Update.
1073         * symmisc.c (print_symbol_bcache_statistics): Update.
1074         (print_objfile_statistics): Print the size of the BFD obstack.
1075
1076 2012-08-22  Tom Tromey  <tromey@redhat.com>
1077
1078         * gdb_bfd.h: Include registry.h.  Use DECLARE_REGISTRY.
1079         * gdb_bfd.c: Use DEFINE_REGISTRY.
1080         (struct gdb_bfd_data): Add REGISTRY_FIELDS.
1081         (gdb_bfd_ref): Call bfd_alloc_data.
1082         (gdb_bfd_unref): Call bfd_free_data.
1083
1084 2012-08-22  Tom Tromey  <tromey@redhat.com>
1085
1086         * registry.h (struct registry_fields): New.
1087         (REGISTRY_FIELDS): Redefine.
1088         (REGISTRY_ACCESS_FIELD): New macro.
1089         (DEFINE_REGISTRY): Add ACCESS argument.  Update defined
1090         functions.
1091
1092 2012-08-22  Tom Tromey  <tromey@redhat.com>
1093
1094         * auto-load.c (_initialize_auto_load): Update.
1095         * solib-svr4.c (_initialize_svr4_solib): Update
1096         * solib-dsbt.c (_initialize_dsbt_solib): Update.
1097         * solib-darwin.c (_initialize_darwin_solib): Update.
1098         * registry.h: New file.
1099         * python/py-progspace.c (gdbpy_initialize_pspace): Update.
1100         * python/py-inferior.c (gdbpy_initialize_inferior): Update.
1101         * progspace.h: Include registry.h.  Use DECLARE_REGISTRY.
1102         (register_program_space_data_with_cleanup)
1103         (register_program_space_data, program_space_alloc_data)
1104         (clear_program_space_data, set_program_space_data)
1105         (program_space_data): Don't declare.
1106         * progspace.c: Use DEFINE_REGISTRY.
1107         (struct program_space_data, struct
1108         program_space_data_registration, struct
1109         program_space_data_registry, program_space_data_registry)
1110         (register_program_space_data_with_cleanup)
1111         (register_program_space_data, program_space_alloc_data)
1112         (program_space_free_data, clear_program_space_data)
1113         (set_program_space_data, program_space_data): Remove.
1114         * objfiles.h: Include registry.h.  Use DECLARE_REGISTRY.
1115         (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
1116         (register_objfile_data_with_cleanup, register_objfile_data)
1117         (clear_objfile_data, set_objfile_data, objfile_data): Don't
1118         declare.
1119         * objfiles.c: Use DEFINE_REGISTRY.
1120         (struct objfile_data, struct objfile_data_registration, struct
1121         objfile_data_registry, objfile_data_registry)
1122         (register_objfile_data_with_cleanup, register_objfile_data)
1123         (objfile_alloc_data, objfile_free_data, clear_objfile_data)
1124         (set_objfile_data, objfile_data): Remove.
1125         (_initialize_objfiles): Update.
1126         * jit.c (_initialize_jit): Update.
1127         * inflow.c (_initialize_inflow): Update.
1128         * inferior.h: Include registry.h.  Use DECLARE_REGISTRY.
1129         (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
1130         (register_inferior_data_with_cleanup, register_inferior_data)
1131         (clear_inferior_data, set_inferior_data, inferior_data): Don't
1132         declare.
1133         * inferior.c: Use DEFINE_REGISTRY.
1134         (struct inferior_data, struct inferior_data_registration, struct
1135         inferior_data_registry, inferior_data_registry)
1136         (register_inferior_data_with_cleanup, register_inferior_data)
1137         (inferior_alloc_data, inferior_free_data  clear_inferior_data)
1138         (set_inferior_data, inferior_data): Remove.
1139         * auxv.c (_initialize_auxv): Update.
1140         * ada-lang.c (_initialize_ada_language): Update.
1141         * breakpoint.c (_initialize_breakpoint): Update.
1142         * i386-nat.c (i386_use_watchpoints): Update.
1143
1144 2012-08-22  Tom Tromey  <tromey@redhat.com>
1145
1146         * exec.c (exec_close, exec_file_attach): Update.
1147         (add_to_section_table): Initialize 'key' field.
1148         (add_target_sections, remove_target_sections): Add 'key' argument.
1149         * exec.h (add_target_sections, remove_target_sections): Add
1150         'key' argument.
1151         * solib.c (solib_map_sections, update_solib_list, clear_solib)
1152         (reload_shared_libraries_1): Update.
1153         * target.h (struct target_section) <key>: New field.
1154
1155 2012-08-22  Tom Tromey  <tromey@redhat.com>
1156
1157         * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
1158
1159 2012-08-21  Pierre Muller  <muller@ics.u-strasbg.fr>
1160
1161         * symfile.c (allocate_symtab): Use host_address_to_string
1162         function instead of cast of pointer to long which is not
1163         compatible with x86_64-w64-mingw32 build.
1164
1165 2012-08-19  Andrew Pinski  <apinski@cavium.com>
1166
1167         * mips-tdep.c (is_octeon): New function.
1168         (is_octeon_bbit_op): New function.
1169         (mips32_next_pc): Handle Octeon's bbit instructions.
1170         (mips32_instruction_has_delay_slot): Likewise.
1171
1172 2012-08-19  Andrew Pinski  <apinski@cavium.com>
1173
1174         * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
1175         before the function.
1176
1177 2012-08-19  Andrew Pinski  <apinski@cavium.com>
1178
1179         * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
1180
1181 2012-08-19  Keith Seitz  <keiths@redhat.com>
1182
1183         PR c++/14365
1184         * c-typeprint.c (c_type_print_varspec_prefix): Pass
1185         -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
1186
1187 2012-08-18  Eli Zaretskii  <eliz@gnu.org>
1188
1189         * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
1190         The typo broke "make TAGS".
1191
1192 2012-08-17  Joel Brobecker  <brobecker@adacore.com>
1193
1194         GDB 7.5 released.
1195
1196 2012-08-17  Keith Seitz  <keiths@redhat.com>
1197
1198         PR c++/13356
1199         * gdbtypes.c (strict_type_checking): New variable.
1200         (show_strict_type_checking): New function.
1201         (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
1202         if strict type checking is disabled.
1203         (_initialize_gdbtypes): Add "check type" subcommand.
1204         * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
1205
1206 2012-08-17  Keith Seitz  <keiths@redhat.com>
1207
1208         * language.h (type_mode): Remove.
1209         (type_check): Remove.
1210         (struct language_defn): Remove la_type_check.
1211         (STRICT_TYPE): Remove unused macro.
1212         (type_error): Remove.
1213         * language.c (set_type_range_case): Renamed to ...
1214         (set_range_case): ... this.  Update all callers.
1215         Remove type_mode/type_check.
1216         (type_mode): Remove.
1217         (type_check): Remove.
1218         (show_type_command): Remove.
1219         (set_type_command): Remove.
1220         (language_info): Remove type checking output.
1221         (type_error): Remove unused function.
1222         (range_error): Update comment.
1223         (unknown_language_defn): Remove la_type_check.
1224         (auto_language_defn): Likewise.
1225         (local_language_defn): Likewise.
1226         (_initialize_language): Remove "check type" subcommand.
1227         * ada-lang.c (ada_language_defn): Remove la_type_check.
1228         * c-lang.c (c_language_defn): Likewise.
1229         (cplus_language_defn): Likewise.
1230         (asm_language_defn): Likewise.
1231         (minimal_language_defn): Likewise.
1232         * d-lang.c (d_language_defn): Likewise.
1233         * f-lang.c (f_language_defn): Likewise.
1234         * go-lang.c (go_language_defn): Likewise.
1235         * jv-lang.c (java_language_defn): Likewise.
1236         * m2-lang.c (m2_language_defn): Likewise.
1237         * objc-lang.c (objc_language_defn): Likewise.
1238         * opencl-lang.c (opencl_language_defn): Likewise.
1239         * p-lang.c (pascal_language_defn): Likewise.
1240
1241 2012-08-16  Mike Frysinger  <vapier@gentoo.org>
1242
1243         * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
1244
1245 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1246
1247         * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
1248         New function.
1249         (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
1250         using the regache.  Use ia64_hpux_get_register_from_save_state_t
1251         to access the bsp and bspstore registers if not.
1252
1253 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1254
1255         * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
1256         * breakpoint.c (detach_breakpoints): Change pid parameter into
1257         a ptid.  Adjust code accordingly.
1258         * infrun.c (handle_inferior_event): Delete variable child_pid.
1259         Update call to detach_breakpoints to pass the child ptid for
1260         fork events.
1261         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
1262         assert that inferior_ptid's lwp is zero.
1263         (linux_handle_extended_wait): Update call to detach_breakpoints.
1264         * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
1265         detach_breakpoints.
1266
1267 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1268
1269         * inf-ttrace.c (inf_ttrace_follow_fork): When following the
1270         parent, only call detach_breakpoints if tts.tts_event ==
1271         TTEVT_VFORK.
1272
1273 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1274
1275         * dwarf2-frame.c (dwarf2_frame_cache): Use
1276         get_frame_address_in_block instead of get_frame_pc as
1277         the bound for executing the frame's FDE.
1278
1279 2012-08-16  Yao Qi  <yao@codesourcery.com>
1280
1281         * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
1282         * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
1283         * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
1284         (c_type_print_varspec_suffix): Likewise.
1285         * eval.c (evaluate_subexp_standard): Likewise.
1286         * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
1287         (f_type_print_varspec_suffix): Likewise.
1288         * gdbtypes.c (is_scalar_type): Likewise.
1289         (recursive_dump_type): Likewise.
1290         * infcall.c (value_arg_coerce): Likewise.
1291         * m2-valprint.c (m2_val_print): Likewise.
1292         * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
1293         (pascal_type_print_varspec_suffix): Likewise.
1294         (pascal_type_print_base): Likewise.
1295         * p-valprint.c (pascal_val_print): Likewise.
1296         (pascal_val_print): Likewise.
1297         * valops.c (value_slice): Likewise.
1298         * valprint.c (scalar_type_p): Likewise.
1299         * valarith.c (value_bitstring_subscript): Remove.
1300         (value_concat): Remove code handling TYPE_CODE_BITSTRING.
1301         Remove comment on TYPE_CODE_BITSTRING.
1302
1303         * stabsread.c (read_type): Don't set TYPE_CODE (type) to
1304         TYPE_CODE_BITSTRING.
1305
1306         * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
1307         slot 0.
1308
1309 2012-08-16  Yao Qi  <yao@codesourcery.com>
1310
1311         * tracepoint.c (trace_find_none_command): Remove.
1312         (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
1313
1314 2012-08-16  Yao Qi  <yao@codesourcery.com>
1315
1316         * remote.c (handle_notification): Remove parameter 'length'.
1317         (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
1318
1319 2012-08-15  Keith Seitz  <keiths@redhat.com>
1320
1321         * gdbtypes.c (opaque_type_resolution): Make static.
1322         Add missing comment.
1323         (overload_debug): Add missing comment.
1324         (show_opaque_type_resolution): Likewise.
1325         (show_overload_debug): Likewise.
1326         (print_bit_vector): Remove unnecessary forward declaration.
1327         (print_arg_types): Likewise.
1328         (dump_fn_fieldlists): Likewise.
1329         (print_cplus_stuff): Likewise.
1330
1331 2012-08-15  Tom Tromey  <tromey@redhat.com>
1332
1333         * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
1334         (gdb_bfd_ref): Initialize new field.
1335         (gdb_bfd_unref): Unref the archive BFD.
1336         (gdb_bfd_openr_next_archived_file): Acquire a reference to the
1337         parent archive.
1338
1339 2012-08-15  Tom Tromey  <tromey@redhat.com>
1340
1341         PR python/14387:
1342         * python/py-bpevent.c (create_breakpoint_event_object): Update
1343         comment.
1344         * python/py-event.c (evpy_add_attribute): Update comment.
1345         * python/py-exitedevent.c (create_exited_event_object): Fix
1346         reference counting and error handling.
1347         * python/py-newobjfileevent.c (create_new_objfile_event_object):
1348         Fix reference counting.
1349         * python/py-signalevent.c (create_signal_event_object): Fix
1350         reference counting and error handling.
1351         * python/py-stopevent.c (emit_stop_event): Fix reference
1352         counting.
1353         * python/py-threadevent.c (get_event_thread): Return a
1354         borrowed reference.
1355         * python/py-type.c (convert_field): Fix reference counting.
1356
1357 2012-08-15  Tom Tromey  <tromey@redhat.com>
1358
1359         * dwarf2read.c (dwarf_decode_macro_bytes)
1360         <DW_MACRO_GNU_transparent_include>: Use pointer to included data
1361         as hash key.
1362
1363 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
1364
1365         * infcmd.c (_initialize_infcmd): Update help text for the signal,
1366         stepi, nexti, finish, next, step, jump, and continue commands.
1367         * infrun.c (_initialize_infrun): Update help text for the handle
1368         command.
1369
1370 2012-08-14  Doug Evans  <dje@google.com>
1371
1372         * gdbtypes.c (struct extra): Delete, unused.
1373
1374         * gdbtypes.c: Whitespace cleanup.
1375         (address_space_name_to_int): Remove "extern" from definition.
1376         (_initialize_gdbtypes): Declare with initialize_file_ftype.
1377
1378         * gdbtypes.c (make_pointer_type): Remove redundant setting of
1379         TYPE_POINTER_TYPE (type).
1380
1381 2012-08-14  Gary Benson  <gbenson@redhat.com>
1382
1383         * solib-svr4.c (svr4_free_library_list): Use free_so.
1384
1385 2012-08-13  Mike Frysinger  <vapier@gentoo.org>
1386
1387         * .gitignore: Add go-exp.c.
1388
1389 2012-08-13  Doug Evans  <dje@google.com>
1390
1391         * value.c (show_convenience): Tweak comment.
1392         (_initialize_values): Mention convenience functions in the help text
1393         for "show convenience".
1394
1395 2012-08-13  Yao Qi  <yao@codesourcery.com>
1396
1397         * std-operator.def: Remove TERNOP_SLICE_COUNT.
1398         * breakpoint.c (watchpoint_exp_is_const): Remove handling to
1399         TERNOP_SLICE_COUNT.
1400         * eval.c (evaluate_subexp_standard): Likewise.
1401         * expprint.c (print_subexp_standard): Likewise.
1402         (dump_subexp_body_standard): Likewise.
1403         * parse.c (operator_length_standard): Likewise.
1404
1405 2012-08-13  Yao Qi  <yao@codesourcery.com>
1406
1407         * std-operator.def: Remove OP_BITSTRING.
1408         * breakpoint.c (watchpoint_exp_is_const): Update.
1409         * eval.c (evaluate_subexp_standard): Remove handling to
1410         OP_BITSTRING.
1411         * expprint.c (print_subexp_standard): Likewise.
1412         (dump_subexp_body_standard): Likewise.
1413         * parse.c (operator_length_standard): Likewise.
1414         * valops.c (value_bitstring): Remove.
1415         * value.h: Remove the declaration of 'value_bitstring'.
1416
1417 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
1418
1419         * linespec.c (find_methods): Remove unused variables `i1' and
1420         `name_len'.
1421         (decode_line_full): Likewise for `arg_start'.
1422
1423 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
1424
1425         * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
1426         (zlib_decompress_section): Likewise for `section_data'.
1427         (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
1428
1429 2012-08-10  Doug Evans  <dje@google.com>
1430
1431         Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
1432         * NEWS: Document them.
1433         * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
1434         function/strfns.py.
1435         * python/py-type.c (typy_array_1): New function.
1436         (typy_array): Call it.
1437         (typy_vector): New function.
1438         (type_object_methods): Add "vector".
1439         * python/lib/gdb/function/__init__.py: New file.
1440         * python/lib/gdb/function/strfns.py: New file.
1441
1442 2012-08-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
1443
1444         * python/py-type.c (convert_field): Use gdb_py_long_from_longest
1445         for TYPE_FIELD_BITPOS.
1446         (typy_get_sizeof): Likewise for TYPE_LENGTH.
1447
1448 2012-08-10  Mike Frysinger  <vapier@gentoo.org>
1449
1450         PR cli/10436:
1451         * common/vec.h (VEC_merge): Define.
1452         (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
1453         (DEF_VEC_ALLOC_FUNC_P): Likewise.
1454         (DEF_VEC_ALLOC_FUNC_O): Likewise.
1455         * completer.c: Include gdb_signals.h.
1456         (signal_completer): Define.
1457         * completer.h (signal_completer): Add prototype.
1458         * infcmd.c (_initialize_infcmd): Assign the command
1459         completer for "signal" to handle_completer.
1460         * infrun.c: Include completer.h.
1461         (handle_completer): Define.
1462         (_initialize_infrun): Declare a new local variable c.  Store the
1463         result of add_com("handle") to it.  Assign the command
1464         completer for "handle" to handle_completer.
1465
1466 2012-08-09  Yao Qi  <yao@codesourcery.com>
1467
1468         * cli/cli-decode.c (set_cmd_prefix): New.
1469         (lookup_cmd_for_prefixlist): New.
1470         (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
1471         of each cmd_list_element in *prefixlist.
1472         (add_setshow_cmd_full): set_cmd_prefix.
1473         (add_alias_cmd): Likewise.
1474         * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
1475         Declare 'auto_boolean_enums'.
1476         * cli/cli-setshow.c: Include "observer.h".
1477         (notify_command_param_changed_p): New.
1478         (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
1479         Remove 'static'.
1480         (do_setshow_command): Split it to ...
1481         (do_set_command, do_show_command): ... them.  New.
1482         (do_set_command): Call observer_notify_command_param_changed if
1483         notify_command_param_changed_p returns true.
1484         (cmd_show_list): Caller update.
1485         * auto-load.c (set_auto_load_cmd): Likewise.
1486         * remote.c (show_remote_cmd): Likewise.
1487         * cli/cli-setshow.h: Update declarations.
1488         * top.c (execute_command): Call do_set_command and do_show_command.
1489
1490         * NEWS: Mention new MI notification.
1491         * mi/mi-interp.c: Declare mi_command_param_changed.
1492         (mi_interpreter_init): Attach mi_command_param_changed to
1493         observer command_param_changed.
1494         (mi_command_param_changed): New.
1495         Remove mi_suppress_breakpoint_notifications.
1496         Define global variable mi_suppress_notification.
1497         (mi_breakpoint_created): Update.
1498         (mi_breakpoint_deleted): Likewise.
1499         (mi_breakpoint_modified): Likewise.
1500         * mi/mi-main.c (mi_cmd_execute): Likewise.  Check command
1501         'gdb-set' and set mi_suppress_notification.
1502         * mi/mi-main.h: (mi_suppress_notification): New struct.
1503
1504 2012-08-09  Andreas Tobler  <andreast@fgznet.ch>
1505             Jan Kratochvil  <jan.kratochvil@redhat.com>
1506
1507         * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
1508
1509 2012-08-09  Yao Qi  <yao@codesourcery.com>
1510
1511         * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
1512         (skiplist): Move it to skip.c.
1513         (init_cmd_lists): Remove code setting enablebreaklist and
1514         skiplist to NULL.
1515         * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
1516         * cli/cli-cmds.h: Remove declaration of enablebreaklist and
1517         skiplist.
1518         * gdbcmd.h: Likewise.
1519         * skip.c (_initialize_step_skip): Move 'skiplist' from
1520         cli/cli-cmds.c.
1521
1522 2012-08-09  Yao Qi  <yao@codesourcery.com>
1523
1524         * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
1525         * gnu-nat.c, symfile.c: Likewise.
1526
1527 2012-08-08  Aaron Gamble  <agamble@google.com>
1528
1529         * utils.c (prompt_for_continue_wait_time): New static global.
1530         (make_command_stats_cleanup): Initialize it.
1531         (report_command_stats): Subtract time waiting for user.
1532         (prompt_for_continue): Track time waiting for user.
1533         (defaulted_query): Track time waiting for user.
1534
1535 2012-08-08  Doug Evans  <dje@google.com>
1536
1537         * eval.c (evaluate_subexp_standard): Fix thinko in handling
1538         UNOP_MEMVAL_TYPE.
1539         * expprint.c (print_subexp_standard, case OP_TYPE): New.
1540         (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
1541         (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
1542         (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
1543         (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
1544         (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
1545         elt.
1546         (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
1547         (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
1548         (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
1549         (dump_prefix_expression): Handle OP_TYPE.
1550
1551 2012-08-08  Keith Seitz  <keiths@redhat.com>
1552
1553         * breakpoint.c (parse_breakpoint_sals): Remove unused variable
1554         addr_start.
1555
1556 2012-08-08  Doug Evans  <dje@google.com>
1557
1558         * linux-thread-db.c: #include "gdb_vecs.h".
1559         (try_thread_db_load_from_pdir_1): New arg "subdir".  All callers
1560         updated.
1561         (try_thread_db_load_from_pdir): New arg "subdir".  All callers updated.
1562         (thread_db_load_search): Use a vector to iterate over path elements.
1563         Handle text appearing after "$pdir".
1564
1565         * gdb_string.h: Moved to ...
1566         * common/gdb_string.h: ... here.
1567         * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
1568         gdb_string.h and gdb_assert.h.
1569
1570 2012-08-08  Yao Qi  <yao@codesourcery.com>
1571
1572         * tic6x-tdep.c (tic6x_register_to_value): Remove.
1573         (tic6x_value_to_register): Likewise.
1574         (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
1575         and set_gdbarch_value_to_register.
1576
1577 2012-08-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
1578             Jean-Marc Saffroy  <saffroy@gmail.com>
1579
1580         PR 11804
1581         * defs.h (find_memory_region_ftype): New comment.  New arg modified.
1582         * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
1583         * gcore.c (gcore_create_callback): New function comment.  Add modified
1584         parameter.  Only write modified regions.  Set SEC_READONLY exactly
1585         according to MODIFIED.
1586         (objfile_find_memory_regions): Ignore separate debug info files.  Ass
1587         the passed modified value to FUNC.
1588         * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
1589         * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
1590         first.  New variables modified and has_anonymous.  Parse the lines of
1591         smaps file.  Add the passed MODIFIED value to FUNC.
1592         * procfs.c (find_memory_regions_callback): Add the passed modified
1593         value.
1594
1595 2012-08-06  Tom Tromey  <tromey@redhat.com>
1596
1597         * dwarf2-frame.c (clear_pointer_cleanup): New function.
1598         (dwarf2_frame_cache): Use it.
1599         * frame-unwind.h (frame_sniffer_ftype): Document prologue
1600         cache initialization constraint.
1601
1602 2012-08-06  Tom Tromey  <tromey@redhat.com>
1603
1604         PR python/14386:
1605         * varobj.c (update_dynamic_varobj_children): Don't call
1606         PyIter_Check.
1607
1608 2012-08-06  Tom Tromey  <tromey@redhat.com>
1609
1610         PR cli/14392:
1611         * cli/cli-cmds.c (list_command): Filter 'sals_end'.
1612
1613 2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
1614
1615         * NEWS: New entry for 'cd' default parameters.
1616         * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
1617
1618 2012-08-03  Tom Tromey  <tromey@redhat.com>
1619
1620         * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
1621         return.
1622
1623 2012-08-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
1624
1625         * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
1626         to attempting lseek/write.
1627         (inf_child_fileio_pread): Likewise for pread.
1628
1629 2012-08-02  Yao Qi  <yao@codesourcery.com>
1630
1631         * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
1632         (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
1633         add_setshow_zinteger_cmd.
1634         * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
1635         * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
1636         (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
1637         instead of add_setshow_zinteger_cmd.
1638         * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
1639         (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
1640         instead of add_setshow_zinteger_cmd.
1641         * frame.c (frame_debug): Add 'unsigned'.
1642         (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
1643         add_setshow_zinteger_cmd.
1644         * frame.h: Update the declaration of 'frame_debug'.
1645         * gdbtypes.c (overload_debug): Add 'unsigned'.
1646         (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
1647         add_setshow_zinteger_cmd.
1648         * inferior.h: Update declaration of 'debug_infrun'.
1649         * infrun.c (debug_infrun): Add 'unsigned'.
1650         (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
1651         add_setshow_zinteger_cmd.
1652         * jit.c (jit_debug): Add 'unsigned'.
1653         (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
1654         add_setshow_zinteger_cmd.
1655         * linux-nat.c (debug_linux_nat): Add 'unsigned'.
1656         (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
1657         instead of add_setshow_zinteger_cmd.
1658         * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
1659         (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
1660         add_setshow_zinteger_cmd.
1661         * machoread.c (mach_o_debug_level): Add 'unsigned'.
1662         (_initialize_machoread): Call add_setshow_zuinteger_cmd
1663         instead of add_setshow_zinteger_cmd.
1664         * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
1665         * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
1666         (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
1667         intead of add_setshow_zinteger_cmd.
1668         * mips-tdep.c (mips_debug): Add 'unsigned'.
1669         (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
1670         instead of add_setshow_zinteger_cmd.
1671         * monitor.c (monitor_debug): Add 'unsigned'.
1672         (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
1673         add_setshow_zinteger_cmd.
1674         * observer.c (observer_debug): Add 'unsigned'.
1675         (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
1676         add_setshow_zinteger_cmd.
1677         * parse.c (expressiondebug): Add 'unsigned'.
1678         (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
1679         add_setshow_zinteger_cmd.
1680         * record.c (record_debug): Add 'unsigned'.
1681         (_initialize_record): Call add_setshow_zuinteger_cmd instead of
1682         add_setshow_zinteger_cmd.
1683         * record.h: Update the declaration of 'record_debug'.
1684         * stap-probe.c (stap_expression_debug): Add 'unsigned'.
1685         (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
1686         add_setshow_zinteger_cmd.
1687         * serial.c (global_serial_debug_p): Add 'unsigned'.
1688         (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
1689         add_setshow_zinteger_cmd.
1690         * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
1691         (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
1692         add_setshow_zinteger_cmd.
1693         * solib-frv.c (solib_frv_debug): Add 'unsigned'.
1694         (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
1695         add_setshow_zinteger_cmd.
1696         * target.c (targetdebug): Add 'unsigned'.
1697         (initialize_targets): Call add_setshow_zuinteger_cmd instead of
1698         add_setshow_zinteger_cmd.
1699         * valops.c (overload_debug): Add 'unsigned'.
1700         * varobj.c (varobjdebug): Add 'unsigned'.
1701         (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
1702         add_setshow_zinteger_cmd.
1703         * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
1704         (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
1705         instead of add_setshow_zinteger_cmd.
1706
1707         * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
1708         * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
1709         (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
1710         instead of add_setshow_zinteger_cmd.
1711         * gdbarch.c, gdbarch.h: Re-generated.
1712
1713 2012-08-02  Yao Qi  <yao@codesourcery.com>
1714
1715         * nto-tdep.c: Don't include cli/cli-decode.h and
1716         cli/cli-cmds.h.
1717         (_initialize_nto_tdep): Remove.
1718         * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
1719         Remove field.
1720         Remove macro nto_internal_debugging.
1721
1722 2012-08-01  Richard Henderson  <rth@redhat.com>
1723
1724         * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
1725         (mep-*-*) [gdb_target_obs]: Likewise.
1726
1727 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
1728
1729         * ppc-linux-tdep.c (ppc_linux_init_abi): Register
1730         linux_get_siginfo_type.
1731
1732 2012-07-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
1733
1734         * infcall.c (call_function_by_hand): Move BP_ADDR comment to
1735         AT_ENTRY_POINT.
1736         (call_function_by_hand) <ON_STACK>: Call write_memory with
1737         gdbarch_breakpoint_from_pc, if possible.
1738         (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
1739         here.
1740
1741 2012-07-31  Yao Qi  <yao@codesourcery.com>
1742
1743         * tracepoint.c: Add 'static' for some variables.
1744
1745 2012-07-31  Yao Qi  <yao@codesourcery.com>
1746
1747         * go32-nat.c: Declare _initialize_go32_nat.
1748         * ser-go32.c: Declare _initialize_ser_dos.
1749         * top.c (do_chdir_cleanup): Add 'static'.
1750
1751 2012-07-30  Keith Seitz  <keiths@redhat.com>
1752
1753         * linespec.c (linespec_lex_number): A number followed
1754         by quotes is a valid number, too.
1755
1756 2012-07-30  Tom Tromey  <tromey@redhat.com>
1757
1758         * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
1759
1760 2012-07-30  Ulrich Weigand  <ulrich.weigand@linaro.org>
1761
1762         * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
1763         attempt to 4-byte-align HW breakpoint addresses for Thumb.
1764
1765 2012-07-30  Andrew Burgess  <aburgess@broadcom.com>
1766
1767         * varobj.c (varobj_invalidate_iter): All varobj must be marked as
1768         invalid or reevaluated to prevent prevent references to possibly
1769         delete'd type objects being left in the varobj.
1770
1771 2012-07-27  Tom Tromey  <tromey@redhat.com>
1772             Jan Kratochvil  <jan.kratochvil@redhat.com>
1773
1774         * copying.awk: Print buffer-read-only and vi ro markers.
1775         * copying.c: Rebuild.
1776         * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
1777         * gdbarch.c, gdbarch.h: Rebuild.
1778         * target-descriptions.c (maint_print_c_tdesc_cmd): Print
1779         buffer-read-only and vi ro markers.
1780         * features/arm-with-iwmmxt.c: Rebuild.
1781         * features/arm-with-m-fpa-layout.c: Rebuild.
1782         * features/arm-with-m-vfp-d16.c: Rebuild.
1783         * features/arm-with-m.c: Rebuild.
1784         * features/arm-with-neon.c: Rebuild.
1785         * features/arm-with-vfpv2.c: Rebuild.
1786         * features/arm-with-vfpv3.c: Rebuild.
1787         * features/i386/amd64-avx-linux.c: Rebuild.
1788         * features/i386/amd64-avx.c: Rebuild.
1789         * features/i386/amd64-linux.c: Rebuild.
1790         * features/i386/amd64.c: Rebuild.
1791         * features/i386/i386-avx-linux.c: Rebuild.
1792         * features/i386/i386-avx.c: Rebuild.
1793         * features/i386/i386-linux.c: Rebuild.
1794         * features/i386/i386-mmx-linux.c: Rebuild.
1795         * features/i386/i386-mmx.c: Rebuild.
1796         * features/i386/i386.c: Rebuild.
1797         * features/i386/x32-avx-linux.c: Rebuild.
1798         * features/i386/x32-avx.c: Rebuild.
1799         * features/i386/x32-linux.c: Rebuild.
1800         * features/i386/x32.c: Rebuild.
1801         * features/mips-dsp-linux.c: Rebuild.
1802         * features/mips-linux.c: Rebuild.
1803         * features/mips64-dsp-linux.c: Rebuild.
1804         * features/mips64-linux.c: Rebuild.
1805         * features/rs6000/powerpc-32.c: Rebuild.
1806         * features/rs6000/powerpc-32l.c: Rebuild.
1807         * features/rs6000/powerpc-403.c: Rebuild.
1808         * features/rs6000/powerpc-403gc.c: Rebuild.
1809         * features/rs6000/powerpc-405.c: Rebuild.
1810         * features/rs6000/powerpc-505.c: Rebuild.
1811         * features/rs6000/powerpc-601.c: Rebuild.
1812         * features/rs6000/powerpc-602.c: Rebuild.
1813         * features/rs6000/powerpc-603.c: Rebuild.
1814         * features/rs6000/powerpc-604.c: Rebuild.
1815         * features/rs6000/powerpc-64.c: Rebuild.
1816         * features/rs6000/powerpc-64l.c: Rebuild.
1817         * features/rs6000/powerpc-7400.c: Rebuild.
1818         * features/rs6000/powerpc-750.c: Rebuild.
1819         * features/rs6000/powerpc-860.c: Rebuild.
1820         * features/rs6000/powerpc-altivec32.c: Rebuild.
1821         * features/rs6000/powerpc-altivec32l.c: Rebuild.
1822         * features/rs6000/powerpc-altivec64.c: Rebuild.
1823         * features/rs6000/powerpc-altivec64l.c: Rebuild.
1824         * features/rs6000/powerpc-cell32l.c: Rebuild.
1825         * features/rs6000/powerpc-cell64l.c: Rebuild.
1826         * features/rs6000/powerpc-e500.c: Rebuild.
1827         * features/rs6000/powerpc-e500l.c: Rebuild.
1828         * features/rs6000/powerpc-isa205-32l.c: Rebuild.
1829         * features/rs6000/powerpc-isa205-64l.c: Rebuild.
1830         * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
1831         * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
1832         * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
1833         * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
1834         * features/rs6000/powerpc-vsx32.c: Rebuild.
1835         * features/rs6000/powerpc-vsx32l.c: Rebuild.
1836         * features/rs6000/powerpc-vsx64.c: Rebuild.
1837         * features/rs6000/powerpc-vsx64l.c: Rebuild.
1838         * features/rs6000/rs6000.c: Rebuild.
1839         * features/s390-linux32.c: Rebuild.
1840         * features/s390-linux32v1.c: Rebuild.
1841         * features/s390-linux32v2.c: Rebuild.
1842         * features/s390-linux64.c: Rebuild.
1843         * features/s390-linux64v1.c: Rebuild.
1844         * features/s390-linux64v2.c: Rebuild.
1845         * features/s390x-linux64.c: Rebuild.
1846         * features/s390x-linux64v1.c: Rebuild.
1847         * features/s390x-linux64v2.c: Rebuild.
1848         * features/tic6x-c62x-linux.c: Rebuild.
1849         * features/tic6x-c62x.c: Rebuild.
1850         * features/tic6x-c64x-linux.c: Rebuild.
1851         * features/tic6x-c64x.c: Rebuild.
1852         * features/tic6x-c64xp-linux.c: Rebuild.
1853         * features/tic6x-c64xp.c: Rebuild.
1854
1855 2012-07-27  Tom Tromey  <tromey@redhat.com>
1856
1857         * c-exp.y (classify_name): Avoid assignment in condition.
1858
1859 2012-07-27  Roland Schwingel  <roland.schwingel@onevision.com>
1860
1861         * amd64-windows-tdep.c: Include "frame.h".
1862         (amd64_windows_skip_trampoline_code): New function.
1863         (amd64_windows_init_abi): Add trampoline registration.
1864
1865 2012-07-27  Yao Qi  <yao@codesourcery.com>
1866
1867         * tracepoint.c (cur_traceframe_number): Remove.
1868         (set_tfile_traceframe): Remove.
1869         (tfile_trace_find, tfile_fetch_registers): Update callers.
1870         (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
1871         (tfile_open, tfile_trace_find): Likewise.
1872
1873 2012-07-27  Yao Qi  <yao@codesourcery.com>
1874
1875         * thread.c (switch_to_thread): Don't call registers_changed.
1876
1877 2012-07-26  Tom Tromey  <tromey@redhat.com>
1878
1879         * Makefile.in (SFILES): Remove objc-exp.y.
1880         (YYFILES): Remove objc-exp.c.
1881         (YYOBJ): Remove objc-exp.o.
1882         (local-maintainer-clean): Don't mention objc-exp.c.
1883         * c-exp.y: Include objc-lang.h.
1884         (%union) <class>: New field.
1885         (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
1886         (exp): Clone subscript production for OBJC_LBRAC.  Add various
1887         Objective C productions.
1888         (msglist, msgarglist, msgarg): New productions.
1889         (array_mod, func_mod, operator): Clone productions for
1890         OBJC_LBRAC.
1891         (parse_string_or_char): Handle '@' strings.
1892         (lex_one_token): Return OBJC_LBRAC.  Recognize @selector.
1893         (classify_name): Check la_name_of_this.  Recognize ObjC class
1894         names.
1895         * objc-exp.y: Remove.
1896         * objc-lang.c (objc_language_defn): Use c_parse, c_error.
1897         * objc-lang.h (objc_parse, objc_error): Don't declare.
1898
1899 2012-07-26  Markus Metzger  <markus.t.metzger@intel.com>
1900
1901         * python/py-inferior.c (infpy_threads): Call update_thread_list ().
1902
1903 2012-07-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1904
1905         * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
1906         and decrement.
1907
1908 2012-07-26  Tom Tromey  <tromey@redhat.com>
1909
1910         * copying.c: Rebuild.
1911         * copying.awk: Don't use immediate_quit.  Use 'no_set_class', not
1912         'no_class'.
1913
1914 2012-07-26  Tom Tromey  <tromey@redhat.com>
1915
1916         * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
1917         immediate_quit.
1918         (print_objfile_statistics): Likewise.
1919         (maintenance_print_symbols): Likewise.
1920         (maintenance_print_msymbols): Likewise.
1921         (maintenance_print_objfiles): Likewise.
1922         * psymtab.c (print_partial_symbols): Call QUIT.
1923         (maintenance_print_psymbols): Likewise.  Don't modify
1924         immediate_quit.
1925         * copying.c (show_copying_command): Don't modify immediate_quit.
1926         (show_warranty_command): Likewise.
1927         * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
1928
1929 2012-07-26  Keith Seitz  <keiths@redhat.com>
1930
1931         * linespec.c (linespec_lexer_lex_number): The input
1932         is also a valid number if the next character is a comma
1933         or colon.
1934
1935 2012-07-26  Joel Brobecker  <brobecker@adacore.com>
1936
1937         * NEWS: Document new --enable-libmcheck/--disable-libmcheck
1938         configure options.
1939
1940 2012-07-26  Tristan Gingold  <gingold@adacore.com>
1941
1942         * machoread.c: Include gdb_bfd.h.
1943
1944 2012-07-26  Tristan Gingold  <gingold@adacore.com>
1945
1946         * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
1947         offset.
1948
1949 2012-07-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
1950
1951         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
1952         SIZE to size_t.
1953         (dwarf2_evaluate_loc_desc): Likewise.
1954         (dwarf2_loc_desc_needs_frame): Likewise.
1955         (locexpr_describe_location_1): Likewise.
1956         * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
1957         size_t.
1958         (struct dwarf2_loclist_baton): Likewise.
1959         * dwarf2read.c (struct dwarf_block): Likewise.
1960         (dump_die_shallow): Use pulongest to print dwarf_block.size.
1961         (decode_locdesc): Expand SIZE and I to size_t.
1962
1963 2012-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
1964
1965         * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
1966
1967 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
1968
1969         * doublest.c (convert_doublest_to_floatformat): If the exponent
1970         is too small, treat the value as zero.  If the exponent is too
1971         large, treat the value as infinity.
1972
1973 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
1974
1975         * configure.ac: Add --enable-lmcheck configure option.
1976         * configure: Regenerate.
1977
1978 2012-07-25  Tom Tromey  <tromey@redhat.com>
1979
1980         * NEWS: Mention maint info bfds.
1981         * gdb_bfd.c (all_bfds): New global.
1982         (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
1983         (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
1984         New functions.
1985
1986 2012-07-25  Ralf Corsépius  <ralf.corsepius@rtems.org>
1987
1988         * configure.tgt: Add v850*-*-rtems*.
1989
1990 2012-07-25  Tom Tromey  <tromey@redhat.com>
1991
1992         * macrotab.c (macro_bcache_str): Remove cast.
1993
1994 2012-07-25  Hui Zhu  <hui_zhu@mentor.com>
1995
1996         * linespec.c (linespec_lexer_lex_number): Update comments,
1997         change the return and add check to make sure the input is
1998         the decimal numbers.
1999         (linespec_lexer_lex_one): If linespec_lexer_lex_number return
2000         false, call linespec_lexer_lex_string.
2001
2002 2012-07-24  Tom Tromey  <tromey@redhat.com>
2003
2004         * symfile.c (symbol_file_add): Don't open BFD twice.
2005
2006 2012-07-24  Marc Khouzam  <marc.khouzam@ericsson.com>
2007
2008         * breakpoint.c (create_breakpoint): Store condition for pending
2009         breakpoints.
2010
2011 2012-07-24  Andreas Schwab  <schwab@linux-m68k.org>
2012
2013         * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
2014         (m68k_return_value): Handle complex types like structures.
2015         (m68k_svr4_return_value): Likewise.
2016
2017 2012-07-24  Marcus Shawcroft  <marcus.shawcroft@arm.com>
2018
2019         * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
2020         parameters to bfd_get_section_name.
2021
2022 2012-07-24  Yao Qi  <yao@codesourcery.com>
2023
2024         * cli/cli-setshow.c: Handle case 'var_uinteger'
2025         and 'var_zuninteger' together.  Handle case 'var_integer' and
2026         'var_zinteger' together.
2027
2028 2012-07-23  Keith Seitz  <keiths@redhat.com>
2029
2030         * linespec.c (convert_linespec_to_sal): Don't add
2031         any symbols to the result vector if symbol_to_sal
2032         returns zero.
2033
2034 2012-07-23  Keith Seitz  <keiths@redhat.com>
2035
2036         * linespec.c (decode_objc): Record the function name
2037         in the linespec.
2038
2039 2012-07-23  Tom Tromey  <tromey@redhat.com>
2040
2041         * rs6000-nat.c (add_vmap): Rewrite archive loop.  Fix reference
2042         counting.
2043         * exec.c (exec_close_1): Unconditionally release vmap's BFD.
2044         (map_vmap): Acquire a reference to the BFD.
2045
2046 2012-07-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
2047
2048         * p-valprint.c (pascal_object_print_value): Replace potentially
2049         unsafe alloca with xmalloc/xfree.
2050         * valops.c (search_struct_method): Likewise.
2051
2052 2012-07-23  Tom Tromey  <tromey@redhat.com>
2053
2054         * solib-svr4.c (enable_break): Update.
2055         * bfd-target.h (target_bfd_reopen): Update documentation.
2056
2057 2012-07-23  Tom Tromey  <tromey@redhat.com>
2058
2059         * symfile.c (separate_debug_file_exists): Update.
2060         (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
2061         (reread_symbols): Update.
2062         * elfread.c (build_id_verify): Update.
2063         * symfile.h (gdb_bfd_open_maybe_remote): Rename from
2064         bfd_open_maybe_remote.
2065
2066 2012-07-23  Tom Tromey  <tromey@redhat.com>
2067
2068         * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
2069
2070 2012-07-23  Tom Tromey  <tromey@redhat.com>
2071
2072         * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
2073         and 'abfd'.
2074         * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
2075         and 'abfd'.
2076         * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
2077         * machoread.c (macho_add_oso_symfile): Make a cleanup for
2078         'abfd'.
2079         (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
2080         * objfiles.c (allocate_objfile): Acquire a new reference.
2081         * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
2082         * solib.c (solib_read_symbols): Don't acquire a BFD reference.
2083         * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
2084         a cleanup for 'nbfd'.
2085         * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
2086         for 'nbfd'.
2087         * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
2088         make a cleanup for 'abfd'.
2089         (symbol_file_add): Make a BFD cleanup.
2090
2091 2012-07-23  Tom Tromey  <tromey@redhat.com>
2092
2093         * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
2094         (bfd_openw_with_cleanup): Use gdb_bfd_openw.
2095         * corelow.c (core_open): Use gdb_bfd_fopen.
2096         * dsrec.c (load_srec): Use gdb_bfd_openr.
2097         * exec.c (exec_file_attach): Use gdb_bfd_fopen.
2098         * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
2099         * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2100         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2101         (gdb_bfd_fdopenr): New functions.
2102         * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2103         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2104         (gdb_bfd_fdopenr): Declare.
2105         * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
2106         * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
2107         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
2108         gdb_bfd_openr_next_archived_file.
2109         (macho_check_dsym): Use gdb_bfd_openr.
2110         (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
2111         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
2112         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
2113         * remote-mips.c (mips_load_srec, pmon_load_fast): Use
2114         gdb_bfd_openr.
2115         * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
2116         * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
2117         gdb_bfd_openr_next_archived_file.
2118         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2119         Use gdb_bfd_openr.
2120         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2121         gdb_bfd_openr.
2122         * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
2123         * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
2124         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
2125         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
2126         (symfile_bfd_open): Use gdb_bfd_fopen.
2127         (generic_load): Use gdb_bfd_openr.
2128         * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
2129
2130 2012-07-23  Tom Tromey  <tromey@redhat.com>
2131
2132         * bfd-target.c (target_bfd_reopen): Update.
2133         * cli/cli-dump.c (bfd_openr_with_cleanup)
2134         (bfd_openw_with_cleanup): Update.
2135         * corelow.c (core_open): Update.
2136         * dsrec.c (load_srec): Update.
2137         * exec.c (exec_file_attach): Update.
2138         * gcore.c (create_gcore_bfd): Update.
2139         * gdb_bfd.c (gdb_bfd_ref): Return void.
2140         (gdb_bfd_open): Update.
2141         * gdb_bfd.h (gdb_bfd_ref): Return void.
2142         Update comments.
2143         * jit.c (jit_bfd_try_read_symtab): Update.
2144         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
2145         * machoread.c (macho_symfile_read_all_oso): Update.
2146         (macho_check_dsym): Update.
2147         * procfs.c (insert_dbx_link_bpt_in_file): Update.
2148         * remote-m32r-sdi.c (m32r_load): Update.
2149         * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
2150         * rs6000-nat.c (add_vmap): Update.
2151         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2152         Update.
2153         * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
2154         * solib-spu.c (spu_bfd_open): Update.
2155         * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
2156         * spu-linux-nat.c (spu_bfd_open): Update.
2157         * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
2158         (generic_load): Update.
2159         * windows-nat.c (windows_make_so): Update.
2160
2161 2012-07-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
2162
2163         * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
2164
2165 2012-07-20  Jeff Kenton  <jkenton@tilera.com>
2166
2167         * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
2168         SIGTRAMP_FRAME unwinding.
2169
2170 2012-07-20  Doug Evans  <dje@google.com>
2171
2172         * NEWS: Document new options "set/show use-deprecated-index-sections",
2173         and delete reference to --use-deprecated-index-sections.
2174         * symfile.h (use_deprecated_index_sections): Delete.
2175         * dwarf2read.c (use_deprecated_index_sections): Make static.
2176         (read_index_from_section): Update wording of how to load
2177         deprecated index sections.
2178         (_initialize_dwarf2_read): New options
2179         "set/show use-deprecated-index-sections".
2180         * main.c (captured_main): Delete --use-deprecated-index-sections.
2181
2182 2012-07-20  Pedro Alves  <palves@redhat.com>
2183
2184         PR threads/11692
2185         PR gdb/12203
2186
2187         * infrun.c (handle_inferior_event) <new thread>: Don't special
2188         case minus_one_ptid.
2189         <TARGET_WAITKIND_SPURIOUS>: Ditto.
2190         * linux-thread-db.c (thread_get_info_callback): Don't return early
2191         if the thread is zombie.
2192         (thread_from_lwp): Change return type to void.  Rewrite stale
2193         comment.
2194         (attach_thread): Don't return early if the thread is zombie,
2195         instead set its "dying" flag.
2196         (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
2197         (find_new_threads_callback): Don't return early if the thread is
2198         zombie.
2199
2200 2012-07-20  Pedro Alves  <palves@redhat.com>
2201
2202         * linux-nat.c (linux_nat_wait): Dump the passed in target options.
2203         * target.c (target_wait): Likewise.
2204         (str_comma_list_concat_elem, do_option, target_options_to_string):
2205         New functions.
2206         * target.h (target_options_to_string): Declare.
2207
2208 2012-07-20  Jan Kratochvil <jan.kratochvil@redhat.com>
2209             Tom Tromey  <tromey@redhat.com>
2210
2211         * dwarf2read.c (dwarf_decode_macros)
2212         <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
2213         DW_MACRO_GNU_transparent_include_alt>: New cases.
2214         (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
2215         DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
2216
2217 2012-07-20  Tom Tromey  <tromey@redhat.com>
2218
2219         * dwarf2read.c (try_open_dwo_file): Don't call
2220         gdb_bfd_stash_filename.
2221
2222 2012-07-20  Pedro Alves  <palves@redhat.com>
2223
2224         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2225         (i386_record_lea_modrm, i386_record_push, i386_record_floats)
2226         (i386_process_record): Tweak description comments.
2227
2228 2012-07-20  Pedro Alves  <palves@redhat.com>
2229
2230         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2231         (i386_process_record): Use record_read_memory.
2232         * record.c (record_read_memory): New function.
2233         (record_arch_list_add_mem, record_exec_insn): Use
2234         record_read_memory.
2235         * record.h (record_read_memory): Declare.
2236
2237 2012-07-20  Yao Qi  <yao@codesourcery.com>
2238
2239         * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
2240         NULL for xfree.
2241
2242 2012-07-19  Pedro Alves  <palves@redhat.com>
2243
2244         * record.c (record_resume): Ask the target beneath to report all
2245         signals.
2246
2247 2012-07-19  Doug Evans  <dje@google.com>
2248
2249         * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
2250         there's no section at address zero.
2251         (dwarf2_record_block_ranges): Ditto.
2252
2253 2012-07-19  Yao Qi  <yao@codesourcery.com>
2254
2255         * command.h, remote.c: Fix a typo in comment.
2256
2257 2012-07-19  Tom Tromey  <tromey@redhat.com>
2258
2259         PR exp/13206:
2260         * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
2261         * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
2262         OP_DECLTYPE>: New cases.
2263         * c-exp.y (TYPEOF, DECLTYPE): New tokens.
2264         (type_exp): Add new productions.
2265         (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
2266         and decltype.
2267         * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
2268         New case.
2269         * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
2270         OP_DECLTYPE>: New case.
2271         * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
2272         New case.
2273         * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
2274         * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
2275
2276 2012-07-19  Tom Tromey  <tromey@redhat.com>
2277
2278         * c-exp.y (enum token_flags): New.
2279         (struct token) <cxx_only>: Remove.
2280         <flags>: New field.
2281         (tokentab3, tokentab2, ident_tokens): Update.
2282         (lex_one_token): Update.  Handle FLAG_SHADOW.
2283
2284 2012-07-19  Tom Tromey  <tromey@redhat.com>
2285
2286         * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
2287         * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
2288         UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
2289         * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE.  Update
2290         for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.  Use
2291         type_exp production where appropriate.
2292         * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
2293         <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
2294         <UNOP_MEMVAL_TYPE>: New case.
2295         (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
2296         (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
2297         * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
2298         <UNOP_MEMVAL_TYPE>: New case.
2299         (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
2300         UNOP_REINTERPRET_CAST>: Update.
2301         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2302         * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
2303         UNOP_REINTERPRET_CAST>: Update.
2304         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2305         * stack.c (return_command): Also check for UNOP_CAST_TYPE.
2306         * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
2307         constants.
2308
2309 2012-07-19  Yao Qi  <yao@codesourcery.com>
2310             Jan Kratochvil <jan.kratochvil@redhat.com>
2311
2312         * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
2313         and case 'var_optional_filename' together.
2314         * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
2315         instead of add_setshow_optional_filename_cmd for setshow command
2316         'args'.  Set completer for 'set args'.
2317
2318 2012-07-18  Doug Evans  <dje@google.com>
2319
2320         * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
2321         * common/gdb_vecs.c: New file, contents from utils.c.
2322         * common/host-defs.h: New file, contents from defs.h.
2323         * utils.h: New file, contents from defs.h.
2324         * defs.h: Move all declarations of objects defined in utils.c
2325         to utils.h (except QUIT() and related).
2326         #include "utils.h", "host-defs.h".
2327         * probe.h (probe_p): Move here from gdb_vecs.h.
2328         * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
2329         * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
2330         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
2331         * Makefile.in (SFILES): Add common/gdb_vecs.c.
2332         (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
2333         (COMMON_OBS): Add gdb_vecs.o.
2334         (gdb_vecs.o): New rule.
2335
2336 2012-07-18  Keith Seitz  <keiths@redhat.com>
2337
2338         * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
2339         parameter.  If non-zero, use SYMNAME as the canonical name
2340         for the SaL.
2341         Update all callers.
2342         (convert_linespec_to_sals): Use add_sal_to_sals for
2343         expressions, too.
2344         (decode_line_full): No need to "fill in missing canonical names"
2345         anymore. Simply make cleanups for the allocated names.
2346
2347 2012-07-18  Keith Seitz  <keiths@redhat.com>
2348
2349         * linespec.c (struct linespec): Constify expression,
2350         source_filename, function_name, and label_name.
2351         (symbol_not_found_error): Make all parameters const.
2352         (linespec_parser_delete): No need to check for NULL
2353         when using xfree. Cast const char * to char * for xfree.
2354
2355 2012-07-18  Keith Seitz  <keiths@redhat.com>
2356
2357         * breakpoint.c (invalid_thread_id_error): New function.
2358         (find_condition_and_thread): Use invalid_thread_id_error.
2359         (watch_command_1): Likewise.
2360
2361 2012-07-18  Tom Tromey  <tromey@redhat.com>
2362
2363         * cc-with-index.sh, cc-with-dwz.sh: Remove.
2364         * contrib/cc-with-tweaks.sh: New file.
2365
2366 2012-07-18  Tom Tromey  <tromey@redhat.com>
2367
2368         * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
2369         (locate_dwz_sections): Recognize .gdb_index.
2370         (create_cus_from_index_list): New function.
2371         (create_cus_from_index): Use it.  Handle .dwz data.
2372         (read_index_from_section): New function, extracted from
2373         dwarf2_read_index.
2374         (dwarf2_read_index): Use it.  Read .gdb_index from dwz file,
2375         if needed.
2376
2377 2012-07-18  Tom Tromey  <tromey@redhat.com>
2378
2379         * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
2380         (struct dwarf2_per_cu_data) <length>: No longer bitfield.
2381         <is_dwz>: New field.
2382         (struct dwz_file): New.
2383         (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
2384         (locate_dwz_sections, dwarf2_get_dwz_file)
2385         (get_abbrev_section_for_cu): New functions.
2386         (error_check_comp_unit_head, read_and_check_comp_unit_head)
2387         (read_and_check_type_unit_head): Add abbrev_section argument.
2388         (create_debug_types_hash_table): Update.
2389         (init_cutu_and_read_dies): Use proper abbrev section.
2390         (init_cutu_and_read_dies_no_follow): Likewise.
2391         (set_partial_user): Do nothing if PST==NULL.
2392         (read_comp_units_from_section): New function.
2393         (create_all_comp_units): Use it.
2394         (scan_partial_symbols, partial_die_parent_scope): Update.
2395         (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
2396         (process_imported_unit_die, read_partial_die): Handle .dwz files.
2397         (find_partial_die): Add offset_in_dwz argument.  Update.
2398         (guess_partial_die_structure_name, fixup_partial_die): Update.
2399         (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
2400         DW_FORM_GNU_strp_alt.
2401         (read_indirect_string_from_dwz): New function.
2402         (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
2403         (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
2404         (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
2405         (follow_die_offset): Add offset_in_dwz argument.
2406         (follow_die_ref, dwarf2_fetch_die_location_block): Update.
2407         (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
2408         (dwarf_decode_macro_bytes): Add section_is_dwz argument.
2409         Handle new macro forms.
2410         (dwarf_decode_macros): Update.
2411         (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
2412         (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
2413         (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
2414         (create_debug_types_hash_table): Use correct abbrev section.
2415         (get_debug_line_section): New function.
2416         (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
2417         (process_full_comp_unit): Pass 'required' argument to
2418         end_symtab_get_static_block.
2419         * buildsym.h (end_symtab_get_static_block): Update.
2420         * buildsym.c (end_symtab_get_static_block): Add 'required'
2421         argument.
2422         (end_symtab, end_expandable_symtab): Update.
2423
2424 2012-07-18  Tom Tromey  <tromey@redhat.com>
2425
2426         * dwarf2read.c: Don't include zlib.h or sys/mman.h.
2427         (pagesize): Remove.
2428         (struct dwarf2_section_info) <map_addr, map_len>: Remove.
2429         (zlib_decompress_section): Remove.
2430         (dwarf2_read_section): Use gdb_bfd_map_section.
2431         (munmap_section_buffer): Remove.
2432         (free_dwo_file, dwarf2_per_objfile_free): Don't use
2433         munmap_section_buffer.
2434         * gdb_bfd.c: Include zlib.h, sys/mman.h.
2435         (struct gdb_bfd_section_data): New.
2436         (free_one_bfd_section): New function.
2437         (gdb_bfd_close_or_warn): Use free_one_bfd_section.
2438         (get_section_descriptor, zlib_decompress_section)
2439         (gdb_bfd_map_section): New functions.
2440         * gdb_bfd.h (gdb_bfd_map_section): Declare.
2441
2442 2012-07-18  Tom Tromey  <tromey@redhat.com>
2443
2444         * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
2445
2446 2012-07-18  Tom Tromey  <tromey@redhat.com>
2447
2448         * gdb_bfd.c (struct gdb_bfd_data): New.
2449         (gdb_bfd_cache): New global.
2450         (struct gdb_bfd_cache_search): New.
2451         (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
2452         (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
2453         * gdb_bfd.h (gdb_bfd_open): Declare.
2454
2455 2012-07-18  Tom Tromey  <tromey@redhat.com>
2456
2457         * utils.c (make_cleanup_bfd_unref): Rename from
2458         make_cleanup_bfd_close.
2459         * defs.h (make_cleanup_bfd_unref): Rename from
2460         make_cleanup_bfd_close.
2461         * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
2462         (bfd_openw_with_cleanup): Update.
2463         * corelow.c (core_open): Update.
2464         * dsrec.c (load_srec): Update.
2465         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
2466         * remote-m32r-sdi.c (m32r_load): Update.
2467         * remote-mips.c (mips_load_srec): Update.
2468         (pmon_load_fast): Update.
2469         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2470         Update.
2471         (darwin_bfd_open): Update.
2472         * solib.c (solib_bfd_fopen): Update.
2473         * symfile-mem.c (symbol_file_add_from_memory): Update.
2474         * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
2475         (symfile_bfd_open): Update.
2476         (generic_load): Update.
2477
2478 2012-07-18  Tom Tromey  <tromey@redhat.com>
2479
2480         * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
2481         (pmon_load_fast): Likewise.
2482         * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
2483         (m32r_upload_command): Likewise.
2484         * dsrec.c (load_srec): Use make_cleanup_bfd_close.
2485         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2486         Use make_cleanup_bfd_close.
2487
2488 2012-07-18  Tom Tromey  <tromey@redhat.com>
2489
2490         * symfile.c (symfile_bfd_open): Don't copy name.  Call
2491         gdb_bfd_stash_filename.
2492         (load_command): Open the new BFD before freeing the old.
2493         (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
2494         * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
2495         Call gdb_bfd_stash_filename.
2496         * spu-linux-nat.c (spu_bfd_open): Don't copy name.
2497         * solib-spu.c (spu_bfd_fopen): Don't copy name.  Call
2498         gdb_bfd_stash_filename.
2499         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2500         Free found_pathname.
2501         * rs6000-nat.c (add_vmap): Don't copy filename.  Call
2502         gdb_bfd_stash_filename.
2503         * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
2504         * machoread.c (macho_add_oso_symfile): Call
2505         gdb_bfd_stash_filename.
2506         (macho_symfile_read_all_oso): Arrange to free archive_name.  Call
2507         gdb_bfd_stash_filename.
2508         (macho_check_dsym): Don't copy filename.  Call
2509         gdb_bfd_stash_filename.
2510         * jit.c (bfd_open_from_target_memory): Don't copy the filename.
2511         * gdb_bfd.c (gdb_bfd_stash_filename): New function.
2512         * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
2513         * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
2514         * exec.c (exec_close): Don't free the BFD's filename.
2515         (exec_file_attach): Don't copy the filename.  Call
2516         gdb_bfd_stash_filename.
2517         * corelow.c (core_close): Don't free the BFD's filename.
2518         (core_open): Call gdb_bfd_stash_filename.
2519         * corefile.c (reopen_exec_file): Remove #if 0 code.
2520         * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename.  Free
2521         pathname.
2522         * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
2523
2524 2012-07-18  Tom Tromey  <tromey@redhat.com>
2525
2526         * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
2527         gdb_bfd_unref.
2528         (free_dwo_file): Use gdb_bfd_unref.
2529         * cli/cli-dump.c: Include gdb_bfd.h.
2530         (bfd_openw_with_cleanup): Use gdb_bfd_ref.
2531         (bfd_openr_with_cleanup): Likewise.
2532         * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
2533         gdb_bfd_unref.
2534         * utils.c: Include gdb_bfd.h.
2535         (do_bfd_close_cleanup): Use gdb_bfd_unref.
2536         * symfile.c: Include gdb_bfd.h.
2537         (separate_debug_file_exists): Use gdb_bfd_unref.
2538         (bfd_open_maybe_remote): Use gdb_bfd_ref.
2539         (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2540         (generic_load): Use gdb_bfd_ref.
2541         (reread_symbols): Use gdb_bfd_unref.
2542         * symfile-mem.c: Include gdb_bfd.h.
2543         (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
2544         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2545         * solib.c: Include gdb_bfd.h.
2546         (solib_bfd_fopen): Use gdb_bfd_ref.
2547         (solib_bfd_open): Use gdb_bfd_unref.
2548         (free_so_symbols): Use gdb_bfd_unref.
2549         (reload_shared_libraries_1): Use gdb_bfd_unref.
2550         * solib-spu.c: Include gdb_bfd.h.
2551         (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
2552         * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
2553         gdb_bfd_unref.
2554         * solib-frv.c: Include gdb_bfd.h.
2555         (enable_break2): Use gdb_bfd_unref.
2556         * solib-dsbt.c: Include gdb_bfd.h.
2557         (enable_break2): Use gdb_bfd_unref.
2558         * solib-darwin.c: Include gdb_bfd.h.
2559         (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
2560         gdb_bfd_unref.
2561         (darwin_bfd_open): Use gdb_bfd_unref.
2562         * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
2563         * remote-mips.c: Include gdb_bfd.h.
2564         (mips_load_srec): Use gdb_bfd_ref.
2565         (pmon_load_fast): Use gdb_bfd_ref.
2566         * remote-m32r-sdi.c: Include gdb_bfd.h.
2567         (m32r_load): Use gdb_bfd_ref.
2568         * record.c: Include gdb_bfd.h.
2569         (record_save_cleanups): Use gdb_bfd_unref.
2570         (cmd_record_save): Use gdb_bfd_unref.
2571         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
2572         gdb_bfd_unref.
2573         * objfiles.h (gdb_bfd_close_or_warn): Remove.
2574         (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
2575         * objfiles.c: Include gdb_bfd.h.
2576         (free_objfile): Use gdb_bfd_unref.
2577         (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
2578         gdb_bfd.c.
2579         * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
2580         (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
2581         (macho_check_dsym): Likewise.
2582         * m32r-rom.c: Include gdb_bfd.h.
2583         (m32r_load): Use gdb_bfd_ref.
2584         (m32r_upload_command): Use gdb_bfd_ref.
2585         * jit.c: Include gdb_bfd.h.
2586         (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
2587         * gdb_bfd.h: New file.
2588         * gdb_bfd.c: New file.
2589         * gcore.c: Include gdb_bfd.h.
2590         (create_gcore_bfd): Use gdb_bfd_ref.
2591         (do_bfd_delete_cleanup): Use gdb_bfd_unref.
2592         (gcore_command): Use gdb_bfd_unref.
2593         * exec.c: Include gdb_bfd.h.
2594         (exec_close): Use gdb_bfd_unref.
2595         (exec_close_1): Use gdb_bfd_unref.
2596         (exec_file_attach): Use gdb_bfd_ref.
2597         * elfread.c: Include gdb_bfd.h.
2598         (build_id_verify): Use gdb_bfd_unref.
2599         * dsrec.c: Include gdb_bfd.h.
2600         (load_srec): Use gdb_bfd_ref.
2601         * corelow.c: Include gdb_bfd.h.
2602         (core_close): Use gdb_bfd_unref.
2603         (core_open): Use gdb_bfd_ref.
2604         * bfd-target.c: Include gdb_bfd.h.
2605         (target_bfd_xclose): Use gdb_bfd_unref.
2606         (target_bfd_reopen): Use gdb_bfd_ref.
2607         * Makefile.in (SFILES): Add gdb_bfd.c.
2608         (HFILES_NO_SRCDIR): Add gdb_bfd.h.
2609         (COMMON_OBS): Add gdb_bfd.o.
2610
2611 2012-07-18  Keith Seitz  <keiths@redhat.com>
2612
2613         * breakpoint.c (find_condition_and_thread): Initialize
2614         TASK and REST.
2615         (create_breakpiont): find_condition_and_thread will now
2616         initialize COND_STRING, THREAD, and REST (and TASK).
2617         (addr_string_to_sals): Likewise.
2618
2619 2012-07-18  Pedro Alves  <palves@redhat.com>
2620
2621         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
2622         Pull the single step breakpoints out of the target.
2623
2624 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
2625
2626         * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
2627         * stap-probe.c (compile_probe_arg): Likewise.
2628
2629 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
2630
2631         * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
2632         (elf_compile_to_ax): Likewise.
2633         * infrun.c (insert_exception_resume_from_probe): Likewise.
2634         (check_exception_resume): Remove `objfile' variable.
2635         * probe.c (find_probe_by_pc): Remove `objfile' argument.
2636         (struct probe_and_objfile, probe_and_objfile_s): Delete.
2637         (collect_probes): Adjust return value to `VEC (probe_p) *'.
2638         (compare_entries): Rename to...
2639         (compare_probes): ...this.  Adjust function to work with
2640         `struct probe *'.  Rename variables `ea' and `eb' to `pa' and `pb'
2641         respectively.
2642         (gen_ui_out_table_header_info): Adjust `probes' argument to be
2643         `VEC (probe_p) *'.
2644         (print_ui_out_info): Adjust argument to be `struct probe *'.
2645         (info_probes_for_ops): Adjust internal computations to use
2646         `VEC (probe_p) *'.
2647         (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
2648         * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
2649         gen_info_probes_table_values>: Remove `objfile' argument.
2650         (struct probe) <objfile>: New field.
2651         (find_probe_by_pc): Remove `objfile' argument.
2652         * stap-probe.c (stap_parse_probe_arguments): Likewise.
2653         (stap_get_probe_argument_count): Likewise.
2654         (stap_get_arg): Likewise.
2655         (stap_evaluate_probe_argument): Likewise.
2656         (stap_compile_to_ax): Likewise.
2657         (compile_probe_arg): Refactor not to pass `objfile' anymore.
2658         (handle_stap_probe): Fill `objfile' field from `struct probe'.
2659         (stap_gen_info_probes_table_header): Remove `objfile' argument.
2660         * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
2661         sym_compile_to_ax>: Likewise.
2662
2663 2012-07-18  Terry Guo  <terry.guo@arm.com>
2664
2665         PR 14329
2666         * defs.h (GDB_MI_MSG_WIDTH): New.
2667         * ser_base (ser_base_read_error_fd): New function.
2668         (do_ser_base_readchar): Poll error file descriptor as well as
2669         standard output.
2670         (generic_readchar): Refactor error handling.
2671
2672 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
2673
2674         * NEWS: Create a new section for the next release branch.
2675         Rename the section of the current branch, now that it has
2676         been cut.
2677
2678 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
2679
2680         GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
2681         * version.in: Bump version to 7.5.50.20120718-cvs.
2682
2683 2012-07-17  Keith Seitz  <keiths@redhat.com>
2684
2685         * linespec.c (linespec_parse_line_offset): Make parameter
2686         const.
2687
2688 2012-07-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2689
2690         PR 11914
2691         * f-valprint.c (info_common_command): New variable frame_id.
2692         Reinitialize FI form FRAME_ID after each print_variable_and_value.
2693         * printcmd.c (print_variable_and_value): Extend function comment.
2694         Add comment for invalidated FRAME.
2695         * stack.c (backtrace_command_1): New variable frame_id.  Reinitialize
2696         FI form FRAME_ID after each print_frame_local_vars.
2697         (struct print_variable_and_value_data): Change frame to frame_id.
2698         (do_print_variable_and_value): New variable frame, initialize it from
2699         p->frame_id.  Add comment for invalidated FRAME.
2700         (print_frame_local_vars, print_frame_arg_vars): New function comment.
2701         Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization.  Add comment
2702         for invalidated FRAME.
2703
2704 2012-07-16  Marc Khouzam  <marc.khouzam@ericsson.com>
2705             Pedro Alves  <palves@redhat.com>
2706
2707         * linux-nat.c (linux_nat_detach): Don't unregister from the event
2708         loop.
2709
2710 2012-07-16  Tom Tromey  <tromey@redhat.com>
2711
2712         * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
2713
2714 2012-07-15  Doug Evans  <dje@google.com>
2715
2716         * dwarf2read.c (stmt_list_hash): New struct.
2717         (type_unit_group): Embed "per_cu" member, remove pointer.
2718         New union member "t", move member "tus" into it, all uses updated.
2719         New member "hash", replaces member "line_offset, all uses updated.
2720         (quick_file_names): Replace member "offset" with "hash", all uses
2721         updated.
2722         (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
2723         (hash_file_name_entry, eq_file_name_entry): Call them.
2724         (hash_type_unit_group, eq_type_unit_group): Ditto.
2725         (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
2726         (dw2_get_file_names_reader): Fix file name table calculation for TUs.
2727         (dw2_get_file_names): Update.
2728         (create_type_unit_group): Replace "per_cu" arg with "cu".
2729         All callers updated.  Fix "quick" (.gdb_index) handling.
2730         (get_type_unit_group): Replace "per_cu" arg with "cu".
2731         All callers updated.
2732         (build_type_unit_groups): Don't reset tu_stats.
2733
2734         * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
2735         "tab_cur_size".  Change member "tab" to be a htab_t.
2736         (create_filename_seen_cache): Update.
2737         (clear_filename_seen_cache, delete_filename_seen_cache): Update.
2738         (filename_seen): Update.
2739
2740 2012-07-13  Doug Evans  <dje@google.com>
2741
2742         * symtab.c (filename_seen): Update comment.
2743
2744 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2745             Doug Evans  <dje@google.com>
2746
2747         * buildsym.c (end_symtab_1): Split it to ...
2748         (end_symtab_get_static_block): ... this ...
2749         (end_symtab_from_static_block): ... and this function.
2750         (end_symtab, end_expandable_symtab): Call them.
2751         * buildsym.h (end_symtab_get_static_block)
2752         (end_symtab_from_static_block): New declarations.
2753         * dwarf2read.c (process_full_comp_unit): New variable static_block.
2754         Set its valid CU ranges.
2755
2756 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2757
2758         * dwarf2loc.c (disassemble_dwarf_expression): Handle
2759         DW_OP_GNU_parameter_ref.
2760
2761 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2762
2763         * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
2764         read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
2765
2766 2012-07-13  Doug Evans  <dje@google.com>
2767
2768         * symtab.c (output_source_filename): Delete unnecessary forward decl.
2769         (filename_seen_cache): New struct.
2770         (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
2771         (create_filename_seen_cache): New function.
2772         (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
2773         (filename_seen): Delete arg "first".  New arg "cache".  All callers
2774         updated.
2775         (output_source_filename_data): New struct.
2776         (output_source_filename): Delete arg "first".  New arg "data".
2777         All callers updated.
2778         (sources_info): Delete local "first".  New locals "data", "cleanups".
2779         Rewrite to use filename_seen_cache.
2780         (add_partial_filename_data): Delete member "first".  New member
2781         "filename_seen_cache".  All uses updated.
2782         (make_source_files_completion_list): Rewrite to use
2783         filename_seen_cache.
2784
2785 2012-07-12  Doug Evans  <dje@google.com>
2786
2787         * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
2788
2789 2012-07-10  Doug Evans  <dje@google.com>
2790
2791         PR gdb/13498
2792         * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
2793         all_type_unit_groups, type_unit_groups, tu_stats.
2794         (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
2795         All uses updated.  Add type_unit_group to union "s".
2796         (type_unit_group): New struct.
2797         (IS_TYPE_UNIT_GROUP): New macro.
2798         (abbrev_table): Delete unused member "section".
2799         (dw2_do_instantiate_symtab): Early exit if type_unit_group.
2800         (dw2_get_cu): Assert not used with type_unit_group.
2801         (dw2_get_primary_cu): New function.
2802         (dw2_build_type_unit_groups_reader): New function.
2803         (dw2_build_type_unit_groups): New function.
2804         (dw2_get_file_names): Assert not called on type units.
2805         (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
2806         Redo loop to iterate over type unit groups instead of type units.
2807         (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
2808         (read_abbrev_offset): New function.
2809         (init_cutu_and_read_dies): New arg "abbrev_table".  All callers
2810         updated.
2811         (create_partial_symtab): New function.
2812         (process_psymtab_comp_unit_reader): Assert not used with type units.
2813         Call create_partial_symtab.
2814         (process_psymtab_type_unit): Delete.
2815         (hash_type_unit_group, eq_type_unit_group): New functions.
2816         (allocate_type_unit_groups_table): New function.
2817         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
2818         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
2819         (create_type_unit_group, get_type_unit_group): New functions.
2820         (tu_abbrev_offset): New struct.
2821         (sort_tu_by_abbrev_offset): New function.
2822         (add_type_unit_group_to_table): New function.
2823         (build_type_unit_groups): New function.
2824         (build_type_psymtabs_reader): New function.
2825         (build_type_psymtab_dependencies): New function.
2826         (build_type_psymtabs): Rewrite.
2827         (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
2828         is seen in a type unit.
2829         (process_queue): Move symtab expansion debugging printfs here.
2830         Call process_full_type_unit for type units.
2831         (compute_symtab_includes): Assert not called for type units.
2832         (process_cu_includes): Don't call compute_symtab_includes for
2833         type units.
2834         (process_full_type_unit): New function.
2835         (process_imported_unit_die): Flag an error if called for type units.
2836         (handle_DW_AT_stmt_list): Delete arg "want_line_info".  All callers
2837         updated.  Assert not called for type units.
2838         (read_file_scope): Call dwarf2_start_symtab.
2839         (setup_type_unit_groups): New function.
2840         (read_type_unit_scope): Rewrite.
2841         (abbrev_table_read_table): Initialize abbrev_table->offset.
2842         (abbrev_table_free_cleanup): New function.
2843         (dwarf2_start_symtab): New function.
2844         (load_full_type_unit): Assert not called for type unit groups.
2845         * buildsym.c (finish_block_internal): New arg "expandable".
2846         All callers updated.
2847         (start_symtab): Move most contents to ...
2848         (restart_symtab): ... here.  New function.
2849         (reset_symtab_globals): New function.
2850         (end_symtab_1): Renamed from end_symtab.  New arg "expandable".
2851         Call reset_symtab_globals.
2852         (end_symtab, end_expandable_symtab): New functions.
2853         (set_missing_symtab, augment_type_symtab): New functions.
2854         * buildsym.h (end_expandable_symtab): Declare.
2855         (augment_type_symtab, restart_symtab): Declare.
2856         * psympriv.h (struct partial_symtab): New member "anonymous".
2857         * psymtab.c (partial_map_symtabs_matching_filename): Ignore
2858         anonymous psymtabs.
2859         (read_psymtabs_with_filename): Ditto.
2860         (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
2861         (expand_symtabs_matching_via_partial): Ditto.
2862         (dump_psymtab): Update.
2863         * dictionary.c (dict_add_pending): New function.
2864         * dictionary.h (dict_add_pending): Declare.
2865
2866 2012-07-09  Doug Evans  <dje@google.com>
2867
2868         * buildsym.c (start_subfile): Remove unnecessary check for
2869         name == NULL.
2870
2871         * psymtab.c (allocate_psymtab): Use host_address_to_string.
2872
2873         * dwarf2read.c (load_full_type_unit): Simplify.
2874
2875         * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
2876         to struct signatured_type **.  All uses updated.
2877
2878         * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
2879         All callers updated.
2880
2881 2012-07-09  Tom Tromey  <tromey@redhat.com>
2882
2883         * c-exp.y (check_parameter_typelist): New function.
2884         (parameter_typelist): Call it.
2885         * eval.c (make_params): Handle '(void)' case.
2886         * gdbtypes.c (lookup_function_type_with_arguments): Handle
2887         '(void)' case.
2888
2889 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
2890
2891         * common/linux-ptrace.c: Include gdb_assert.h.
2892         <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
2893         <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
2894         stdint.h.
2895         (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
2896         functions.
2897         * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
2898         * linux-nat.c (linux_child_post_attach)
2899         (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
2900
2901 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
2902
2903         * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
2904         nptl <2.7 bug workaround for core files.
2905
2906 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2907
2908         * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
2909         clearing.
2910         (save_siginfo): Remove.
2911         (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
2912         call.
2913         (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
2914         (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
2915         * linux-nat.h (struct lwp_info): Remove field siginfo.
2916
2917 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2918
2919         Code cleanup for the next patch.
2920         * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
2921         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
2922         call for it.
2923         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
2924         (ia64_linux_stopped_data_address):
2925         * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
2926         the return value.
2927         * linux-nat.h (linux_nat_get_siginfo): Likewise.
2928         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
2929         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
2930         call for it.
2931
2932 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2933
2934         PR 14321
2935         * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
2936         Increase buffer sizes to 2x we need, not just 2x of the previous size.
2937
2938 2012-07-06  Tom Tromey  <tromey@redhat.com>
2939
2940         * c-exp.y (DOTDOTDOT): New token.
2941         (func_mod, exp): Use parameter_typelist.
2942         (parameter_typelist): New production.
2943         (tokentab3): Add "..." token.
2944         * eval.c (make_params): Handle varargs.
2945         * gdbtypes.c (lookup_function_type_with_arguments): Handle
2946         varargs.
2947
2948 2012-07-06  Tom Tromey  <tromey@redhat.com>
2949
2950         PR exp/9608:
2951         * c-exp.y (%union) <tvec>: Change type.
2952         (func_mod): Now uses <tvec> type.
2953         (exp): Update for tvec change.
2954         (direct_abs_decl): Push the typelist.
2955         (func_mod): Return a typelist.
2956         (nonempty_typelist): Update for tvec change.
2957         * gdbtypes.c (lookup_function_type_with_arguments): New function.
2958         * gdbtypes.h (lookup_function_type_with_arguments): Declare.
2959         * parse.c (pop_type_list): New function.
2960         (push_typelist): New function.
2961         (follow_types): Handle tp_function_with_arguments.
2962         * parser-defs.h (type_ptr): New typedef.  Define a VEC.
2963         (enum type_pieces) <tp_function_with_arguments>: New constant.
2964         (union type_stack_elt) <typelist_val>: New field.
2965         (push_typelist): Declare.
2966
2967 2012-07-06  Tom Tromey  <tromey@redhat.com>
2968
2969         * c-exp.y (%union) <type_stack>: New field.
2970         (abs_decl, direct_abs_decl): Use <type_stack> type.  Update.
2971         (ptr_operator_ts): New production.
2972         (ptype): Update.
2973         * parse.c (type_stack_reserve): New function.
2974         (check_type_stack_depth): Use it.
2975         (pop_type_stack, append_type_stack, push_type_stack)
2976         (get_type_stack, type_stack_cleanup): New functions.
2977         (follow_types): Handle tp_type_stack.
2978         (_initialize_parse): Simplify initialization.
2979         * parser-defs.h (enum type_pieces) <tp_type_stack>: New
2980         constant.
2981         (union type_stack_elt) <stack_val>: New field.
2982         (get_type_stack, append_type_stack, push_type_stack)
2983         (type_stack_cleanup): Declare.
2984
2985 2012-07-06  Tom Tromey  <tromey@redhat.com>
2986
2987         * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
2988         Remove.
2989         (struct type_stack): New.
2990         * parse.c (type_stack, type_stack_size, type_stack_depth):
2991         Remove.
2992         (type_stack): New global.
2993         (parse_exp_in_context, check_type_stack_depth)
2994         (insert_into_type_stack, insert_type, push_type, push_type_int)
2995         (insert_type_address_space, pop_type, pop_type_int)
2996         (_initialize_parse): Update.
2997
2998 2012-07-06  Tom Tromey  <tromey@redhat.com>
2999
3000         * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
3001         Remove %type.
3002
3003 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
3004
3005         * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
3006
3007 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
3008             Jan Kratochvil  <jan.kratochvil@redhat.com>
3009
3010         * cp-valprint.c (cp_print_value): Replace potentially unsafe
3011         alloca with xmalloc/xfree.
3012
3013 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
3014
3015         * MAINTAINERS (Write After Approval): Add myself to the list.
3016
3017 2012-07-05  Doug Evans  <dje@google.com>
3018
3019         * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
3020
3021 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
3022
3023         * ax-gdb.c (cli/cli-utils.h): New include.
3024         (linespec.h): Ditto.
3025         (agent_eval_command_one): New function.
3026         (agent_command_1): Ditto.
3027         (agent_command): Call function agent_command_1.
3028         (agent_eval_command): Ditto.
3029         (_initialize_ax_gdb): Change help for "maint agent"
3030         and "maint agent-eval".
3031
3032 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
3033
3034         * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
3035         * cli/cli-utils.c (check_for_argument): New function.
3036         * cli/cli-utils.h (check_for_argument): Ditto.
3037
3038 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
3039
3040         * NEWS: Mention x32 ABI support.
3041
3042 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
3043
3044         * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
3045         AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
3046
3047         * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
3048         and pc_regnum_from_eax to -1.  Update SP regnum from
3049         sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
3050         needed.
3051
3052         * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
3053         pc_regnum_from_eax.
3054
3055 2012-07-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
3056
3057         Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
3058         * dwarf2expr.h: Include gdbtypes.h.
3059         (enum call_site_parameter_kind, union call_site_parameter_u): Remove
3060         these forward declarations.
3061         (cu_offset, sect_offset): Move these ...
3062         * gdbtypes.h: Remove include dwarf2expr.h.
3063         (cu_offset, sect_offset): ... here.
3064
3065 2012-07-03  H.J. Lu  <hongjiu.lu@intel.com>
3066
3067         * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
3068         (amd64_linux_sigtramp_code): This.
3069         (amd64_x32_linux_sigtramp_code): New.
3070         (LINUX_SIGTRAMP_LEN): Updated.
3071         (amd64_linux_sigtramp_start): Check x32 sigtramp.
3072
3073 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3074
3075         * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
3076
3077 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3078
3079         * config.in: Regenerate.
3080         * configure: Regenerate.
3081         * configure.ac: Remove check for gnu/libc-version.h.
3082         * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
3083         gnu/libc-version.h.
3084         (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
3085         variables libc_version, libc_major and libc_minor.  Replace sscanf by
3086         inferior_has_bug.  Extend the comment.
3087
3088 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3089
3090         * linux-thread-db.c (inferior_has_bug): New function.
3091         (thread_db_find_new_threads_silently): Return boolean as checked by
3092         inferior_has_bug, describe it in the comments.
3093         (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
3094         earlier.  Abort the initialization if it returned non-zero.
3095         (thread_db_new_objfile): Exclude debug files.
3096         (thread_db_find_new_threads_2): Preinitialize ERR.  Check errors also
3097         if UNTIL_NO_NEW,
3098
3099 2012-07-02  Doug Evans  <dje@google.com>
3100
3101         * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
3102         related to queue management.
3103
3104         * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
3105         instead of "debug dwarf2-die" in debugging printfs.
3106         (create_debug_info_hash_table_reader): Ditto.
3107         (create_debug_info_hash_table): Ditto.
3108         (init_dwo_file): Ditto.
3109         (init_cutu_and_read_dies): Add debugging printf.
3110         (init_cutu_and_read_dies_no_follow): Ditto.
3111         (process_psymtab_comp_unit_reader): Ditto.
3112
3113 2012-07-02  Stan Shebs  <stan@codesourcery.com>
3114
3115         Add target-side support for dynamic printf.
3116         * NEWS: Mention the additional style.
3117         * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
3118         (struct bp_location): New field cmd_bytecode.
3119         * breakpoint.c: Include format.h.
3120         (disconnected_dprintf): New global.
3121         (parse_cmd_to_aexpr): New function.
3122         (build_target_command_list): New function.
3123         (insert_bp_location): Call it.
3124         (remove_breakpoints_pid): Skip dprintf breakpoints.
3125         (print_one_breakpoint_location): Ditto.
3126         (dprintf_style_agent): New global.
3127         (dprintf_style_enums): Add dprintf_style_agent.
3128         (update_dprintf_command_list): Add agent case.
3129         (agent_printf_command): New function.
3130         (_initialize_breakpoint): Add new commands.
3131         * common/ax.def (printf): New bytecode.
3132         * ax.h (ax_string): Declare.
3133         * ax-gdb.h (gen_printf): Declare.
3134         * ax-gdb.c: Include cli-utils.h, format.h.
3135         (gen_printf): New function.
3136         (maint_agent_print_command): New function.
3137         (_initialize_ax_gdb): Add maint agent-printf command.
3138         * ax-general.c (ax_string): New function.
3139         (ax_print): Add printf disassembly.
3140         * Makefile.in (SFILES): Add format.c
3141         (COMMON_OBS): Add format.o.
3142         * common/format.h: New file.
3143         * common/format.c: New file.
3144         * printcmd.c: Include format.h.
3145         (ui_printf): Call parse_format_string.
3146         * remote.c (remote_state): New field breakpoint_commands.
3147         (PACKET_BreakpointCommands): New enum.
3148         (remote_breakpoint_commands_feature): New function.
3149         (remote_protocol_features): Add new BreakpointCommands entry.
3150         (remote_can_run_breakpoint_commands): New function.
3151         (remote_add_target_side_commands): New function.
3152         (remote_insert_breakpoint): Call it.
3153         (remote_insert_hw_breakpoint): Ditto.
3154         (_initialize_remote): Add new packet configuration for
3155         target-side breakpoint commands.
3156         * target.h (struct target_ops): New field
3157         to_can_run_breakpoint_commands.
3158         (target_can_run_breakpoint_commands): New macro.
3159         * target.c (update_current_target): Handle
3160         to_can_run_breakpoint_commands.
3161
3162 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3163
3164         Execute -ix and -iex only after system and user gdbinit files.
3165         * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
3166         processing down after gdbinit files.
3167
3168 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3169
3170         Add fnmatch-gnu module.
3171         * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
3172         * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
3173         * gnulib/aclocal.m4: Regenerate.
3174         * gnulib/config.in: Regenerate.
3175         * gnulib/configure: Regenerate.
3176         * gnulib/import/dummy.c: Remove.
3177         * gnulib/import/Makefile.am: Regenerate.
3178         * gnulib/import/Makefile.in: Likewise.
3179         * gnulib/import/m4/gnulib-cache.m4: Likewise.
3180         * gnulib/import/m4/gnulib-comp.m4: Likewise.
3181         * gnulib/import/alloca.c: New file.
3182         * gnulib/import/alloca.in.h: Likewise.
3183         * gnulib/import/config.charset: Likewise.
3184         * gnulib/import/fnmatch.c: Likewise.
3185         * gnulib/import/fnmatch.in.h: Likewise.
3186         * gnulib/import/fnmatch_loop.c: Likewise.
3187         * gnulib/import/localcharset.c: Likewise.
3188         * gnulib/import/localcharset.h: Likewise.
3189         * gnulib/import/m4/alloca.m4: Likewise.
3190         * gnulib/import/m4/codeset.m4: Likewise.
3191         * gnulib/import/m4/configmake.m4: Likewise.
3192         * gnulib/import/m4/fcntl-o.m4: Likewise.
3193         * gnulib/import/m4/fnmatch.m4: Likewise.
3194         * gnulib/import/m4/glibc21.m4: Likewise.
3195         * gnulib/import/m4/localcharset.m4: Likewise.
3196         * gnulib/import/m4/locale-fr.m4: Likewise.
3197         * gnulib/import/m4/locale-ja.m4: Likewise.
3198         * gnulib/import/m4/locale-zh.m4: Likewise.
3199         * gnulib/import/m4/mbrtowc.m4: Likewise.
3200         * gnulib/import/m4/mbsinit.m4: Likewise.
3201         * gnulib/import/m4/mbsrtowcs.m4: Likewise.
3202         * gnulib/import/m4/mbstate_t.m4: Likewise.
3203         * gnulib/import/m4/stdbool.m4: Likewise.
3204         * gnulib/import/m4/wchar_h.m4: Likewise.
3205         * gnulib/import/m4/wctype_h.m4: Likewise.
3206         * gnulib/import/m4/wint_t.m4: Likewise.
3207         * gnulib/import/mbrtowc.c: Likewise.
3208         * gnulib/import/mbsinit.c: Likewise.
3209         * gnulib/import/mbsrtowcs-impl.h: Likewise.
3210         * gnulib/import/mbsrtowcs-state.c: Likewise.
3211         * gnulib/import/mbsrtowcs.c: Likewise.
3212         * gnulib/import/ref-add.sin: Likewise.
3213         * gnulib/import/ref-del.sin: Likewise.
3214         * gnulib/import/stdbool.in.h: Likewise.
3215         * gnulib/import/streq.h: Likewise.
3216         * gnulib/import/strnlen1.c: Likewise.
3217         * gnulib/import/strnlen1.h: Likewise.
3218         * gnulib/import/verify.h: Likewise.
3219         * gnulib/import/wchar.in.h: Likewise.
3220         * gnulib/import/wctype.in.h: Likewise.
3221
3222 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3223
3224         Support shell wildcards for 'set auto-load safe-path'.
3225         * auto-load.c: Include fnmatch.h.
3226         (filename_is_in_dir): Rename to ...
3227         (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
3228         it.  Update function comment.  Rename dir_len to pattern_len.  New
3229         variables filename_len, pattern and filename.  Add more DEBUG_AUTO_LOAD
3230         messages.  Use gdb_filename_fnmatch.
3231         (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
3232         pattern.
3233         (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
3234         * defs.h (gdb_filename_fnmatch): New declaration.
3235         * utils.c: Include fnmatch.h.
3236         (gdb_filename_fnmatch): New function.
3237
3238 2012-07-02  Sergio Durigan Junior  <sergiodj@redhat.com>
3239
3240         * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
3241         `-probe' and `-probe-stap' options.
3242
3243 2012-07-01  Yao Qi  <yao@codesourcery.com>
3244
3245         * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
3246         always_inserted_off, and always_inserted_enums.
3247         Change always_inserted_mode's type to 'enum auto_boolean'.
3248         (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
3249         callers.
3250         (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
3251         of add_setshow_enum_cmd.
3252         * infrun.c: Remove can_use_displaced_stepping_auto,
3253         can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
3254         can_use_displaced_stepping_enum.
3255         Change can_use_displaced_stepping's type to 'enum auto_boolean'.
3256         (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
3257         (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
3258         add_setshow_enum_cmd.
3259
3260 2012-06-30  Doug Evans  <dje@google.com>
3261
3262         * dwarf2read.c (signatured_type): Make "per_cu" member first.
3263         (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
3264         currently being read.  Propagate DW_AT_comp_dir to DWO DIE.
3265
3266 2012-06-29  Doug Evans  <dje@google.com>
3267
3268         * linespec.c: #include "stack.h".
3269         (decode_line_with_current_source): Moved here from symtab.c and
3270         renamed from decode_line_spec.  All callers updated.
3271         (decode_line_with_last_displayed): Moved here from breakpoint.c and
3272         renamed from decode_line_spec_1.  All callers updated.
3273         * linespec.h (decode_line_with_current_source): Move declaration here
3274         from symtab.h and renamed from decode_line_spec.
3275         (decode_line_with_last_displayed): Move declaration here from symtab.h
3276         and renamed from decode_line_spec_1.
3277         * macrocmd.c: #include "linespec.h".
3278         * symtab.c: Remove #include "linespec.h".
3279
3280 2012-06-28  Doug Evans  <dje@google.com>
3281
3282         * dwarf2read.c (get_cu_length): New function.
3283         (offset_in_cu_p, error_check_comp_unit_head): Call it.
3284         (create_debug_types_hash_table): Ditto.
3285         (init_cutu_and_read_dies): Ditto.
3286         (init_cutu_and_read_dies_no_follow): Ditto.
3287
3288         * dwarf2read.c (dwarf2_find_base_address): Move definition.
3289
3290         * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
3291         (struct abbrev_table): Define.
3292         (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
3293         abbrev_table.
3294         (init_cutu_and_read_dies): Update.
3295         (abbrev_table_alloc_abbrev): New function.  Replaces
3296         dwarf_alloc_abbrev.  All callers updated.
3297         (abbrev_table_add_abbrev): New function.
3298         (abbrev_table_lookup_abbrev): New function.  Replaces
3299         dwarf2_lookup_abbrev.  All callers updated.
3300         (abbrev_table_read_table): New function.  Contents moved here from
3301         dwarf2_read_abbrevs.
3302         (dwarf2_read_abbrevs): Call it.
3303         (abbrev_table_free): New function.
3304         (dwarf2_free_abbrev_table): Call it.
3305
3306 2012-06-28  Stan Shebs  <stan@codesourcery.com>
3307
3308         * osdata.c (info_osdata_command): Filter out "Title" columns
3309         from non-MI uses.
3310         * common/linux-osdata.c (struct osdata_type): Add title field.
3311         (osdata_table): Add titles to each entry.
3312         (linux_command_xfer_osdata): Add a column for title data.
3313
3314 2012-06-28  Stan Shebs  <stan@codesourcery.com>
3315
3316         Make logging work for MI.
3317         * NEWS: Mention it.
3318         * interps.h (interp_set_logging_ftype): New typedef.
3319         (struct interp_procs): New field set_logging_proc.
3320         (current_interp_set_logging): Declare.
3321         * interps.c (current_interp_set_logging): New function.
3322         * cli/cli-logging.c: Include interps.h.
3323         (set_logging_redirect): Call current_interp_set_logging.
3324         (pop_output_files): Ditto.
3325         (handle_redirections): Ditto, plus skip ui-out redirect if MI.
3326         * mi/mi-console.h (mi_console_set_raw): Declare.
3327         * mi/mi-console.c (mi_console_set_raw): New function.
3328         * mi/mi-interp.c (saved_raw_stdout): New global.
3329         (mi_set_logging): New function.
3330         (_initialize_mi_interp): Add it to interp procs.
3331
3332 2012-06-28  Doug Evans  <dje@google.com>
3333
3334         * symtab.c (lookup_symbol_aux_objfile): Use
3335         ALL_OBJFILE_PRIMARY_SYMTABS.
3336
3337         * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
3338
3339 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3340
3341         * common/buffer.c: Include inttypes.h and stdint.h.
3342         (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
3343
3344 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3345             Pedro Alves  <palves@redhat.com>
3346
3347         * gdbthread.h (ALL_THREADS): New macro.
3348         (thread_list): Declare.
3349         * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
3350         going, but instead fall through to the stepping handling.
3351         * linux-nat.c (resume_lwp): New parameter 'signo'.  Resume with
3352         the passed in signal.  Adjust debug output.
3353         (resume_callback): Rename to ...
3354         (linux_nat_resume_callback): ... this.  Pass the thread's last
3355         stop signal, if in "pass" state.
3356         (linux_nat_resume): Adjust to rename.
3357         (stop_wait_callback): New assertion.  Don't respawn signals;
3358         instead let the LWP remain with SIGNALLED set.
3359         (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
3360         * remote.c (append_pending_thread_resumptions): New.
3361         (remote_vcont_resume): Call it.
3362         * target.h (target_resume): Extend comment.
3363
3364 2012-06-28  Iain Sandoe  <iain@codesourcery.com>
3365
3366         * auxv.c (fprint_target_auxv): Handle extended cache data tags.
3367
3368 2012-06-27  Doug Evans  <dje@google.com>
3369
3370         * dwarf2read.c (dwarf2_cu): Add ranges_base.
3371         Delete have_addr_base, unused.  All uses updated.
3372         (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
3373         (dwarf2_get_pc_bounds): Add ranges_base.
3374         (dwarf2_record_block_ranges): Ditto.
3375
3376 2012-06-27  Tom Tromey  <tromey@redhat.com>
3377
3378         PR macros/7961:
3379         * varobj.c (varobj_create): Update.
3380         (varobj_set_value): Update.
3381         * tracepoint.c (validate_actionline): Update.
3382         (encode_actions_1): Update.
3383         * parse.c (parse_exp_1): Add 'pc' argument.
3384         (parse_exp_in_context): Add 'pc' argument.  Change how
3385         expression_context_pc is set.
3386         (parse_expression): Update.
3387         (parse_field_expression): Update.
3388         * expression.h (parse_exp_1): Update.
3389         * eval.c (parse_to_comma_and_eval): Update.
3390         * breakpoint.c (set_breakpoint_condition): Update.
3391         (update_watchpoint): Update.
3392         (init_breakpoint_sal): Update
3393         (find_condition_and_thread): Update.
3394         (watch_command_1): Update.
3395         (update_breakpoint_locations): Update.
3396         * ada-lang.c (ada_read_renaming_var_value): Update.
3397         (create_excep_cond_exprs): Update.
3398
3399 2012-06-27  Doug Evans  <dje@google.com>
3400
3401         * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
3402         type units.
3403
3404 2012-06-26  Doug Evans  <dje@google.com>
3405
3406         * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
3407         prototype.
3408         (error_check_comp_unit_head): New arg abbrev_section.  All callers
3409         updated.
3410         (read_and_check_comp_unit_head): Ditto.
3411         (read_and_check_type_unit_head): Ditto.
3412
3413 2012-06-26  Siva Chandra Reddy  <sivachandra@google.com>
3414
3415         New attribute 'last' for gdb.Symtab_and_line.
3416         * NEWS (Python Scripting): Add entry about the new attribute.
3417         * python/py-symtab.c (salpy_get_last): New function which
3418         implements the get method for the 'last' attribute of
3419         gdb.Symtab_and_line.
3420         (sal_object_getset): Add entry for the 'last' attribute.
3421
3422 2012-06-26  Doug Evans  <dje@google.com>
3423
3424         * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
3425         (dwo_sections): Add macinfo, macro.
3426         (dwarf2_locate_dwo_sections): Watch for macro sections.
3427         (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
3428         All callers updated.  Handle DWO files.
3429
3430         * NEWS: Mention new options "set debug dwarf2-read" and
3431         "set debug symtab-create".
3432         * dwarf2read.c (dwarf2_read_debug): New static global.
3433         (dwarf2_build_psymtabs_hard): Add debugging printfs.
3434         (process_queue): Ditto.
3435         (process_full_comp_unit): Ditto.
3436         (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
3437         * elfread.c (elf_symfile_read): Add debugging printf.
3438         * minsyms.c (install_minimal_symbols): Ditto.
3439         * psymtab.c (allocate_psymtab): Ditto.
3440         * symfile.c (allocate_symtab): Ditto.
3441         * symtab.c (symtab_create_debug): New global.
3442         (_initialize_symtab): Add new option "set debug symtab-create".
3443         * symtab.h (symtab_create_debug): Declare.
3444
3445         * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
3446         (lookup_dwo_type_unit): Ditto.
3447
3448 2012-06-26  Roland McGrath  <roland@hack.frob.com>
3449             H.J. Lu  <hongjiu.lu@intel.com>
3450
3451         * amd64-linux-nat.c: Include <sys/user.h>.
3452         (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
3453         if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
3454         HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
3455
3456         * configure.ac: Check if the fs_base and gs_base members of
3457         `struct user_regs_struct' exist.
3458         * config.in: Regenerated.
3459         * configure: Likewise.
3460
3461 2012-06-25  Michael Eager  <eager@eagercon.com>
3462
3463         PR python/14291
3464         * python/python.c (gdbpy_write): Check for interrupted output.
3465
3466 2012-06-25  Greta Yorsh  <greta.yorsh@arm.com>
3467
3468         * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
3469         register as a stack alignment in ARM mode.
3470
3471 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3472
3473         Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
3474         * gnulib/config.in: Regenerate.
3475         * gnulib/configure: Likewise.
3476         * gnulib/import/m4/extensions.m4: Update it.
3477         * gnulib/import/m4/gnulib-common.m4: Likewise.
3478         * gnulib/import/m4/memmem.m4: Likewise.
3479         * gnulib/import/m4/mmap-anon.m4: Likewise.
3480         * gnulib/import/m4/multiarch.m4: Likewise.
3481         * gnulib/import/stdint.in.h: Likewise.
3482
3483 2012-06-24  Yao Qi  <yao@codesourcery.com>
3484
3485         * corefile.c (write_memory_with_notification): New.
3486         * gdbcore.h: Declare write_memory_with_notification.
3487         * ada-lang.c (ada_value_assign): Replace 'write_memory' and
3488         'observer_notify_memory_changed' with 'write_memory_with_notification'.
3489         * valops.c (value_assign): Likewise.
3490         * python/py-inferior.c (infpy_write_memory): Call
3491         'write_memory_with_notification'.
3492
3493 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3494
3495         * cc-with-index.sh: Use also -ex "set auto-load no".
3496
3497 2012-06-23  Doug Evans  <dje@google.com>
3498
3499         PR 14125
3500         * NEWS: Document additions to .gdb_index.
3501         * dwarf2read.c: #include "gdb/gdb-index.h".
3502         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
3503         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
3504         (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
3505         (dwarf2_read_index): Recognize version 7.
3506         (dw2_do_expand_symtabs_matching): New args want_specific_block,
3507         block_kind, domain): All callers updated.
3508         (dw2_find_symbol_file): Handle new index CU values.
3509         (dw2_expand_symtabs_matching): Match symbol kind if requested.
3510         (add_index_entry): New args is_static, kind.  All callers updated.
3511         (offset_type_compare, uniquify_cu_indices): New functions
3512         (symbol_kind): New function.
3513         (write_psymtabs_to_index): Remove duplicate CU values.
3514         (write_psymtabs_to_index): Write .gdb_index version 7.
3515
3516 2012-06-22  Joel Brobecker  <brobecker@adacore.com>
3517
3518         * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
3519         * configure: Regenerate.
3520
3521 2012-06-20  Yao Qi  <yao@codesourcery.com>
3522
3523         * python/py-inferior.c: Update comments of infpy_read_memory
3524         and infpy_write_memory.
3525
3526 2012-06-19  Tom Tromey  <tromey@redhat.com>
3527
3528         PR exp/9514:
3529         * parser-defs.h (insert_type, insert_type_address_space): Declare.
3530         (push_type_address_space): Remove.
3531         * parse.c (insert_into_type_stack): New function.
3532         (insert_type): Likewise.
3533         (insert_type_address_space): Rename from push_type_address_space.
3534         Insert tp_space_identifier.
3535         * c-exp.y (ptr_operator): New production.
3536         (abs_decl): Use ptr_operator.
3537         (space_identifier): Call insert_type_address_space.
3538         (ptype): Don't use const_or_volatile_or_space_identifier.
3539         (const_or_volatile_noopt): Call insert_type.
3540         (conversion_type_id, conversion_declarator): New productions.
3541         (operator): Use conversion_type_id.
3542
3543 2012-06-18  Doug Evans  <dje@google.com>
3544
3545         * symtab.h (minimal_symbol): New member created_by_gdb.
3546         * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
3547         created by gdb.
3548         * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
3549         (search_symbols): Call it instead of lookup_symbol.
3550         Skip symbols created by gdb.  Only scan minsyms if nfiles == 0.
3551
3552         * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
3553         Adjust address for DW_OP_GNU_addr_index.
3554         * dwarf2expr.h (dwarf_expr_context): Update comment.
3555         * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
3556         all callers updated.  Handle TLS vars described with
3557         DW_OP_GNU_const_index.
3558         (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
3559         and DW_OP_GNU_const_index.
3560         * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
3561
3562         * block.c (find_block_in_blockvector): Make explicit the fact that we
3563         ignore GLOBAL_BLOCK.
3564
3565 2012-06-18  Tom Tromey  <tromey@redhat.com>
3566
3567         * c-exp.y (operator): Remove trailing space after "delete" and
3568         "delete[]".
3569
3570 2012-06-18  Mark Kettenis  <kettenis@gnu.org>
3571             Jan Kratochvil  <jan.kratochvil@redhat.com>
3572
3573         Switch i386 and derived targets to ON_STACK.
3574         * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
3575         (amd64_dicos_init_abi): Remove its installment.
3576         * dicos-tdep.c (dicos_init_abi): Remove the
3577         set_gdbarch_call_dummy_location call.  Update the comment here.
3578         * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
3579         (i386_dicos_init_abi): Remove its installment.
3580         * i386-tdep.c (i386_push_dummy_code): New function.
3581         (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
3582         i386_push_dummy_code.
3583
3584 2012-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
3585
3586         Remove stale dummy frames.
3587         * breakpoint.c: Include dummy-frame.h.
3588         (longjmp_breakpoint_ops): New variable.
3589         (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
3590         bp_longjmp_call_dummy.
3591         (bpstat_what, bptype_string, print_one_breakpoint_location)
3592         (init_bp_location): Support bp_longjmp_call_dummy.
3593         (set_longjmp_breakpoint): Use longjmp_breakpoint_ops.  Comment why.
3594         (set_longjmp_breakpoint_for_call_dummy)
3595         (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
3596         functions.
3597         (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
3598         * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy.  Delete
3599         FIXME comment and extend the other comment for bp_call_dummy.
3600         (set_longjmp_breakpoint_for_call_dummy)
3601         (check_longjmp_breakpoint_for_call_dummy): New declarations.
3602         * dummy-frame.c: Include gdbthread.h.
3603         (pop_dummy_frame_bpt): New function.
3604         (pop_dummy_frame): Call pop_dummy_frame_bpt.
3605         (dummy_frame_discard): New function.
3606         (cleanup_dummy_frames): Update the comment about longjmps.
3607         * dummy-frame.h (dummy_frame_discard): New declaration.
3608         * gdbthread.h (struct thread_info): Extend initiating_frame comment.
3609         * infcall.c (call_function_by_hand): New variable longjmp_b.  Call
3610         set_longjmp_breakpoint_for_call_dummy.  Chain its breakpoints with BPT.
3611         * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
3612         Add case 4 comment.  Call check_longjmp_breakpoint_for_call_dummy and
3613         keep_going if IS_LONGJMP and there is no other reason to stop.
3614
3615 2012-06-18  Greta Yorsh  <Greta.Yorsh@arm.com>
3616
3617         * remote-sim.c (sim_command_completer): Initialize
3618         variable 'result'.
3619
3620 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
3621
3622         * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
3623         * dwarf2loc.c (call_site_parameter_matches): Support
3624         CALL_SITE_PARAMETER_PARAM_OFFSET.
3625         (needs_dwarf_reg_entry_value): Push stub value.
3626         * dwarf2read.c (read_call_site_scope): New variable origin.  Support
3627         CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
3628         * gdbtypes.h (enum call_site_parameter_kind): New item
3629         CALL_SITE_PARAMETER_PARAM_OFFSET.
3630         (struct call_site.parameter.u): New field param_offset.
3631
3632 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
3633
3634         Code cleanup: Generalize call_site.parameter key.
3635         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
3636         variable dwarf_reg.  New variable kind_u.  Update parameters to
3637         push_dwarf_reg_entry_value.
3638         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
3639         * dwarf2expr.h (enum call_site_parameter_kind)
3640         (union call_site_parameter_u): Forward declarations.
3641         (struct dwarf_expr_context_funcs): Update parameters and their
3642         description for push_dwarf_reg_entry_value.
3643         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
3644         * dwarf2loc.c (call_site_parameter_matches): New function.
3645         (dwarf_expr_reg_to_entry_parameter): Update parameters and their
3646         description.  Use call_site_parameter_matches.
3647         (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
3648         Update parameters and their description.
3649         (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
3650         New variable kind_u.  Adjust the caller for updated parameters.
3651         (needs_dwarf_reg_entry_value): Update parameters.
3652         * dwarf2read.c (read_call_site_scope): New variable loc.  Use it
3653         instead of attr.  Update for the changed fields of struct
3654         call_site_parameter.
3655         * gdbtypes.h: Include dwarf2expr.h.
3656         (enum call_site_parameter_kind): New.
3657         (struct call_site.parameter): New field kind.  Wrap dwarf_reg and
3658         fb_offset into new union u.
3659
3660 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
3661
3662         * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
3663         (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
3664         for x32.
3665
3666 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
3667
3668         * amd64-linux-nat.c (compat_x32_clock_t): New.
3669         (compat_x32_siginfo_t): Likewise.
3670         (compat_x32_siginfo_from_siginfo): Likewise.
3671         (siginfo_from_compat_x32_siginfo): Likewise.
3672         (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
3673         and siginfo_from_compat_x32_siginfo for x32.
3674
3675 2012-06-15  Hui Zhu  <hui_zhu@mentor.com>
3676
3677         * tracepoint.c (tfile_xfer_partial): Add a lseek.
3678
3679 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
3680
3681         * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
3682         instead of gdbarch_ptr_bit.
3683         * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
3684         (amd64_supply_native_gregset): Likewise.
3685         (amd64_collect_native_gregset): Likewise.
3686         * amd64-tdep.c (amd64_supply_fxsave): Likewise.
3687         (amd64_supply_xsave): Likewise.
3688         (amd64_collect_fxsave): Likewise.
3689         (amd64_collect_xsave): Likewise.
3690
3691 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
3692
3693         * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
3694         (amd64_linux_read_description): Check DS segment register for
3695         x32 process.
3696
3697 2012-06-15  Tom Tromey  <tromey@redhat.com>
3698
3699         * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
3700         init_cutu_and_read_dies.
3701
3702 2012-06-15  Iain Sandoe <iain@codesourcery.com>
3703
3704         * MAINTAINERS (Write After Approval): Add myself to the list.
3705
3706 2012-06-15  Tom Tromey  <tromey@redhat.com>
3707
3708         * valops.c (value_find_oload_method_list): Now static.
3709         * value.h (value_find_oload_method_list): Don't declare.
3710
3711 2012-06-15  Tom Tromey  <tromey@redhat.com>
3712
3713         * valops.c (find_overload_match): Use value_ind.
3714
3715 2012-06-15  Maciej W. Rozycki  <macro@codesourcery.com>
3716
3717         * infrun.c (handle_inferior_event): Correct indentation.
3718
3719 2012-06-14  Doug Evans  <dje@google.com>
3720
3721         * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
3722         (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
3723         All uses updated.
3724         (decode_debug_loc_dwo_addresses): New arg "byte_order".  All callers
3725         updated.  Handle DEBUG_LOC_START_LENGTH.
3726         (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
3727         (loclist_describe_location): Ditto.
3728
3729 2012-06-14  Maciej W. Rozycki  <macro@codesourcery.com>
3730
3731         PR backtrace/13866
3732         * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
3733         after hiding inline functions.
3734
3735 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
3736
3737         * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
3738         _initialize_inf_ttrace.
3739
3740 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
3741
3742         * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
3743         _initialize_hppa_hpux_nat.
3744
3745 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
3746
3747         * remote-sim.c (sim_command_completer): Change type of return
3748         value to "VEC (char_ptr) *".  Adjust implementation accordingly.
3749
3750 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
3751             Jan Kratochvil  <jan.kratochvil@redhat.com>
3752
3753         PR tdep/14222
3754         * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
3755         stack on a 16-byte boundary.
3756
3757 2012-06-13  Kaushik Srenevasan  <kaushik@twitter.com>
3758
3759         * jit.c (finalize_symtab): Set function's return type to 'void' by
3760         default.
3761
3762 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
3763             H.J. Lu  <hongjiu.lu@intel.com>
3764
3765         * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
3766         Move bits common to both the classic LP64 and the new x32 ILP32
3767         ABI here.
3768         (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
3769         (amd64_x32_linux_init_abi): New function.
3770         (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
3771         subtype.
3772
3773         * i386-tdep.h (i386_pseudo_register_name): New prototype.
3774         * i386-tdep.c (i386_pseudo_register_name): Make public.
3775         * amd64-tdep.h (amd64_x32_init_abi): New prototype.
3776         * amd64-tdep.c (amd64_dword_names): Add "eip".
3777         (amd64_x32_pseudo_register_type): New function
3778         (amd64_x32_init_abi): New function.
3779
3780 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3781
3782         PR build/14003
3783         * inferior.h (struct inferior_suspend_state): Comment out.
3784         (struct inferior): Comment out the field suspend.
3785         * infrun.c (struct infcall_suspend_state): Comment out the field
3786         inferior_suspend.
3787         (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
3788         out its assignment.
3789
3790 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3791
3792         PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
3793         * c-exp.y (classify_inner_name): Remove caller assumptions in the
3794         function comment.  Return ERROR for unresolved cases.  Implement
3795         returning proper NAME.
3796         (yylex): Accept also NAME from classify_inner_name.
3797         * cp-namespace.c (cp_lookup_nested_type): Rename to ...
3798         (cp_lookup_nested_symbol): ... here.  Return any found symbol, not just
3799         LOC_TYPEDEF type.
3800         * cp-support.h (cp_lookup_nested_type): Update its declaration.
3801
3802 2012-06-13  Tom Tromey  <tromey@redhat.com>
3803
3804         * breakpoint.c (condition_completer): New function.
3805         (_initialize_breakpoint): Use it.
3806         * value.c (complete_internalvar): New function.
3807         * value.h (complete_internalvar): Declare.
3808
3809 2012-06-13  Tom Tromey  <tromey@redhat.com>
3810
3811         * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
3812         * breakpoint.c (catch_syscall_completer): Return a VEC.
3813         * cli/cli-cmds.c (complete_command): Update.
3814         * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
3815         (complete_on_enum): Likewise.
3816         * command.h: Include gdb_vecs.h.
3817         (completer_ftype): Change return type.
3818         (complete_on_cmdlist, complete_on_enum): Likewise.
3819         * completer.c (noop_completer, filename_completer)
3820         (location_completer): Return a VEC.
3821         (add_struct_fields): Remove 'nextp' argument.  Change 'output'
3822         to a VEC.
3823         (expression_completer, complete_line_internal, complete_line)
3824         (command_completer): Return a VEC.
3825         (gdb_completion_word_break_characters, line_completion_function):
3826         Update.
3827         * completer.h: Include gdb_vecs.h.
3828         (complete_line, noop_completer, filename_completer)
3829         (expression_completer, location_completer, command_completer):
3830         Update.
3831         * f-lang.c (f_word_break_characters): Return a VEC.
3832         * interps.c (interpreter_completer): Return a VEC.
3833         * language.h (struct language_defn)
3834         <la_make_symbol_completion_list>: Return a VEC.
3835         * python/py-cmd.c (cmdpy_completer): Return a VEC.
3836         * symtab.c (free_completion_list): Take a VEC.
3837         (return_val_size, return_val_index): Remove.
3838         (return_val): Now a VEC.
3839         (completion_list_add_name): Update.
3840         (default_make_symbol_completion_list_break_on)
3841         (default_make_symbol_completion_list, make_symbol_completion_list)
3842         (make_symbol_completion_list_fn, make_file_symbol_completion_list):
3843         Return a VEC.
3844         (add_filename_to_list): Update.
3845         (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
3846         <list>: Now a VEC.
3847         (maybe_add_partial_symtab_filename): Update.
3848         (make_source_files_completion_list): Return a VEC.
3849         * symtab.h (default_make_symbol_completion_list_break_on)
3850         (default_make_symbol_completion_list, make_symbol_completion_list)
3851         (make_symbol_completion_list_fn, make_file_symbol_completion_list)
3852         (make_source_files_completion_list): Update.
3853
3854 2012-06-13  Tom Tromey  <tromey@redhat.com>
3855
3856         * breakpoint.c (add_catch_command): Use completer_ftype.
3857         * breakpoint.h: Include command.h.
3858         (add_catch_command): Use completer_ftype.
3859         * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
3860         * cli/cli-decode.h (struct cmd_list_element) <completer>:
3861         Use completer_ftype.
3862         * command.h (completer_ftype): New typedef.
3863         (set_cmd_completer): Use it.
3864         * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
3865         completer_ftype.
3866
3867 2012-06-13  Pedro Alves  <palves@redhat.com>
3868
3869         Partial revert of previous change.
3870
3871         * serial.c (scb_base): New global.
3872         (serial_for_fd): New.
3873         (serial_open, serial_fdopen_ops): Link new serial in open serials
3874         chain.
3875         (do_serial_close): Unlink serial from the open serials chain.
3876
3877 2012-06-12  Pedro Alves  <palves@redhat.com>
3878
3879         * infrun.c (infrun_thread_stop_requested_callback): Don't switch
3880         threads here.
3881         (prepare_for_detach): No longer context switch here in non-stop
3882         mode.
3883         (fetch_inferior_event): Ditto.
3884         (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
3885         to the event thread before removing breakpoints.  Switch to the
3886         event thread before inserting breakpoints and resuming.
3887         (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
3888         event thread before resuming.
3889         (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
3890         Switch to the event thread before removing breakpoints.
3891
3892 2012-06-12  Eli Zaretskii  <eliz@gnu.org>
3893
3894         * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
3895         special characters correctly for the Windows shells.  See
3896         http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
3897         report.
3898         [!__MINGW32__]: Remove extra double quote character from special
3899         characters.
3900
3901 2012-06-11  Stan Shebs  <stan@codesourcery.com>
3902
3903         * ui-out.h: Remove #if 0 declarations.
3904         * ui-out.c: Remove #if 0 functions.
3905
3906 2012-06-11  Pedro Alves  <palves@redhat.com>
3907
3908         * ser-base.c (run_async_handler_and_reschedule): New.
3909         (fd_event, push_event): Use it.
3910         * serial.c (serial_open, serial_fdopen_ops): Set the initial
3911         reference count to 1.
3912         (do_serial_close): Set the bufp field to NULL.  Use serial_unref
3913         instead of xfree.
3914         (serial_is_open, serial_ref, serial_unref): New.
3915         * serial.h (serial_open): Adjust comment.
3916         (serial_is_open): Declare.
3917         (serial_close): Adjust comment.
3918         (serial_ref, serial_unref) Declare.
3919         (struct serial): New field 'refcnt'.
3920
3921 2012-06-11  Pedro Alves  <palves@redhat.com>
3922
3923         Remove #if 0'd "connect" command, and unnecessary associated
3924         refcounting and serial reuse bits.
3925
3926         * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
3927         * serial.c (last_serial_opened): Delete.
3928         (scb_base): Delete.
3929         (serial_open): Adjust.
3930         (serial_for_fd): Delete.
3931         (serial_fdopen_ops, do_serial_close): Adjust.
3932         (serial_fdopen_ops): Adjust.
3933
3934 2012-06-11  Pedro Alves  <palves@redhat.com>
3935
3936         * serial.c (do_serial_close): Remove early return when SCB is
3937         null.
3938
3939 2012-06-11  Tom Tromey  <tromey@redhat.com>
3940
3941         * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
3942
3943 2012-06-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
3944
3945         Fix regression by the "ambiguous linespec" series.
3946         * breakpoint.c (parse_breakpoint_sals): New variable cursal.  Use
3947         get_last_displayed_symtab and get_last_displayed_line and depending
3948         on CURSAL.
3949
3950 2012-06-11  Tom Tromey  <tromey@redhat.com>
3951
3952         * dwarf2read.c (dw2_get_primary_filename_reader): New function.
3953         (dw2_find_symbol_file): Use it.
3954
3955 2012-06-11  Michael Eager  <eager@eagercon.com>
3956
3957         * mips-linux-tdep.c (mips_gdb_signal_from_target): New
3958         * mips-linux-tdep.h (mips_signals): New
3959
3960 2012-06-11  Tom Tromey  <tromey@redhat.com>
3961
3962         * infrun.c (handle_inferior_event)
3963         <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
3964         breakpoint.
3965         <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
3966         exception logic in all cases.  Update comments.
3967         (insert_longjmp_resume_breakpoint): Set the exception resume
3968         breakpoint.
3969
3970 2012-06-11  Maciej W. Rozycki  <macro@codesourcery.com>
3971
3972         * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
3973
3974 2012-06-09  Siva Chandra Reddy  <sivachandra@google.com>
3975
3976         * valarith.c (binop_types_user_defined_p): Fix a typo.
3977
3978 2012-06-08  Yao Qi  <yao@codesourcery.com>
3979             Chung-Lin Tang <cltang@codesourcery.com>
3980
3981         * arch-utils.c (default_return_in_first_hidden_param_p): New.
3982         * arch-utils.h: Declare.
3983         * gdbarch.sh: Add return_in_first_hidden_param_p.
3984         * gdbarch.c, gdbarch.h: Regenerated.
3985         * infcall.c (call_function_by_hand): Call
3986         gdbarch_return_in_first_hidden_param_p instead of
3987         language_pass_by_reference.
3988
3989         * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
3990         (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
3991         * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
3992         (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
3993         * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
3994         `cplus_return_struct_by_reference'.
3995         (tic6x_return_value): Handle language cplusplus.
3996         (tic6x_return_in_first_hidden_param_p): New.
3997         (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
3998
3999 2012-06-07  Doug Evans  <dje@google.com>
4000
4001         * dwarf2read.c (dwarf2_cu): Add comment.
4002
4003 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
4004
4005         * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
4006         variable.
4007         (mips_eabi_push_dummy_call): Likewise.
4008         (mips_n32n64_push_dummy_call): Likewise.
4009         (mips_o32_push_dummy_call): Likewise.
4010         (mips_o64_push_dummy_call): Likewise.
4011
4012 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
4013
4014         * mips-tdep.c (mips_convert_register_p): Correct coding style.
4015
4016 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
4017
4018         * mips-tdep.c (mips_pseudo_register_type): Use
4019         mips_float_register_p.
4020
4021 2012-06-06  Pedro Alves  <palves@redhat.com>
4022
4023         * infrun.c (handle_inferior_event): Remove calls to
4024         reinit_frame_cache that follow a context_switch call.
4025
4026 2012-06-06  Pedro Alves  <palves@redhat.com>
4027
4028         * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
4029         context_switch and remove stale comment.
4030
4031 2012-06-06  Pedro Alves  <palves@redhat.com>
4032
4033         * infrun.c (struct execution_control_state): Remove
4034         `new_thread_event' field.
4035         (handle_inferior_event): Simplify new threads handling; don't
4036         resume the inferior if we find a new thread.
4037
4038 2012-06-06  Thomas Schwinge  <thomas@codesourcery.com>
4039
4040         * NEWS: Document the deprecation of SH's 'regs' command.
4041         * inferior.h (all_registers_info): Add function declaration.
4042         * sh-tdep.c (sh_show_regs): Remove variable.
4043         (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
4044         (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
4045         (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
4046         (sh_show_regs_command): Remove functions.
4047         (sh_gdbarch_init): Don't set sh_show_regs.
4048         (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
4049         'info all-registers'.
4050         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
4051         (sh64_show_regs): Remove functions.
4052         * sh64-tdep.h (sh64_show_regs): Remove function declaration.
4053
4054 2012-06-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4055
4056         * configure.ac: Move development=true below AC_INIT.
4057         * configure: Regenerate.
4058
4059 2012-06-05  Stan Shebs  <stan@codesourcery.com>
4060
4061         * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
4062         gdb_stdout.
4063
4064 2012-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
4065
4066         * corefile.c (read_memory, read_stack, write_memory): Accept LEN
4067         argument as ssize_t.
4068         * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
4069         * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
4070         * target.c (target_read_stack, target_write_memory)
4071         (target_write_raw_memory): Likewise.
4072         * target.h (target_read_stack, target_write_memory)
4073         (target_write_raw_memory): Likewise.
4074
4075 2012-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4076
4077         * symfile-mem.c: Change gdb_static_assert to ssize_t.
4078         (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
4079         * target.c (target_read_memory): Change LEN to ssize_t.
4080         * target.h (target_read_memory): Change LEN to ssize_t.
4081
4082 2012-06-05  Pedro Alves  <palves@redhat.com>
4083
4084         PR backtrace/13866
4085
4086         * breakpoint.c (until_break_command): Only fetch the selected
4087         frame after decode_line_1.
4088
4089 2012-06-05  Joakim Tjernlund  <Joakim.Tjernlund@transmode.se>
4090
4091         * solib-svr4.c (enable_break): Don't fallback to setting the solib
4092         event breakpoint at _start, __start or main if a program
4093         interpreter is not found.
4094
4095 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4096
4097         * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
4098         Add declaration.
4099         * windows-tdep.c: #include "objfiles.h".
4100         (windows_iterate_over_objfiles_in_search_order): New function.
4101         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
4102         iterate_over_objfiles_in_search_order gdbarch method to
4103         windows_iterate_over_objfiles_in_search_order.
4104         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
4105
4106 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4107
4108         * gdbarch.sh: Add generation of
4109         "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
4110         gdbarch.h.  Add include of "objfiles.h" in gdbarch.c.
4111         (iterate_over_objfiles_in_search_order): New gdbarch method.
4112         * gdbarch.h, gdbarch.c: Regenerate.
4113         * objfiles.h (default_iterate_over_objfiles_in_search_order):
4114         Add declaration.
4115         * objfiles.c (default_iterate_over_objfiles_in_search_order):
4116         New function.
4117         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4118         out of lookup_symbol_aux_symtabs.
4119         (lookup_symbol_aux_symtabs): Replace extracted-out code by
4120         call to lookup_symbol_aux_objfile.
4121         (struct global_sym_lookup_data): New type.
4122         (lookup_symbol_global_iterator_cb): New function.
4123         (lookup_symbol_global): Search for symbol using
4124         gdbarch_iterate_over_objfiles_in_search_order and
4125         lookup_symbol_global_iterator_cb.
4126         * findvar.c (struct minsym_lookup_data): New type.
4127         (minsym_lookup_iterator_cb): New function.
4128         (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
4129         symbol's address via gdbarch_iterate_over_objfiles_in_search_order
4130         and minsym_lookup_iterator_cb.
4131
4132 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4133
4134         Revert the following patch:
4135         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
4136         try locating the symbol in the symbol's own objfile first, before
4137         extending the search to all objfiles.
4138         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4139         out of lookup_symbol_aux_symtabs.
4140         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
4141         Replace extracted-out code by call to lookup_symbol_aux_objfile.
4142         Do not search EXCLUDE_OBJFILE.
4143         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
4144         (lookup_symbol_global): Search for matches in the block's objfile
4145         first, before searching all other objfiles.
4146
4147 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4148
4149         * breakpoint.c (find_condition_and_thread): Stop parsing
4150         as soon as the first invalid keyword is found.
4151
4152 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4153
4154         * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
4155
4156 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4157
4158         * config/djgpp/djcheck.sh: Add copyright header.
4159
4160 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4161
4162         * copyright.py (update_files, main): Fix path to update-copyright
4163         script.
4164
4165 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4166
4167         * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
4168         (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
4169         for which a reminder to update by hand is printed.
4170
4171 2012-06-04  Doug Evans  <dje@google.com>
4172
4173         * buildsym.c (make_blockvector): Add comment.
4174
4175 2012-06-04  Pedro Alves  <palves@redhat.com>
4176
4177         * arch-utils.c (default_gdb_signal_from_target): Delete.
4178         * arch-utils.h (default_gdb_signal_from_target): Delete.
4179         * corelow.c (core_open) <signal mapping>: Extended comment.  Check
4180         gdbarch_gdb_signal_from_target_p.
4181         * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
4182         predicate).
4183         * gdbarch.h: Regenerate.
4184         * gdbarch.c: Regenerate.
4185
4186 2012-06-04  Pedro Alves  <palves@redhat.com>
4187
4188         * gdbarch.sh (gdb_signal_from_target): Mention that the
4189         implementation of the method must be host independent.
4190         * gdbarch.h: Regenerate.
4191
4192 2012-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
4193
4194         * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
4195         parameters.
4196         (target_read_memory_bfd): New function.
4197         (symbol_file_add_from_memory): Use it.
4198
4199 2012-06-03  Doug Evans  <dje@google.com>
4200
4201         * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
4202         of primary symtab.
4203         (basic_lookup_transparent_type): Ditto.
4204
4205         * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
4206         (ALL_PRIMARY_SYMTABS): Use it.
4207         (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
4208         * dwarf2read.c (dw2_find_symbol_file): Ditto.
4209         * linespec.c (iterate_over_all_matching_symtabs): Ditto.
4210         * symtab.c (lookup_symbol_aux_objfile): Ditto.
4211         (basic_lookup_transparent_type): Ditto.
4212
4213 2012-06-02  Sergio Durigan Junior  <sergiodj@redhat.com>
4214
4215         * symtab.c (symbol_demangled_name): New variable `dem_name'.  Use
4216         it to optimize resolution of demangled name.
4217
4218 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
4219
4220         * configure.ac (development): Define new variable.
4221         Call AC_CHECK_LIB for mcheck if $development.
4222         (ERROR_ON_WARNING): Enable it by default only if $development.
4223         * config.in: Regenerate.
4224         * configure: Regenerate.
4225
4226 2012-06-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
4227
4228         * target.c (target_read_memory): Make LEN argument as size_t.
4229         * target.h (target_read_memory): Likewise.
4230
4231 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
4232
4233         * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
4234
4235 2012-05-31  Edjunior Machado  <emachado@linux.vnet.ibm.com>
4236
4237         * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
4238         BookE interface for PowerPC server processors if not available
4239         in the Linux Kernel.
4240
4241 2012-05-31  Keith Seitz  <keiths@redhat.com>
4242
4243         * linespec.c (decode_objc): Add cleanup to free
4244         INFO.FILE_SYMTABS.
4245         (find_linespec_symbols): Add cleanup to free CLASSES.
4246         * symfile.c (find_separate_debug_file_by_debuglink): Add
4247         cleanup to free DEBUGLINK.
4248         * ui-out.c (clear_header_list): No need to check if
4249         HEADER_NEXT.COLHDR is NULL.
4250         Free HEADER_NEXT.COL_NAME.
4251
4252 2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
4253
4254         * ada-lang.c (standard_lookup): Prevent uninitialized variable
4255         warning.
4256
4257 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
4258
4259         * configure.host (gdb_host_cpu): Handle tilegx*.
4260         (gdb_host): Handle tilegx-*-linux*.
4261         * tilegx-linux-nat.c: New file.
4262         * config/tilegx/linux.mh: New file.
4263
4264 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
4265
4266         * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
4267         tilegx-linux-tdep.o.
4268         (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
4269         tilegx-linux-tdep.c.
4270         * configure.tgt: Handle tilegx-*-linux*.
4271         * tilegx-tdep.h: New file.
4272         * tilegx-tdep.c: New file.
4273         * tilegx-linux-tdep.c: New file.
4274         * regformats/reg-tilegx.dat: New file.
4275
4276 2012-05-30  Edjunior Machado  <emachado@linux.vnet.ibm.com>
4277
4278         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
4279         accounting of hw watchpoints on ppc.
4280
4281 2012-05-30  Thiago Jung Bauermann  <thiago.bauermann@linaro.org>
4282
4283         * source.c (openp): Expand tilde in path entries.
4284
4285 2012-05-29  Doug Evans  <dje@google.com>
4286
4287         * buildsym.c (block_compar): Fix comment.
4288         (end_symtab): Fix and clarify some comments.
4289
4290         * stabsread.h (cleanup_undefined_stabs_types): Renamed from
4291         cleanup_undefined_types.
4292         * stabsread.c (cleanup_undefined_stabs_types): Ditto.
4293         All callers updated.
4294
4295 2012-05-29  Tom Tromey  <tromey@redhat.com>
4296
4297         * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
4298         fails.
4299         * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
4300         * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
4301         fails.
4302         * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
4303         fails.
4304
4305 2012-05-29  Tristan Gingold  <gingold@adacore.com>
4306
4307         * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
4308         (struct darwin_info): ... New struct.
4309         (solib_darwin_pspace_data): New variable.
4310         (darwin_pspace_data_cleanup): New function.
4311         (get_darwin_info): Likewise.
4312         (darwin_dyld_version_ok, darwin_load_image_infos)
4313         (darwin_solib_get_all_image_info_addr_at_init)
4314         (darwin_solib_read_all_image_info_addr): Add info argument.
4315         Adjust code.
4316         (darwin_current_sos): Use per pspace structure.
4317         (darwin_solib_create_inferior_hook): Likewise.
4318         (darwin_clear_solib): Likewise.
4319         (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
4320
4321 2012-05-28  Pedro Alves  <palves@redhat.com>
4322
4323         * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
4324         block that uses them.  Clear ecss before handling each event.
4325
4326 2012-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4327
4328         * solib-svr4.c (svr4_current_sos): New comment on
4329         svr4_current_sos_via_xfer_libraries fall back.
4330
4331 2012-05-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
4332
4333         * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best.  Use
4334         it as a fallback for TYPE_IS_OPAQUE.
4335         * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
4336         symbols for lookup_symbol.
4337
4338 2012-05-24  John Steele Scott  <toojays@toojays.net>
4339
4340         PR symtab/13277: Resolving opaque structures in ICC generated binaries.
4341         * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
4342         (producer_is_gxx_lt_4_6): Move the checking and caching to...
4343         (check_producer): ... this new function, which also checks for ICC
4344         and caches the result.
4345         (producer_is_icc): New function.
4346         (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
4347         producer was ICC.
4348
4349 2012-05-24  Pedro Alves  <palves@redhat.com>
4350
4351         PR gdb/7205
4352
4353         * arch-utils.c (default_gdb_signal_to_host): Rename to ...
4354         (default_gdb_signal_to_target): ... this.  Add comment.
4355         (default_gdb_signal_from_host): Rename to ...
4356         (default_gdb_signal_from_target): ... this.  Add comment.
4357         * arch-utils.h (default_gdb_signal_to_host): Rename to ...
4358         (default_gdb_signal_to_target): ... this.
4359         (default_gdb_signal_from_host): Rename to ...
4360         (default_gdb_signal_from_target): ... this.
4361         * corelow.c (core_open): Adjust to naming change.  Replace comment.
4362         * gdbarch.sh (gdb_signal_from_host): Rename to ...
4363         (gdb_signal_from_target): ... this.  Adjust to
4364         default_gdb_signal_from_host naming change.  Extend comment.
4365         (gdb_signal_to_host): Rename to ...
4366         (gdb_signal_to_target): ... this.  Adjust to
4367         default_gdb_signal_to_host naming change.
4368         * gdbarch.h, gdbarch.c: Renegerate.
4369
4370 2012-05-24  Pedro Alves  <palves@redhat.com>
4371
4372         PR gdb/7205
4373
4374         Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
4375
4376 2012-05-24  Pedro Alves  <palves@redhat.com>
4377
4378         PR gdb/7205
4379
4380         Replace target_signal with gdb_signal throughout.
4381
4382 2012-05-24  Pedro Alves  <palves@redhat.com>
4383
4384         PR tui/14159
4385
4386         * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
4387         string, instead of reusing the va_list argument.
4388
4389 2012-05-24  Tom Tromey  <tromey@redhat.com>
4390
4391         * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
4392         Remove.
4393
4394 2012-05-23  Doug Evans  <dje@google.com>
4395
4396         * symtab.c (search_symbols): Formatting fixes.
4397         (print_symbol_info): Formatting fixes.
4398
4399         * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
4400         int64_t change to leb128 API.
4401         (read_encoded_value, decode_frame_entry_1): Ditto.
4402         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
4403         (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
4404         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
4405         (execute_stack_op): Ditto.
4406         * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
4407         (safe_read_uleb128, safe_read_sleb128): Ditto.
4408         * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
4409         (dwarf2_compile_expr_to_ax): Ditto.
4410         (locexpr_describe_location_piece): Ditto.
4411         (disassemble_dwarf_expression): Ditto.
4412         (locexpr_describe_location_1): Ditto.
4413
4414 2012-05-23  Stan Shebs  <stan@codesourcery.com>
4415             Kwok Cheung Yeung  <kcy@codesourcery.com>
4416
4417         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
4418         (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
4419         (mi-cmd-info.o): New rule.
4420         * osdata.h (info_osdata_command): New declaration.
4421         * osdata.c (info_osdata_command): Change to non-static.
4422         * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
4423         * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
4424         * mi/mi-cmd-info.c: New file.
4425
4426 2012-05-23  Doug Evans  <dje@google.com>
4427
4428         * symtab.c (search_symbols): Pass NULL for file_matcher to
4429         expand_symtabs_matching if there are no files to match.
4430
4431         * gdbtypes.c (lookup_typename): Simplify.
4432
4433 2012-05-23  Pedro Alves  <palves@redhat.com>
4434
4435         * arch-utils.h (default_target_signal_to_host): Delete.
4436         * arch-utils.c (default_target_signal_to_host): Delete.
4437         * gdbarch.sh (target_signal_to_host): Remove.
4438         * gdbarch.h, gdbarch.c: Regenerate.
4439
4440 2012-05-22  Doug Evans  <dje@google.com>
4441
4442         * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
4443         "const gdb_byte *".
4444         (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
4445         (execute_cfa_program): Update to match API of leb128 functions.
4446         (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
4447         "const gdb_byte *".
4448         (read_unsigned_leb128, read_signed_leb128): Delete.
4449         (read_initial_length): Change type of buf argument to
4450         "const gdb_byte *".
4451         (read_encoded_value): Update to match API of leb128 functions.
4452         (decode_frame_entry): Change result to "const gdb_byte *", and
4453         similarly for "start" parameter.
4454         (decode_frame_entry_1): Ditto.  Use new leb128 reader functions.
4455         (dwarf2_build_frame_info): Change local frame_ptr to
4456         "const gdb_byte *".
4457         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
4458         read_uleb128, read_sleb128.  All callers updated.
4459         (safe_skip_leb128): New function.
4460         (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
4461         Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
4462         (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
4463         functions.  Call gdb_read_uleb128, gdb_read_sleb128 instead of
4464         read_uleb128, read_sleb128.
4465         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
4466         (execute_stack_op): Update to match API of leb128 functions.
4467         * dwarf2expr.h: #include "leb128.h".
4468         (read_uleb128, read_sleb128): Delete.
4469         (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
4470         (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
4471         * dwarf2loc.c (debug_loc_kind): New enum.
4472         (decode_debug_loc_addresses): New function.
4473         (decode_debug_loc_dwo_addresses): New function.
4474         (dwarf2_find_location_expression): Rewrite.
4475         (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
4476         (locexpr_describe_location_piece): Ditto.
4477         (disassemble_dwarf_expression): Ditto.
4478         (locexpr_describe_location_1): Ditto.
4479         (loclist_describe_location): Rewrite.
4480         * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
4481         * dwarf2read.c (die_reader_specs): New member "buffer_end".
4482         (dwarf2_section_buffer_overflow_complaint): Renamed from
4483         dwarf2_macros_too_long_complaint.  All callers updated.
4484         (skip_leb128): Delete.
4485         (init_cu_die_reader): Initialize reader->buffer_end.
4486         (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
4487         (skip_form_bytes): New arg buffer_end.  All callers updated.
4488         Replace call to skip_leb128 with gdb_skip_leb128.
4489         (skip_unknown_opcode): New arg mac_end.  All callers updated.
4490         (fill_in_loclist_baton): Initialize baton->from_dwo.
4491
4492 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
4493
4494         * mips-linux-nat.c (mips_linux_read_description): Use a more
4495         verbose error message.
4496
4497 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
4498
4499         * NEWS: Add MIPS/Linux DSP support.
4500         * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
4501         (SIGCONTEXT_DSPCTL): New macro.
4502         (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
4503         (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
4504         (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
4505         (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
4506         (N64_SIGCONTEXT_HI3): Likewise.
4507         (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
4508         (N64_SIGCONTEXT_LO3): Likewise.
4509         (N64_SIGCONTEXT_DSPCTL): Likewise.
4510         (N64_SIGCONTEXT_FPCSR): Clarify definition.
4511         (mips_linux_o32_sigframe_init): Handle DSP registers.
4512         (mips_linux_n32n64_sigframe_init): Likewise.
4513
4514 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
4515
4516         * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
4517         call to abort.
4518
4519 2012-05-22  Pedro Alves  <palves@redhat.com>
4520
4521         * target.h (store_waitstatus): Move declaration ...
4522         * inf-child.h (store_waitstatus): ... here.
4523         * target.c: Move inclusion of gdb_wait.h, and ...
4524         (store_waitstatus): ... this ...
4525         * inf-child.c: ... here.
4526         * linux-nat.c: Include inf-child.h.
4527         * rs6000-nat.c: Include inf-child.h.
4528         * spu-linux-nat.c: Include inf-child.h.
4529
4530 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
4531
4532         * tracepoint.c (start_tracing): Add missing i18n markup.
4533         (stop_tracing, set_trace_user): Ditto.
4534         (set_trace_notes, set_trace_stop_notes): Ditto.
4535
4536 2012-05-21  Tom Tromey  <tromey@redhat.com>
4537
4538         PR c++/7173:
4539         * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
4540         types.
4541         * value.h (value_cast_pointers): Update.
4542         * valops.c (value_cast_pointers): Add 'subclass_check' argument.
4543         (value_cast): Update.
4544         (update_search_result): New function.
4545         (do_search_struct_field): New, from search_struct_field.  Check
4546         for ambiguous results.
4547         (search_struct_field): Rewrite.
4548         * infcall.c (value_arg_coerce): Update.
4549         * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
4550         value_cast_pointers.
4551         * ada-lang.c (ada_convert_actual): Update.
4552
4553 2012-05-21  Tom Tromey  <tromey@redhat.com>
4554
4555         * macroexp.c (macro_stringify): Terminate the string.
4556
4557 2012-05-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
4558
4559         * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
4560         Describe it.
4561         * auto-load.c (auto_load_expand_dir_vars): New function.
4562         (auto_load_safe_path_vec_update): Use it, remove the
4563         substitute_path_component call thanks to it.
4564         (auto_load_objfile_script): Remove the debug_file_directory processing.
4565         Use auto_load_expand_dir_vars, remove the substitute_path_component
4566         call thanks to it.
4567         * configure: Regenerate.
4568         * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
4569         path.  Escape $ also for $debugdir.
4570         (--with_auto_load_safe_path): Escape $ also for $debugdir.
4571         * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
4572
4573 2012-05-20  Doug Evans  <dje@google.com>
4574
4575         * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
4576         before use.  Check for symtab->includes == NULL before scanning it.
4577
4578 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
4579
4580         * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
4581
4582 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
4583
4584         * NEWS: Add microMIPS support and "set mips compression",
4585         "show mips compression" commands.
4586         * mips-tdep.h (mips_isa): New enum.
4587         (gdbarch_tdep): Add mips_isa.
4588         (mips_pc_is_mips16): Update prototype.
4589         (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
4590         * mips-tdep.c (mips_compression_mips16): New variable.
4591         (mips_compression_micromips): Likewise.
4592         (mips_compression_strings): Likewise.
4593         (mips_compression_string): Likewise.
4594         (is_mips16_isa, is_micromips_isa): New functions.
4595         (is_mips16_addr): Rename to...
4596         (is_compact_addr): ... this.
4597         (unmake_mips16_addr): Likewise to...
4598         (unmake_compact_addr): ... this.
4599         (make_mips16_addr): Likewise to...
4600         (make_compact_addr): ... this.
4601         (is_mips_addr, is_mips16_addr, is_micromips_addr): New
4602         functions.
4603         (mips_elf_make_msymbol_special): Handle microMIPS code.
4604         (msymbol_is_special): Rename to...
4605         (msymbol_is_mips16): ... this.
4606         (mips_make_symbol_special, mips_pc_is_mips16): Update
4607         accordingly.
4608         (msymbol_is_mips, msymbol_is_micromips): New functions.
4609         (mips16_to_32_reg): Rename to...
4610         (mips_reg3_to_reg): ... this.
4611         (mips_pc_is_mips, mips_pc_is_micromips): New functions.
4612         (mips_pc_isa): Likewise.
4613         (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
4614         code.
4615         (mips_fetch_instruction): Pass return status instead of printing
4616         an error message if requested.  Handle microMIPS code.  Bail out
4617         on an invalid ISA.
4618         (micromips_op): New macro.
4619         (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
4620         (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
4621         (b6s4_op, b7s3_reg): Likewise.
4622         (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
4623         (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
4624         (mips_insn_size): New function.
4625         (mips32_next_pc): Update mips_fetch_instruction call.
4626         (micromips_relative_offset7): New function.
4627         (micromips_relative_offset10): Likewise.
4628         (micromips_relative_offset16): Likewise.
4629         (micromips_pc_insn_size): Likewise.
4630         (micromips_bc1_pc): Likewise.
4631         (micromips_next_pc): Likewise.
4632         (unpack_mips16): Update mips_fetch_instruction call.
4633         (extended_mips16_next_pc): Update according to change to
4634         mips16_to_32_reg.
4635         (mips_next_pc): Update mips_pc_is_mips16 call.  Handle microMIPS
4636         code.
4637         (mips16_scan_prologue): Update mips_fetch_instruction call.
4638         Update according to change to mips16_to_32_reg.
4639         (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
4640         (mips_insn16_frame_base_sniffer): Likewise.
4641         (micromips_decode_imm9): New function.
4642         (micromips_scan_prologue): Likewise.
4643         (mips_micro_frame_cache): Likewise.
4644         (mips_micro_frame_this_id): Likewise.
4645         (mips_micro_frame_prev_register): Likewise.
4646         (mips_micro_frame_sniffer): Likewise.
4647         (mips_micro_frame_unwind): New variable.
4648         (mips_micro_frame_base_address): New function.
4649         (mips_micro_frame_base): New variable.
4650         (mips_micro_frame_base_sniffer): New function.
4651         (mips32_scan_prologue): Update mips_fetch_instruction call.
4652         (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
4653         rather than for MIPS16.
4654         (mips_insn32_frame_base_sniffer): Likewise.
4655         (mips_addr_bits_remove): Handle microMIPS code.
4656         (deal_with_atomic_sequence): Rename to...
4657         (mips_deal_with_atomic_sequence): ... this.  Update the type
4658         of the variable used to hold an instruction.  Remove the ISA bit
4659         check.  Update mips_fetch_instruction call.
4660         (micromips_deal_with_atomic_sequence): New function.
4661         (deal_with_atomic_sequence): Likewise.
4662         (mips_about_to_return): Handle microMIPS code.  Update
4663         mips_fetch_instruction call.
4664         (heuristic_proc_start): Check for the standard MIPS ISA rather
4665         than for MIPS16.  Update mips_pc_is_mips16 and
4666         mips_fetch_instruction calls.  Handle microMIPS code.
4667         (mips_push_dummy_code): Handle microMIPS code.
4668         (mips_eabi_push_dummy_call): Likewise.
4669         (mips_o32_return_value): Update mips_pc_is_mips16 call.
4670         (mips_o64_push_dummy_call): Handle microMIPS code.
4671         (mips_o64_return_value): Update mips_pc_is_mips16 call.
4672         (is_delayed): Remove function.
4673         (mips_single_step_through_delay): Replace the call to is_delayed
4674         with mips32_instruction_has_delay_slot.  Correct MIPS16 handling.
4675         Handle microMIPS code.
4676         (mips_skip_prologue): Update mips_pc_is_mips16 call.  Handle
4677         microMIPS code.
4678         (mips32_in_function_epilogue_p): Update mips_fetch_instruction
4679         call.
4680         (micromips_in_function_epilogue_p): New function.
4681         (mips16_in_function_epilogue_p): Update mips_fetch_instruction
4682         call.
4683         (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
4684         Handle microMIPS.
4685         (gdb_print_insn_mips): Likewise.
4686         (mips_breakpoint_from_pc): Likewise.
4687         (mips_remote_breakpoint_from_pc): New function.
4688         (mips32_instruction_has_delay_slot): Simplify making use of the
4689         updated mips_fetch_instruction interface.
4690         (micromips_instruction_has_delay_slot): New function.
4691         (mips16_instruction_has_delay_slot): Simplify making use of the
4692         updated mips_fetch_instruction interface.
4693         (mips_adjust_breakpoint_address): Check for the standard MIPS
4694         ISA rather than for MIPS16 ISA.  Update for unmake_compact_addr
4695         calls.  Handle microMIPS code.
4696         (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
4697         (mips_skip_trampoline_code): Handle microMIPS code.
4698         (global_mips_compression): New function.
4699         (mips_gdbarch_init): Handle the compressed ISA setting from ELF
4700         file flags.  Register the microMIPS remote breakpoint handler
4701         and heuristic frame unwinder.
4702         (show_mips_compression): New function.
4703         (_initialize_mips_tdep): Add the "set mips compression" and
4704         "show mips compression" commands.
4705
4706 2012-05-18  Sergio Durigan Junior  <sergiodj@redhat.com>
4707
4708         * ada-lang.c:
4709         * ada-tasks.c:
4710         * ada-varobj.c:
4711         * amd64-darwin-tdep.c:
4712         * arm-symbian-tdep.c:
4713         * arm-tdep.c:
4714         * avr-tdep.c:
4715         * ax-gdb.c:
4716         * bfin-linux-tdep.c:
4717         * breakpoint.c:
4718         * c-valprint.c:
4719         * cli/cli-cmds.c:
4720         * coffread.c:
4721         * cp-support.c:
4722         * cris-tdep.c:
4723         * dwarf2-frame-tailcall.c:
4724         * dwarf2-frame.c:
4725         * dwarf2expr.c:
4726         * dwarf2loc.c:
4727         * dwarf2read.c:
4728         * elfread.c:
4729         * eval.c:
4730         * expprint.c:
4731         * f-valprint.c:
4732         * frv-tdep.c:
4733         * h8300-tdep.c:
4734         * hppa-hpux-tdep.c:
4735         * hppa-tdep.c:
4736         * hppanbsd-tdep.c:
4737         * i386-nto-tdep.c:
4738         * i386-tdep.c:
4739         * i387-tdep.c:
4740         * ia64-tdep.c:
4741         * jit.c:
4742         * linespec.c:
4743         * linux-tdep.c:
4744         * lm32-tdep.c:
4745         * m2-valprint.c:
4746         * m32c-tdep.c:
4747         * m32r-rom.c:
4748         * m32r-tdep.c:
4749         * m68k-tdep.c:
4750         * m68klinux-tdep.c:
4751         * mi/mi-main.c:
4752         * microblaze-tdep.c:
4753         * mips-linux-tdep.c:
4754         * mips-tdep.c:
4755         * mn10300-tdep.c:
4756         * p-valprint.c:
4757         * parse.c:
4758         * ppc-linux-tdep.c:
4759         * ppc-sysv-tdep.c:
4760         * printcmd.c:
4761         * python/py-finishbreakpoint.c:
4762         * python/py-inferior.c:
4763         * python/py-infthread.c:
4764         * python/py-type.c:
4765         * python/python.c:
4766         * remote-fileio.c:
4767         * remote-m32r-sdi.c:
4768         * remote-mips.c:
4769         * reverse.c:
4770         * rl78-tdep.c:
4771         * rs6000-aix-tdep.c:
4772         * rs6000-tdep.c:
4773         * s390-tdep.c:
4774         * score-tdep.c:
4775         * sh64-tdep.c:
4776         * skip.c:
4777         * solib-darwin.c:
4778         * solib-dsbt.c:
4779         * solib-frv.c:
4780         * sparc-tdep.c:
4781         * spu-multiarch.c:
4782         * spu-tdep.c:
4783         * stack.c:
4784         * symfile.c:
4785         * symtab.c:
4786         * tic6x-tdep.c:
4787         * tracepoint.c:
4788         * v850-tdep.c:
4789         * valarith.c:
4790         * valprint.c:
4791         * value.c:
4792         * xcoffread.c:
4793         * xtensa-tdep.c:
4794         * ada-lang.c:
4795         * ada-tasks.c:
4796         * ada-varobj.c:
4797         * amd64-darwin-tdep.c:
4798         * arm-symbian-tdep.c:
4799         * arm-tdep.c: Delete unused variables.
4800
4801 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
4802
4803         Rename $ddir to $datadir.
4804         * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
4805         * auto-load.c (auto_load_safe_path_vec_update)
4806         (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
4807         * configure: Regenerate.
4808         * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
4809         Likewise.  Remove the 'use $ddir' help string.
4810
4811 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
4812
4813         * auto-load.c (show_auto_load_safe_path): Accept any combination of
4814         DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
4815
4816 2012-05-18  Tom Tromey  <tromey@redhat.com>
4817
4818         PR exp/13907:
4819         * valprint.h (struct value_print_options) <symbol_print>: New
4820         field.
4821         * valprint.c (user_print_options): Add default for symbol_print.
4822         (show_symbol_print): New function.
4823         (generic_val_print): Respect symbol_print.
4824         (_initialize_valprint): Add "print symbol" setting.
4825         * f-valprint.c (f_val_print): Respect symbol_print.
4826         * c-valprint.c (c_val_print): Respect symbol_print.
4827         * NEWS: Update.
4828         * printcmd.c (print_address_symbolic): Return int.  Ignore some
4829         zero-size symbols.
4830         (print_address_demangle): Return int.
4831         * defs.h: (print_address_symbolic): Return int.
4832         * value.h (print_address_demangle): Return int.
4833
4834 2012-05-18  Tom Tromey  <tromey@redhat.com>
4835
4836         * valprint.c (val_print_string): Don't print leading space.
4837         * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
4838         print space before string or vtbl.
4839         * m2-valprint.c (print_unpacked_pointer): Optionally print space
4840         before string.
4841         * jv-valprint.c (java_value_print): Print space before string.
4842         * go-valprint.c (print_go_string): Print space before string.
4843         * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
4844         space before string.
4845         * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
4846         space before string or vtbl.
4847         * auxv.c (fprint_target_auxv): Print space after address.
4848
4849 2012-05-18  Tom Tromey  <tromey@redhat.com>
4850
4851         * printcmd.c (print_address_demangle): Remove special case for 0.
4852
4853 2012-05-18  Tom Tromey  <tromey@redhat.com>
4854
4855         * printcmd.c (print_address_demangle): Add 'opts' argument.
4856         * p-valprint.c (pascal_val_print): Update.
4857         * jv-valprint.c (java_val_print): Update.
4858         * value.h: Update.
4859         * valprint.c (generic_val_print): Update.
4860         (print_function_pointer_address): Add 'options' argument.  Remove
4861         'addressprint' argument.  Update.
4862         * m2-valprint.c (print_unpacked_pointer): Update.
4863         * gnu-v3-abi.c (print_one_vtable): Update.
4864         (gnuv3_print_method_ptr): Update.
4865         * f-valprint.c (f_val_print): Update.
4866         * cp-valprint.c (cp_print_value_fields): Update.
4867         * valprint.h (print_function_pointer_address): Update.
4868         * c-valprint.c (c_val_print): Update.
4869
4870 2012-05-18  Tom Tromey  <tromey@redhat.com>
4871
4872         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
4873         directly corresponding to the found psymtab.
4874         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
4875         (dw2_find_pc_sect_symtab): Use it.
4876         * block.h (blockvector_contains_pc): Declare.
4877         * block.c (find_block_in_blockvector): New function.
4878         (blockvector_for_pc_sect): Use it.
4879         (blockvector_contains_pc): New function.
4880
4881 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
4882
4883         * mips-tdep.h (mips_write_pc): New prototype.
4884         * mips-tdep.c (mips_write_pc): Make external, add description.
4885         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
4886         add description.
4887
4888 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
4889
4890         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
4891         mips_regnum->pc.
4892         (mips_unwind_pc, mips_write_pc): Likewise.
4893         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
4894         gdbarch_read_pc.
4895
4896 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
4897
4898         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
4899         proc_warn, proc_error, proc_get_status, proc_flags,
4900         proc_why, proc_what, proc_nsysarg, proc_sysargs,
4901         proc_set_run_on_last_close, proc_unset_run_on_last_close,
4902         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
4903         proc_stop_process, proc_wait_for_stop, proc_run_process,
4904         proc_set_traced_signals, proc_set_traced_faults,
4905         proc_set_traced_sysentry, proc_set_traced_sysexit,
4906         proc_set_held_signals, proc_get_held_signals,
4907         proc_get_traced_signals, proc_get_traced_faults,
4908         proc_get_traced_sysentry, proc_get_traced_sysexit,
4909         proc_clear_current_fault, proc_set_current_signal,
4910         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
4911         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
4912         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
4913         proc_get_current_thread, proc_get_current_thread,
4914         proc_get_current_thread, proc_update_threads,
4915         proc_update_threads, proc_update_threads, proc_update_threads,
4916         proc_iterate_over_threads, procfs_find_new_threads,
4917         procfs_pid_to_str): Make static.  Remove advance declaration.
4918         (proc_cursig): Make static.  Conditionalized defintion on
4919         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
4920         (proc_syscall, proc_set_kill_on_last_close,
4921         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
4922         proc_get_pending_signals, proc_get_signal_actions,
4923         proc_trace_signal, proc_ignore_signal): Delete.
4924
4925 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
4926
4927         * coffread.c (cs_section_address): Passing proper argument for
4928         `bfd_get_section_vma'.
4929         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
4930         `bfd_get_section_flags'.
4931         * remote.c (remote_trace_set_readonly_regions): Likewise, for
4932         `bfd_get_section_vma'.
4933
4934 2012-05-16  Tom Tromey  <tromey@redhat.com>
4935
4936         PR macros/13205:
4937         * macrotab.h: (macro_define_special): Declare.
4938         (enum macro_special_kind): New.
4939         (struct macro_definition) <argc, replacement>: Update comments.
4940         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
4941         (macro_define_object_internal): New function.
4942         (macro_define_object): Use it.
4943         (macro_define_special): New function.
4944         (fixup_definition): New function.
4945         (macro_lookup_definition, foreach_macro_in_scope)
4946         (foreach_macro): Use fixup_definition.
4947         * macroexp.h (macro_stringify): Declare.
4948         * macroexp.c (free_buffer_return_text): New function.
4949         (stringify): Constify "arg".
4950         (macro_stringify): New function.
4951         * dwarf2read.c (macro_start_file): Call macro_define_special.
4952
4953 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
4954             Maciej W. Rozycki  <macro@mips.com>
4955
4956         * breakpoint.h (bp_location): Add related_address member.
4957         * inferior.h (get_return_value): Take a pointer to struct value
4958         instead of struct type for the function requested.
4959         * value.h (using_struct_return): Likewise.
4960         * gdbarch.sh (return_value): Take a pointer to struct value
4961         instead of struct type for the function requested.
4962         * breakpoint.c (set_breakpoint_location_function): Initialize
4963         related_address for bp_gnu_ifunc_resolver breakpoints.
4964         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
4965         requested function's address to gdbarch_return_value.
4966         * eval.c (evaluate_subexp_standard): Pass the requested
4967         function's address to using_struct_return.
4968         * infcall.c (call_function_by_hand): Pass the requested
4969         function's address to using_struct_return and
4970         gdbarch_return_value.
4971         * infcmd.c (get_return_value): Take a pointer to struct value
4972         instead of struct type for the function requested.
4973         (print_return_value): Update accordingly.
4974         (finish_command_continuation): Likewise.
4975         * stack.c (return_command): Pass the requested function's
4976         address to using_struct_return and gdbarch_return_value.
4977         * value.c (using_struct_return): Take a pointer to struct value
4978         instead of struct type for the function requested.  Pass the
4979         requested function's address to gdbarch_return_value.
4980         * python/py-finishbreakpoint.c (finish_breakpoint_object):
4981         New function_value member, replacing function_type.
4982         (bpfinishpy_dealloc): Update accordingly.
4983         (bpfinishpy_pre_stop_hook): Likewise.
4984         (bpfinishpy_init): Likewise.  Record the requested function's
4985         address.
4986         * mips-tdep.c (mips_fval_reg): New enum.
4987         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
4988         words put in GP registers.
4989         (mips_o64_push_dummy_call): Update a comment.
4990         (mips_o32_return_value): Take a pointer to struct value instead
4991         of struct type for the function requested and use it to check if
4992         using the MIPS16 calling convention.  Return the designated
4993         general purpose registers for floating-point values returned in
4994         MIPS16 mode.
4995         (mips_o64_return_value): Likewise.
4996         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
4997         (ppc_sysv_abi_broken_return_value): Likewise.
4998         (ppc64_sysv_abi_return_value): Likewise.
4999         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
5000         value instead of struct type for the function requested.
5001         * amd64-tdep.c (amd64_return_value): Likewise.
5002         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
5003         * arm-tdep.c (arm_return_value): Likewise.
5004         * avr-tdep.c (avr_return_value): Likewise.
5005         * bfin-tdep.c (bfin_return_value): Likewise.
5006         * cris-tdep.c (cris_return_value): Likewise.
5007         * frv-tdep.c (frv_return_value): Likewise.
5008         * h8300-tdep.c (h8300_return_value): Likewise.
5009         (h8300h_return_value): Likewise.
5010         * hppa-tdep.c (hppa32_return_value): Likewise.
5011         (hppa64_return_value): Likewise.
5012         * i386-tdep.c (i386_return_value): Likewise.
5013         * ia64-tdep.c (ia64_return_value): Likewise.
5014         * iq2000-tdep.c (iq2000_return_value): Likewise.
5015         * lm32-tdep.c (lm32_return_value): Likewise.
5016         * m32c-tdep.c (m32c_return_value): Likewise.
5017         * m32r-tdep.c (m32r_return_value): Likewise.
5018         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
5019         * m68k-tdep.c (m68k_return_value): Likewise.
5020         (m68k_svr4_return_value): Likewise.
5021         * m88k-tdep.c (m88k_return_value): Likewise.
5022         * mep-tdep.c (mep_return_value): Likewise.
5023         * microblaze-tdep.c (microblaze_return_value): Likewise.
5024         * mn10300-tdep.c (mn10300_return_value): Likewise.
5025         * moxie-tdep.c (moxie_return_value): Likewise.
5026         * mt-tdep.c (mt_return_value): Likewise.
5027         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
5028         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
5029         (ppc_sysv_abi_broken_return_value): Likewise.
5030         (ppc64_sysv_abi_return_value): Likewise.
5031         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
5032         * rl78-tdep.c (rl78_return_value): Likewise.
5033         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
5034         * rx-tdep.c (rx_return_value): Likewise.
5035         * s390-tdep.c (s390_return_value): Likewise.
5036         * score-tdep.c (score_return_value): Likewise.
5037         * sh-tdep.c (sh_return_value_nofpu): Likewise.
5038         (sh_return_value_fpu): Likewise.
5039         * sh64-tdep.c (sh64_return_value): Likewise.
5040         * sparc-tdep.c (sparc32_return_value): Likewise.
5041         * sparc64-tdep.c (sparc64_return_value): Likewise.
5042         * spu-tdep.c (spu_return_value): Likewise.
5043         * tic6x-tdep.c (tic6x_return_value): Likewise.
5044         * v850-tdep.c (v850_return_value): Likewise.
5045         * vax-tdep.c (vax_return_value): Likewise.
5046         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
5047         * xtensa-tdep.c (xtensa_return_value): Likewise.
5048         * gdbarch.c: Regenerate.
5049         * gdbarch.h: Regenerate.
5050
5051 2012-05-15  Tom Tromey  <tromey@redhat.com>
5052
5053         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
5054
5055 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
5056
5057         * breakpoint.c (init_breakpoint_sal): Add quotes around part
5058         of command in two error message.
5059
5060 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
5061
5062         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
5063
5064 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
5065
5066         * breakpoint.c (find_condition_and_thread): Minor reformatting.
5067
5068 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
5069
5070         * NEWS (show auto-load scripts-directory): Add forgotten command.
5071
5072 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
5073
5074         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
5075         parameters.
5076
5077 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
5078
5079         * amd64-tdep.c: Include features/i386/x32.c and
5080         features/i386/x32-avx.c.
5081         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
5082         initialize_tdesc_x32_avx.
5083
5084 2012-05-14  Stan Shebs  <stan@codesourcery.com>
5085
5086         Add dynamic printf.
5087         * breakpoint.h (enum bptype): New type bp_dprintf.
5088         (struct breakpoint): New field extra_string.
5089         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
5090         (create_breakpoint): Add extra_string arg.
5091         * breakpoint.c (dprintf_breakpoint_ops): New.
5092         (is_breakpoint): Add bp_dprintf.
5093         (bpstat_what): Add dprintf case.
5094         (bptype_string): Ditto.
5095         (print_one_breakpoint_location): Ditto.
5096         (init_bp_location): Ditto.
5097         (bkpt_print_mention): Ditto.
5098         (dprintf_style_enums): New array.
5099         (dprintf_style): New global.
5100         (dprintf_function): New global.
5101         (dprintf_channel): New global.
5102         (update_dprintf_command_list): New function.
5103         (update_dprintf_commands): New function.
5104         (init_breakpoint_sal): Add extra_string argument, handle it.
5105         (create_breakpoint_sal): Add extra_string argument.
5106         (create_breakpoints_sal): Add extra_string argument, update callers.
5107         (find_condition_and_thread): Add extra argument.
5108         (create_breakpoint): Add extra_string argument, record it.
5109         (dprintf_command): New function.
5110         (break_command_1): Add arg to create_breakpoint call.
5111         (handle_gnu_v3_exceptions): Ditto.
5112         (trace_command): Ditto.
5113         (ftrace_command): Ditto.
5114         (strace_command): Ditto.
5115         (bkpt_print_mention): Add dprintf case.
5116         (create_breakpoint_sal_default): Add extra_string argument.
5117         (_initialize_breakpoint): Add new commands.
5118         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
5119         * python/py-breakpoint.c (bppy_init): Ditto.
5120         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
5121
5122 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
5123
5124         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
5125
5126 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
5127
5128         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
5129         unsigned long long.
5130
5131 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
5132
5133         Add a new function gdb.find_pc_line to the Python API.
5134         * NEWS (Python Scripting): Add entry about the new function.
5135         * python/python.c (gdbpy_find_pc_line): New function which
5136         implements gdb.find_pc_line.
5137         (GdbMethods): Add entry for the new function.
5138
5139 2012-05-12  Pedro Alves  <palves@redhat.com>
5140
5141         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
5142         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
5143
5144 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
5145
5146         * inferior.c: Include completer.h
5147         (initialize_inferiors): Set completer of add-inferior to
5148         filename_completer.
5149
5150 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
5151
5152         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
5153         gdbarch_ptr_bit for x32 core dump.
5154
5155 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
5156
5157         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
5158         and features/i386/x32-avx-linux.c.
5159
5160 2012-05-11  Stan Shebs  <stan@codesourcery.com>
5161             Kwok Cheung Yeung  <kcy@codesourcery.com>
5162
5163         * NEWS: Describe new info os commands.
5164         * common/linux-osdata.c (PID_T, TIME_T): Define.
5165         (MAX_PID_T_STRLEN): New.
5166         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
5167         MAX_PID_T_STRLEN.
5168         (command_from_pid): Add comment.  Change to use PID_T.
5169         (commandline_from_pid):  Change to use PID_T.
5170         (user_from_pid): Add comment.
5171         (get_process_owner): Add comment. Change to use PID_T and
5172         MAX_PID_T_STRLEN.
5173         (get_number_of_cpu_cores): Add comment.
5174         (get_cores_used_by_process): Add comment.  Change to use PID_T and
5175         MAX_PID_T_STRLEN.
5176         (linux_xfer_osdata_processes): Change to use PID_T and
5177         MAX_PID_T_STRLEN.
5178         (compare_processes): New function.
5179         (linux_xfer_osdata_processgroups): New function.
5180         (linux_xfer_osdata_threads): Change to use PID_T.
5181         (linux_xfer_osdata_fds): New function.
5182         (format_socket_state, print_sockets): New functions.
5183         (union socket_addr): New union.
5184         (linux_xfer_osdata_isockets): New function.
5185         (time_from_time_t, group_from_gid): New functions.
5186         (linux_xfer_osdata_shm): New function.
5187         (linux_xfer_osdata_sem): New function.
5188         (linux_xfer_osdata_msg): New function.
5189         (linux_xfer_osdata_modules): New function.
5190         (osdata_table): Add new entries.
5191         * common/buffer.c (buffer_xml_printf): Add support for long and
5192         long long format specifiers.
5193
5194 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
5195
5196         * amd64-linux-tdep.h (tdesc_x32_linux): New.
5197         (tdesc_x32_avx_linux): Likewise.
5198
5199 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5200
5201         Implement multi-component --with-auto-load-dir.
5202         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
5203         entries.
5204         (--with-auto-load-safe-path): Update the default value description.
5205         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
5206         New.
5207         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
5208         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
5209         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
5210         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
5211         "set auto-load scripts-directory".
5212         * config.in: Regenerate.
5213         * configure: Regenerate.
5214         * configure.ac (--with-auto-load-dir): New configure option.
5215         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
5216
5217 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5218
5219         Provide $ddir substitution for --with-auto-load-safe-path.
5220         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
5221         entries.
5222         * auto-load.c: Include observer.h.
5223         (auto_load_safe_path_vec_update): Call substitute_path_component for
5224         each component.  New variable ddir_subst.
5225         (auto_load_gdb_datadir_changed): New function.
5226         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5227         AUTO_LOAD_SAFE_PATH.  New comment.
5228         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5229         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
5230         * config.in: Regenerate.
5231         * configure: Regenerate.
5232         * configure.ac (--auto-load-safe-path): Rename
5233         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
5234         GDB_DATADIR/auto-load.
5235         * defs.h (substitute_path_component): New declaration.
5236         * top.c: Include observer.h.
5237         (set_gdb_datadir): New function.
5238         (init_main): Install it for "set data-directory".
5239         * utils.c (substitute_path_component): New function.
5240
5241 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5242
5243         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
5244         * auto-load.c (auto_load_objfile_script): Remove check for NULL
5245         DEBUG_FILE_DIRECTORY.  Handle multiple components of
5246         DEBUG_FILE_DIRECTORY.
5247
5248 2012-05-10  Tom Tromey  <tromey@redhat.com>
5249
5250         * dwarf2read.c (recursively_write_psymbols): New function.
5251         (write_psymtabs_to_index): Use it.
5252
5253         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
5254         field.
5255         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
5256         (load_partial_comp_unit): Update.
5257         (queue_comp_unit): Add argument 'pretend_language'.
5258         (process_queue): Update.
5259         (psymtab_to_symtab_1): Skip dependencies that have a user.
5260         (load_partial_comp_unit_reader): Give meaning to the 'data'
5261         argument.
5262         (load_full_comp_unit): Add 'pretend_language' argument.
5263         (process_full_comp_unit): Add 'pretend_language' argument.  Set
5264         language on CU.
5265         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
5266         Update.
5267         (maybe_queue_comp_unit): Add 'pretend_language' argument.
5268         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
5269         Update.
5270         (prepare_one_comp_unit): Add 'pretend_language' argument.
5271
5272         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
5273         (struct dwarf2_per_objfile) <just_read_cus>: New field.
5274         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
5275         (dw2_do_instantiate_symtab): Check whether symtab was read in
5276         before queueing.
5277         (dw2_instantiate_symtab): Add assertion.  Call
5278         process_cu_includes.
5279         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
5280         (partial_symtab_p): New typedef.
5281         (set_partial_user): New function.
5282         (dwarf2_build_psymtabs_hard): Use set_partial_user.
5283         (scan_partial_symbols): Add imported CU to imported_symtabs.
5284         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
5285         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
5286         (get_symtab, recursively_compute_inclusions)
5287         (compute_symtab_includes, process_cu_includes)
5288         (process_imported_unit_die): New functions.
5289         (process_die) <DW_TAG_imported_unit>: New case.
5290         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
5291
5292         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
5293         comment.
5294         (struct partial_die_info) <locdesc>: Remove.
5295         <d>: New field.
5296         (process_psymtab_comp_unit): Add 'read_partial' argument.
5297         Update.
5298         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
5299         (scan_partial_symbols): Handle DW_TAG_imported_unit.
5300         (add_partial_symbol): Update.
5301         (process_die): Handle DW_TAG_partial_unit.
5302         (read_file_scope): Update comment.
5303         (load_partial_dies): Handle DW_TAG_imported_unit.
5304         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
5305         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
5306
5307 2012-05-10  Tom Tromey  <tromey@redhat.com>
5308
5309         * cc-with-dwz.sh: New file.
5310
5311 2012-05-10  Tom Tromey  <tromey@redhat.com>
5312
5313         * symtab.h (struct symtab) <includes, user>: New fields.
5314         * block.h (struct block_iterator) <d, idx, which>: New fields.
5315         * block.c (initialize_block_iterator, find_iterator_symtab)
5316         (block_iterator_step, block_iter_name_step)
5317         (block_iter_match_step): New functions.
5318         (block_iterator_first, block_iterator_next)
5319         (block_iter_name_first, block_iter_name_next)
5320         (block_iter_match_first, block_iter_match_next): Rewrite.
5321         (get_block_symtab): New function.
5322
5323 2012-05-10  Tom Tromey  <tromey@redhat.com>
5324
5325         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
5326         set_block_symtab.
5327         * jit.c (finalize_symtab): Use allocate_global_block,
5328         set_block_symtab.
5329         * buildsym.c (finish_block_internal): New function, from old
5330         finish_block.
5331         (finish_block): Rewrite.
5332         (end_symtab): Use finish_block_internal, set_block_symtab.
5333         * block.h (struct global_block): New.
5334         (allocate_global_block, set_block_symtab): Declare.
5335         * block.c (allocate_global_block, set_block_symtab): New
5336         functions.
5337
5338 2012-05-10  Tom Tromey  <tromey@redhat.com>
5339
5340         * psymtab.c (partial_map_expand_apply): Add assertion.
5341         (partial_map_symtabs_matching_filename): Skip included psymtabs.
5342         (psymtab_to_symtab): Find unshared psymtab.
5343         (dump_psymtab): Print including psymtabs.
5344         (recursively_search_psymtabs): New function.
5345         (expand_symtabs_matching_via_partial): Use it.
5346         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
5347         fields.
5348         (enum psymtab_search_status): New.
5349
5350 2012-05-10  Tom Tromey  <tromey@redhat.com>
5351
5352         * tracepoint.c (scope_info): Update.
5353         * symtab.c (lookup_block_symbol, iterate_over_symbols)
5354         (find_pc_sect_symtab, search_symbols)
5355         (default_make_symbol_completion_list_break_on)
5356         (make_file_symbol_completion_list): Update.
5357         * symmisc.c (dump_symtab_1): Update.
5358         * stack.c (print_frame_args, iterate_over_block_locals)
5359         (print_frame_labels, iterate_over_block_arg_vars): Update.
5360         * python/py-block.c (block_object) <dict>: Remove.
5361         <block>: New field.
5362         <iter>: Change type.
5363         (blpy_iter): Update.
5364         (blpy_block_syms_iternext): Update.
5365         * psymtab.c (map_block): Use block iterators.
5366         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
5367         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
5368         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
5369         * infrun.c (check_exception_resume): Update.
5370         * cp-support.c (make_symbol_overload_list_block): Update.
5371         * coffread.c (patch_opaque_types): Update.
5372         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
5373         * block.h (struct block_iterator): New.
5374         (block_iterator_first, block_iterator_next, block_iter_name_first)
5375         (block_iter_name_next, block_iter_match_first)
5376         (block_iter_match_next): Declare.
5377         (ALL_BLOCK_SYMBOLS): Redefine.
5378         * block.c (block_iterator_first, block_iterator_next)
5379         (block_iter_name_first, block_iter_name_next)
5380         (block_iter_match_first, block_iter_match_next): New functions.
5381         * ada-lang.c (ada_add_block_symbols)
5382         (ada_make_symbol_completion_list): Use block iterator.
5383
5384 2012-05-10  Tom Tromey  <tromey@redhat.com>
5385
5386         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
5387         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
5388         (lookup_partial_symbol, find_last_source_symtab_from_partial)
5389         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
5390         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
5391         Update.
5392
5393 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
5394
5395         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
5396         print-file-var-lib2.c, print-file-var-main.c and
5397         print-file-var.exp (located in gdb/testsuite/gdb.base).
5398
5399 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
5400
5401         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5402         try locating the symbol in the symbol's own objfile first, before
5403         extending the search to all objfiles.
5404         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5405         out of lookup_symbol_aux_symtabs.
5406         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5407         Replace extracted-out code by call to lookup_symbol_aux_objfile.
5408         Do not search EXCLUDE_OBJFILE.
5409         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5410         (lookup_symbol_global): Search for matches in the block's objfile
5411         first, before searching all other objfiles.
5412
5413 2012-05-10  Tristan Gingold  <gingold@adacore.com>
5414
5415         * printcmd.c (set_command): Add pre/post inc/dec.
5416
5417 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
5418
5419         * gdb.1: Document -ex option.
5420
5421 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
5422
5423         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
5424         * inferior.h (AT_SYMBOL): Delete.
5425
5426 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
5427
5428         * mips-tdep.c (mips_push_dummy_code): New function.
5429         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
5430         ON_STACK and install mips_push_dummy_code as our gdbarch
5431         push_dummy_code routine.
5432
5433 2012-05-09  Pedro Alves  <palves@redhat.com>
5434
5435         * target.c (set_maintenance_target_async_permitted): Rename to ...
5436         (set_target_async_command): ... this.
5437         (show_maintenance_target_async_permitted): Rename to ...
5438         (show_target_async_command): ... this.
5439         (initialize_targets): Adjust.
5440
5441 2012-05-08  Doug Evans  <dje@google.com>
5442
5443         * go-exp.y (classify_name): Add missing assignment of fields of
5444         yylval.ssym.
5445
5446 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
5447
5448         Display the ">" prompt in interactive mode while reading canned
5449         commands, even when the current interpreter is MI.
5450
5451         * interps.c (interp_set_temp): New function.
5452
5453         * interps.h (interp_set_temp): Add prototype.
5454
5455         * cli/cli-script.c (restore_interp): New cleanup function.
5456         (read_command_lines): Temporarily override the current interpreter
5457         with CLI and arrange for restoring the original one.
5458
5459 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
5460
5461         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
5462
5463 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
5464
5465         * probe.c (parse_probes): Move conditional to check for
5466         debuginfo files from here...
5467         * stap-probe.c (stap_get_probes): ... to here.
5468
5469 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
5470             H.J. Lu  <hongjiu.lu@intel.com>
5471
5472         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
5473         `movl %esp, %ebp' for the X32 ABI.
5474
5475 2012-05-07  Tom Tromey  <tromey@redhat.com>
5476
5477         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
5478         get_DW_TAG_name.
5479         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
5480         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
5481         (dwarf_stack_op_name): Remove.
5482         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
5483         (decode_locdesc): Use get_DW_OP_name.
5484         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
5485         (dwarf2_compile_expr_to_ax): Likewise.
5486         (disassemble_dwarf_expression): Likewise.
5487         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
5488
5489 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
5490
5491         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
5492         (sh_linux_sigtramp_cache): New function.
5493         (sh_linux_sigreturn_init): New function.
5494         (sh_linux_rt_sigreturn_init): New function.
5495         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
5496         patterns.
5497         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
5498         syscall codes.
5499         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
5500         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
5501         (sh_linux_init_abi): Add init calls to register new tramp_frame
5502         definitions under 32-bit SH, update comments.
5503
5504 2012-05-07  Pedro Alves  <palves@redhat.com>
5505
5506         PR gdb/10952
5507
5508         * amd64-linux-tdep.c: Include glibc-tdep.h.
5509         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
5510         gdbarch_skip_solib_resolver callback.
5511
5512 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5513
5514         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
5515         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
5516         (show_auto_load_safe_path): Check any-directory by comparison with "/".
5517         (add_auto_load_safe_path): Change the error message.
5518         (_initialize_auto_load): Change the "safe-path" help text.
5519         * configure: Regenerate
5520         * configure.ac (--without-auto-load-safe-path): Set
5521         WITH_AUTO_LOAD_SAFE_PATH to /.
5522
5523 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
5524
5525         * stap-probe.h: Do not include unecessary `probe.h'.
5526
5527 2012-05-05  Alan Modra  <amodra@gmail.com>
5528
5529         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
5530         bfd_und_section_ptr.
5531         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
5532         and bfd_com_section_ptr.
5533
5534 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
5535
5536         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
5537
5538 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
5539
5540         * windows-nat.h (segment_register_p_ftype): New typedef.
5541         (windows_set_segment_register_p): Add declaration.
5542         * windows-nat.c (segment_register_p): New static global.
5543         (windows_set_segment_register_p): New function.
5544         (do_windows_fetch_inferior_registers): Add special handling
5545         for segment registers.
5546         * amd64-windows-nat.c: #include "amd64-tdep.h".
5547         (amd64_windows_segment_register_p): New function.
5548         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
5549         * i386-windows-nat.c: #include "i386-tdep.h".
5550         (i386_windows_segment_register_p): New function.
5551         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
5552
5553 2012-05-04  Tristan Gingold  <gingold@adacore.com>
5554
5555         * printcmd.c (set_command): Emit a warning if the expression is not
5556         an assignment.
5557
5558 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
5559
5560         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
5561         Make static.
5562
5563 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
5564
5565         * stap-probe.c (stap_is_operator): Change declaration.
5566         (stap_get_opcode): Change return value.
5567         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
5568         `stap_parse_argument_1'.
5569
5570 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
5571
5572         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
5573         debug log.
5574
5575 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
5576
5577         Add two new methods global_block and static_block to gdb.Symtab
5578         objects.
5579         * NEWS (Python scripting): Add entry about the new methods.
5580         * python/py-symtab.c (stpy_global_block): New function which
5581         implements the gdb.Symtab.global_block() method.
5582         (stpy_static_block): New function which implements the
5583         gdb.Symtab.static_block() method.
5584         (symtab_object_methods): Add entries for the two new methods.
5585
5586 2012-05-03  Doug Evans  <dje@google.com>
5587
5588         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
5589         files.
5590
5591 2012-05-03  Yao Qi  <yao@codesourcery.com>
5592
5593         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
5594         space.
5595         (i386_process_record): Ditto.
5596
5597 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
5598
5599         * infcall.c (unwind_on_signal_p): Make static.
5600
5601 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
5602
5603         * sol-thread.c (solaris_pid_to_str): Make static.
5604         (_initialize_sol_thread): Add prototype.
5605
5606 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
5607
5608         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
5609
5610 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
5611
5612         * MAINTAINERS: Remove myself.
5613
5614 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5615
5616         Fix --without-auto-load-safe-path for MS-Windows host platform.
5617         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
5618
5619 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
5620
5621         * gdb_curses.h: Undefine KEY_EVENT before including curses
5622         headers.  Move "#undef MOUSE_MOVED" before any curses header
5623         inclusion.
5624
5625 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
5626
5627         * features/i386/i386-mmx-linux.c: Regenerate.
5628         * features/rs6000/powerpc-32.c: Likewise.
5629         * features/rs6000/powerpc-32l.c: Likewise.
5630         * features/rs6000/powerpc-403.c: Likewise.
5631         * features/rs6000/powerpc-403gc.c: Likewise.
5632         * features/rs6000/powerpc-405.c: Likewise.
5633         * features/rs6000/powerpc-505.c: Likewise.
5634         * features/rs6000/powerpc-601.c: Likewise.
5635         * features/rs6000/powerpc-602.c: Likewise.
5636         * features/rs6000/powerpc-603.c: Likewise.
5637         * features/rs6000/powerpc-604.c: Likewise.
5638         * features/rs6000/powerpc-64.c: Likewise.
5639         * features/rs6000/powerpc-64l.c: Likewise.
5640         * features/rs6000/powerpc-750.c: Likewise.
5641         * features/rs6000/powerpc-860.c: Likewise.
5642         * features/rs6000/powerpc-e500.c: Likewise.
5643         * features/rs6000/powerpc-e500l.c: Likewise.
5644         * features/rs6000/powerpc-isa205-32l.c: Likewise.
5645         * features/rs6000/powerpc-isa205-64l.c: Likewise.
5646         * features/rs6000/rs6000.c: Likewise.
5647
5648 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
5649
5650         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
5651         variable.
5652         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
5653         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
5654         (stap_parse_argument) <e>: Likewise.
5655         (handle_stap_probe) <byte_order>: Likewise.
5656
5657 2012-04-30  Doug Evans  <dje@google.com>
5658
5659         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
5660         init_and_read_dies_worker.  All callers updated.
5661         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
5662         replaced with init_cutu_and_read_dies.
5663         (load_partial_comp_unit): Pass 1 for use_existing_cu.
5664         (find_partial_die): Remove FIXME.  Don't free current CU.
5665
5666 2012-04-30  Sterling Augustine  <saugustine@google.com>
5667
5668         * contrib: New directory.
5669         * contrib/test_pubnames_and_indexes.py: New file.
5670
5671 2012-04-30  Doug Evans  <dje@google.com>
5672
5673         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
5674         All callers updated.
5675         (init_cu_die_reader): Verify the section is non-empty.
5676         (dwarf_decode_line_header): Don't dereference section->asection
5677         until we know the section is present.
5678
5679 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
5680
5681         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
5682         probes.
5683
5684 2012-04-29  Yao Qi  <yao@codesourcery.com>
5685
5686         * gdb-code-style.el: New hook gdb-markup-hook
5687         and gdb-comment-hook.
5688
5689 2012-04-28  Doug Evans  <dje@google.com>
5690
5691         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
5692         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
5693         objfile->obfd.
5694         * symfile.h (dwarf2_debug_sections): New member addr.
5695         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
5696         (ctx_no_get_addr_index): New function.
5697         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
5698         (ctx_no_get_addr_index): Declare.
5699         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
5700         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
5701         (dwarf_expr_ctx_funcs): Update.
5702         (needs_get_addr_index): New function.
5703         (needs_frame_ctx_funcs): Update.
5704         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
5705         * dwarf2read.c: #include "gdbcore.h".
5706         (dwarf2_per_objfile): New members addr, dwo_files.
5707         (dwarf2_elf_names): Add entry for addr.
5708         (struct dwo_section_names): New type.
5709         (dwo_section_names): New static global.
5710         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
5711         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
5712         old debug_types_section member updated to use this.
5713         Rename member debug_types_section to info_or_types_section,
5714         all uses updated.
5715         (signatured_type): Rename member type_offset to type_offset_in_tu,
5716         all uses updated.  New member type_offset_in_section.
5717         (struct dwo_sections): New type.
5718         (struct dwo_unit): New type.
5719         (struct dwo_file): New type.
5720         (die_reader_specs): New member dwo_file.
5721         (dwarf2_locate_sections): Watch for .debug_addr.
5722         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
5723         (dwarf2_read_section): Get bfd of section from bfd's asection,
5724         instead of objfile.
5725         (create_cus_from_index): Initialize the_cu->info_or_types_section.
5726         (create_signatured_type_table_from_index): Initialize
5727         sig_type->info_or_types_section.
5728         (dw2_get_file_names): Statement lists for type units with DWO files
5729         live in the DWO file.
5730         (create_debug_types_hash_table): New function.
5731         (create_all_type_units): Rewrite.
5732         (init_cu_die_reader): New arg dwo_file, all callers updated.
5733         (init_and_read_dies_worker): Get section from
5734         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
5735         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
5736         continue reading the CU/TU from there.
5737         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
5738         updated.  Get section from this_cu->info_or_types_section.
5739         (create_all_comp_units): Initialize this_cu->info_or_types_section.
5740         (skip_one_die): New cases DW_FORM_GNU_addr_index,
5741         DW_FORM_GNU_str_index.
5742         (hash_dwo_file, eq_dwo_file): New functions.
5743         (allocate_dwo_file_hash_table): New function.
5744         (hash_dwo_unit, eq_dwo_unit): New functions.
5745         (allocate_dwo_unit_table): New function.
5746         (dwarf2_locate_dwo_sections): New function.
5747         (struct create_dwo_info_table_data): New type.
5748         (create_debug_info_hash_table_reader): New function.
5749         (create_debug_info_hash_table): New function.
5750         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
5751         (lookup_dwo_file): New function.
5752         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
5753         (free_dwo_file, free_dwo_file_cleanup): New functions.
5754         (free_dwo_file_from_slot, free_dwo_files): New functions.
5755         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
5756         (dwarf2_record_block_ranges): Ditto.
5757         (read_partial_die): Ditto.
5758         (process_enumeration_scope): Update to use type_offset_in_section.
5759         (read_full_die_1): New function.
5760         (read_full_die): Rewrite.
5761         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
5762         DW_FORM_GNU_str_index.
5763         (read_addr_index_1, read_addr_index): New functions.
5764         (read_addr_index_from_leb128): New function.
5765         (struct dwarf2_read_addr_index_data): New type.
5766         (dwarf2_read_addr_index_reader): New function.
5767         (dwarf2_read_addr_index): New function.
5768         (read_str_index): New function.
5769         (leb128_size): New function.
5770         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
5771         If processing a type unit from a DWO file, get the line section
5772         from the DWO file.
5773         (var_decode_location): Watch for DW_OP_GNU_addr_index.
5774         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
5775         DW_FORM_GNU_str_index.
5776         (lookup_die_type): Check whether section offset of type's die is
5777         known before looking it up.  Remove assert.  Condition can
5778         legimately happen for inter-cu type references.
5779         (dwarf_attr_name): Handle Fission attributes.
5780         (dwarf_form_name): Handle Fission forms.
5781         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
5782         DW_FORM_GNU_str_index.
5783         (follow_die_sig): Update to use type_offset_in_section.
5784         (decode_locdesc): New case DW_OP_GNU_addr_index.
5785         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
5786         DW_FORM_GNU_str_index.
5787         (cu_debug_loc_section): New function.
5788         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
5789         (dwarf2_per_objfile_free): Unmap .debug_addr section.
5790         Free DWO files if present.
5791         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
5792
5793         Refactor DIE reading.
5794         * dwarf2read.c (dwarf2_per_objfile): Replace members
5795         debug_info_type_hash and debug_types_type_hash with die_type_hash.
5796         (die_reader_specs): New member "die_section".  Temporarily make
5797         member "buffer" non-const, pending constifying all info_ptr uses.
5798         (die_reader_func_ftype): New typedef.
5799         (dw2_get_file_names_reader): New function.
5800         (dw2_get_file_names): Rewrite.
5801         (read_and_check_type_unit_head): Rename arg type_offset to
5802         type_offset_in_tu.
5803         (create_all_type_units): Improve debugging message.
5804         Improve dummy type unit check.
5805         (init_cu_die_reader): New arg "section".  All callers updated.
5806         (init_and_read_dies_worker): New function.
5807         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
5808         (init_cutu_and_read_dies_no_follow): New function.
5809         (init_cutu_and_read_dies_simple): New function.
5810         (process_psymtab_comp_unit_reader): New function.
5811         (process_psymtab_comp_unit): Delete args section,
5812         is_debug_types_section.  Rewrite.  All callers updated.
5813         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
5814         All callers updated.  Rewrite.
5815         (load_partial_comp_unit_reader): New function.
5816         (load_partial_comp_unit): Rewrite.
5817         (skip_children): New arg reader.  Delete args buffer, cu.
5818         All callers updated.
5819         (skip_one_die): New arg reader.  Delete args buffer, cu.
5820         All callers updated.
5821         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
5822         All callers updated.
5823         (load_full_comp_unit_reader): New function.
5824         (load_full_comp_unit): Rewrite.
5825         (read_comp_unit): Delete.
5826         (read_die_and_children_1): Delete, contents moved ...
5827         (read_die_and_children): ... here.
5828         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
5829         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
5830         All callers updated.
5831         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
5832         All callers updated.
5833         (find_partial_die): Rewrite load_all_dies support.
5834         (read_attribute_value): New arg reader.  Delete args abfd, cu.
5835         All callers updated.
5836         (read_attribute): New arg reader.  Delete args abfd, cu.
5837         All callers updated.
5838         (load_full_type_unit): Add assert.
5839         (read_signatured_type_reader): New function.
5840         (read_signatured_type): Rewrite.
5841         (free_stack_comp_unit): Remove call to age_cached_comp_units.
5842         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
5843         All callers updated.  Set per_cu->cu = NULL after freeing it.
5844         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
5845         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
5846         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
5847         (set_die_type): Update.
5848         (get_die_type_at_offset): Update.
5849         (read_file_scope): Call prepare_one_comp_unit.
5850         (read_type_unit_scope): Ditto.
5851         (prepare_one_comp_unit): Set producer if present.
5852
5853 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
5854
5855         * probe.c (compile_rx_or_error): Silence ARI warning about missing
5856          gettext function on `error'.
5857
5858 2012-04-27  Doug Evans  <dje@google.com>
5859
5860         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
5861         is empty.
5862
5863 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
5864             Tom Tromey  <tromey@redhat.com>
5865
5866         * breakpoint.c (struct breakpoint_objfile_data)
5867         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
5868         <exception_probes>: New fields.
5869         (free_breakpoint_probes): New function.
5870         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
5871         `_Unwind_DebugHook'.
5872         (create_exception_master_breakpoint): Likewise.
5873         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
5874         * infrun.c: Including necessary header files for handling SystemTap
5875         probes.
5876         (handle_inferior_event): Handling longjmp breakpoint and exceptions
5877         via SystemTap probes.
5878         (check_exception_resume): Remove `func' argument.  Handle exception
5879         unwinding breakpoint set via a SystemTap probe.
5880         (insert_exception_resume_from_probe): New function.
5881
5882 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
5883             Tom Tromey  <tromey@redhat.com>
5884             Jan Kratochvil  <jan.kratochvil@redhat.com>
5885
5886         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
5887         (COMMON_OBS): Likewise.
5888         (HFILES_NO_SRCDIR): Add `probe'.
5889         * NEWS: Mention support for static and SystemTap probes.
5890         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
5891         SystemTap probes' arguments parser.
5892         * arm-linux-tdep.c: Including headers needed to perform the parsing
5893         of SystemTap probes' arguments.
5894         (arm_stap_is_single_operand): New function.
5895         (arm_stap_parse_special_token): Likewise.
5896         (arm_linux_init_abi): Initializing proper fields used by SystemTap
5897         probes' arguments parser.
5898         * ax-gdb.c (require_rvalue): Removing static declaration.
5899         (gen_expr): Likewise.
5900         * ax-gdb.h (gen_expr): Declaring function.
5901         (require_rvalue): Likewise.
5902         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
5903         (bkpt_probe_breakpoint_ops): New variable.
5904         (momentary_breakpoint_from_master): Set the `probe' value.
5905         (add_location_to_breakpoint): Likewise.
5906         (break_command_1): Using proper breakpoint_ops according to the
5907         argument passed by the user in the command line.
5908         (bkpt_probe_insert_location): New function.
5909         (bkpt_probe_remove_location): Likewise.
5910         (bkpt_probe_create_sals_from_address): Likewise.
5911         (bkpt_probe_decode_linespec): Likewise.
5912         (tracepoint_probe_create_sals_from_address): Likewise.
5913         (tracepoint_probe_decode_linespec): Likewise.
5914         (tracepoint_probe_breakpoint_ops): New variable.
5915         (trace_command): Using proper breakpoint_ops according to the
5916         argument passed by the user in the command line.
5917         (initialize_breakpoint_ops): Initializing breakpoint_ops for
5918         static probes on breakpoints and tracepoints.
5919         * breakpoint.h (struct bp_location) <probe>: New field.
5920         * cli-utils.c (skip_spaces_const): New function.
5921         (extract_arg): Likewise.
5922         * cli-utils.h (skip_spaces_const): Likewise.
5923         (extract_arg): Likewise.
5924         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
5925         * configure.ac: Append `stap-probe.o' to be generated when ELF
5926         support is present.
5927         * configure: Regenerate.
5928         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
5929         * elfread.c: Include `probe.h' and `arch-utils.h'.
5930         (probe_key): New variable.
5931         (elf_get_probes): New function.
5932         (elf_get_probe_argument_count): Likewise.
5933         (elf_evaluate_probe_argument): Likewise.
5934         (elf_compile_to_ax): Likewise.
5935         (elf_symfile_relocate_probe): Likewise.
5936         (stap_probe_key_free): Likewise.
5937         (elf_probe_fns): New variable.
5938         (elf_sym_fns): Add `sym_probe_fns' value.
5939         (elf_sym_fns_lazy_psyms): Likewise.
5940         (elf_sym_fns_gdb_index): Likewise.
5941         (_initialize_elfread): Initialize objfile cache for static
5942         probes.
5943         * gdb_vecs.h (struct probe): New forward declaration.
5944         (probe_p): New VEC declaration.
5945         * gdbarch.c: Regenerate.
5946         * gdbarch.h: Regenerate.
5947         * gdbarch.sh (stap_integer_prefix): New variable.
5948         (stap_integer_suffix): Likewise.
5949         (stap_register_prefix): Likewise.
5950         (stap_register_suffix): Likewise.
5951         (stap_register_indirection_prefix): Likewise.
5952         (stap_register_indirection_suffix): Likewise.
5953         (stap_gdb_register_prefix): Likewise.
5954         (stap_gdb_register_suffix): Likewise.
5955         (stap_is_single_operand): New function.
5956         (stap_parse_special_token): Likewise.
5957         (struct stap_parse_info): Forward declaration.
5958         * i386-tdep.c: Including headers needed to perform the parsing
5959         of SystemTap probes' arguments.
5960         (i386_stap_is_single_operand): New function.
5961         (i386_stap_parse_special_token): Likewise.
5962         (i386_elf_init_abi): Initializing proper fields used by SystemTap
5963         probes' arguments parser.
5964         * i386-tdep.h (i386_stap_is_single_operand): New function.
5965         (i386_stap_parse_special_token): Likewise.
5966         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
5967         * mipsread.c (ecoff_sym_fns): Likewise.
5968         * objfiles.c (objfile_relocate1): Support relocation for static
5969         probes.
5970         * parse.c (prefixify_expression): Remove static declaration.
5971         (initialize_expout): Likewise.
5972         (reallocate_expout): Likewise.
5973         * parser-defs.h (initialize_expout): Declare function.
5974         (reallocate_expout): Likewise.
5975         (prefixify_expression): Likewise.
5976         * ppc-linux-tdep.c: Including headers needed to perform the parsing
5977         of SystemTap probes' arguments.
5978         (ppc_stap_is_single_operand): New function.
5979         (ppc_stap_parse_special_token): Likewise.
5980         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
5981         probes' arguments parser.
5982         * probe.c: New file, for generic statically defined probe support.
5983         * probe.h: Likewise.
5984         * s390-tdep.c: Including headers needed to perform the parsing of
5985         SystemTap probes' arguments.
5986         (s390_stap_is_single_operand): New function.
5987         (s390_gdbarch_init): Initializing proper fields used by SystemTap
5988         probes' arguments parser.
5989         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
5990         * stap-probe.c: New file, for SystemTap probe support.
5991         * stap-probe.h: Likewise.
5992         * symfile.h: Include `gdb_vecs.h'.
5993         (struct sym_probe_fns): New struct.
5994         (struct sym_fns) <sym_probe_fns>: New field.
5995         * symtab.c (init_sal): Initialize `probe' field.
5996         * symtab.h (struct probe): Forward declaration.
5997         (struct symtab_and_line) <probe>: New field.
5998         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
5999         locations.
6000         (stop_tracing): Likewise.
6001         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
6002
6003 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
6004             Tom Tromey  <tromey@redhat.com>
6005
6006         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
6007         and to compile agent expressions.
6008         * infrun.c (siginfo_make_value): New argument `ignore'.
6009         (siginfo_funcs): New struct.
6010         (_initialize_infrun): New argument when calling
6011         `create_internalvar_type_lazy'.
6012         * thread.c (thread_id_make_value): New argument `ignore'.
6013         (thread_funcs): New struct.
6014         (_initialize_thread): New argument when calling
6015         `create_internalvar_type_lazy'.
6016         * tracepoint.c (sdata_make_value): New argument `ignore'.
6017         (sdata_funcs): New struct.
6018         (_initialize_tracepoint): New argument when calling
6019         `create_internalvar_type_lazy'.
6020         * value.c (make_value): New struct.
6021         (create_internalvar_type_lazy): New argument `data'.
6022         (compile_internalvar_to_ax): New function.
6023         (value_of_internalvar): Properly handling `make_value' case.
6024         (clear_internalvar): Likewise.
6025         (show_convenience): Adding `TRY_CATCH' block.
6026         * value.h (internalvar_make_value): Delete, replace by...
6027         (struct internalvar_funcs): ... this.
6028         (create_internalvar_type_lazy) <fun>: Delete argument.
6029         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
6030         (compile_internalvar_to_ax): New function.
6031         * windows-tdep.c (tlb_make_value): New argument `ignore'.
6032         (tlb_funcs): New struct.
6033         (_initialize_windows_tdep): New argument when calling
6034         `create_internalvar_type_lazy'.
6035
6036 2012-04-27  Mark Wielaard  <mjw@redhat.com>
6037
6038         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
6039         see whether it is an address or a constant offset from DW_AT_low_pc.
6040         (dwarf2_record_block_ranges): Likewise.
6041         (read_partial_die): Likewise.
6042
6043 2012-04-26  Mark Wielaard  <mjw@redhat.com>
6044
6045         * MAINTAINERS (Write After Approval): Add myself to the list.
6046
6047 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
6048
6049         * proc-utils.h (proc_prettyprint_signalset): New prototype.
6050         (proc_prettyprint_signal): Likewise.
6051         (proc_prettyprint_faultset): Likewise.
6052         (proc_prettyprint_fault): Likewise.
6053         (proc_prettyprint_actionset): Likewise.
6054         (proc_prettyprint_flags): Move to new proc-flags.c section.
6055         (proc_prettyfprint_flags): New prototype.
6056         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
6057         (proc_syscall, proc_cursig): Likewise.
6058         (proc_set_kill_on_last_close): Likewise.
6059         (proc_unset_kill_on_last_close): Likewise.
6060         (proc_set_watchpoint): Make static.
6061         (proc_delete_dead_threads): Likewise.
6062         (procfs_set_watchpoint): Likewise.
6063         (_initialize_procfs): Add prototype.
6064         * proc-events.c: Include proc-utils.h.
6065         (init_syscall_table): Make static.
6066         * proc-api.c (_initialize_proc_api): Add prototype.
6067         * proc-flags.c: Include proc-utils.h.
6068
6069 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
6070
6071         * configure.ac: Add AC_ARG_PROGRAM.
6072         * configure: Regenerate.
6073
6074 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6075
6076         Fix DW_AT_lower_bound defaults for DWARF-4+.
6077         * dwarf2read.c (read_subrange_type): Remove initialization of low and
6078         high.  New variable low_default_is_valid.  Implement DWARF-4+
6079         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
6080         no default by the DWARF standard.
6081
6082 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
6083             Maciej W. Rozycki  <macro@codesourcery.com>
6084
6085         * infrun.c (handle_inferior_event): Move the check for return
6086         trampolines ahead of the check for function trampolines.
6087         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
6088         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
6089         (mips_str_mips16_ret_stub): Likewise.
6090         (mips_str_call_fp_stub): Likewise.
6091         (mips_str_call_stub): Likewise.
6092         (mips_str_fn_stub): Likewise.
6093         (mips_str_pic): Likewise.
6094         (mips_in_frame_stub): New function.
6095         (mips_unwind_pc): Return the return address rather than the PC
6096         if the PC of an intermediate frame is inside a call thunk.
6097         (mips_is_stub_suffix): New function.
6098         (mips_is_stub_mode): Likewise.
6099         (mips_get_mips16_fn_stub_pc): Likewise.
6100         (mips_skip_mips16_trampoline_code): Update to handle all the
6101         currently generated stub types.  Don't recurse into __fn_stub
6102         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
6103         Use cooked register accesses.
6104         (mips_in_return_stub): Reintroduce function.
6105         (mips_skip_trampoline_code): Traverse trampolines recursively.
6106         (mips_gdbarch_init): Handle MIPS16 return trampolines.
6107
6108 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
6109
6110         GDB 7.4.1 released.
6111
6112 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
6113
6114         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
6115         * features/arm-with-m-vfp-d16.xml: New file. Describes
6116         Cortex-M with VFPv4-sp-d16 FPU register layout.
6117         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
6118         * features/arm-with-m-vfp-d16.c: New. Generated from above.
6119         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
6120         (arm-register_g_packet_guesses): Add vfp-d16 guess.
6121         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
6122
6123 2012-04-25  Doug Evans  <dje@google.com>
6124
6125         * cli/cli-decode.c (print_doc_line): Use stream instead of
6126         current_uiout.
6127
6128 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
6129
6130         * features/arm-with-iwmmxt.c: Regenerate.
6131         * features/arm-with-m-fpa-layout.c: Likewise.
6132         * features/arm-with-m.c: Likewise.
6133         * features/arm-with-neon.c: Likewise.
6134         * features/arm-with-vfpv2.c: Likewise.
6135         * features/arm-with-vfpv3.c: Likewise.
6136         * features/mips-dsp-linux.c: Likewise.
6137         * features/mips-linux.c: Likewise.
6138         * features/mips64-dsp-linux.c: Likewise.
6139         * features/mips64-linux.c: Likewise.
6140         * features/s390-linux32.c: Likewise.
6141         * features/s390-linux32v1.c: Likewise.
6142         * features/s390-linux32v2.c: Likewise.
6143         * features/s390-linux64.c: Likewise.
6144         * features/s390-linux64v1.c: Likewise.
6145         * features/s390-linux64v2.c: Likewise.
6146         * features/s390x-linux64.c: Likewise.
6147         * features/s390x-linux64v1.c: Likewise.
6148         * features/s390x-linux64v2.c: Likewise.
6149         * features/tic6x-c62x-linux.c: Likewise.
6150         * features/tic6x-c62x.c: Likewise.
6151         * features/tic6x-c64x-linux.c: Likewise.
6152         * features/tic6x-c64x.c: Likewise.
6153         * features/tic6x-c64xp-linux.c: Likewise.
6154         * features/tic6x-c64xp.c: Likewise.
6155         * target-descriptions.c: Only generate `field_type' and `type'
6156         variables when needed.
6157
6158 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
6159
6160         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
6161
6162 2012-04-25  Doug Evans  <dje@google.com>
6163
6164         Initial pass at Go language support.
6165         * NEWS: Mention Go.
6166         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
6167         go-valprint.c.
6168         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
6169         (YYFILES): Add go-exp.c.
6170         (YYOBJ): Add go-exp.o.
6171         (local-maintainer-clean): Delete go-exp.c.
6172         * defs.h (enum language): Add language_go.
6173         * dwarf2read.c: #include "go-lang.h".
6174         (fixup_go_packaging): New function.
6175         (process_full_comp_unit): Call it when processing Go CUs.
6176         (dwarf2_physname): Add Go support.
6177         (read_file_scope): Handle missing language spec for GNU Go.
6178         (set_cu_language): Handle DW_LANG_Go.
6179         * go-exp.y: New file.
6180         * go-lang.h: New file.
6181         * go-lang.c: New file.
6182         * go-typeprint.c: New file.
6183         * go-valprint.c: New file.
6184         * symtab.c: #include "go-lang.h".
6185         (symbol_set_language): Handle language_go.
6186         (symbol_find_demangled_name, symbol_set_names): Ditto.
6187         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
6188
6189 2012-04-24  Jim Meyering  <meyering@redhat.com>
6190
6191         avoid a few strncpy-induced buffer overruns
6192         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
6193         fname and psargs before trying to concatenate.
6194         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
6195         "name" before applying strchr.
6196
6197 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
6198
6199         * CONTRIBUTE: Use unified diff instead of context diff when
6200         generating patches.
6201
6202 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
6203
6204         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
6205         code.  Handle JR.HB correctly.
6206
6207 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
6208
6209         * mips-tdep.c
6210         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
6211         with the other MIPS16 helpers.
6212
6213 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
6214
6215         * observer.sh: Conditionally declare `args', thus cleaning up
6216         unused instances of this variable.
6217
6218 2012-04-24  Yao Qi  <yao@codesourcery.com>
6219
6220         Revert this patch to allow breakpoint always-inserted
6221         in record target.
6222         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
6223         * breakpoint.c: Include record.h.
6224         (breakpoints_always_inserted_mode): Return false when the record
6225         target is in use.
6226
6227         * breakpoint.c (iterate_over_bp_locations): New.
6228         * breakpoint.h: Declare.
6229         New typedef walk_bp_location_callback.
6230         * record.c (record_open): Call record_init_record_breakpoints.
6231         (record_sync_record_breakpoints): New.
6232         (record_init_record_breakpoints): New.
6233         * NEWS: Mention supporting breakpoint always-inserted mode in
6234         record target.
6235
6236 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
6237
6238         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
6239         any thread.
6240
6241 2012-04-24  Yao Qi  <yao@codesourcery.com>
6242
6243         * breakpoint.c (ep_is_catchpoint): Renamed to ...
6244         (is_catchpoint): ... it.
6245         (print_one_breakpoint_location): Caller update.
6246         * breakpoint.h: Update declaration.
6247
6248 2012-04-23  David S. Miller  <davem@davemloft.net>
6249
6250         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
6251
6252 2012-04-23  Tom Tromey  <tromey@redhat.com>
6253
6254         * buildsym.c (add_free_pendings): Remove.
6255         * buildsym.h (add_free_pendings): Remove.
6256
6257 2012-04-23  Doug Evans  <dje@google.com>
6258
6259         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
6260         attr.u.unsnd instead of attr.u.addr.
6261         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
6262         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
6263         DW_FORM_ref_udata.
6264         (dump_die_shallow): Update cases DW_FORM_ref_addr,
6265         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
6266         DW_FORM_ref_udata.
6267         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
6268
6269 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
6270
6271         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
6272         (mips_o32_return_value): Likewise.
6273         (mips_o64_return_value): Likewise.
6274
6275 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
6276
6277         * ada-lang.c (ada_evaluate_subexp): Add cases for
6278         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
6279         their treatment in eval.c.
6280
6281 2012-04-21  David S. Miller  <davem@davemloft.net>
6282
6283         * sparc-tdep.c (X_DISP10): Define.
6284         (sparc_analyze_control_transfer): Handle compare-and-branch.
6285
6286 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
6287
6288         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
6289         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
6290
6291 2012-04-20  Nigel Stephens  <nigel@mips.com>
6292             Maciej W. Rozycki  <macro@codesourcery.com>
6293
6294         * mips-tdep.c (mips_float_register_p): New function.
6295         (mips_convert_register_float_case_p): Use mips_float_register_p.
6296         (mips_register_type): Likewise.
6297         (mips_print_register): Likewise.
6298         (print_gp_register_row): Likewise.
6299         (mips_print_registers_info): Likewise.
6300
6301 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
6302
6303         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
6304         of mips16 symbols.
6305
6306 2012-04-20  Andrew Pinski  <apinski@cavium.com>
6307
6308         * MAINTAINERS (Write After Approval): Add myself to the list.
6309
6310 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
6311
6312         * MAINTAINERS: Update my e-mail address.
6313
6314 2012-04-20  Pedro Alves  <palves@redhat.com>
6315
6316         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
6317         $srcdir.
6318         * configure: Regenerate.
6319
6320 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
6321
6322         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
6323         declaration.
6324         * gdb_vecs.h: Declare `const_char_ptr' VEC.
6325
6326 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
6327
6328         Fix compilation compatibility with python-2.4
6329         * python/py-type.c (convert_field): Cast ADDRSTRING for
6330         PyObject_SetAttrString as non-const.  New comment.
6331
6332 2012-04-19  Tom Tromey  <tromey@redhat.com>
6333
6334         * top.c (quit_target): Use all_cleanups.
6335         * main.c (captured_command_loop): Use all_cleanups.
6336         * exceptions.c (throw_exception): Use all_cleanups.
6337
6338 2012-04-19  Pedro Alves  <palves@redhat.com>
6339
6340         * Makefile.in (GNULIB_BUILDDIR): New.
6341         (LIBGNU, INCGNU, GNULIB_H): Adjust.
6342         (SUBDIRS): Add $(GNULIB_BUILDDIR).
6343         (CLEANDIRS). Remove gnulib/import.
6344         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
6345         (all-lib): Ditto.
6346         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
6347         (gnulib/import/Makefile): Replace gnulib/import with
6348         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
6349         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
6350         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
6351         acx_configure_dir.m4.
6352         * acinclude.m4: Include acx_configure_dir.m4.
6353         * acx_configure_dir.m4: New file.
6354         * aclocal.m4: Regenerate.
6355         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
6356         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
6357         (GNULIB): New variable.
6358         (GNULIB_STDINT_H): Adjust.
6359         (AC_OUTPUT): Don't output gnulib/Makefile.
6360         * gdb/defs.h: Include build-gnulib/config.h.
6361         * aclocal.m4: Regenerate.
6362         * config.in: Regenerate.
6363         * configure: Regenerate.
6364
6365         * gnulib/Makefile.in: New file.
6366         * gnulib/configure.ac: New file.
6367         * gnulib/aclocal.m4: New file.
6368         * gnulib/config.in: New file.
6369         * gnulib/configure: New file.
6370         * gnulib/: Re-run gnulib-tool to adjust.
6371
6372 2012-04-19  Doug Evans  <dje@google.com>
6373
6374         * cleanups.h (struct cleanup): Move to cleanups.c.
6375         (make_cleanup_dtor_ftype): New typedef.
6376         (make_cleanup_dtor): Use it.
6377         (ALL_CLEANUPS): Replace with ...
6378         (all_cleanups): ... this.  Declare.  All uses updated.
6379         * cleanups.c: #include "gdb_assert.h".
6380         (sentinel_cleanup): New static global.
6381         (SENTINEL_CLEANUP): Define.
6382         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
6383         (make_my_cleanup2): Assert result is non-NULL.
6384         (all_cleanups): New function.
6385         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
6386         of NULL.
6387
6388 2012-04-19  Pedro Alves  <palves@redhat.com>
6389
6390         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
6391         Adjust paths to gnulib imported files.
6392
6393 2012-04-19  Pedro Alves  <palves@redhat.com>
6394
6395         * gnulib/: Move whole directory ...
6396         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
6397         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
6398         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
6399         (aclocal_m4_deps): Adjust.
6400         * aclocal.m4: Regenerate.
6401         * configure: Regenerate.
6402         * configure.ac: Adjust AC_OUTPUT output.
6403
6404 2012-04-19  Yao Qi  <yao@codesourcery.com>
6405
6406         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
6407         (vec.o): New rule.
6408         * vec.c: Move it ...
6409         * common/vec.c: ... here.
6410         * vec.h: Move it ...
6411         * common/vec.h: ... here.
6412
6413 2012-04-19  Yao Qi  <yao@codesourcery.com>
6414
6415         * gdb-code-style.el: New.
6416
6417 2012-04-18  Pedro Alves  <palves@redhat.com>
6418
6419         Update gnulib from latest git.
6420         (639ea5ae15e39fe48d43e04864b2997301e4b969)
6421
6422         * gnulib/Makefile.am: Update.
6423         * gnulib/dummy.c: Update.
6424         * gnulib/extra/arg-nonnull.h: Update.
6425         * gnulib/extra/c++defs.h: Update.
6426         * gnulib/extra/update-copyright: Update.
6427         * gnulib/extra/warn-on-use.h: Update.
6428         * gnulib/inttypes.in.h: Update.
6429         * gnulib/m4/00gnulib.m4: Update.
6430         * gnulib/m4/extensions.m4: Update.
6431         * gnulib/m4/gnulib-cache.m4: Update.
6432         * gnulib/m4/gnulib-common.m4: Update.
6433         * gnulib/m4/gnulib-comp.m4: Update.
6434         * gnulib/m4/gnulib-tool.m4: Update.
6435         * gnulib/m4/include_next.m4: Update.
6436         * gnulib/m4/inttypes-pri.m4: Update.
6437         * gnulib/m4/inttypes.m4: Update.
6438         * gnulib/m4/longlong.m4: Update.
6439         * gnulib/m4/memchr.m4: Update.
6440         * gnulib/m4/memmem.m4: Update.
6441         * gnulib/m4/mmap-anon.m4: Update.
6442         * gnulib/m4/multiarch.m4: Update.
6443         * gnulib/m4/onceonly.m4: Update.
6444         * gnulib/m4/stddef_h.m4: Update.
6445         * gnulib/m4/stdint.m4: Update.
6446         * gnulib/m4/string_h.m4: Update.
6447         * gnulib/m4/warn-on-use.m4: Update.
6448         * gnulib/m4/wchar_h.m4: Update.
6449         * gnulib/m4/wchar_t.m4: Update.
6450         * gnulib/m4/wint_t.m4: Update.
6451         * gnulib/memchr.c: Update.
6452         * gnulib/memmem.c: Update.
6453         * gnulib/stddef.in.h: Update.
6454         * gnulib/stdint.in.h: Update.
6455         * gnulib/str-two-way.h: Update.
6456         * gnulib/string.in.h: Update.
6457         * gnulib/wchar.in.h: Update.
6458
6459         * gnulib/extra/arg-nonnull.h: Delete.
6460         * gnulib/extra/c++defs.h: Delete.
6461         * gnulib/extra/warn-on-use.h: Delete.
6462         * gnulib/m4/wchar_h.m4: Delete.
6463         * gnulib/m4/wint_t.m4: Delete.
6464         * gnulib/wchar.in.h: Delete.
6465
6466         * gnulib/extra/snippets/arg-nonnull.h: New.
6467         * gnulib/extra/snippets/c++defs.h: New.
6468         * gnulib/extra/snippets/warn-on-use.h: New.
6469
6470         * aclocal.m4: Regenerate.
6471         * config.in: Regenerate.
6472         * configure: Regenerate.
6473         * gnulib/Makefile.in: Regenerate.
6474
6475 2012-04-18  Pedro Alves  <palves@redhat.com>
6476
6477         Reimport the update-copyright module from gnulib
6478         (250b80067c1e1d8faa0c42fb572f721975b929c5).
6479
6480         * configure: Regenerate.
6481         * gnulib/Makefile.am: Update.
6482         * gnulib/Makefile.in: Regenerate.
6483         * gnulib/extra/update-copyright: Update.
6484         * gnulib/m4/gnulib-cache.m4: Update.
6485         * gnulib/m4/gnulib-comp.m4: Update.
6486
6487 2012-04-18  Tristan Gingold  <gingold@adacore.com>
6488
6489         * configure.ac (aix): Put -lpthread into libs.
6490         * configure: Regenerate.
6491
6492 2012-04-18  Tom Tromey  <tromey@redhat.com>
6493
6494         * linespec.c (convert_linespec_to_sals): Don't use
6495         SYMBOL_OBJ_SECTION.
6496         (compare_msymbols): Arguments are minsym_and_objfile, not
6497         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
6498
6499 2012-04-18  Pedro Alves  <palves@redhat.com>
6500
6501         Revert gnulib/ part of:
6502         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
6503         Copyright year update in most files (performed by copyright.sh).
6504
6505 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6506
6507         Fix 64-bit constants on 32-bit hosts.
6508         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
6509         from unsigned long to ULONGEST.
6510         (read_signed_leb128): Change declaration return type from long to
6511         LONGEST.
6512         (dwarf2_const_value_attr): Change declaration parameter value from long
6513         to LONGEST.
6514         (dwarf2_compute_name): Change variable value from long to LONGEST.
6515         (read_unsigned_leb128): Change return type, variable result and some
6516         casts from unsigned long to ULONGEST.
6517         (read_signed_leb128): Change return type, variable result and some
6518         casts from long to LONGEST.
6519         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
6520         value from long to LONGEST.
6521         (dwarf2_const_value): Change variable value from long to LONGEST.
6522         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
6523         plongest and hex_string.
6524         * symtab.h (struct general_symbol_info): Change ivalue from long to
6525         LONGEST, remove the comment.
6526         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
6527         Change SYMBOL_VALUE format strings to use plongest and hex_string.
6528
6529 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
6530
6531         PR symtab/7259:
6532         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
6533         * ada-lang.c (ada_discrete_type_high_bound)
6534         (ada_discrete_type_low_bound): Fix function comment.  Use
6535         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6536         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
6537         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6538         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
6539         Use TYPE_FIELD_ENUMVAL.
6540         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
6541         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6542         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
6543         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
6544         TYPE_CODE_ENUM.
6545         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
6546         * dwarf2read.c (process_enumeration_scope): Likewise.
6547         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
6548         field.bitpos.
6549         (class StructMainTypePrettyPrinter): Support also
6550         FIELD_LOC_KIND_ENUMVAL.
6551         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
6552         TYPE_CODE_ENUM.
6553         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6554         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
6555         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
6556         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
6557         field enumval.
6558         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
6559         accommodate enumval.
6560         (struct call_site): Adjust loc_kind to accommodate enumval.
6561         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
6562         (TYPE_FIELD_ENUMVAL): New macros.
6563         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
6564         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
6565         TYPE_CODE_ENUM.
6566         * p-typeprint.c (pascal_type_print_base): Likewise.
6567         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
6568         enumval.
6569         * python/lib/gdb/types.py (make_enum_dict): Likewise.
6570         * python/py-type.c (convert_field): New variable addrstring.  Use
6571         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6572         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
6573         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
6574         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
6575         TYPE_CODE_ENUM.
6576         * valprint.c (generic_val_print): Likewise.
6577
6578 2012-04-17  Doug Evans  <dje@google.com>
6579
6580         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
6581
6582         * dwarf2read.c: Whitespace fixes.
6583         (lookup_signatured_type): Tweak comment.
6584         (get_die_type_at_offset): Fix comment.
6585
6586 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
6587
6588         * xcoffread.c (xcoff_secnum_to_sections): New function.
6589         (secnum_to_section, secnum_to_bfd_section): Reimplement
6590         using xcoff_secnum_to_sections.  Rename "secnum" parameter
6591         into "n_scnum".
6592         (RECORD_MINIMAL_SYMBOL): Delete.
6593         (record_minimal_symbol): New function.
6594         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
6595         by call to record_minimal_symbol and set misc_func_recorded
6596         to 1.  Set last_csect_sec to the XCOFF section index instead
6597         of GDB's section_offset index.  Update calls to
6598         prim_record_minimal_symbol_and_info to pass the BFD section
6599         as well.
6600
6601 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
6602
6603         * xcoffread.c (read_xcoff_symtab): Delete variables
6604         last_csect_val and last_csect_sec and associated code.
6605
6606 2012-04-17  Doug Evans  <dje@google.com>
6607
6608         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
6609         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6610         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
6611         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
6612
6613         * cleanups.h: New file.
6614         * cleanups.c: New file.
6615         * Makefile.in (SFILES): Add cleanups.c.
6616         (HFILES_NO_SRCDIR): Add cleanups.h.
6617         (COMMON_OBS): Add cleanups.o.
6618         * defs.h (struct cleanup): Moved to cleanups.h.
6619         (do_cleanups,do_final_cleanups): Ditto.
6620         (discard_cleanups,discard_final_cleanups): Ditto
6621         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
6622         (save_cleanups,save_final_cleanups): Ditto.
6623         (restore_cleanups,restore_final_cleanups): Ditto.
6624         (null_cleanup): Ditto.
6625         (make_my_cleanup,make_my_cleanup2): Ditto.
6626         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6627         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
6628         (do_cleanups,do_final_cleanups): Ditto.
6629         (discard_cleanups,discard_final_cleanups): Ditto
6630         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
6631         (save_cleanups,save_final_cleanups): Ditto.
6632         (restore_cleanups,restore_final_cleanups): Ditto.
6633         (null_cleanup): Ditto.
6634         (make_my_cleanup,make_my_cleanup2): Ditto.
6635         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6636
6637         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
6638         make_my_cleanup.
6639         (make_cleanup_dyn_string_delete): Ditto.
6640         (make_cleanup_ui_file_delete): Ditto.
6641         (make_cleanup_ui_out_redirect_pop): Ditto.
6642         (make_cleanup_free_section_addr_info): Ditto.
6643         (make_cleanup_restore_integer): Ditto.
6644         (make_cleanup_unpush_target): Ditto.
6645         (make_cleanup_value_free_to_mark): Ditto.
6646         (make_cleanup_value_free): Ditto.
6647         (make_cleanup_free_so): Ditto.
6648
6649 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6650
6651         New option "set debug auto-load".
6652         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
6653         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
6654         (auto_load_safe_path_vec_update)
6655         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
6656         if DEBUG_AUTO_LOAD.
6657         (file_is_auto_load_safe): New parameters debug_fmt and ....
6658         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
6659         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
6660         caller by explanatory string.
6661         (_initialize_auto_load): Register "set debug auto-load".
6662         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
6663         and ....
6664         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
6665         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
6666         by explanatory string.
6667         * main.c (captured_main): Likewise.
6668         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
6669         (source_section_scripts): Likewise.
6670
6671 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6672
6673         New option "set auto-load safe-path".
6674         * NEWS: New commands "set auto-load safe-path"
6675         and "show auto-load safe-path".
6676         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
6677         (auto_load_safe_path, auto_load_safe_path_vec)
6678         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
6679         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
6680         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
6681         (source_gdb_script_for_objfile): New variable is_safe.  Call
6682         file_is_auto_load_safe.  Return if it is not.
6683         (struct loaded_script): New field loaded.
6684         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
6685         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
6686         output "Missing" to "No".
6687         (_initialize_auto_load): New variable cmd.  Initialize
6688         auto_load_safe_path.  Register "set auto-load safe-path",
6689         "show auto-load safe-path" and "add-auto-load-safe-path".
6690         * auto-load.h (maybe_add_script): Add parameter loaded.
6691         (file_is_auto_load_safe): New declaration.
6692         * config.in: Regenerate.
6693         * configure: Regenerate.
6694         * configure.ac: New parameters --with-auto-load-safe-path
6695         and --without-auto-load-safe-path.
6696         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
6697         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
6698         * main.c (captured_main): Check file_is_auto_load_safe for
6699         LOCAL_GDBINIT.
6700         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
6701         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
6702         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
6703         not.
6704
6705 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6706
6707         auto-load: Implementation.
6708         * NEWS: New descriptions for "info auto-load",
6709         "info auto-load gdb-scripts", "info auto-load python-scripts",
6710         "info auto-load local-gdbinit" and "info auto-load libthread-db".
6711         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
6712         and "show auto-load-scripts".  New description for "set auto-load",
6713         "show auto-load", "set auto-load gdb-scripts",
6714         "show auto-load gdb-scripts", "set auto-load python-scripts",
6715         "show auto-load python-scripts", "set auto-load local-gdbinit",
6716         "show auto-load local-gdbinit", "set auto-load libthread-db" and
6717         "show auto-load libthread-db".
6718         * auto-load.c: Remove include python/python-internal.h.  Add includes
6719         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
6720         cli/cli-setshow.h.
6721         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
6722         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
6723         (gdbpy_global_auto_load): Rename to ...
6724         (global_auto_load): ... here.
6725         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
6726         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
6727         (script_language_gdb, source_gdb_script_for_objfile): New.
6728         (struct loaded_script): New field language.
6729         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
6730         LANGUAGE.
6731         (maybe_add_script): Add parameter language.  Drop redundant
6732         entry.full_path initialization.  Initialize entry.language and
6733         (*slot)->language.
6734         (auto_load_objfile_script): Change parameter suffix to language.
6735         Remove the call of maybe_add_script.
6736         Call language->source_script_for_objfile.
6737         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
6738         New.
6739         (collect_matching_scripts): Adjust it for
6740         struct collect_matching_scripts_data.
6741         (auto_load_info_scripts_pattern_nl): New variable.
6742         (info_auto_load_scripts): Rename to ...
6743         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
6744         for struct collect_matching_scripts_data.
6745         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
6746         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
6747         (auto_load_show_cmdlist_get, info_auto_load_cmd)
6748         (auto_load_info_cmdlist_get): New.
6749         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
6750         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
6751         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
6752         "info auto-load local-gdbinit".
6753         * auto-load.h (struct script_language): New.
6754         (gdbpy_global_auto_load): Rename to ...
6755         (global_auto_load): ... here.
6756         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
6757         (auto_load_local_gdbinit_loaded): New declarations.
6758         (maybe_add_script): New parameter language.
6759         (auto_load_objfile_script): Change parameter suffix to language.
6760         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
6761         (auto_load_info_scripts, auto_load_set_cmdlist_get)
6762         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
6763         declarations.
6764         * linux-thread-db.c: Include auto-load.h and ctype.h.
6765         (auto_load_thread_db, show_auto_load_thread_db): New.
6766         (struct thread_db_info): New field filename.
6767         (delete_thread_db_info): Call xfree for FILENAME.
6768         (try_thread_db_load): Initialize FILENAME.
6769         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
6770         if !AUTO_LOAD_THREAD_DB.
6771         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
6772         (_initialize_thread_db): Install auto_load_thread_db
6773         as "set auto-load libthread-db" and install info_auto_load_libthread_db
6774         as "info auto-load libthread-db".
6775         * main.c (captured_main): Rename gdbpy_global_auto_load to
6776         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
6777         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
6778         (print_gdb_help): Extend the help for 'local init file'.
6779         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
6780         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
6781         (auto_load_scripts): Rename to ...
6782         (auto_load_python_scripts): ... here, update the comment.
6783         (gdbpy_load_auto_script_for_objfile): New declaration.
6784         (show_auto_load_python_scripts, script_language_python)
6785         (gdbpy_load_auto_script_for_objfile): New.
6786         (source_section_scripts): Refactor the code.
6787         (load_auto_scripts_for_objfile): Rename to ...
6788         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
6789         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
6790         (info_auto_load_python_scripts): New.
6791         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
6792         Rename "set auto-load-scripts" to "set auto-load python-scripts".
6793         Register "set auto-load-scripts" as its deprecated alias.  Register
6794         "info auto-load python-scripts".  Register "info auto-load-scripts" as
6795         its deprecated alias.
6796         (load_auto_scripts_for_objfile): Rename to ...
6797         (gdbpy_load_auto_scripts_for_objfile): ... here.
6798         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
6799         (gdbpy_load_auto_scripts_for_objfile): ... here.
6800
6801 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6802
6803         auto-load: Move files.
6804         * Makefile.in (SFILES): Add auto-load.c.
6805         (HFILES_NO_SRCDIR): Add auto-load.h.
6806         (COMMON_OBS): Add auto-load.o.
6807         (distclean): Change .gdbinit for gdb-gdb.gdb.
6808         * auto-load.c: New file, with parts from python/py-auto-load.c.
6809         * auto-load.h: New file, with parts from python/python.h.
6810         * configure: Regenerate.
6811         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
6812         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
6813         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
6814         * main.c: Include auto-load.h.
6815         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
6816         command.h, observer.h and progspace.h to auto-load.c.  Add include
6817         auto-load.h.
6818         (gdbpy_global_auto_load, struct auto_load_pspace_info)
6819         (struct loaded_script, auto_load_pspace_data)
6820         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
6821         (hash_loaded_script_entry, eq_loaded_script_entry)
6822         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
6823         (maybe_add_script): Move to auto-load.c.
6824         (source_section_scripts): Change maybe_add_script parameters passing,
6825         use script_not_found_warning_print.
6826         (clear_section_scripts, auto_load_objfile_script)
6827         (auto_load_new_objfile, loaded_script_ptr)
6828         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
6829         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
6830         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
6831         auto_load_new_objfile and info_auto_load_scripts initizations to
6832         auto-load.c.
6833         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
6834
6835 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6836
6837         Code cleanup.
6838         * charset.c (find_charset_names): Remove variables ix and elt.
6839         Use free_char_ptr_vec.
6840         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
6841         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
6842         debugdir_end.  New variable debugdir_len.
6843         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
6844         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
6845         declarations.
6846         * progspace.c (clear_program_space_solib_cache): Remove variables ix
6847         and elt.  Use free_char_ptr_vec.
6848         * source.c (add_path): Remove variables argv, arg and argv_index.
6849         New variables dir_vec, back_to, ix and name.
6850         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
6851         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
6852         no longer expecting DIRNAME_SEPARATOR.
6853         (openp): Remove variable p, p1 and len.  New variables dir_vec,
6854         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
6855         no longer expecting DIRNAME_SEPARATOR.
6856         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
6857         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
6858         debugdir_end.
6859         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
6860         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
6861         (dirnames_to_char_ptr_vec): New functions.
6862
6863 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6864
6865         Code cleanup.
6866         * source.c (add_path): Remove always true conditional 'p == 0' and
6867         unindent its code block.
6868
6869 2012-04-17  Pedro Alves  <palves@redhat.com>
6870
6871         * gdbtypes.h (FIELD_BITPOS): Rename to ...
6872         (FIELD_BITPOS_LVAL): ... this.
6873         (FIELD_BITPOS): New.
6874         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
6875         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
6876         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
6877         SET_FIELD_BITPOS.
6878         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
6879         SET_FIELD_BITPOS.
6880         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
6881         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
6882         * target-descriptions.c (tdesc_gdb_type): Adjust to use
6883         SET_FIELD_BITPOS.
6884
6885 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6886
6887         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
6888         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
6889         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
6890         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
6891         * jv-lang.c (java_link_class_type): Likewise, once.
6892         * stabsread.c (read_enum_type): Likewise.
6893
6894 2012-04-16  Yao Qi  <yao@codesourcery.com>
6895
6896         * common/agent.c (agent_run_command): Add one more parameter `len'.
6897         Update callers.
6898         * common/agent.h: Update declaration.
6899         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
6900         Update.
6901         (linux_child_static_tracepoint_markers_by_strid): Ditto.
6902
6903 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
6904
6905         PR mi/13393
6906         * value.c (value_actual_type): New function.
6907         * value.h (value_actual_type): New declaration.
6908         * varobj.c (update_type_if_necessary): New function.
6909         (varobj_create): Call value_actual_type instead of
6910         value_type.
6911         (install_dynamic_child): distinct changed and type changed MI variable
6912         objects.
6913         (update_dynamic_varobj_children): Updated for install_dynamic_child
6914         change.  All callers updated.
6915         (varobj_update): Support for MI variable object type change if
6916         the value changed and RTTI is used to determine the type.
6917         (create_child_with_value): Call value_actual_type instead of
6918         value_type.
6919         (adjust_value_for_child_access): Extended with a new parameter which
6920         specify whether the given value should be casted to enclosing type.
6921         All callers updated.
6922
6923 2012-04-14  Yao Qi  <yao@codesourcery.com>
6924
6925         Import gnulib module inttypes from git
6926         (250b80067c1e1d8faa0c42fb572f721975b929c5)
6927         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
6928         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
6929         gnulib/m4/inttypes-pri.m4
6930         * aclocal.m4, config.in, configure: Regenerated.
6931         * gnulib/Makefile.am: Update.
6932         * gnulib/Makefile.in: Update.
6933         * gnulib/m4/gnulib-cache.m4: Update.
6934         * gnulib/m4/gnulib-comp.m4: Update.
6935         * gnulib/inttypes.in.h: New.
6936         * gnulib/m4/inttypes-pri.m4: New.
6937         * gnulib/m4/inttypes.m4: New.
6938
6939 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
6940
6941         * infrun.c (resume): Update PC address to the real PC after
6942         preparing to do displaced stepping.
6943
6944 2012-04-12  Doug Evans  <dje@google.com>
6945
6946         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
6947         All callers updated.
6948
6949 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
6950
6951         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
6952
6953 2012-04-12  Doug Evans  <dje@google.com>
6954
6955         * dwarf2read.c (create_all_type_units): Renamed from
6956         create_debug_types_hash_table.  All callers updated.
6957
6958         * dwarf2read.c (create_signatured_type_table_from_index): Rename
6959         local type_sig to sig_type, type_offset to type_offset_in_tu.
6960         (hash_signatured_type): Renamed from hash_type_signature,
6961         all callers updated.
6962         (eq_signatured_type): Renamed from eq_type_signature,
6963         all callers updated.
6964         (create_debug_types_hash_table): Rename local type_sig to sig_type.
6965         (process_enumeration_scope): Ditto.
6966         (lookup_signatured_type_at_offset): Ditto.
6967         (load_full_type_unit, read_signatured_type): Ditto.
6968
6969 2012-04-12  Yao Qi  <yao@codesourcery.com>
6970
6971         * remote.c (async_remote_interrupt): Correct function name in
6972         debug message.
6973         (async_remote_interrupt_twice): Ditto.
6974
6975 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
6976
6977         * source.c (find_and_open_source): Consistently pass resulting
6978         full path through xfullpath.
6979
6980 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6981
6982         Provide more specific displaced-stepping memory error message.
6983         * infrun.c (displaced_step_prepare): New variable status.  Call
6984         target_read_memory instead of read_memory, provide more specific
6985         error message.
6986
6987 2012-04-11  Tristan Gingold  <gingold@adacore.com>
6988
6989         PR gdb/13901
6990         * darwin-nat.c (darwin_execvp): Revert previous patch.
6991
6992 2012-04-11  Tristan Gingold  <gingold@adacore.com>
6993
6994         PR gdb/13901
6995         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
6996         in case of change.
6997
6998 2012-04-11  Tristan Gingold  <gingold@adacore.com>
6999
7000         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
7001         warning.
7002
7003 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
7004
7005         New command 'explore' which helps explore values and types in
7006         scope.
7007         * NEWS: Add an entry about the new 'explore' command.
7008         * data-directory/Makefile.in: Add gdb/command/explore.py
7009         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
7010         command using the GDB Python API.
7011
7012 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
7013
7014         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
7015         extension in jump target calculation.
7016
7017 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
7018
7019         * mips-tdep.c (mips32_next_pc): Handle JALX.
7020
7021 2012-04-10  Yao Qi  <yao@codesourcery.com>
7022
7023         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
7024
7025 2012-04-10  Yao Qi  <yao@codesourcery.com>
7026
7027         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
7028         and gnulib/m4/gnulib-tool.m4.
7029
7030 2012-04-10  Doug Evans  <dje@google.com>
7031
7032         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
7033         (load_partial_dies): Clarify comment.
7034         (find_partial_die): Support rereading type units.
7035         Clarify CU handling, if we know offset is in CU, don't search for the
7036         containing CU.  Add comment regarding memory waste.
7037
7038 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
7039
7040         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
7041         i386/x32-avx and i386/x32-avx-linux.
7042         (i386/x32-expedite): New.
7043         (i386/x32-linux-expedite): Likewise.
7044         (i386/x32-avx-expedite): Likewise.
7045         (i386/x32-avx-linux-expedite): Likewise.
7046         ($(outdir)/i386/x32.dat): Likewise.
7047         ($(outdir)/i386/x32-linux.dat): Likewise.
7048         ($(outdir)/i386/x32-avx.dat): Likewise.
7049         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
7050
7051         * features/i386/x32-avx-linux.xml: New file.
7052         * features/i386/x32-avx.xml: Likewise.
7053         * features/i386/x32-core.xml: Likewise.
7054         * features/i386/x32-linux.xml: Likewise.
7055         * features/i386/x32.xml: Likewise.
7056
7057         * features/i386/x32-avx-linux.c: New.  Generated.
7058         * features/i386/x32-avx.c: Likewise.
7059         * features/i386/x32-linux.c: Likewise.
7060         * features/i386/x32.c: Likewise.
7061         * regformats/i386/x32-avx-linux.dat: Likewise.
7062         * regformats/i386/x32-avx.dat: Likewise.
7063         * regformats/i386/x32-linux.dat: Likewise.
7064         * regformats/i386/x32.dat: Likewise.
7065
7066 2012-04-10  Tristan Gingold  <gingold@adacore.com>
7067
7068         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
7069         code to kill the inferior.
7070
7071 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
7072
7073         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7074         defines.
7075         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7076         defines.
7077         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
7078         (yyvsp): New defines.
7079         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7080         defines.
7081         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7082         defines.
7083         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7084         defines.
7085         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7086         defines.
7087         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7088         defines.
7089
7090 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
7091
7092         * sparc64-tdep.c (sparc64_store_arguments)
7093         (sparc64_store_arguments): Fix coding style.
7094
7095 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
7096
7097         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
7098         complex floats, adjust some related comments and tighten a related
7099         assertion.
7100         (sparc64_extract_return_value): Handle complex floats.
7101
7102 2012-04-07  Doug Evans  <dje@google.com>
7103
7104         * dwarf2read.c (load_partial_dies): Change condition to assert.
7105
7106 2012-04-06  Doug Evans  <dje@google.com>
7107
7108         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
7109         "mov %rsp,%rbp".
7110
7111 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
7112
7113         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
7114         fencepost error.
7115         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
7116         (v850_gdbarch_init): Set `num_regs' as appropriate for the
7117         architecture.
7118
7119 2012-04-05  Keith Seitz  <keiths@redhat.com>
7120
7121         * linespec.c (decode_compound): Remove.
7122         (enum offset_relative_sign): New enum.
7123         (struct line_offset): New struct.
7124         (struct linespec): New struct.
7125         (struct linespec_state): Move file_symtabs,
7126         user_filename, and user_function into struct linespec.
7127         Make result an anonymous struct holding vectors of
7128         symbolp and minsym_and_objfile_d.
7129         Add language member.
7130         (enum ls_token_type): New enum.
7131         (linespec_keywords): New array.
7132         (struct ls_token): New struct.
7133         (struct ls_parser): New struct.
7134         (linespec_lexer_lex_number): New function.
7135         (linespec_lexer_lex_keyword): New function.
7136         (is_ada_operator): New function.
7137         (skip_quote_char): New function.
7138         (copy_token_string): New function.
7139         (is_closing_quote_enclosed): New function.
7140         (find_parameter_list_end): New function.
7141         (linespec_lexer_lex_string): New function.
7142         (linespec_lexer_lex_one): New function.
7143         (linespec_lexer_consume_token): New function.
7144         (linespec_lexer_peek_token): New function.
7145         (cplusplus_error): Remove unused function.
7146         (find_methods): Update comment.
7147         (find_toplevel_char): Return const.
7148         (is_objc_method_format): Remove unused function.
7149         (find_toplevel_string): New function.
7150         (is_linespec_boundary): Remove.
7151         (symbol_not_found_error): New function.
7152         (find_method_overload_end): Remove function.
7153         (unexpected_linespec_error): New function.
7154         (keep_name_info): Remove.
7155         (linespec_parse_line_offset): New function.
7156         (linespec_parse_basic): New function.
7157         (canonicalize_linespec): New function.
7158         (decode_line_internal): Remove.
7159         (create_sals_line_offset): New function adapted from
7160         decode_all_digits.
7161         (convert_linespec_to_sals): New function.
7162         (parse_linespec): New function.
7163         (linespec_parser_new): New function.
7164         (linespec_state_destructor): Change parameter type to
7165         struct linespec_state *.
7166         Add language parameter.
7167         Remove freeing of moved members.
7168         (linespec_parser_delete): New function.
7169         (decode_line_full): Use parse_linespec and linespec_parser_new.
7170         (decode_line_1): Likewise.
7171         (decode_indirect): Rename to ...
7172         (linespec_expression_to_pc): ... this and rewrite
7173         to simply find CORE_ADDR, storing this result for later
7174         conversion to SALs.
7175         (locate_first_half): Remove.
7176         (deocde_objc): Add parameter LS.
7177         Initialize new struct collect_info members.
7178         Handle minimal symbols, too.
7179         (decode_compound): Delete.
7180         (lookup_prefix_sym): Rewrite.
7181         (compare_msymbols): New function.
7182         (find_method): Rewrite.
7183         Do not call cplusplus_error.
7184         (symtabs_from_filename): Rewrite.
7185         (collect_function_symbols): Delete.
7186         (find_function_symbols): Rewrite without ARGPTR-style
7187         processing.
7188         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
7189         (decode_dollar): Adapted and renamed to ...
7190         (linespec_parse_variable): ... this.
7191         (find_linespec_symbols): New function.
7192         (decode_label): Adapted and renamed to ...
7193         (find_label_symbols): ... this.
7194         (decode_digits_list_mode): Add and use LS argument.
7195         (decode_digits_ordinary): Likewise.
7196         (collect_symbols): Do not collect SALs, just symbols and msymbols.
7197         If in list mode, allow any symbol class.  Otherwise, only
7198         permit LOC_BLOCK symbols.
7199         (minsym_found): Update comments.
7200         (search_minsyms_for_name): Do not convert the matching symbol
7201         into a SAL.  Simply push the symbol and objfile into the
7202         result vector.
7203         (decode_variable): Delete. Contents adapted into
7204         find_linespec_symbols.
7205
7206         * cp-support.c (SKIP_SPACE): Remove.
7207         (operator_tokens): Remove unused global.
7208         (cp_validate_operator): Remove.
7209         * cp-support.h (cp_validate_operator): Remove declaration.
7210
7211 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7212
7213         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
7214         for TYPE_VPTR_FIELDNO.
7215         * valprint.c (valprint_check_validity): Make it global, move the
7216         function comment ...
7217         * value.h (valprint_check_validity): ... to this new declaration.
7218
7219 2012-04-02  Tristan Gingold  <gingold@adacore.com>
7220
7221         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
7222         the STATE32 api for i386 state.
7223         (i386_darwin_store_inferior_registers): Likewise.
7224
7225 2012-04-02  Tristan Gingold  <gingold@adacore.com>
7226
7227         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
7228         SS offset.
7229         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
7230         format_string.
7231
7232 2012-04-02  Tristan Gingold  <gingold@adacore.com>
7233
7234         PR gdb/13901
7235         * darwin-nat.c (darwin_execvp): Set binary preference.
7236
7237 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7238
7239         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
7240
7241 2012-03-30  Tom Tromey  <tromey@redhat.com>
7242
7243         * python/python.c (gdbpy_decode_line): Move cleanup creation out
7244         of TRY_CATCH.  Fix error handling.
7245         * python/py-value.c (convert_value_from_python): Move 'old'
7246         declaration to innermost scope.
7247
7248 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7249             Andrey Smirnov  <andrew.smirnov@gmail.com>
7250
7251         -Wshadow warning fix.
7252         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
7253         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
7254         Adjust code accordingly.
7255
7256 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7257
7258         * ada-lang.c (symbol_completion_add): Rename parameter
7259         "encoded" into "encoded_p".  Ajust code and documentation
7260         accordingly.
7261
7262 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7263             Andrey Smirnov  <andrew.smirnov@gmail.com>
7264
7265         -Wshadow warning fix.
7266         * ada-lang.c (symbol_completion_add): Rename parameter
7267         "wild_match" into wild_match_p.  Update code and documentation
7268         accordingly.
7269
7270 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7271
7272         * ada-lang.c (symbol_completion_match): Rename parameter
7273         "encoded" into "encoded_p".  Ajust code and documentation
7274         accordingly.
7275
7276 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7277             Andrey Smirnov  <andrew.smirnov@gmail.com>
7278
7279         -Wshadow warning fix.
7280         * ada-lang.c (symbol_completion_match): Rename parameter
7281         "wild_match" into "wild_match_p".  Adjust code and function
7282         documentation accordingly.
7283
7284 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7285             Andrey Smirnov  <andrew.smirnov@gmail.com>
7286
7287         -Wshadow warning fix.
7288         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
7289         "symbol_info" into "info".  Adjust code accordingly.
7290         (ada_lookup_symbol): Likewise.
7291
7292 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7293
7294         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
7295         of this function's documentation.
7296
7297 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7298             Andrey Smirnov  <andrew.smirnov@gmail.com>
7299
7300         -Wshadow warning fix.
7301         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
7302         variable into "wild_match_p".  Adjust code accordingly.
7303
7304 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7305             Andrey Smirnov  <andrew.smirnov@gmail.com>
7306
7307         -Wshadow warning fix.
7308         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
7309         parameter into "wild_match_p".  Adjust code accordingly.
7310         Document this parameter in the function description.
7311
7312 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7313             Andrey Smirnov  <andrew.smirnov@gmail.com>
7314
7315         -Wshadow warning fix.
7316         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
7317         "wild_match" parameter to "wild_match_p" (-Wshadow).
7318
7319 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7320
7321         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
7322         in function documentation.
7323
7324 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7325             Andrey Smirnov  <andrew.smirnov@gmail.com>
7326
7327         -Wshadow warning fix.
7328         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
7329         variable into wild_match_p.  Adjust code accordingly.
7330
7331 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7332             Andrey Smirnov  <andrew.smirnov@gmail.com>
7333
7334         * ada-valprint.c (ada_val_print_1): Move the code handling
7335         TYPE_CODE_ENUM inside its own lexical block.  Declare
7336         variables len and val there, instead of in the function's
7337         top level block.  Avoid declaring deref_val again in a way
7338         that shadows another variable of the same name declared
7339         in one of the up-level blocks.  Just re-use the up-level
7340         variable instead.
7341
7342 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7343
7344         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
7345         Replace block_found argument by symbol_info.  Adjust
7346         implementation accordingly.  Add function documentation.
7347         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
7348         Fix documentation.
7349         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
7350         * ada-exp.y (write_object_renaming): Adjust to new
7351         ada_lookup_encoded_symbol API.
7352
7353 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7354
7355         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
7356         documentation.
7357
7358 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
7359
7360         * v850-tdep.c: Add the enum values for mpu and fpu registers.
7361         (v850_register_name): Add the mpu and fpu register names.
7362         (v850e_register_name): Add the mpu and fpu register names.
7363         (v850e2_register_name): New function.
7364         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
7365         bfd_mach_v850e2v3.
7366
7367 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7368
7369         * NEWS: Add entry for Ada varobj support.
7370
7371 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7372
7373         * varobj.c (default_value_is_changeable_p): New function,
7374         extracted from varobj_value_is_changeable_p.  Add declaration.
7375         (ada_value_is_changeable_p): New function, extracted from
7376         varobj_value_is_changeable_p.  Add declaration.
7377         (struct language_specific): New field "value_is_changeable_p".
7378         (languages): Add entries for new field.
7379         (varobj_create): Set language before calling install_new_value.
7380         (varobj_value_is_changeable_p): Reimplement to call the varobj's
7381         "value_is_changeable_p" language callback.
7382
7383 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7384
7385         * ada-varobj.h, ada-varobj.c: New files.
7386         * Makefile.in (SFILES): Add ada-varobj.c.
7387         (HFILES_NO_SRCDIR): Add ada-varobj.h.
7388         (COMMON_OBS): Add ada-varobj.o.
7389
7390 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7391
7392         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
7393         (struct language_specific): New field "value_has_mutated".
7394         (languages): Set field "value_has_mutated" in each entry of array.
7395         (varobj_value_has_mutated): New function.
7396         (varobj_udpdate): Add handling of type mutation.
7397         (value_of_root): Add handling of type mutation.
7398         (ada_value_has_mutated): New function.
7399
7400 2012-03-28  Pedro Alves  <palves@redhat.com>
7401
7402         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
7403         Always supply $fr0 as 0.0 and $fr1 as 1.0.
7404
7405 2012-03-28  Tom Tromey  <tromey@redhat.com>
7406
7407         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
7408         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
7409         before returning.
7410
7411 2012-03-28  Tom Tromey  <tromey@redhat.com>
7412
7413         * .dir-locals.el: New file.
7414
7415 2012-03-28  Pedro Alves  <palves@redhat.com>
7416
7417         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
7418
7419 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7420
7421         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
7422         handling for r0.
7423
7424 2012-03-27  Pedro Alves  <palves@redhat.com>
7425
7426         Eliminate struct ui_stream.
7427
7428         * ui-out.h (struct ui_stream): Delete.
7429         (ui_out_field_stream): Adjust prototype.
7430         (ui_out_stream_new, ui_out_stream_delete)
7431         (make_cleanup_ui_out_stream_delete): Delete declarations.
7432         * ui-out.c (ui_out_field_stream): Change prototype to take a
7433         ui_file instead of a ui_stream.  Adjust.
7434         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
7435         (make_cleanup_ui_out_stream_delete): Delete.
7436         * breakpoint.c (print_breakpoint_location)
7437         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
7438         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
7439         * disasm.c (dump_insns): Ditto.
7440         (do_mixed_source_and_assembly, do_assembly_only): Adjust
7441         prototype.
7442         (gdb_disassembly): Use ui_file/mem_fileopen instead of
7443         ui_stream/ui_out_stream_new.
7444         * infcmd.c (print_return_value): Ditto.
7445         * osdata.c (info_osdata_command): Don't allocate a local
7446         ui_stream.
7447         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
7448         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
7449         * tracepoint.c (print_one_static_tracepoint_marker): Don't
7450         allocate a local ui_stream.
7451         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
7452         instead of ui_stream/ui_out_stream_new.
7453         (list_args_or_locals): Don't allocate a local ui_stream.
7454         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
7455         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
7456         ui_stream/ui_out_stream_new.
7457         * cli/cli-setshow.c (do_setshow_command): Ditto.
7458
7459 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
7460
7461         * arm-linux-tdep.c (arm_linux_init_abi): Call
7462         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
7463         * arm-tdep.c (arm_process_record): New function.
7464         (deallocate_reg_mem): New function.
7465         (decode_insn): New function.
7466         (thumb_record_branch): New function.
7467         (thumb_record_ldm_stm_swi(): New function.
7468         (thumb_record_misc): New function.
7469         (thumb_record_ld_st_stack): New function.
7470         (thumb_record_ld_st_imm_offset): New function.
7471         (thumb_record_ld_st_reg_offset(): New function.
7472         (thumb_record_add_sub_cmp_mov): New function.
7473         (thumb_record_shift_add_sub): New function.
7474         (arm_record_coproc_data_proc): New function.
7475         (arm_record_coproc): New function.
7476         (arm_record_b_bl): New function.
7477         (arm_record_ld_st_multiple): New function.
7478         (arm_record_ld_st_reg_offset): New function.
7479         (arm_record_ld_st_imm_offset): New function.
7480         (arm_record_data_proc_imm): New function.
7481         (arm_record_data_proc_misc_ld_str): New function.
7482         (arm_record_extension_space): New function.
7483         (arm_record_strx): New function.
7484         (sbo_sbz): New function.
7485         (struct insn_decode_record): New structure for arm insn record.
7486         (REG_ALLOC): New macro for reg allocations.
7487         (MEM_ALLOC): New macro for memory allocations.
7488         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
7489
7490 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
7491
7492         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
7493         (store_register): Likewise.
7494
7495 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
7496
7497         * MAINTAINERS (Write After Approval): Add myself to the list.
7498
7499 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
7500
7501         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
7502         Describe also the option "auto".
7503
7504 2012-03-22  Richard Henderson  <rth@redhat.com>
7505
7506         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
7507         * sparc-nat.c (sparc_xfer_wcookie): Make static.
7508
7509 2012-03-22  Richard Henderson  <rth@redhat.com>
7510
7511         * jit.c (jit_read_code_entry): Compute alignment and offset of
7512         int64_t member before computing entry_size.
7513
7514 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
7515
7516         Python scripting: Add new method Value.referenced_value to
7517         gdb.Value which can dereference pointer as well as reference
7518         values.
7519         * NEWS: Add entry under 'Python scripting' about the new method
7520         Value.referenced_value on gdb.Value objects.
7521         * python/py-value.c (valpy_referenced_value): New function
7522         defining a new method on gdb.Value objects which can dereference
7523         pointer and reference values.
7524
7525 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
7526
7527         * MAINTAINERS (Write After Approval): Add myself to the list.
7528
7529 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
7530
7531         * symtab.c (skip_prologue_sal): Change test to check for "main()"
7532         in addition to "main".
7533
7534 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
7535
7536         * expression.h (op_name): Add declaration.
7537         * expprint.c (op_name): Remove declaration.  Make non-static.
7538         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
7539
7540 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
7541
7542         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
7543         of struct siginfo.
7544         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
7545         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
7546         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
7547         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
7548         (linux_nat_get_siginfo): Likewise.
7549         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
7550         (linux_nat_get_siginfo): Likewise.
7551         * linux-tdep.c (linux_get_siginfo_type): Likewise.
7552         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
7553         * procfs.c (gdb_siginfo_t): Likewise.
7554
7555 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
7556
7557         * .gitignore: Ignore more files.
7558
7559 2012-03-20  Pedro Alves  <palves@redhat.com>
7560
7561         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
7562         returns.
7563
7564 2012-03-20  Yao Qi  <yao@codesourcery.com>
7565
7566         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
7567         comment.
7568
7569 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
7570
7571         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
7572         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
7573         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
7574         sect_offset.
7575         * dwarf2expr.h (cu_offset, sect_offset): New types.
7576         (struct dwarf_expr_context_funcs) <dwarf_call>
7577         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
7578         sect_offset.
7579         (struct dwarf_expr_context) <len>: Improve the comment.
7580         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
7581         cu_offset and sect_offset.
7582         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
7583         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
7584         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
7585         * dwarf2loc.h: Include dwarf2expr.h.
7586         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
7587         and sect_offset.
7588         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
7589         Improve the comment.
7590         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
7591         (struct signatured_type, struct line_header, struct partial_die_info)
7592         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
7593         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
7594         (get_die_type_at_offset, create_cus_from_index)
7595         (create_signatured_type_table_from_index, dw2_get_file_names)
7596         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
7597         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
7598         (create_debug_types_hash_table, process_psymtab_comp_unit)
7599         (load_partial_comp_unit, create_all_comp_units)
7600         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
7601         (load_full_comp_unit, dwarf2_physname, read_import_statement)
7602         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
7603         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
7604         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
7605         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
7606         (find_partial_die, read_attribute_value, lookup_die_type)
7607         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
7608         (is_ref_attr): New function comment.
7609         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
7610         Use cu_offset and sect_offset.
7611         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
7612         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
7613         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
7614         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
7615         (offset_and_type_hash, offset_and_type_eq, set_die_type)
7616         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
7617         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
7618         sect_offset.
7619
7620 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
7621
7622         Code cleanup.
7623         * python/py-auto-load.c (source_section_scripts): New variable back_to.
7624         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
7625         with xfree.
7626         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
7627
7628 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
7629
7630         * NEWS: Describe new options --init-command=FILE, -ix and
7631         --init-eval-command=COMMAND, -iex.
7632         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
7633         CMDARG_INIT_COMMAND.
7634         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
7635         "init-command", "init-eval-command", "ix" and "iex" to the variable
7636         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
7637         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
7638         (print_gdb_help): Describe --init-command=FILE, -ix and
7639         --init-eval-command=COMMAND, -iex.
7640
7641 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
7642
7643         Code cleanup.
7644         * main.c (struct cmdarg): Move it here from main.  Add more comments.
7645         (cmdarg_s, VEC (cmdarg_s)): New.
7646         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
7647         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
7648         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
7649         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
7650         of CMDARG.
7651
7652 2012-03-19  Tom Tromey  <tromey@redhat.com>
7653
7654         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
7655
7656 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
7657
7658         PR symtab/13777
7659         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
7660         GCC >=4.5.
7661
7662 2012-03-16  Chris January  <chris.january@allinea.com>
7663
7664         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
7665         of clear.
7666
7667 2012-03-16  Chris January  <chris.january@allinea.com>
7668
7669         * source.c (add_path): Use memmove instead of strcpy because the
7670         strings overlap.
7671
7672 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
7673
7674         * value.h (set_value_parent): Add declaration.
7675         * value.c (set_value_parent): New function.
7676         (value_address): If VALUE->PARENT is not NULL, then use it as
7677         the base address instead of VALUE->LOCATION.address.
7678         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
7679         the same as OBJ's address.  Adjust V's offset accordingly.
7680         Set V's parent.
7681
7682 2012-03-16  Gary Benson  <gbenson@redhat.com>
7683
7684         PR breakpoints/10738
7685         * dwarf2read.c (use_deprecated_index_sections): New global.
7686         (struct partial_die_info): New member may_be_inlined.
7687         (read_partial_die): Set may_be_inlined where appropriate.
7688         (add_partial_subprogram): Add partial symbols for partial
7689         DIEs that may be inlined.
7690         (new_symbol_full): Add inlined subroutines to the current
7691         scope.
7692         (write_psymtabs_to_index): Bump version number.
7693         (dwarf2_read_index): Read only version 6 indices unless
7694         use_deprecated_index_sections is set.
7695         * linespec.c (symbol_and_data_callback): New structure.
7696         (iterate_inline_only): New function.
7697         (iterate_over_all_matching_symtabs): New argument
7698         "include_inline".  If nonzero, also call the callback for
7699         symbols representing inlined subroutines.
7700         (lookup_prefix_sym): Pass extra argument to the above.
7701         (find_function_symbols): Likewise.
7702         (add_matching_symbols_to_info): Likewise.
7703         * NEWS: Mention that GDB can now set breakpoints on inlined
7704         functions.
7705
7706 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
7707
7708         * p-typeprint.c (pascal_type_print_method_args):
7709         Fix display of parameter of methods.
7710
7711 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
7712
7713         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
7714         Add missing prototype.
7715
7716 2012-03-16  Yao Qi  <yao@codesourcery.com>
7717             Jan Kratochvil  <jan.kratochvil@redhat.com>
7718
7719         Fix false compilation warning.
7720         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
7721
7722 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
7723             Pedro Alves  <pedro@codesourcery.com>
7724
7725         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
7726         (arm_register_g_packet_guesses): New function.
7727         (arm_gdbarch_init): Don't force a target description with
7728         registers when the executable is detected as M-profile.  Instead
7729         set gdbarch->tdep->is_m.  Register `g' packet guesses.
7730         (_initialize_arm_tdep): Initialize the new target description.
7731         * features/arm-with-m-fpa-layout.xml: New description.
7732         * features/arm-with-m-fpa-layout.c: New, generated.
7733
7734 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
7735
7736         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
7737         Update function description.
7738         (insert_bp_location): Do not wipe bl->target_info out.
7739         * mem-break.c: #include "gdb_string.h".
7740         (default_memory_insert_breakpoint): Do not call target_read_memory
7741         with a pointer to the breakpoint's shadow_contents buffer.  Use
7742         a local buffer instead.
7743         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
7744
7745 2012-03-15  Tom Tromey  <tromey@redhat.com>
7746
7747         * NEWS: Mention "info vtbl", not "info vtable".
7748         * cp-support.c (info_vtbl_command): Fix comment.
7749         (_initialize_cp_support): Fix text.
7750
7751 2012-03-15  Tom Tromey  <tromey@redhat.com>
7752
7753         * cp-valprint.c (cp_print_value_fields): Use
7754         print_function_pointer_address for vtable slot.
7755
7756 2012-03-15  Tom Tromey  <tromey@redhat.com>
7757
7758         * gnu-v3-abi.c (struct value_and_voffset): New.
7759         (hash_value_and_voffset, eq_value_and_voffset)
7760         (compare_value_and_voffset, compute_vtable_size)
7761         (print_one_vtable, gnuv3_print_vtable): New functions.
7762         (init_gnuv3_ops): Initialize 'print_vtable' field.
7763         * cp-support.c (info_vtbl_command): New function.
7764         (_initialize_cp_support): Add "info vtbl".
7765         * cp-abi.h (cplus_print_vtable): Declare.
7766         (struct cp_abi_ops) <print_vtable>: New field.
7767         * cp-abi.c (cplus_print_vtable): New function.
7768         * NEWS: Update.
7769
7770 2012-03-15  Tom Tromey  <tromey@redhat.com>
7771
7772         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
7773         iterate_over_symbols.
7774
7775 2012-03-14  Doug Evans  <dje@google.com>
7776
7777         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
7778         DW_OP_GNU_parameter_ref.
7779
7780 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7781
7782         Fix double prompt of 'interpreter-exec mi'.
7783         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
7784         (mi_interpreter_resume): use it.
7785         (mi_execute_command_input_handler): New function.
7786         * mi/mi-main.c (mi_execute_command): Move prompt printing to
7787         mi_execute_command_input_handler.
7788
7789 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
7790
7791         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
7792         prototype.
7793         (darwin_debug_port_info): Make static.
7794         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
7795         * machoread.c (_initialize_machoread): Add prototype.
7796         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
7797         (i386_darwin_set_control, i386_darwin_get_control)
7798         i386_darwin_dr_set_addr, i386_darwin_get_addr)
7799         i386_darwin_get_status, i386_darwin_get_control):
7800         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
7801
7802 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
7803
7804         * ax-gdb.c (gen_usual_unary): Remove special handling of
7805         enum and bool types.
7806
7807 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
7808
7809         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
7810
7811 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
7812
7813         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
7814
7815 2012-03-13  Chris January  <chris.january@allinea.com>
7816
7817         * aix-thread.c (fill_sprs): Store the floating point registers
7818         at the correct offsets into vals.
7819
7820 2012-03-13  Doug Evans  <dje@google.com>
7821
7822         * NEWS: Mention symbol-reloading has been deleted.
7823         * symfile.c (symbol_reloading): Delete.
7824         (show_symbol_reloading): Delete.
7825         (_initialize_symfile): Delete set/show symbol-reloading.
7826
7827         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
7828         read_in_chain until we have successfully read it in.
7829         (load_full_comp_unit): Ditto.
7830         (read_signatured_type): Add comment.
7831
7832 2012-03-13  Chris January  <chris.january@allinea.com>
7833
7834         * stabsread.c (fix_common_block): Change type of valu argument
7835         to CORE_ADDR.
7836
7837 2012-03-13  Chris January  <chris.january@allinea.com>
7838
7839         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
7840         instruction.
7841
7842 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
7843
7844         * common/linux-procfs.c (linux_proc_get_int): New, from
7845         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
7846         field.
7847         (linux_proc_get_tgid): Only call linux_proc_get_int.
7848         (linux_proc_get_tracerpid): New.
7849         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
7850         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
7851         linux_proc_pid_has_state.
7852         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
7853         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
7854         (linux_ptrace_attach_warnings): New.
7855         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
7856         New declaration.
7857         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
7858         (linux_nat_attach): New variables ex, buffer, message and message_s.
7859         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
7860
7861 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
7862
7863         * Makefile.in (linux-ptrace.o): New.
7864         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
7865         from linux-nat.c.
7866         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
7867         * common/linux-ptrace.c: New file.
7868         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
7869         * config/arm/linux.mh: Likewise.
7870         * config/i386/linux.mh: Likewise.
7871         * config/i386/linux64.mh: Likewise.
7872         * config/ia64/linux.mh: Likewise.
7873         * config/m32r/linux.mh: Likewise.
7874         * config/m68k/linux.mh: Likewise.
7875         * config/mips/linux.mh: Likewise.
7876         * config/pa/linux.mh: Likewise.
7877         * config/powerpc/linux.mh: Likewise.
7878         * config/powerpc/ppc64-linux.mh: Likewise.
7879         * config/powerpc/spu-linux.mh: Likewise.
7880         * config/s390/s390.mh: Likewise.
7881         * config/sparc/linux.mh: Likewise.
7882         * config/sparc/linux64.mh: Likewise.
7883         * config/xtensa/linux.mh: Likewise.
7884         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
7885         common/linux-procfs.c.
7886         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
7887
7888 2012-03-13  Hui Zhu  <teawater@gmail.com>
7889             Pedro Alves  <palves@redhat.com>
7890
7891         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
7892         CREATE_BREAKPOINT_FLAGS_INSERTED.
7893         (create_breakpoint_sal, create_breakpoints_sal)
7894         (base_breakpoint_create_breakpoints_sal)
7895         (tracepoint_create_breakpoints_sal)
7896         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
7897         down.
7898         (break_command_1, handle_gnu_v3_exceptions, trace_command)
7899         (ftrace_command, strace_command): Adjust.
7900         (create_tracepoint_from_upload): Pass
7901         CREATE_BREAKPOINT_FLAGS_INSERTED.
7902         * breakpoint.h (enum breakpoint_create_flags): New.
7903         (create_breakpoint): New flags parameter.
7904         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
7905         * python/py-breakpoint.c (bppy_init): Adjust.
7906         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
7907         * spu-tdep.c (spu_catch_start): Adjust.
7908
7909 2012-03-13  Pedro Alves  <palves@redhat.com>
7910             Hui Zhu  <teawater@gmail.com>
7911             Yao Qi  <yao@codesourcery.com>
7912
7913         * remote.c (struct remote_state): New field `starting_up'.
7914         (remote_start_remote): Set and clear it.
7915         (remote_can_download_tracepoint): If starting up, return false.
7916
7917 2012-03-13  Yao Qi  <yao@codesourcery.com>
7918
7919         * inferior.h (struct inferior): Remove fields any_syscall_count,
7920         syscalls_counts and total_syscalls_count.  Move them to new
7921         struct catch_syscall_inferior_data in breakpoint.c.
7922         * breakpoint.c: Call DEF_VEC_I(int).
7923         (struct catch_syscall_inferior_data): New.
7924         (get_catch_syscall_inferior_data): New.
7925         (catch_syscall_inferior_data_cleanup): New.
7926         (insert_catch_syscall): Update to access data in
7927         struct catch_syscall_inferior_data.
7928         (insert_catch_syscall): Likewise.
7929         (remove_catch_syscall): Likewise.
7930         (remove_catch_syscall): Likewise.
7931         (is_syscall_catchpoint_enabled): Likewise.
7932         (add_catch_command): Likewise.
7933         (_initialize_breakpoint): Register cleanup.
7934         * breakpoint.h: Removed DEF_VEC_I(int).
7935         * dwarf2loc.c: Call DEF_VEC_I(int).
7936         * mi/mi-main.c: Likewise.
7937
7938 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
7939
7940         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
7941
7942 2012-03-12  Chris January  <chris.january@allinea.com>
7943
7944         * aix-thread.c (_initialize_aix_thread): Add prototype.
7945         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
7946         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
7947
7948 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
7949
7950         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
7951         include of "amd64-nat.h".
7952
7953 2012-03-12  Tom Tromey  <tromey@redhat.com>
7954
7955         * buildsym.c (record_pending_block): Now static.
7956         * buildsym.h: (record_pending_block): Remove.
7957
7958 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
7959
7960         * amd64bsd-nat.c: Include amd64bsd-nat.h.
7961
7962 2012-03-09  Tom Tromey  <tromey@redhat.com>
7963
7964         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
7965         producer_is_gxx_lt_4_6>: New fields.
7966         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
7967
7968 2012-03-09  Tom Tromey  <tromey@redhat.com>
7969
7970         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
7971
7972 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
7973
7974         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
7975         prototype.
7976
7977 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
7978
7979         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
7980
7981 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
7982
7983         Fix -Wmissing-prototypes build.
7984         * arm-linux-nat.c (get_thread_id): Make it static.
7985         * xtensa-linux-nat.c (get_thread_id): Likewise.
7986
7987 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
7988
7989         * server.c (process_point_options): If a conditional expression
7990         is found, only print a message if remote_debug is nonzero.
7991
7992 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
7993
7994         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
7995         of internal error for unknown/unsupported types.
7996
7997 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
7998
7999         Fix CU relative vs. absolute DIE offsets.
8000         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
8001         offset to offset_in_cu.
8002         * dwarf2read.c (process_enumeration_scope): Add CU offset to
8003         TYPE_OFFSET.
8004         (dwarf2_fetch_die_location_block): Rename parameter offset to
8005         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
8006
8007 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8008
8009         * libunwind-frame.c: Rename to ...
8010         * ia64-libunwind-tdep.c: ... here.
8011         * libunwind-frame.h: Rename to ...
8012         * ia64-libunwind-tdep.h: ... here.
8013         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
8014         ia64-libunwind-tdep.h.
8015         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
8016         * README (--with-libunwind): Rename to ...
8017         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
8018         * config.in: Regenerate.
8019         * configure: Regenerate.
8020         * configure.ac: New option --with-libunwind-ia64, make the
8021         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
8022         Remove AC_DEFINE for HAVE_LIBUNWIND.
8023         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
8024         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
8025         Rename libunwind-frame in the general comment.
8026         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
8027         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
8028         Move forward declarations inside #ifndef.  Rename libunwind-frame in
8029         the general comment.
8030         * ia64-tdep.c: Rename libunwind-frame.h #include to
8031         ia64-libunwind-tdep.h.
8032         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
8033         (ia64_libunwind_descr): Rename libunwind-frame to
8034         ia64-libunwind-tdep in these function comments.
8035         * ia64-tdep.h: Rename libunwind-frame.h #include to
8036         ia64-libunwind-tdep.h.
8037         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
8038         ia64-libunwind-tdep in that data comment.
8039
8040 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8041
8042         * libunwind-frame.h (struct frame_unwind): New declaration.
8043
8044 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
8045
8046         * breakpoint.c (_initialize_breakpoint): Fix error in help of
8047         "set breakpoint condition-evaluation" command.
8048
8049 2012-03-08  Tristan Gingold  <gingold@adacore.com>
8050
8051         * sparc-stub.c: Move to stubs/
8052         * sh-stub.c: Likewise.
8053         * m68k-stub.c: Likewise.
8054         * m32r-stub.c: Likewise.
8055         * i386-stub.c: Likewise.
8056
8057 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
8058
8059         * m68klinux-tdep.c (m68k_linux_init_abi): Register
8060         linux_get_siginfo_type.
8061
8062         * m68klinux-nat.c: Include "gdb_proc_service.h".
8063         (PTRACE_GET_THREAD_AREA): Define.
8064         (ps_get_thread_area): New function.
8065
8066 2012-03-08  Yao Qi  <yao@codesourcery.com>
8067
8068         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
8069         `xsnprintf'.
8070         (remote_query_attached): Likewise.
8071         (remote_static_tracepoint_marker_at): Likewise.
8072         (remote_set_permissions): Likewise.
8073         (remote_detach_1, extended_remote_attach_1): Likewise.
8074         (send_g_packet, remote_vkill): Likewise.
8075         (extended_remote_disable_randomization): Likewise.
8076         (remote_add_target_side_condition): Likewise.
8077         (remote_insert_breakpoint): Likewise.
8078         (remote_remove_breakpoint): Likewise.
8079         (remote_insert_watchpoint): Likewise.
8080         (remote_remove_watchpoint): Likewise.
8081         (remote_insert_hw_breakpoint): Likewise.
8082         (remote_insert_hw_breakpoint): Likewise.
8083         (remote_remove_hw_breakpoint): Likewise.
8084         (remote_download_command_source): Likewise.
8085         (remote_download_tracepoint): Likewise.
8086         (remote_download_trace_state_variable): Likewise.
8087         (remote_disable_tracepoint): Likewise.
8088         (remote_trace_set_readonly_regions): Likewise.
8089         (remote_get_tracepoint_status): Likewise.
8090         (remote_trace_find): Likewise.
8091         (remote_get_trace_state_variable_value): Likewise.
8092         (remote_set_disconnected_tracing): Likewise.
8093         (remote_set_circular_trace_buffer): Likewise.
8094         (remote_get_min_fast_tracepoint_insn_len): Likewise.
8095         (remote_use_agent): Likewise.
8096         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
8097         Update callers.
8098
8099 2012-03-07  Pedro Alves  <palves@redhat.com>
8100
8101         * NEWS: Mention QProgramSignals.
8102         * inferior.h (update_signals_program_target): Declare.
8103         * infrun.c: (update_signals_program_target): New.
8104         (handle_command): Update the target of the new program signals
8105         array changes.
8106         * remote.c (PACKET_QProgramSignals): New enum.
8107         (last_program_signals_packet): New global.
8108         (remote_program_signals): New.
8109         (remote_start_remote): Update the target with the program signals
8110         list.
8111         (remote_protocol_features): Add entry for QPassSignals.
8112         (remote_open_1): Free anc clear last_program_signals_packet.
8113         (init_remote_ops): Install remote_program_signals.
8114         * target.c (update_current_target): Adjust.
8115         (target_program_signals): New.
8116         * target.h (struct target_ops) <to_program_signals>: New field.
8117         (target_program_signals): Declare.
8118
8119 2012-03-07  Pedro Alves  <palves@redhat.com>
8120
8121         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
8122         extensions.
8123
8124 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
8125
8126         * m68klinux-nat.c (getregs_supplies): Make static.
8127         (getfpregs_supplies): Likewise.
8128         (have_ptrace_getregs): Likewise.
8129
8130 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
8131
8132         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
8133         in call to get_die_type_at_offset.
8134
8135 2012-03-06  Stan Shebs  <stan@codesourcery.com>
8136
8137         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
8138         * mi/mi-cmd-disas.c: Ditto.
8139         * mi/mi-cmd-env.c: Ditto.
8140         * mi/mi-cmd-file.c: Ditto.
8141         * mi/mi-cmd-stack.c: Ditto.
8142         * mi/mi-cmd-target.c: Ditto.
8143         * mi/mi-cmd-var.c: Ditto.
8144         * mi/mi-cmds.c: Ditto.
8145         * mi/mi-cmds.h: Ditto.
8146         * mi/mi-console.c: Ditto.
8147         * mi/mi-getopt.c: Ditto.
8148         * mi/mi-getopt.h: Ditto.
8149         * mi/mi-interp.c: Ditto.
8150         * mi/mi-main.c: Ditto.
8151         * mi/mi-out.c: Ditto.
8152         * mi/mi-parse.c: Ditto.
8153         * mi/mi-parse.h: Ditto.
8154         * mi/mi-symbol-cmds.c: Ditto.
8155
8156         * mi/mi-getopt.h: Move mi_opt struct up.
8157         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
8158         return.
8159         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
8160
8161 2012-03-06  Tom Tromey  <tromey@redhat.com>
8162
8163         * proc-service.c (ps_pglobal_lookup): Set the current program
8164         space.
8165
8166 2012-03-06  Pedro Alves  <palves@redhat.com>
8167
8168         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
8169
8170 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
8171
8172         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
8173
8174 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8175
8176         Code cleanup.
8177         * common/linux-osdata.c (linux_common_core_of_thread): New function
8178         comment.
8179         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
8180         call by linux_common_core_of_thread.
8181         (linux_nat_core_of_thread_1): Remove.
8182         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
8183         * linux-thread-db.c: Include linux-osdata.h.
8184         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
8185         linux_common_core_of_thread.
8186
8187 2012-03-05  Tom Tromey  <tromey@redhat.com>
8188
8189         * value.c (value_primitive_field): Don't fetch contents for
8190         non-virtual bases.
8191
8192 2012-03-05  Tom Tromey  <tromey@redhat.com>
8193
8194         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
8195
8196 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8197
8198         * s390-nat.c: Include "gregset.h".
8199
8200 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8201
8202         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
8203         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
8204         (libunwind_load): New variable so_error, use it for dlerror.  Try to
8205         load also LIBUNWIND_SO_7.
8206
8207 2012-03-05  Pedro Alves  <palves@redhat.com>
8208
8209         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
8210         is not NULL, and remove resulting dead code.
8211
8212 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
8213
8214         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
8215         prologue to sh_analyze_prologue.
8216         (sh_analyze_prologue): Make better use of such an upper limit, and
8217         generally be more cautious about accessing memory.
8218
8219 2012-03-05  Tom Tromey  <tromey@redhat.com>
8220
8221         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
8222         _initialize_ia64_hpux_tdep.
8223
8224 2012-03-05  Pedro Alves  <palves@redhat.com>
8225
8226         PR gdb/13766
8227
8228         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
8229         the register state is clear, supply explicit zero, instead of
8230         marking the register unavailable.
8231
8232 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8233
8234         * NEWS: Mention OpenVMS ia64 new target.
8235
8236 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8237
8238         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
8239         (ia64_unw_accessors, ia64_unw_rse_accessors)
8240         (ia64_libunwind_descr): Declare.
8241         * ia64-vms-tdep.c: New file.
8242         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
8243         (ia64_libunwind_descr): Make them public.
8244         * configure.tgt: Add ia64-*-*vms*.
8245         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
8246         (ALLDEPFILES): Add ia64-vms-tdep.c
8247
8248 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8249
8250         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
8251         * remote.c (PACKET_qXfer_uib): New enum value.
8252         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
8253         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
8254         (_initialize_remote): Call add_packet_config_cmd for
8255         xfer:uib packet.
8256
8257 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8258
8259         * osabi.c (gdb_osabi_names): Add OpenVMS.
8260         (generic_elf_osabi_sniffer): Likewise.
8261         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
8262
8263 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
8264
8265         Removed unused code.
8266         * libunwind-frame.c (libunwind_frame_unwind)
8267         (libunwind_frame_base_address): Remove.
8268         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
8269
8270 2012-03-04  Yao Qi  <yao@codesourcery.com>
8271
8272         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
8273         remove trailing new line.
8274         (agent_run_command, agent_run_command): Add _ markup.
8275         (agent_capability_check): Likewise.
8276
8277 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8278
8279         * breakpoint.c (set_condition_evaluation_mode): Set
8280         CONDITION_EVALUATION_MODE unconditionally.
8281
8282 2012-03-03  Yao Qi  <yao@codesourcery.com>
8283
8284         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
8285         * common/agent.h: Update declaration.
8286         * inf-child.c (inf_child_use_agent): New.
8287         (inf_child_can_use_agent): New.
8288         (inf_child_target): Initialize fields `to_use_agent'
8289         and `to_can_use_agent'.
8290         * agent.c (agent_new_objfile): New.
8291         (_initialize_agent): Add agent_new_objfile to new_objfile
8292         observer.
8293
8294         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8295         New.
8296         (linux_target_install_ops): Initialize field
8297         `to_static_tracepoint_markers_by_strid'.
8298         * remote.c (free_current_marker): Move it to ...
8299         * tracepoint.c (free_current_marker): ... here.  New.
8300         (cleanup_target_stop): New.
8301         * tracepoint.h: Declare free_current_marker.
8302         * NEWS: Add one entry about `info static-tracepoint-marker'.
8303
8304 2012-03-03  Yao Qi  <yao@codesourcery.com>
8305
8306         * common/agent.c (agent_loaded_p): New.
8307         (agent_look_up_symbols): New global.
8308         * common/agent.h: Declare agent_loaded_p.
8309
8310 2012-03-03  Yao Qi  <yao@codesourcery.com>
8311
8312         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
8313         (agent_capability_check, agent_capability_invalidate): New.
8314         (symbol_list): New array element.
8315         * common/agent.h (enum agent_capa): New.
8316         * target.c (target_pre_inferior): Call agent_capability_invalidate.
8317
8318 2012-03-03  Yao Qi  <yao@codesourcery.com>
8319
8320         * target.h (struct target_ops) <to_use_agent>: New field.
8321         (struct target_ops) <to_can_use_agent>: New field.
8322         (target_use_agent, target_can_use_agent): New macro.
8323         * target.c (update_current_target): Update.
8324         * remote.c: New enum `PACKET_QAgent'.
8325         (remote_protocol_features): Add a new element.
8326         (remote_use_agent, remote_can_use_agent): New.
8327         (init_remote_ops): Initialize field `can_use_agent' with
8328         remote_can_use_agent.  Intiailize field `use_agent' with
8329         remote_use_agent.
8330         * common/agent.c (use_agent): New global.
8331         * common/agent.h: Declare it.
8332         * tracepoint.c (info_static_tracepoint_markers_command): Add
8333         comment.
8334         * Makefile.in (SFILES): Add common/agent.c and agent.c.
8335         (COMMON_OBS): Add common/agent.o and agent.o
8336         (common-agent.o): New rule.
8337         * agent.c: New.
8338
8339 2012-03-03  Yao Qi  <yao@codesourcery.com>
8340
8341         * common/agent.c: New.
8342         * common/agent.h: New.
8343         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
8344         AC_CHECK_HEADERS.
8345         * configure, configh.in: Regenerated.
8346
8347 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
8348
8349         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
8350         unless it exists for this architecture.
8351
8352 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
8353
8354         * language.h (struct language_defn): New "method" la_read_var_value.
8355         * findvar.c: #include "language.h".
8356         (default_read_var_value): Renames read_var_value.  Rewrite
8357         function description.
8358         (read_var_value): New function.
8359         * value.h (default_read_var_value): Add prototype.
8360         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
8361         New functions.
8362         (ada_language_defn): Add entry for la_read_var_value.
8363         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
8364         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
8365         language_defn structures to add entry for new la_read_var_value
8366         field.
8367
8368 2012-03-02  Tom Tromey  <tromey@redhat.com>
8369             Pedro Alves  <palves@redhat.com>
8370
8371         PR breakpoints/13776:
8372         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
8373         breakpoints.
8374         (delete_longjmp_breakpoint_at_next_stop): New.
8375         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
8376         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
8377         before deleting the inferior.  Add comments.
8378         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
8379         breakpoints immediately, but only on next stop.  Move that code
8380         next to where we mark other breakpoints for deletion.
8381
8382 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
8383
8384         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
8385         marker.
8386         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
8387         violation.
8388
8389 2012-03-02  Pedro Alves  <palves@redhat.com>
8390
8391         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
8392
8393 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
8394
8395         Fix -Wmissing-prototypes build.
8396         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
8397         * remote-sim.c (gdbsim_has_all_memory): Likewise.
8398         (gdbsim_has_memory): Likewise.
8399
8400 2012-03-02  Yao Qi  <yao@codesourcery.com>
8401
8402         Fix -Wmissing-prototypes build.
8403         * charset.c (phony_iconv_open): Make static.
8404         (phony_iconv_close, phony_iconv): Likewise.
8405         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
8406         * i386-windows-nat.c (_initialize_i386_windows_nat): New
8407         prototype.
8408         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
8409         * ser-mingw.c (create_select_thread): Make static.
8410         * windows-termcap.c (tgetent): New prototype.
8411         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
8412
8413 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
8414
8415         Fix -Wmissing-prototypes build.
8416         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
8417         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
8418         (_initialize_loadable): New prototypes.
8419
8420 2012-03-02  Doug Evans  <dje@google.com>
8421
8422         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
8423         abbrev table, read_comp_unit will do it.
8424
8425 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8426
8427         Fix -Wmissing-prototypes build.
8428         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
8429         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
8430         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
8431         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
8432         (_initialize_arm_symbian_tdep): New prototype.
8433         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
8434         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
8435         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
8436         static.
8437         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
8438         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
8439         prototype.
8440         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
8441         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
8442         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
8443         static.
8444         * moxie-tdep.c (moxie_process_record): Likewise.
8445         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
8446         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
8447         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
8448         (_initialize_rl78_tdep): New prototype.
8449         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
8450         (_initialize_rx_tdep): New prototype.
8451         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
8452         (_initialize_darwin_solib): New prototype.
8453         * solib-spu.c: Include solib-spu.h.
8454         (_initialize_spu_solib): New prototype.
8455         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
8456         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
8457         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
8458         (tic6x_software_single_step): Make it static.
8459         (_initialize_tic6x_tdep): New prototype.
8460
8461 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8462
8463         Fix -Wmissing-prototypes build.
8464         * cris-tdep.c (cris_can_use_hardware_watchpoint)
8465         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
8466
8467 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
8468
8469         Fix -Wmissing-prototypes build.
8470         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
8471         (frv_have_stopped_data_address): Remove.
8472
8473 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
8474
8475         Fix -Wmissing-prototypes build.
8476         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
8477         * sh-tdep.c: Include sh64-tdep.h.
8478         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
8479         * sh64-tdep.c: Include sh64-tdep.h.
8480         * sh64-tdep.h: New file.
8481
8482 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
8483
8484         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
8485
8486 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
8487
8488         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
8489         sp_regnum once the gdbarch_init_osabi hook has been called.
8490
8491 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
8492
8493         * mips-tdep.c (mips32_bc1_pc): New function.
8494         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
8495         BPOSGE32 and BPOSGE64 instructions.
8496         (deal_with_atomic_sequence): Likewise.
8497         (mips32_instruction_has_delay_slot): Likewise.
8498
8499 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
8500             Chris Dearman  <chris@mips.com>
8501             Maciej W. Rozycki  <macro@codesourcery.com>
8502             Joseph Myers  <joseph@codesourcery.com>
8503
8504         * features/mips-dsp.xml: New file.
8505         * features/mips64-dsp.xml: New file.
8506         * features/mips-dsp-linux.xml: New file.
8507         * features/mips64-dsp-linux.xml: New file.
8508         * features/Makefile (WHICH): Add mips-dsp-linux and
8509         mips64-dsp-linux.
8510         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
8511         * features/mips-dsp-linux.c: New file.
8512         * features/mips64-dsp-linux.c: New file.
8513         * regformats/mips-dsp-linux.dat: New file.
8514         * regformats/mips64-dsp-linux.dat: New file.
8515         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
8516         registers.
8517         (mips64_linux_register_addr): Likewise.
8518         (mips64_linux_regsets_fetch_registers): Likewise.
8519         (mips64_linux_regsets_store_registers): Likewise.
8520         (mips64_linux_fetch_registers): Update call to
8521         mips64_linux_regsets_fetch_registers.
8522         (mips64_linux_store_registers): Update call to
8523         mips64_linux_regsets_store_registers.
8524         (mips_linux_read_description): Probe for DSP registers.
8525         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
8526         and initialize_tdesc_mips64_dsp_linux.
8527         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
8528         Remove padding of no longer used embedded register slots.
8529         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
8530         (MIPS_RESTART_REGNUM): Redefine enum value.
8531         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
8532         strings.
8533         (mips_tx39_reg_names): Likewise.
8534         (mips_linux_reg_names): New array of register names for Linux
8535         targets.
8536         (mips_register_name): Check for a null pointer in
8537         mips_processor_reg_names and return an empty string.
8538         (mips_register_type): Exclude embedded registers for the IRIX
8539         and Linux ABIs.
8540         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
8541         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
8542         DSP registers.
8543         (mips_stab_reg_to_regnum): Handle DSP accumulators.
8544         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
8545         (mips_gdbarch_init): Likewise.  Initialize internal register
8546         indices for the Linux ABI.  Use dynamic numbers to refer to
8547         registers, as applicable, while parsing the target description.
8548         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
8549
8550 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
8551
8552         * frame.h (read_frame_register_unsigned): Fix typo in function
8553         description.
8554
8555 2012-03-01  Pedro Alves  <palves@redhat.com>
8556
8557         * jit-reader.in [!__cplusplus]
8558         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
8559
8560 2012-03-01  Pedro Alves  <palves@redhat.com>
8561
8562         * configure.ac (build_warnings): Add -Wmissing-prototypes.
8563         * configure: Regenerate.
8564
8565 2012-03-01  Pedro Alves  <palves@redhat.com>
8566
8567         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
8568         * breakpoint.c (create_exception_master_breakpoint, trace_command)
8569         (ftrace_command, strace_command): Make static.
8570         * d-lang.c (_initialize_d_language): Declare.
8571         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
8572         * dwarf2loc.c (_initialize_dwarf2loc):
8573         * dwarf2read.c (process_psymtab_comp_unit): Make static.
8574         * exec.c (exec_get_section_table): Make static.
8575         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
8576         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
8577         * inferior.c (remove_inferior_command, add_inferior_command)
8578         (clone_inferior_command): Make static.
8579         * linux-nat.c (linux_nat_thread_address_space)
8580         (linux_nat_core_of_thread): Make static.
8581         * linux-tdep.c (_initialize_linux_tdep): Declare.
8582         * objc-lang.c (_initialize_objc_lang): Declare.
8583         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
8584         Make static.
8585         (_initialize_opencl_language): Declare.
8586         * record.c (_initialize_record): Declare.
8587         * remote.c (demand_private_info, remote_get_tib_address)
8588         (remote_supports_cond_tracepoints)
8589         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
8590         Make static.
8591         * skip.c (_initialize_step_skip): Declare.
8592         * symtab.c (skip_prologue_using_lineinfo): Make static.
8593         * tracepoint.c (delete_trace_state_variable)
8594         (trace_variable_command, delete_trace_variable_command)
8595         (get_uploaded_tsv, find_matching_tracepoint_location)
8596         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
8597         Make static.
8598         * value.c (pack_unsigned_long): Make static.
8599         * varobj.c (varobj_ensure_python_env): Make static.
8600         * windows-tdep.c (_initialize_windows_tdep): Declare.
8601         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
8602
8603 2012-03-01  Pedro Alves  <palves@redhat.com>
8604
8605         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
8606         gdbarch parameter.
8607         (linux_init_abi): Install it as has_shared_address_space gdbarch
8608         callback.
8609
8610 2012-03-01  Pedro Alves  <palves@redhat.com>
8611
8612         * observer.c (observer_test_first_notification_function)
8613         (observer_test_second_notification_function)
8614         (observer_test_third_notification_function): Add declarations.
8615
8616 2012-03-01  Pedro Alves  <palves@redhat.com>
8617
8618         * common/signals.c (default_target_signal_to_host)
8619         (default_target_signal_from_host): Move ...
8620         * arch-utils.c: ... here.
8621         * arch-utils.h (default_target_signal_to_host)
8622         (default_target_signal_from_host): Declare.
8623
8624         * common/signals.c (target_signal_from_command): Move ...
8625         * infrun.c: ... here.
8626         * inferior.h (target_signal_from_command): Declare.
8627         * target.h (target_signal_from_command)
8628         (default_target_signal_from_host, default_target_signal_to_host):
8629         Delete declarations.
8630
8631         * common/signals.c (_initialize_signals): Delete.
8632
8633 2012-03-01  Pedro Alves  <palves@redhat.com>
8634
8635         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
8636         both __cplusplus and !__cplusplus.
8637
8638 2012-03-01  Pedro Alves  <palves@redhat.com>
8639
8640         * psymtab.c (find_and_open_source): Delete declaration.
8641         * source.c (find_and_open_source): Move comment ...
8642         * source.h (find_and_open_source): ... to this new declaration.
8643
8644 2012-03-01  Pedro Alves  <palves@redhat.com>
8645
8646         * inline-frame.c: Include inline-frame.h.
8647
8648 2012-03-01  Pedro Alves  <palves@redhat.com>
8649
8650         * tui/tui-data.c (set_gen_win_origin): Delete.
8651         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
8652         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
8653
8654 2012-03-01  Pedro Alves  <palves@redhat.com>
8655
8656         * remote.c (encode_actions): Delete declaration.
8657         * tracepoint.c (encode_actions): Make extern.
8658         * tracepoint.h (encode_actions): Declare.
8659
8660 2012-03-01  Pedro Alves  <palves@redhat.com>
8661
8662         * python/py-breakpoint.c: Include python.h.
8663         * python/py-continueevent.c (create_continue_event_object): Make
8664         static.
8665         * python/py-lazy-string.c (stpy_get_type): Make static.
8666         * python/py-newobjfileevent.c (create_new_objfile_event_object):
8667         Make static.
8668         * python/py-utils.c (unicode_to_target_python_string): Make
8669         static.
8670         * python/py-value.c: Include python.h.
8671
8672 2012-03-01  Pedro Alves  <palves@redhat.com>
8673
8674         * inferior.c (delete_threads_of_inferior): Delete.
8675
8676 2012-03-01  Pedro Alves  <palves@redhat.com>
8677
8678         Import fallback definitions from glibc.
8679
8680         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
8681         ps_prochandle): Forward declare.
8682         (ps_err_e): Use glibc's comments.
8683         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
8684         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
8685         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
8686         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
8687         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
8688         (struct ps_prochandle): Adjust comment.
8689
8690 2012-03-01  Pedro Alves  <palves@redhat.com>
8691
8692         * ada-lang.c (ada_modulus_from_name): Delete.
8693         * ada-lex.l (lexer_init): Make static.
8694
8695 2012-03-01  Pedro Alves  <palves@redhat.com>
8696
8697         PR gdb/13767
8698
8699         * frame.c (read_frame_register_unsigned): New.
8700         * frame.h (read_frame_register_unsigned): Declare.
8701         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
8702         Handle it.
8703         (print_i387_control_word): New parameter `control_p'.  Handle it.
8704         (i387_print_float_info): Handle unavailable float registers.
8705
8706 2012-03-01  Keith Seitz  <keiths@redhat.com>
8707
8708         * linespec.c (decode_line_2): Sort the list of methods
8709         alphabetically before presenting the user with a selection
8710         menu.
8711
8712 2012-03-01  Doug Evans  <dje@google.com>
8713
8714         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
8715         has_namespace_info.
8716         (dwarf2_read_abbrevs): Remove corresponding initialization.
8717
8718 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
8719
8720         * NEWS: Mention new python command class gdb.COMMAND_USER.
8721         * cli/cli-cmds.c (show_user): Print error when used on a python
8722         command.
8723         (init_cli_cmds): Update documentation strings for "show user" and
8724         "set/show max-user-call-depth" to clarify that it does not apply to
8725         python commands.
8726         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
8727         error check.
8728         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
8729         gdb python api.
8730         * top.c (execute_command): Only execute a user-defined command as a
8731         legacy macro if c->user_commands is set.
8732
8733 2012-03-01  Tom Tromey  <tromey@redhat.com>
8734
8735         * valprint.h (struct generic_val_print_decorations): New.
8736         (generic_val_print): Declare.
8737         * valprint.c (generic_val_print): New function.
8738         * p-valprint.c (p_decorations): New global.
8739         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
8740         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
8741         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
8742         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
8743         * m2-valprint.c (m2_decorations): New global.
8744         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
8745         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
8746         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
8747         TYPE_CODE_ERROR>: Call generic_val_print.
8748         * f-valprint.c (f_decorations): New global.
8749         (f_val_print): Use print_function_pointer_address.
8750         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
8751         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
8752         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
8753         generic_val_print.
8754         * c-valprint.c (c_decorations): New global.
8755         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
8756         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
8757         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
8758         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
8759         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
8760         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
8761         case.
8762
8763 2012-03-01  Tom Tromey  <tromey@redhat.com>
8764
8765         * valprint.c (val_print): Update.
8766         * p-valprint (pascal_val_print): Return void.
8767         * p-lang.h (pascal_val_print): Return void.
8768         * m2-valprint.c (m2_val_print): Return void.
8769         * m2-lang.h (m2_val_print): Return void.
8770         * language.h (struct language_defn) <la_val_print>: Return void.
8771         * language.c (unk_lang_val_print): Return void.
8772         * jv-valprint.c (java_val_print): Return void.
8773         * jv-lang.h (java_val_print): Return void.
8774         * f-valprint.c (f_val_print): Return void.
8775         * f-lang.h (f_val_print): Return void.
8776         * d-valprint.c (d_val_print): Return void.
8777         (dynamic_array_type): Update.
8778         * d-lang.h (d_val_print): Return void.
8779         * c-valprint.c (c_val_print): Return void.
8780         * c-lang.h (c_val_print): Return void.
8781         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
8782         void.
8783         * ada-lang.h (ada_val_print): Return void.
8784
8785 2012-03-01  Tom Tromey  <tromey@redhat.com>
8786
8787         * value.h (val_print): Return void.
8788         * valprint.c (val_print): Return void.
8789
8790 2012-03-01  Tom Tromey  <tromey@redhat.com>
8791
8792         * value.h (common_val_print): Return void.
8793         * valprint.c (common_val_print): Return void.
8794
8795 2012-03-01  Tom Tromey  <tromey@redhat.com>
8796
8797         * value.h (value_print): Return void.
8798         * valprint.c (value_print): Return void.
8799         * p-valprint.c (pascal_value_print): Return void.
8800         * p-lang.h (pascal_value_print): Return void.
8801         * language.h (struct language_defn) <la_value_print>: Return
8802         void.
8803         * language.c (unk_lang_value_print): Return void.
8804         * jv-valprint.c (java_value_print): Return void.
8805         * jv-lang.h (java_value_print): Return void.
8806         * f-valprint.c (c_value_print): Don't declare.
8807         Include c-lang.h.
8808         * c-valprint.c (c_value_print): Return void.
8809         * c-lang.h (c_value_print): Return void.
8810         * ada-valprint.c (ada_value_print): Return void.
8811         * ada-lang.h (ada_value_print): Return void.
8812
8813 2012-03-01  Tom Tromey  <tromey@redhat.com>
8814
8815         * value.c (value_primitive_field): Handle virtual base classes.
8816
8817 2012-03-01  Tom Tromey  <tromey@redhat.com>
8818
8819         * gdbtypes.h (struct vbase): Remove.
8820
8821 2012-03-01  Tom Tromey  <tromey@redhat.com>
8822
8823         * c-valprint.c (print_function_pointer_address): Move...
8824         * valprint.c: ... here.  Make non-static.
8825         * m2-valprint.c (print_function_pointer_address): Remove.
8826         * valprint.h (print_function_pointer_address): Declare.
8827
8828 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
8829
8830         * NEWS: Document the fact that one can provide a condition when
8831         creating an Ada exception catchpoint.
8832
8833 2012-03-01  Tom Tromey  <tromey@redhat.com>
8834
8835         * valprint.c (val_print_type_code_flags): Fix placement of
8836         trailing brace.
8837
8838 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
8839
8840         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
8841         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
8842         environment variable before calling update-copyright.
8843
8844 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
8845
8846         * gnulib/extra/update-copyright: Update to the latest from
8847         gnulib's git repository.
8848         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
8849         variable to 2 instead of 1.
8850
8851 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8852
8853         * varobj.c (c_value_of_variable): Remove dead code.
8854
8855 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8856
8857         * ada-lex.p (processId): Do not modify already encoded IDs.
8858         Update function documentation.
8859
8860 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8861
8862         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
8863         "name" with "struct symbol *name_sym".
8864         * ada-exp.y (write_var_or_type): Update call to
8865         ada_find_renaming_symbol.
8866         "name" with "struct symbol *name_sym". Adjust Implementation
8867         accordingly.  Adjust the function documentation.
8868
8869 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8870
8871         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
8872         * ada-lang.c (ada_find_any_type): Add advance declaration.
8873         Make static.  Replace ada_find_any_symbol by
8874         ada_find_any_type_symbol.
8875         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
8876         Improve function description.  Make static.
8877         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
8878         Replace ada_find_any_symbol by ada_find_any_type_symbol.
8879
8880 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8881
8882         * ada-lang.c (struct tag_args): Delete.
8883         (ada_get_tsd_type): Function body moved up in source file.
8884         (ada_tag_name_1, ada_tag_name_2): Delete.
8885         (ada_get_tsd_from_tag): New function.
8886         (ada_tag_name_from_tsd): New function.
8887         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
8888         to determine the tag name.
8889
8890 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8891
8892         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
8893         declaration.
8894         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
8895         function.
8896
8897 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8898
8899         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
8900
8901 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8902
8903         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
8904         full searches.
8905
8906 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8907
8908         * ada-lang.c (constrained_packed_array_type): If there is a
8909         parallel XA type, use it to determine the array index type.
8910
8911 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8912
8913         * ada-valprint.c (ada_val_print_1): If our value is a reference
8914         to an array descriptor, dereference it before converting it
8915         to a simple array.
8916
8917 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8918
8919         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
8920         creating fixed value.
8921         (ada_value_ind, ada_coerce_ref, assign_component)
8922         (ada_evaluate_subexp): Remove call to unwrap_value before
8923         call to ada_to_fixed_value.
8924
8925 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8926
8927         * ada-lang.c (to_fixed_array_type): Set result's type name.
8928
8929 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
8930
8931         * ada-lang.c (catch_ada_exception_command_split): Add new
8932         argument cond_string.  Add support for condition at end of
8933         "catch exception" commands.
8934         (ada_decode_exception_location): Add new argument cond_string.
8935         Update call to catch_ada_exception_command_split.
8936         (create_ada_exception_catchpoint): Add new argument cond_string.
8937         Set the breakpoint condition if needed.
8938         (catch_ada_exception_command): Update call to
8939         ada_decode_exception_location.
8940         (ada_decode_assert_location): Add function documentation.
8941         Add support for condition at end of "catch assert" command.
8942         (catch_assert_command): Update calls to ada_decode_assert_location
8943         and create_ada_exception_catchpoint.
8944
8945 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
8946
8947         Fix disp-step-syscall.exp: fork: single step over fork.
8948         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
8949         (i386_linux_get_syscall_number_from_regcache): ... here, new function
8950         comment, change parameters gdbarch and ptid to regcache.  Remove
8951         parameter regcache, initialize gdbarch from regcache here.
8952         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
8953         New functions.
8954         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
8955         instead.
8956         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
8957         'syscall'.  Make the 'int' check more strict.
8958
8959 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
8960
8961         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
8962         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
8963         (i386_linux_intx80_sysenter_syscall_record): ... here.
8964         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
8965         Use the renamed function name.
8966
8967 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
8968
8969         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
8970         * breakpoint.c (until_break_command): Likewise.
8971         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
8972         * infcall.c (call_function_by_hand): Likewise.
8973         * infcmd.c (finish_forward): Likewise.
8974         * infrun.c (insert_exception_resume_breakpoint): Likewise.
8975
8976 2012-02-28  Tristan Gingold  <gingold@adacore.com>
8977
8978         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
8979         avoid variable assignments inside condition.
8980
8981 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
8982
8983         Fix static analysis issue found by cppcheck.
8984         * microblaze-tdep.c (microblaze_extract_return_value): Fix
8985         uninitialized BUF for size 2.
8986
8987 2012-02-27  Chris Dearman  <chris@mips.com>
8988             Nathan Froyd  <froydnj@codesourcery.com>
8989             Maciej W. Rozycki  <macro@codesourcery.com>
8990
8991         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
8992         (mips16_instruction_has_delay_slot): Likewise.
8993         (mips_segment_boundary): Likewise.
8994         (mips_adjust_breakpoint_address): Likewise.
8995         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
8996
8997 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
8998             Maciej W. Rozycki  <macro@codesourcery.com>
8999
9000         * infrun.c (handle_inferior_event): Don't proceed through
9001         shared library trampolines if stepping at the machine
9002         instruction level.
9003
9004 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
9005
9006         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
9007         too.
9008
9009 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
9010
9011         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
9012         (sh_stub_unwind_sniffer): New functions.
9013         (sh_stub_unwind): New variable.
9014         (sh_gdbarch_init): Wire everything.
9015
9016 2012-02-27  Pedro Alves  <palves@redhat.com>
9017
9018         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
9019         (linux_nat_post_attach_wait): Adjust to use
9020         linux_proc_pid_is_stopped.
9021         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
9022         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
9023         based on pid_is_stopped from both linux-nat.c and
9024         gdbserver/linux-low.c, and renamed.
9025
9026 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
9027
9028         * remote.c (remote_watchpoint_addr_within_range): New function.
9029         (init_remote_ops): Use it.
9030
9031 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
9032
9033         * target.h (target_watchpoint_addr_within_range): Document macro.
9034
9035 2012-02-24  Pedro Alves  <palves@redhat.com>
9036
9037         * stack.c (set_last_displayed_sal): Issue internal_error instead
9038         of warning, and issue it after clearing the last displayed sal.
9039
9040 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
9041             Pedro Alves  <palves@redhat.com>
9042
9043         * breakpoint.c (until_break_command): Install breakpoints after
9044         all frame manipulations.
9045
9046 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9047
9048         * remote.c (remote_supports_cond_breakpoints): New forward
9049         declaration.
9050         (remote_add_target_side_condition): New function.
9051         (remote_insert_breakpoint): Add target-side breakpoint
9052         conditional if supported.
9053         (remote_insert_hw_breakpoint): Likewise.
9054         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
9055         hook.
9056
9057         * target.c (update_current_target): Inherit
9058         to_supports_evaluation_of_breakpoint_conditions.
9059         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
9060
9061         * target.h (struct target_ops)
9062         <to_supports_evaluation_of_breakpoint_conditions>: New field.
9063         (target_supports_evaluation_of_breakpoint_conditions): New #define.
9064
9065         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
9066         (condition_evaluation_both, condition_evaluation_auto,
9067         condition_evaluation_host, condition_evaluation_target,
9068         condition_evaluation_enums, condition_evaluation_mode_1,
9069         condition_evaluation_mode): New static globals.
9070         (translate_condition_evaluation_mode): New function.
9071         (breakpoint_condition_evaluation_mode): New function.
9072         (gdb_evaluates_breakpoint_condition_p): New function.
9073         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
9074         (mark_breakpoint_modified): New function.
9075         (mark_breakpoint_location_modified): New function.
9076         (set_condition_evaluation_mode): New function.
9077         (show_condition_evaluation_mode): New function.
9078         (bp_location_compare_addrs): New function.
9079         (get_first_location_gte_addr): New helper function.
9080         (set_breakpoint_condition): Free condition bytecode if locations
9081         has become unconditional.  Call mark_breakpoint_modified (...).
9082         (condition_command): Call update_global_location_list (1) for
9083         breakpoints.
9084         (breakpoint_xfer_memory): Use is_breakpoint (...).
9085         (is_breakpoint): New function.
9086         (parse_cond_to_aexpr): New function.
9087         (build_target_condition_list): New function.
9088         (insert_bp_location): Handle target-side conditional
9089         breakpoints and call build_target_condition_list (...).
9090         (update_inserted_breakpoint_locations): New function.
9091         (insert_breakpoint_locations): Handle target-side conditional
9092         breakpoints.
9093         (bpstat_check_breakpoint_conditions): Add comment.
9094         (bp_condition_evaluator): New function.
9095         (bp_location_condition_evaluator): New function.
9096         (print_breakpoint_location): Print information on where the condition
9097         will be evaluated.
9098         (print_one_breakpoint_location): Likewise.
9099         (init_bp_location): Call mark_breakpoint_location_modified (...) for
9100         breakpoint location.
9101         (force_breakpoint_reinsertion): New functions.
9102         (update_global_location_list): Handle target-side breakpoint
9103         conditions.
9104         Reinsert locations that are already inserted if conditions have
9105         changed.
9106         (bp_location_dtor): Free agent expression bytecode.
9107         (disable_breakpoint): Call mark_breakpoint_modified (...).
9108         Call update_global_location_list (...) with parameter 1 for breakpoints.
9109         (disable_command): Call mark_breakpoint_location_modified (...).
9110         Call update_global_location_list (...) with parameter 1 for breakpoints.
9111         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
9112         (enable_command): mark_breakpoint_location_modified (...).
9113         (_initialize_breakpoint): Update documentation and add
9114         condition-evaluation breakpoint subcommand.
9115
9116         * breakpoint.h: Include ax.h.
9117         (condition_list): New data structure.
9118         (condition_status): New enum.
9119         (bp_target_info) <cond_list>: New field.
9120         (bp_location) <condition_changed, cond_bytecode>: New fields.
9121         (is_breakpoint): New prototype.
9122
9123 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9124
9125         * remote.c (remote_state) <cond_breakpoints>: New field.
9126         (PACKET_ConditionalBreakpoints): New enum.
9127         (remote_cond_breakpoint_feature): New function.
9128         (remote_protocol_features): Add new ConditionalBreakpoints entry.
9129         (remote_supports_cond_breakpoints): New function.
9130         (_initialize_remote): Add new packet configuration for
9131         target-side conditional breakpoints.
9132
9133 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9134
9135         * NEWS: Mention target-side conditional breakpoint support,
9136         new condition-evaluation breakpoint subcommand and remote
9137         packet extensions.
9138
9139 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9140
9141         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
9142         number.
9143
9144 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
9145
9146         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
9147         (after_prologue): Remove.
9148
9149 2012-02-23  Tom Tromey  <tromey@redhat.com>
9150
9151         * jv-valprint.c (java_val_print): Remove dead code.
9152
9153 2012-02-23  Tristan Gingold  <gingold@adacore.com>
9154
9155         * ada-tasks.c (struct ada_tasks_inferior_data): Add
9156         known_tasks_element and known_tasks_length fields.
9157         (read_known_tasks_array): Change argument type.  Use pointer type
9158         and number of elements from DATA.  Adjust.
9159         (read_known_tasks_list): Likewise.
9160         (get_known_tasks_addr): Remove.
9161         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
9162         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
9163         type and array length.  Merge former get_known_tasks_addr code.
9164
9165 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
9166
9167         PR backtrace/13716
9168         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
9169         it after set_momentary_breakpoint.
9170
9171 2012-02-22  Sterling Augustine  <saugustine@google.com>
9172
9173         PR 13689:
9174         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
9175
9176 2012-02-22  Gary Benson  <gbenson@redhat.com>
9177
9178         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
9179         (find_slot_in_mapped_hash): Likewise.
9180
9181 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
9182
9183         PR build/13638
9184         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
9185         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
9186         * configure: Regenerate.
9187
9188 2012-02-21  Tristan Gingold  <gingold@adacore.com>
9189             Pedro Alves  <palves@redhat.com>
9190
9191         * ia64-tdep.c: Do not include libunwind-ia64.h.
9192         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
9193         Include libunwind-ia64.h instead of libunwind.h.
9194         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
9195         for libunwind.h existence.
9196         * configure, config.in: Regenerate.
9197
9198 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
9199
9200         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
9201         instead of value_rtti_target_type.
9202         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
9203         instead of value_rtti_target_type.
9204         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
9205         value_rtti_target_type.
9206         * valops.c (value_ind): Extract function readjust_indirect_value_type.
9207         (value_rtti_target_type): Rename to ...
9208         (value_rtti_indirect_type): ... here and make it indirect.  Update
9209         function comment.
9210         * value.c (readjust_indirect_value_type): New function.
9211         (coerce_ref): Support for enclosing type setting for references
9212         with readjust_indirect_value_type.
9213         * value.h (readjust_value_type): New declaration.
9214         (value_rtti_target_type): Rename to ...
9215         (value_rtti_indirect_type): ... here.
9216
9217 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
9218
9219         * MAINTAINERS (Write After Approval): Add myself to the list.
9220
9221 2012-02-20  Doug Evans  <dje@google.com>
9222
9223         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
9224         Rename objfile_p_char parameter to objfilep.
9225         (build_objfile_section_table): Result is now void.  All callers
9226         updated.
9227         * objfiles.h (struct objfile): Tweak comments, whitespace.
9228         (build_objfile_section_table): Update.
9229
9230         * elfread.c (elf_symfile_segments): Fix warning text.
9231
9232 2012-02-20  Tom Tromey  <tromey@redhat.com>
9233
9234         PR gdb/13498:
9235         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
9236         particular set of file names once.
9237         (dw2_map_symbol_filenames): Likewise.
9238
9239 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9240
9241         Code cleanup.
9242         * main.c (write_files): Remove the declaration.
9243         (external_editor_command): Move the declaration ...
9244         [GDBTK] (external_editor_command): ... here.  Fix the comment.
9245
9246 2012-02-20  Tom Tromey  <tromey@redhat.com>
9247
9248         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
9249         extraneous block.
9250
9251 2012-02-20  Tristan Gingold  <gingold@adacore.com>
9252
9253         * darwin-nat.h (enum darwin_msg_state): Add comments.
9254
9255 2012-02-20  Tristan Gingold  <gingold@adacore.com>
9256
9257         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
9258         value.
9259
9260 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
9261
9262         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
9263         between function description and implementation.
9264
9265 2012-02-17  Tom Tromey  <tromey@redhat.com>
9266
9267         PR python/12070:
9268         * python/py-event.c (event_object_getset): New global.
9269         (event_object_type): Reference it.
9270         * python/py-type.c (field_object_getset): New global.
9271         (field_object_type): Reference it.
9272         * python/python-internal.h (gdb_py_generic_dict): Declare.
9273         * python/py-utils.c (gdb_py_generic_dict): New function.
9274
9275 2012-02-17  Tristan Gingold  <gingold@adacore.com>
9276
9277         * solib-darwin.c (darwin_current_sos): Check magic and filetype
9278
9279 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
9280
9281         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
9282         TYPE_CALLING_CONVENTION annotation.
9283
9284 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
9285
9286         * MAINTAINERS: Add rx to target ISA section.
9287         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
9288         (ALLDEPFILES): Add rx-tdep.c.
9289
9290 2012-02-16  Tom Tromey  <tromey@redhat.com>
9291
9292         * symfile.c (symbol_file_add_main_1): Use inferior's
9293         symfile_flags.
9294         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
9295         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
9296         inferior.
9297         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
9298         inferior.
9299         (follow_exec): Use inferior's symfile_flags.
9300         * inferior.h (struct inferior) <symfile_flags>: New field.
9301
9302 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
9303
9304         PR gdb/9734:
9305         * remote-sim.c (gdbsim_create_inferior): Call error() when
9306         sim_create_inferior() fails.
9307
9308 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
9309
9310         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
9311
9312 2012-02-16  Tom Tromey  <tromey@redhat.com>
9313
9314         PR c++/13653:
9315         * thread.c (struct current_thread_cleanup) <was_removable>: New
9316         field.
9317         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
9318         (make_cleanup_restore_current_thread): Initialize new field.
9319
9320 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
9321
9322         * MAINTAINERS: Add rl78 to target ISA section.
9323         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
9324         (ALLDEPFILES): Add rl78-tdep.c.
9325         * NEWS: Mention rl78 as a new target.
9326
9327 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
9328
9329         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
9330         data.
9331         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
9332
9333 2012-02-15  Tom Tromey  <tromey@redhat.com>
9334
9335         PR gdb/12659:
9336         * infcmd.c (registers_info): Print just the current register's
9337         name.
9338
9339 2012-02-15  Tom Tromey  <tromey@redhat.com>
9340
9341         * python/py-symbol.c (sympy_value): Use _().
9342
9343 2012-02-15  Pedro Alves  <palves@redhat.com>
9344
9345         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
9346         output to be like native targets'.
9347         (remote_pid_to_str): Special case the null ptid.
9348
9349 2012-02-14  Stan Shebs  <stan@codesourcery.com>
9350
9351         * NEWS: Mention enable count command.
9352         * breakpoint.h (struct breakpoint): New field enable_count.
9353         * breakpoint.c (enable_breakpoint_disp): Add count argument.
9354         (enable_breakpoint): Add arg to call.
9355         (struct disp_data): New struct.
9356         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
9357         (do_map_enable_once_breakpoint): Create a struct and pass it.
9358         (do_map_enable_delete_breakpoint): Ditto.
9359         (do_map_enable_count_breakpoint): New function.
9360         (enable_count_command): New function.
9361         (bpstat_stop_status): Decrement enable_count.
9362         (print_one_breakpoint_location): Report enable count.
9363         (_initialize_breakpoint): Add enable count command.
9364
9365 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
9366
9367         * rl78-tdep.c (reggroups.h): Include.
9368         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
9369         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
9370         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
9371         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
9372         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
9373         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
9374         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
9375         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
9376         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
9377         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
9378         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
9379         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
9380         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
9381         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
9382         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
9383         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
9384         beginning of register list.
9385         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
9386         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
9387         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
9388         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
9389         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
9390         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
9391         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
9392         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
9393         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
9394         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
9395         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
9396         the pseudo registers.  Rearrange other pseudo registers too so
9397         that the bank registers appear at the end.
9398         (rl78_register_type): Account for the fact that the byte sized
9399         bank registers are now pseudo-registers.
9400         (rl78_register_name): Rearrange the register name array.  Make
9401         initial set of raw banked registers inaccessible.
9402         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
9403         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
9404         case for copying bytes back and forth between raw and pseudo
9405         versions of the banked registers.  Update other cases to reflect
9406         the changed names.
9407         (rl78_return_value): Update to account for changed names of
9408         raw registers.
9409         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
9410         rl78_register_sim_regno().
9411
9412 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
9413
9414         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
9415         the name parameter being passed to find_pc_partial_function().
9416
9417 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9418
9419         * MAINTAINERS: Step down from being ia64 target maintainer.
9420
9421 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
9422
9423         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
9424         compilation warning.
9425
9426 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
9427
9428         Fix crash on loaded shlibs without loaded exec_bfd.
9429         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
9430         (set_section_command): Replace exec_bfd by p->bfd.
9431
9432 2012-02-10  Tom Tromey  <tromey@redhat.com>
9433
9434         * linespec.c (decode_line_internal): Skip symtabs_from_filename
9435         when we have a C++ qualified name.
9436
9437 2012-02-10  Pedro Alves  <palves@redhat.com>
9438
9439         * inferior.c (inferior_pid_to_str): New.
9440         (print_inferior, inferior_command): Use it.
9441
9442 2012-02-10  Pedro Alves  <palves@redhat.com>
9443
9444         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
9445         the test CFLAGS.
9446         * configure: Regenerate.
9447
9448 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
9449
9450         * linespec.c (decode_line_internal): Fix comment correctness.
9451
9452 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
9453
9454         PR gdb/12953
9455         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
9456         * amd64bsd-nat.c: Add support for debug registers (adapted from
9457         i386bsd-nat.c).
9458         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
9459         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
9460         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
9461         (amd64bsd_dr_get_control): New functions.
9462         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
9463         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
9464         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
9465         watchpoints initialization.
9466         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
9467
9468 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
9469
9470         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
9471         flds_bnds.fields.
9472         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
9473
9474 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
9475
9476         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
9477
9478 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
9479
9480         * language.h (symbol_name_cmp_ftype): Renames
9481         symbol_name_match_p_ftype.
9482         (struct language_defn)[la_get_symbol_name_cmp]: Renames
9483         la_get_symbol_name_match_p.
9484         * ada-lang.c (ada_get_symbol_name_cmp): Renames
9485         ada_get_symbol_name_match_p.  Update comment.
9486         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
9487         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
9488         Renames symbol_name_match_p.  Update field type.
9489         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
9490         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
9491         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
9492         "la_get_symbol_name_cmp" in comments.
9493         * language.c: Likewise.
9494
9495 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9496
9497         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
9498         %eflags offset.
9499         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
9500         (amd64_sol2_gregset32_reg_offs): Likewise.
9501
9502 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
9503
9504         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
9505         of the returned BFD is allocated by GDB.
9506
9507 2012-02-07  Tom Tromey  <tromey@redhat.com>
9508
9509         PR python/12027:
9510         * python/python-internal.h (frame_object_type): Declare.
9511         * python/py-symbol.c (sympy_needs_frame): New function.
9512         (sympy_value): New function.
9513         (symbol_object_getset): Add "needs_frame".
9514         (symbol_object_methods): Add "value".
9515         * python/py-frame.c (frame_object_type): No longer static.
9516
9517 2012-02-07  Tom Tromey  <tromey@redhat.com>
9518
9519         PR python/13599:
9520         * python/py-symbol.c (sympy_line): New function.
9521         (symbol_object_getset): Add "line".
9522
9523 2012-02-07  Tom Tromey  <tromey@redhat.com>
9524
9525         * charset.c (find_charset_names): Check 'in' against NULL.
9526
9527 2012-02-06  Doug Evans  <dje@google.com>
9528
9529         * gdbtypes.h (struct main_type): Change type of name,tag_name,
9530         and fields.name members from char * to const char *.  All uses updated.
9531         (struct cplus_struct_type): Change type of fn_fieldlists.name member
9532         from char * to const char *.  All uses updated.
9533         (type_name_no_tag): Update.
9534         (lookup_unsigned_typename, lookup_signed_typename): Update.
9535         * gdbtypes.c (type_name_no_tag): Change result type
9536         from char * to const char *.  All callers updated.
9537         (lookup_unsigned_typename, lookup_signed_typename): Change type of
9538         name parameter from char * to const char *.
9539         * symtab.h (struct cplus_specific): Change type of demangled_name
9540         member from char * to const char *.  All uses updated.
9541         (struct general_symbol_info): Change type of name and
9542         mangled_lang.demangled_name members from char * to const char *.
9543         All uses updated.
9544         (symbol_get_demangled_name, symbol_natural_name): Update.
9545         (symbol_demangled_name, symbol_search_name): Update.
9546         * symtab.c (symbol_get_demangled_name): Change result type
9547         from char * to const char *.  All callers updated.
9548         (symbol_natural_name, symbol_demangled_name): Ditto.
9549         (symbol_search_name): Ditto.
9550         (completion_list_add_name): Change type of symname,sym_text,
9551         text,word parameters from char * to const char *.
9552         (completion_list_objc_symbol): Change type of sym_text,
9553         text,word parameters from char * to const char *.
9554         * ada-lang.c (find_struct_field): Change type of name parameter
9555         from char * to const char *.
9556         (encoded_ordered_before): Similarly for N0,N1 parameters.
9557         (old_renaming_is_invisible): Similarly for function_name parameter.
9558         (ada_type_name): Change result type from char * to const char *.
9559         All callers updated.
9560         * ada-lang.h (ada_type_name): Update.
9561         * buildsym.c (hashname): Change type of name parameter
9562         from char * to const char *.
9563         * buildsym.h (hashname): Update.
9564         * dbxread.c (end_psymtab): Change type of include_list parameter
9565         from char ** to const char **.
9566         * dwarf2read.c (determine_prefix): Change result type
9567         from char * to const char *.  All callers updated.
9568         * f-lang.c (find_common_for_function): Change type of name, funcname
9569         parameters from char * to const char *.
9570         * f-lang.c (find_common_for_function): Update.
9571         * f-valprint.c (list_all_visible_commons): Change type of funcname
9572         parameters from char * to const char *.
9573         * gdbarch.sh (static_transform_name): Change type of name parameter
9574         and result from char * to const char *.
9575         * gdbarch.c: Regenerate.
9576         * gdbarch.h: Regenerate.
9577         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
9578         of name parameter from char * to const char *.
9579         * jv-lang.c (java_primitive_type_from_name): Ditto.
9580         (java_demangled_signature_length): Similarly for signature parameter.
9581         (java_demangled_signature_copy): Ditto.
9582         (java_demangle_type_signature): Ditto.
9583         * jv-lang.h (java_primitive_type_from_name): Update.
9584         (java_demangle_type_signature): Update.
9585         * objc-lang.c (specialcmp): Change type of a,b parameters
9586         from char * to const char *.
9587         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
9588         from char * to const char *.  All callers updated.
9589         * p-lang.h (is_pascal_string_type): Update.
9590         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
9591         of name parameter from char * to const char *.
9592         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
9593         * utils.c (fprintf_symbol_filtered): Ditto.
9594         * defs.h (fprintf_symbol_filtered): Update.
9595         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
9596         * stabsread.h (end_psymtab): Update.
9597         * stack.c (find_frame_funname): Change type of funname parameter
9598         from char ** to const char **.
9599         * stack.h (find_frame_funname): Update.
9600         * typeprint.c (type_print): Change type of varstring parameter
9601         from char * to const char *.
9602         * value.h (type_print): Update.
9603         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
9604         from char * to const char *.  All callers updated.
9605         (xcoff_end_psymtab): Change type of include_list parameter
9606         from char ** to const char **.  All callers updated.
9607         (swap_sym): Similarly for name parameter.  All callers updated.
9608         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
9609         Use xstrdup.
9610         (process_coff_symbol): Use xstrdup.
9611         * stabsread.c (stabs_method_name_from_physname): Renamed from
9612         update_method_name_from_physname.  Change result type from void
9613         to char *.  All callers updated.
9614         (read_member_functions): In has_destructor case, store name in objfile
9615         obstack instead of malloc space.  In !has_stub case, fix mem leak.
9616
9617 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
9618
9619         * configure: Rebuild.
9620         * configure.ac: Put -L../bfd and -L../libiberty at the front of
9621         LDFLAGS.
9622
9623 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
9624
9625         * configure.tgt (rl78-*-elf): New target.
9626         * rl78-tdep.c: New file.
9627
9628 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
9629
9630         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
9631         and continue the loop.  Add QUIT statement.
9632
9633 2012-02-03  Tom Tromey  <tromey@redhat.com>
9634
9635         PR gdb/13596:
9636         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
9637         bfd_lookup_symbol_from_symtab.
9638         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
9639         gdb_bfd_lookup_symbol_from_symtab.
9640
9641 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
9642
9643         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
9644         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
9645         symbol.  Add assertion that sym2 is never NULL.
9646
9647 2012-02-02  Doug Evans  <dje@google.com>
9648
9649         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
9650         "name" parameter to const char ** from char **.  All callers updated.
9651         (find_pc_partial_function): Ditto.
9652         (cache_pc_function_name): Change type to const char * from char *.
9653         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
9654         (find_pc_partial_function): Update.
9655         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
9656         type of "name" parameter to const char * from char *.
9657         All uses updated.
9658         * arch-utils.c (generic_in_solib_return_trampoline): Change
9659         type of "name" parameter to const char * from char *.
9660         * arch-utils.h (generic_in_solib_return_trampoline): Update.
9661         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
9662         type of "name" parameter to const char * from char *.
9663         * gdbarch.sh (in_solib_return_trampoline): Ditto.
9664         * gdbarch.c: Regenerate.
9665         * gdbarch.h: Regenerate.
9666         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
9667         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
9668         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
9669         type of "name" parameter to const char * from char *.
9670         * skip.c (skip_function_pc): Ditto.
9671         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
9672         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
9673         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
9674         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
9675         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
9676         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
9677         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
9678         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
9679         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
9680
9681 2012-02-02  Pedro Alves  <palves@redhat.com>
9682
9683         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
9684         the current inferior has no execution.  Make sure the current
9685         remote process matches gdb's current inferior.
9686
9687 2012-02-02  Tom Tromey  <tromey@redhat.com>
9688
9689         PR gdb/13405:
9690         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
9691         read-only memory.
9692
9693 2012-02-02  Tom Tromey  <tromey@redhat.com>
9694
9695         PR gdb/9307:
9696         * symtab.c (lookup_language_this): Set block_found.
9697
9698 2012-02-01  Tom Tromey  <tromey@redhat.com>
9699
9700         PR gdb/13431:
9701         * jit.c (struct jit_inferior_data): Rewrite.
9702         (struct jit_objfile_data): New.
9703         (get_jit_objfile_data): New function.
9704         (add_objfile_entry): Update.
9705         (jit_read_descriptor): Return int.  Replace descriptor_addr
9706         argument with inf_data.  Update.  Don't call error.
9707         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
9708         descriptor here.
9709         (jit_inferior_init): Don't look up descriptor.  Don't call error.
9710         (jit_reset_inferior_data_and_breakpoints)
9711         (jit_inferior_created_observer): Remove.
9712         (jit_inferior_exit_hook): Update.
9713         (jit_executable_changed_observer): Remove.
9714         (jit_event_handler): Update.
9715         (free_objfile_data): Reset inferior data if needed.
9716         (_initialize_jit): Update.
9717
9718 2012-02-01  Tom Tromey  <tromey@redhat.com>
9719
9720         * jit.c (bfd_open_from_target_memory): Move higher in file.
9721
9722 2012-02-01  Tristan Gingold  <gingold@adacore.com>
9723
9724         * libunwind-frame.c (libunwind_load): Display message if dlopen
9725         failed.
9726
9727 2012-02-01  Gary Benson  <gbenson@redhat.com>
9728
9729         * symtab.h (symbol_found_callback_ftype): New typedef.
9730         (iterate_over_symbols): Use the above.
9731         * symtab.c (iterate_over_symbols): Likewise.
9732         * language.h (language_defn->la_iterate_over_symbols): Likewise.
9733         * ada-lang.c (ada_iterate_over_symbols): Likewise.
9734         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
9735         (iterate_name_matcher): Document return values.
9736         (collect_one_symbol): Likewise.
9737         (collect_function_symbols): Likewise.
9738         (collect_symbols): Likewise.
9739
9740 2012-02-01  Tom Tromey  <tromey@redhat.com>
9741
9742         * ada-lang.c (resolve_subexp): Update.
9743         (ada_lookup_symbol_list): Add 'full_search' argument.
9744         (ada_iterate_over_symbols): Pass 0 as full_search argument to
9745         ada_lookup_symbol_list.
9746         (ada_lookup_encoded_symbol): Update.
9747         (get_var_value): Update.
9748         * ada-exp.y (block_lookup): Update.
9749         (write_var_or_type): Update.
9750         (write_name_assoc): Update.
9751         * ada-lang.h (ada_lookup_symbol_list): Update.
9752
9753 2012-01-31  Tom Tromey  <tromey@redhat.com>
9754
9755         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
9756         comment.
9757
9758 2012-01-31  Doug Evans  <dje@google.com>
9759
9760         * symtab.h: Remove outdated comment.
9761         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
9762
9763 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
9764
9765         Fix build error in Darwin port.
9766         * i386-darwin-nat.c: Include i386-nat.h.
9767
9768 2012-01-30  Tom Tromey  <tromey@redhat.com>
9769
9770         PR breakpoints/13568:
9771         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
9772         argument.  Check for recursive includes.
9773         (dwarf_decode_macros): Create an include hash.
9774
9775 2012-01-30  Michael Eager  <eager@eagercon.com>
9776
9777         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
9778         * ppc-linux-tdep.c: Include glibc-tdep.h.
9779         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
9780         (powerpc_linux_in_plt_stub): New function.
9781         (powerpc_linux_in_dynsym_resolve_code): New function.
9782         (ppc_skip_trampoline_code): New function.
9783         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
9784         Use glibc_skip_solib_resolver.
9785
9786 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
9787
9788         Code cleanup: Make 1440 bytes of data segment read-only.
9789         * arch-utils.c (endian_enum): Make it const char *const [].
9790         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
9791         Likewise.
9792         * breakpoint.c (always_inserted_enums): Likewise.
9793         * cli/cli-cmds.c (script_ext_enums): Likewise.
9794         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
9795         enumlist parameter const char *const *.
9796         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
9797         const char *const *.
9798         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
9799         parameter const char *const *.
9800         * cris-tdep.c (cris_modes): Make it const char *const [].
9801         * filesystem.c (target_file_system_kinds): Likewise.
9802         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
9803         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
9804         (can_use_displaced_stepping_enum, scheduler_enums)
9805         (exec_direction_names): Likewise.
9806         * language.c (_initialize_language): Make the type_or_range_names and
9807         case_sensitive_names variables const char *const [].
9808         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
9809         * python/python.c (python_excp_enums): Likewise.
9810         * remote.c (interrupt_sequence_modes): Likewise.
9811         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
9812         * serial.c (logbase_enums): Likewise.
9813         * sh-tdep.c (sh_cc_enum): Likewise.
9814         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
9815         Likewise.
9816         * symtab.c (multiple_symbols_modes): Likewise.
9817         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
9818         Likewise.
9819         * utils.c (internal_problem_modes): Likewise.
9820
9821 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
9822
9823         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
9824         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
9825         result.
9826
9827 2012-01-27  Doug Evans  <dje@google.com>
9828
9829         * configure.ac (with_python): Fix absolute path handling for win32.
9830         * configure: Regenerate.
9831
9832 2012-01-26  Doug Evans  <dje@google.com>
9833
9834         * symtab.c: Whitespace cleanup, no code changes.
9835
9836         * symtab.c (lookup_symbol_in_language): Improve comment.
9837         (lookup_symbol_aux): Fix comment.
9838
9839         * psymtab.c (add_psymbol_to_list): Result is now "void".
9840         * psympriv.h (add_psymbol_to_list): Update.
9841
9842         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
9843
9844 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
9845
9846         Do not open script filenames twice.
9847         * cli/cli-cmds.c (source_script_from_stream): Pass to
9848         source_python_script also STREAM.
9849         * python/py-auto-load.c (source_section_scripts): Pass to
9850         source_python_script_for_objfile also STREAM.
9851         (auto_load_objfile_script): Pass to source_python_script_for_objfile
9852         also INPUT.
9853         * python/python-internal.h (source_python_script_for_objfile): New
9854         parameter file, rename parameter file to filename.
9855         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
9856         instead if !_WIN32.  Update the function comment.
9857         (source_python_script, source_python_script_for_objfile)
9858         (source_python_script): New parameter file, rename parameter file to
9859         filename.  Pass FILENAME to python_run_simple_file.
9860         * python/python.h (source_python_script): New parameter file, rename
9861         parameter file to filename.
9862
9863 2012-01-26  Pedro Alves  <palves@redhat.com>
9864
9865         * corelow.c (core_has_fake_pid): Delete.
9866         (core_close): Delete references to `core_has_fake_pid'.
9867         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
9868         (core_open): Delete references to `core_has_fake_pid'.
9869         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
9870         the removed global.
9871
9872 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
9873
9874         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
9875         Remove language parameter from name_matcher.  Adjust the comment.
9876         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
9877         Remove language parameter.
9878         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
9879         * linespec.c (iterate_name_matcher): Likewise.
9880         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
9881         name_matcher.  Adjust call accordingly.
9882         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
9883         (maintenance_check_symtabs): Adjust type of parameter "fun".
9884         * psymtab.h (maintenance_check_symtabs): Likewise.
9885
9886 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
9887
9888         * language.h (symbol_name_match_p_ftype): New typedef.
9889         (struct language_defn): Replace field la_symbol_name_compare
9890         by la_get_symbol_name_match_p.
9891         * ada-lang.c (ada_get_symbol_name_match_p): New function.
9892         (ada_language_defn): Use it.
9893         * linespec.c (struct symbol_matcher_data): New type.
9894         (iterate_name_matcher): Rewrite.
9895         (iterate_over_all_matching_symtabs): Pass a pointer to
9896         a symbol_matcher_data struct to expand_symtabs_matching
9897         instead of just the lookup name.
9898         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
9899         opencl-lang.c, p-lang.c, language.c: Delete field
9900         la_symbol_name_compare, and replace by NULL for new field
9901         la_get_symbol_name_match_p.
9902         * symfile.h (struct quick_symbol_functions): Update comment.
9903
9904 2012-01-25  Tom Tromey  <tromey@redhat.com>
9905
9906         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
9907         dereferencing.
9908
9909 2012-01-24  Tom Tromey  <tromey@redhat.com>
9910
9911         PR symtab/12406:
9912         * solib.c (update_solib_list): Update the program space's
9913         added_solibs and deleted_solibs fields.
9914         * progspace.h (struct program_space) <added_solibs,
9915         deleted_solibs>: New fields.
9916         (clear_program_space_solib_cache): Declare.
9917         * progspace.c (release_program_space): Call
9918         clear_program_space_solib_cache.
9919         (clear_program_space_solib_cache): New function.
9920         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
9921         bpstat_stop_status.  Use handle_solib_event.
9922         * breakpoint.c: Include gdb_regex.h.
9923         (print_solib_event): New function.
9924         (bpstat_print): Use print_solib_event.
9925         (bpstat_stop_status): Add special case for bp_shlib_event.
9926         (handle_solib_event): New function.
9927         (bpstat_what): Use handle_solib_event.
9928         (struct solib_catchpoint): New.
9929         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
9930         (breakpoint_hit_catch_solib, check_status_catch_solib)
9931         (print_it_catch_solib, print_one_catch_solib)
9932         (print_mention_catch_solib, print_recreate_catch_solib): New
9933         functions.
9934         (catch_solib_breakpoint_ops): New global.
9935         (catch_load_or_unload, catch_load_command_1)
9936         (catch_unload_command_1): New functions.
9937         (internal_bkpt_check_status): Add special case for
9938         bp_shlib_event.
9939         (internal_bkpt_print_it): Use print_solib_event.
9940         (initialize_breakpoint_ops): Initialize
9941         catch_solib_breakpoint_ops.
9942         (_initialize_breakpoint): Register "catch load" and "catch
9943         unload".
9944         * breakpoint.h (handle_solib_event): Declare.
9945         * NEWS: Add entry for "catch load" and "catch unload".
9946
9947 2012-01-24  Tom Tromey  <tromey@redhat.com>
9948
9949         * ada-lang.c: Include gdb_vecs.h.
9950         * charset.c: Include gdb_vecs.h.
9951         * tracepoint.h: Include gdb_vecs.h.
9952         * gdb_vecs.h: New file.
9953
9954 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
9955
9956         * breakpoint.c (breakpoint_hit_catch_fork)
9957         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
9958         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
9959         * infrun.c (inferior_has_forked, inferior_has_vforked)
9960         (inferior_has_execd, inferior_has_called_syscall): Delete.
9961         (handle_syscall_event): Get syscall_number from the execution
9962         control state's wait status.
9963         (wait_for_inferior): Don't clear syscall_number.
9964
9965 2012-01-24  Pedro Alves  <palves@redhat.com>
9966
9967         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
9968         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
9969         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
9970         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
9971         `ws' parameter.
9972         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
9973         false for events other than TARGET_SIGNAL_TRAP.
9974         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
9975         Add `ws' parameter.
9976         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
9977         events other than TARGET_SIGNAL_TRAP.
9978         (tracepoint_breakpoint_hit): Add `ws' parameter.
9979         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
9980         parameter.
9981         (bpstat_stop_status): Same.
9982         (pc_at_non_inline_function): Same.
9983         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
9984         to pass the current event's waitstatus to bpstat_stop_status
9985         and pc_at_non_inline_function.
9986
9987 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
9988
9989         Code cleanup.
9990         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
9991         Update the function comment for it.
9992         (source_script_with_search): Call make_cleanup_fclose for STREAM.
9993         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
9994         for STREAM.
9995
9996 2012-01-24  Pedro Alves  <palves@redhat.com>
9997
9998         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
9999         outside `bs->stop' block.
10000         (bpstat_what): Rework bp_shlib_event handling.
10001         (internal_bkpt_check_status): If the breakpoint is a
10002         bp_shlib_event, then set bs->stop and bs->print if
10003         stop_on_solib_events is set.
10004
10005 2012-01-24  Gary Benson  <gbenson@redhat.com>
10006
10007         Delete #if 0'd out code.
10008         * stack.c (print_frame_label_vars): Remove.
10009         (catch_info): Likewise.
10010         (_initialize_stack): Remove "info catch" command.
10011         * NEWS: Mention the above.
10012
10013 2012-01-24  Pedro Alves  <palves@redhat.com>
10014
10015         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
10016         it.
10017         (remote_notice_new_inferior): If the remote end doesn't support
10018         the multiprocess extensions, then the PID is fake.
10019         (add_current_inferior_and_thread): New.
10020         (remote_start_remote): Use it.
10021         (extended_remote_attach_1): Adjust.
10022         (extended_remote_create_inferior_1): Use
10023         add_current_inferior_and_thread.
10024
10025 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10026
10027         Fix watchpoints to be specific for each inferior.
10028         * breakpoint.c (watchpoint_in_thread_scope): Verify also
10029         current_program_space.
10030         * i386-nat.c (i386_inferior_data_cleanup): New.
10031         (i386_inferior_data_get): Replace variable inf_data_local by an
10032         inferior_data call.
10033         (i386_use_watchpoints): Initialize i386_inferior_data.
10034         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
10035         specific iterate_over_lwps.
10036
10037 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10038
10039         Fix watchpoints across inferior fork.
10040         * amd64-linux-nat.c (update_debug_registers_callback): Update the
10041         comment for linux_nat_iterate_watchpoint_lwps.
10042         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
10043         linux_nat_iterate_watchpoint_lwps.
10044         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
10045         * i386-linux-nat.c (update_debug_registers_callback): Update the
10046         comment for linux_nat_iterate_watchpoint_lwps.
10047         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
10048         linux_nat_iterate_watchpoint_lwps.
10049         (i386_linux_prepare_to_resume): New comment on Linux kernel.
10050         * i386-nat.c: Include inferior.h.
10051         (dr_mirror): Remove.
10052         (i386_inferior_data, struct i386_inferior_data)
10053         (i386_inferior_data_get): New.
10054         (i386_debug_reg_state): Use i386_inferior_data_get.
10055         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
10056         (i386_insert_watchpoint, i386_remove_watchpoint)
10057         (i386_stopped_data_address, i386_insert_hw_breakpoint)
10058         (i386_remove_hw_breakpoint): New variable state, use
10059         i386_debug_reg_state instead of DR_MIRROR.
10060         * linux-nat.c (delete_lwp): New declaration.
10061         (num_lwps): Move here from downwards.
10062         (delete_lwp_cleanup): New.
10063         (linux_child_follow_fork): Create new child_lp, call
10064         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
10065         PTRACE_DETACH.
10066         (num_lwps): Move upwards.
10067         (linux_nat_iterate_watchpoint_lwps): New.
10068         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
10069         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
10070
10071 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
10072
10073         GDB 7.4 released.
10074
10075 2012-01-23  Pedro Alves  <palves@redhat.com>
10076
10077         * top.c (caution): Rename to ...
10078         (confirm): ... this.
10079         (show_caution): Rename to ...
10080         (show_confirm): ... this.
10081         (quit_cover): Adjust.
10082         (init_main): Adjust.
10083         * top.h (caution): Rename to ...
10084         (confirm): ... this.
10085         * utils.c (internal_vproblem, defaulted_query): Adjust.
10086
10087 2012-01-23  Pedro Alves  <palves@redhat.com>
10088
10089         * top.c (caution): Update comment.
10090         (execute_command): Don't consider the current value of `caution'.
10091
10092 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
10093
10094         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
10095
10096 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
10097
10098         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
10099         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
10100         * target.c (target_fileio_pwrite): Remove buffer address from
10101         debug output.
10102         (target_fileio_pread): Likewise.
10103
10104 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10105
10106         * NEWS: Document remote "info proc" and "generate-core-file".
10107
10108 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10109
10110         * gdbarch.sh (find_memory_regions): New callback.
10111         * gdbarch.c, gdbarch.h: Regenerate.
10112
10113         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
10114         callback before falling back to target method.
10115
10116         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
10117         (linux_target_install_ops): No longer install it.
10118
10119         * linux-tdep.c (linux_find_memory_regions): New function.
10120         (linux_init_abi): Install it.
10121
10122 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10123
10124         * gdbarch.sh (make_corefile_notes): New architecture callback.
10125         * gdbarch.c: Regenerate.
10126         * gdbarch.h: Likewise.
10127
10128         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
10129         before target_make_corefile_notes.  If NULL is returned, the
10130         target does not support core file generation.
10131
10132         * linux-nat.c: Include "linux-tdep.h".
10133         (find_signalled_thread, find_stop_signal): Remove.
10134         (linux_nat_do_thread_registers): Likewise.
10135         (struct linux_nat_corefile_thread_data): Likewise.
10136         (linux_nat_corefile_thread_callback): Likewise.
10137         (iterate_over_spus): Likewise.
10138         (struct linux_spu_corefile_data): Likewise.
10139         (linux_spu_corefile_callback): Likewise.
10140         (linux_spu_make_corefile_notes): Likewise.
10141         (linux_nat_collect_thread_registers): New function.
10142         (linux_nat_make_corefile_notes): Replace contents by call to
10143         linux_make_corefile_notes passing linux_nat_collect_thread_registers
10144         as native-only callback.
10145
10146         * linux-tdep.h: Include "bfd.h".
10147         (struct regcache): Add forward declaration.
10148         (linux_collect_thread_registers_ftype): New typedef.
10149         (linux_make_corefile_notes): Add prototype.
10150         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
10151         "regset.h", and "elf-bfd.h".
10152         (find_signalled_thread, find_stop_signal): New functions.
10153         (linux_spu_make_corefile_notes): Likewise.
10154         (linux_collect_thread_registers): Likewise.
10155         (struct linux_corefile_thread_data): New data structure.
10156         (linux_corefile_thread_callback): New funcion.
10157         (linux_make_corefile_notes): Likewise.
10158         (linux_make_corefile_notes_1): Likewise.
10159         (linux_init_abi): Install it.
10160
10161 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10162
10163         * gdbarch.sh (info_proc): New callback.
10164         * gdbarch.c, gdbarch.h: Regenerate.
10165
10166         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
10167         before falling back to the target info_proc callback.
10168
10169         * linux-nat.c: Do not include "cli/cli-utils.h".
10170         (linux_nat_info_proc): Remove.
10171         (linux_target_install_ops): No longer install it.
10172
10173         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
10174         (read_mapping): New function.
10175         (linux_info_proc): Likewise.
10176         (linux_init_abi): Install it.
10177
10178 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10179
10180         * defs.h (enum info_proc_what): Moved here from linux-nat.c
10181         * infcmd.c: (info_proc_cmd_1): New function.
10182         (info_proc_cmd): New function, moved here from equivalent routine
10183         orignally in linux-nat.c.
10184         (info_proc_cmd_mappings): Likewise.
10185         (info_proc_cmd_stat): Likewise.
10186         (info_proc_cmd_status): Likewise.
10187         (info_proc_cmd_cwd): Likewise.
10188         (info_proc_cmd_cmdline): Likewise.
10189         (info_proc_cmd_exe): Likewise.
10190         (info_proc_cmd_all): Likewise.
10191         (_initialize_infcmd): Install "info proc" command and subcommands.
10192
10193         * target.h (struct target_ops): Add to_info_proc.
10194         (target_info_proc): Add prototype.
10195         * target.c (target_info_proc): New function.
10196
10197         * procfs.c (procfs_info_proc): Add prototype.
10198         (info_proc_cmd): Rename into ...
10199         (procfs_info_proc): ... this.  Update argument types as appropriate
10200         for a to_info_proc implementation.  Handle "what" argument.
10201         (procfs_target): Install procfs_info_proc.
10202         (_initialize_procfs): No longer install "info proc" command.
10203
10204         * linux-nat.c: (enum info_proc_what): Remove.
10205         (linux_nat_info_proc_cmd_1): Rename into ...
10206         (linux_nat_info_proc): ... this.  Update argument types as appropriate
10207         for a to_info_proc implementation.
10208         (linux_nat_info_proc_cmd): Remove.
10209         (linux_nat_info_proc_cmd_mappings): Likewise.
10210         (linux_nat_info_proc_cmd_stat): Likewise.
10211         (linux_nat_info_proc_cmd_status): Likewise.
10212         (linux_nat_info_proc_cmd_cwd): Likewise.
10213         (linux_nat_info_proc_cmd_cmdline): Likewise.
10214         (linux_nat_info_proc_cmd_exe): Likewise.
10215         (linux_nat_info_proc_cmd_all): Likewise.
10216         (linux_target_install_ops): Install linux_nat_info_proc.
10217         (_initialize_linux_nat): No longer install "info proc" command
10218         and subcommands.
10219
10220 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10221
10222         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
10223         * config.in, configure: Regenerate.
10224
10225         * target.h (struct target_ops): Add to_fileio_readlink.
10226         (target_fileio_readlink): Add prototype.
10227         * target.c (target_fileio_readlink): New function.
10228
10229         * inf-child.c: Conditionally include <sys/param.h>.
10230         (inf_child_fileio_readlink): New function.
10231         (inf_child_target): Install it.
10232
10233         * remote.c (PACKET_vFile_readlink): New enum value.
10234         (remote_hostio_readlink): New function.
10235         (init_remote_ops): Install it.
10236         (_initialize_remote): Handle vFile:readlink packet type.
10237
10238 2012-01-20  Pedro Alves  <palves@redhat.com>
10239             Ulrich Weigand  <ulrich.weigand@linaro.org>
10240
10241         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
10242         * config.in, configure: Regenerate.
10243
10244         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
10245         to_fileio_pread, to_fileio_close, to_fileio_unlink.
10246         (target_fileio_open): Add prototype.
10247         (target_fileio_pwrite): Likewise.
10248         (target_fileio_pread): Likewise.
10249         (target_fileio_close): Likewise.
10250         (target_fileio_unlink): Likewise.
10251         (target_fileio_read_alloc): Likewise.
10252         (target_fileio_read_stralloc): Likewise.
10253
10254         * target.c: Include "gdb/fileio.h".
10255         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
10256         (default_fileio_target): New function.
10257         (target_fileio_open): Likewise.
10258         (target_fileio_pwrite): Likewise.
10259         (target_fileio_pread): Likewise.
10260         (target_fileio_close): Likewise.
10261         (target_fileio_unlink): Likewise.
10262         (target_fileio_close_cleanup): Likewise.
10263         (target_fileio_read_alloc_1): Likewise.
10264         (target_fileio_read_alloc): Likewise.
10265         (target_fileio_read_stralloc): Likewise.
10266
10267         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
10268         <fcntl.h>, and <unistd.h>.
10269         (inf_child_fileio_open_flags_to_host): New function.
10270         (inf_child_errno_to_fileio_error): Likewise.
10271         (inf_child_fileio_open): Likewise.
10272         (inf_child_fileio_pwrite): Likewise.
10273         (inf_child_fileio_pread): Likewise.
10274         (inf_child_fileio_close): Likewise.
10275         (inf_child_fileio_unlink): Likewise.
10276         (inf_child_target): Install to_fileio routines.
10277
10278         * remote.c (init_remote_ops): Install to_fileio routines.
10279
10280 2012-01-20  Pedro Alves  <palves@redhat.com>
10281             Ulrich Weigand  <ulrich.weigand@linaro.org>
10282
10283         * remote.c (remote_multi_process_p): Only check for multi-process
10284         protocol feature, do not check for extended protocol.
10285         (remote_supports_multi_process): Check for extended protocol here.
10286         (set_general_process): Likewise.
10287         (extended_remote_kill): Likewise.
10288         (remote_pid_to_str): Likewise.
10289         (remote_query_supported): Always query multiprocess mode.
10290
10291 2012-01-20  Pedro Alves  <palves@redhat.com>
10292             Ulrich Weigand  <ulrich.weigand@linaro.org>
10293
10294         * inferior.h (struct inferior): Add fake_pid_p.
10295         * inferior.c (exit_inferior_1): Clear fake_pid_p.
10296         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
10297         magic_null_ptid since the remote side doesn't provide a real PID.
10298
10299 2012-01-19  Tom Tromey  <tromey@redhat.com>
10300
10301         * NEWS: Combine the two Python sections.
10302
10303 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
10304
10305         * target.h (target_close): Update comment on the target's unpush state.
10306
10307 2012-01-19  Pedro Alves  <palves@redhat.com>
10308
10309         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
10310         linux_nat_async directly instead of going through the target
10311         vector.
10312         * target.c (unpush_target): Close target after unpushing it, not
10313         before.
10314
10315 2012-01-19  Gary Benson  <gbenson@redhat.com>
10316
10317         * mdebugread.c (sort_blocks): Replace integer constants with ones
10318         derived from FIRST_LOCAL_BLOCK.
10319
10320 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
10321             Jan Kratochvil  <jan.kratochvil@redhat.com>
10322
10323         PR gdb/9538
10324         * symfile.c (find_separate_debug_file): New function.
10325         (terminate_after_last_dir_separator): Likewise.
10326         (find_separate_debug_file_by_debuglink): Also try realpath.
10327         * configure.ac (AC_CHECK_FUNCS): Add lstat.
10328         * configure: Regenerate.
10329         * config.in: Regenerate.
10330
10331 2012-01-18  Doug Evans  <dje@google.com>
10332
10333         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
10334         (main.o): Remove rule.
10335         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
10336         (--with-sysroot): Rewrite.
10337         * configure: Regenerate.
10338         * config.in: Regenerate.
10339
10340 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
10341
10342         * parse.c (initialize_expout): New function.
10343         (reallocate_expout): Likewise.
10344         (parse_exp_in_context): Use `initialize_expout' and
10345         `reallocate_expout' when appropriate.
10346
10347 2012-01-18  Pedro Alves  <palves@redhat.com>
10348
10349         * record.c (struct record_breakpoint, record_breakpoint_p)
10350         (record_breakpoints): New.
10351         (record_insert_breakpoint, record_remove_breakpoint): Manage
10352         record breakpoints list.  Only remove breakpoints from the
10353         inferior if they had been inserted there in the first place.
10354
10355 2012-01-17  Doug Evans  <dje@google.com>
10356
10357         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
10358         if we know we don't have a file name to look for.
10359
10360 2012-01-17  Pedro Alves  <palves@redhat.com>
10361
10362         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
10363         the frame's stop reason is UNWIND_UNAVAILABLE.
10364
10365 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
10366
10367         Fix compilation error.
10368         * m2-exp.y (yyerror): Use ANSI C prototype.
10369
10370 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
10371
10372         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
10373         (growbuf_by_size): Likewise.
10374         (yyerror): Likewise.
10375         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
10376         (modblock): Remove variable (was #if 0'ed).
10377         (parse_number): Convert prototype from K&R to ANSI C.
10378         (yyerror): Likewise.
10379         * objc-exp.y (parse_number): Likewise.
10380         (yyerror): Likewise.
10381         (yylex): Remove #if 0'ed code.
10382         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
10383         (yyerror): Likewise.
10384
10385 2012-01-16  Tom Tromey  <tromey@redhat.com>
10386
10387         * NEWS: Add item.
10388         * symtab.h (compare_filenames_for_search): Declare.
10389         * symtab.c (compare_filenames_for_search): New function.
10390         (iterate_over_some_symtabs): Use it.
10391         * symfile.h (struct quick_symbol_functions)
10392         <map_symtabs_matching_filename>: Change spec.
10393         * psymtab.c (partial_map_symtabs_matching_filename): Use
10394         compare_filenames_for_search.  Update for new spec.
10395         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
10396         compare_filenames_for_search.  Update for new spec.
10397         * breakpoint.c (clear_command): Use compare_filenames_for_search.
10398
10399 2012-01-16  Tom Tromey  <tromey@redhat.com>
10400
10401         PR python/13281:
10402         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
10403         (struct main_type) <flag_flag_enum>: New field.
10404         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
10405         * NEWS: Add entries.
10406         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
10407         enums.
10408         * python/lib/gdb/printing.py (_EnumInstance): New class.
10409         (FlagEnumerationPrinter): Likewise.
10410
10411 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
10412
10413         * breakpoint.c (create_sals_from_address_default): New function.
10414         (create_breakpoints_sal_default): Likewise.
10415         (decode_linespec_default): Likewise.
10416         (is_marker_spec): Removed.
10417         (strace_marker_p): New function.
10418         (init_breakpoint_sal): Using `strace_marker_p' instead of
10419         `is_marker_spec'.
10420         (create_breakpoint): Call method `create_sals_from_address' from
10421         breakpoint_ops, replacing code that created SALs conditionally
10422         on the type of the breakpoint.  Call method `create_breakpoints_sal',
10423         replacing code that created breakpoints conditionally on the type
10424         wanted.
10425         (base_breakpoint_create_sals_from_address): New function.
10426         (base_breakpoint_create_breakpoints_sal): Likewise.
10427         (base_breakpoint_decode_linespec): Likewise.
10428         (base_breakpoint_ops): Add methods
10429         `base_breakpoint_create_sals_from_address',
10430         `base_breakpoint_create_breakpoints_sal' and
10431         `base_breakpoint_decode_linespec'.
10432         (bkpt_create_sals_from_address): New function.
10433         (bkpt_create_breakpoints_sal): Likewise.
10434         (bkpt_decode_linespec): Likewise.
10435         (tracepoint_create_sals_from_address): Likewise.
10436         (tracepoint_create_breakpoints_sal): Likewise.
10437         (tracepoint_decode_linespec): Likewise.
10438         (strace_marker_create_sals_from_address): Likewise.
10439         (strace_marker_create_breakpoints_sal): Likewise.
10440         (strace_marker_decode_linespec): Likewise.
10441         (strace_marker_breakpoint_ops): New variable.
10442         (addr_string_to_sals): Remove `marker_spec'.  Call method
10443         `decode_linespec' from breakpoint_ops, replacing code that decoded
10444         an address string into a SAL.  Use `strace_marker_p' instead of
10445         `marker_spec'.
10446         (strace_command): Decide whether we are dealing with a static
10447         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
10448         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
10449         * breakpoint.h (linespec_result, linespec_sals): New forward
10450         declarations.
10451         (breakpoint_ops) <create_sals_from_address>,
10452         <create_breakpoints_sal>, <decode_linespec>: New methods.
10453
10454 2012-01-14  Doug Evans  <dje@google.com>
10455
10456         * NEWS: Update text for "maint set python print-stack".
10457         It is deprecated in gdb 7.4 and deleted in 7.5.
10458
10459 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
10460
10461         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
10462         including curses.h.
10463
10464 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
10465
10466         * configure: Regenerate.
10467         * config.in: Regenerate.
10468
10469 2012-01-12  Keith Seitz  <keiths@redhat.com>
10470
10471         PR mi/10586
10472         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
10473         (ANONYMOUS_UNION_NAME): Define.
10474         (is_path_expr_parent): New function.
10475         (get_path_expr_parent): New function.
10476         (is_anonymous_child): New function.
10477         (create_child_with_value): If the child is anonymous and without
10478         a name, assign an object name to it.
10479         (c_describe_child): Use get_path_expr_parent to determine
10480         the parent expression.
10481         If there field represents an anonymous struct or union and
10482         has no name, set an appropriate display name and expression.
10483         (cplus_describe_child): Likewise.
10484
10485 2012-01-12  Pedro Alves  <palves@redhat.com>
10486
10487         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
10488         available when %ebp is found to be zero (outermost).
10489
10490 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
10491
10492         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
10493         an internal gdb_static_assert.
10494         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
10495
10496 2012-01-11  Tom Tromey  <tromey@redhat.com>
10497
10498         PR gdb/9598:
10499         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
10500         catch" and "catch throw".
10501
10502 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
10503
10504         * blockframe.c (block_innermost_frame): Start search from selected
10505         frame, if present, or otherwise the current frame.
10506
10507         * c-exp.y (variable): Update innermost_block for
10508         'block COLONCOLON NAME' clause.
10509         * m2-exp.y (variable): Ditto.
10510         * objc-exp.y (variable): Ditto.
10511
10512 2012-01-10  Tom Tromey  <tromey@redhat.com>
10513
10514         PR python/13199:
10515         * python/python.c (finish_python_initialization): Set sys.argv.
10516
10517 2012-01-10  Doug Evans  <dje@google.com>
10518
10519         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
10520         "want_line_info".  All callers updated.
10521         (dwarf_decode_lines_1): New function.
10522         (handle_DW_AT_stmt_list): Add function comment.
10523         New arg "want_line_info".  All callers updated.
10524         (read_file_scope,read_type_unit_scope): Move comment from
10525         handle_DW_AT_stmt_list to here.
10526
10527 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10528
10529         Fix regression after libiberty/ update for GCC PR 6057 and others.
10530         * c-exp.y (operator) <OPERATOR DELETE>
10531         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10532         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
10533         (make_builtin_type, make_name): New variable i, add gdb_assert.
10534         (operator) <OPERATOR NEW>: Update ARGS to 3.
10535         (operator) <OPERATOR DELETE>: Add trailing space.
10536         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
10537         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10538         * cp-support.c (cp_canonicalize_string): Check NULL from
10539         cp_comp_to_string, call warning and return.
10540
10541 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10542
10543         Fix duplicate .o files after omitting libbfd.a.
10544         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
10545         (SFILES): Add corelow.c.
10546         (COMMON_OBS): Add corelow.o.
10547         (ALLDEPFILES): Remove corelow.c.
10548         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
10549         * config/alpha/alpha-osf3.mh: Likewise.
10550         * config/alpha/fbsd.mh: Likewise.
10551         * config/arm/nbsdaout.mh: Likewise.
10552         * config/arm/nbsdelf.mh: Likewise.
10553         * config/i386/i386gnu.mh: Likewise.
10554         * config/ia64/hpux.mh: Likewise.
10555         * config/ia64/linux.mh: Likewise.
10556         * config/m32r/linux.mh: Likewise.
10557         * config/m68k/linux.mh: Likewise.
10558         * config/mips/irix5.mh: Likewise.
10559         * config/mips/irix6.mh: Likewise.
10560         * config/pa/hpux.mh: Likewise.
10561         * config/pa/linux.mh: Likewise.
10562         * config/powerpc/aix.mh: Likewise.
10563         * config/sparc/linux.mh: Likewise.
10564         * config/sparc/linux64.mh: Likewise.
10565         * config/sparc/sol2.mh: Likewise.
10566         * config/vax/vax.mh: Likewise.
10567         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
10568         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
10569         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
10570         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
10571         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
10572         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
10573         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
10574         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
10575         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
10576         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
10577         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
10578         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
10579         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
10580         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
10581         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
10582         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
10583         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
10584         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
10585         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
10586         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
10587         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
10588         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
10589         corelow.o from gdb_target_obs.
10590         * corefile.c (core_target): Update the comment on NULL value.
10591         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
10592         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
10593         MATCHES.  Drop YUMMY set on NULL.
10594         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
10595         reclaim CORE_DATA if it is already NULL.
10596
10597 2012-01-09  Doug Evans  <dje@google.com>
10598
10599         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
10600         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
10601
10602 2012-01-09  Keith Seitz  <keiths@redhat.com>
10603
10604         * breakpoint.c (wrapper.h): Don't include.
10605
10606 2012-01-09  Keith Seitz  <keiths@redhat.com>
10607
10608         * Makefile.in (SFILES): Remove wrapper.c.
10609         (HFILES_NO_SRCDIR): Remove wrapper.h.
10610         (COMMON_OBS): Remove wrapper.o.
10611         * cli/cli-interp.c: Don't inlude wrapper.h.
10612         * corelow.c: Likewise.
10613         (core_open): Replace gdb_target_find_new_threads with
10614         TRY_CATCH around target_find_new_threads.
10615         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
10616         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
10617         * varobj.c (varobj_create): Likewise for parse_exp_1 and
10618         evaluate_expression.
10619         (varobj_set_value): Likewise for evaluate_expression and
10620         value_assign.
10621         (install_new_variable): Likewise for value_fetch_lazy.
10622         (adjust_value_for_child_access): Likewise for value_ind.
10623         (c_describe_child): Likewise for value_subscript and
10624         value_ind.
10625         (c_value_of_root): Likewise for evaluate_expression.
10626         * wrapper.c: Remove.
10627         * wrapper.h: Remove.
10628
10629 2012-01-09  Doug Evans  <dje@google.com>
10630
10631         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
10632         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
10633         "abfd" args with "section".  All callers updated.
10634         Error checking code moved ...
10635         (error_check_comp_unit_head): ... here.  New function.
10636         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
10637         Delete arg "abfd".  New arg "type_offset".  All callers updated.
10638         (create_debug_types_hash_table): Simplify by using
10639         read_and_check_type_unit_head.
10640
10641         * parser-defs.h (namecopy): Delete.
10642         * parse.c (namecopy, namecopy_size): Move into copy_name.
10643
10644 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
10645
10646         Partially fix duplicate .o files after omitting libbfd.a.
10647         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
10648         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10649         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
10650         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10651         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
10652         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
10653         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10654
10655 2012-01-09  Pedro Alves  <palves@redhat.com>
10656
10657         * MAINTAINERS: Update my email address.
10658
10659 2012-01-08  Doug Evans  <dje@google.com>
10660
10661         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
10662         n_type_units.  Rename type_comp_units to all_type_units.
10663         All uses updated.
10664         (add_signatured_type_cu_to_table): Renamed from
10665         add_signatured_type_cu_to_list.  All callers updated.
10666
10667         * gdbtypes.h (struct cplus_struct_type): Delete member
10668         nfn_fields_total.  All uses removed.
10669
10670 2012-01-06  Doug Evans  <dje@google.com>
10671
10672         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
10673         to top of file.
10674         (dwarf2_find_comp_unit): Delete.
10675         (process_psymtab_comp_unit): Make result "void".
10676         Delete args buffer, info_ptr, buffer_size, and replace with
10677         "section".  All callers updated.
10678         (dwarf2_build_psymtabs_hard): Simplify.
10679
10680 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
10681             Thiago Jung Bauermann  <bauerman@br.ibm.com>
10682
10683         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
10684         before `struct gdb_exception'.
10685         * breakpoint.c (update_global_location_list_nothrow)
10686         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
10687         * cp-abi.c (value_rtti_type): Likewise.
10688         * cp-support.c (cp_validate_operator): Likewise.
10689         * infrun.c (insert_exception_resume_breakpoint)
10690         (check_exception_resume, keep_going): Likewise.
10691         * mi-interp.c (mi_breakpoint_created)
10692         (mi_breakpoint_modified): Likewise.
10693         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
10694         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
10695         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
10696
10697 2012-01-05  Doug Evans  <dje@google.com>
10698
10699         * dwarf2read.c (statement_prologue): Delete, unused.
10700
10701         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
10702         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
10703
10704         * dwarf2read.c (comp_unit_header): Delete, unused.
10705
10706 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
10707
10708         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
10709         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
10710
10711 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
10712
10713         * infrun.c (normal_stop): Don't skip calling the normal_stop
10714         observers if the thread was doing a multi-step, but stopped for
10715         some reason other than stepping.
10716
10717 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
10718
10719         * cli/cli-decode.h: Add comments.
10720         (CMD_LIST_AMBIGUOUS): Moved to command.h
10721         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
10722         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
10723         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
10724         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
10725         (add_com, add_com_alias, add_info, add_info_alias)
10726         (complete_on_cmdlist, complete_on_enum, help_list): Remove
10727         declarations.
10728         * command.h: Add and adjust comments.
10729         (CMD_LIST_AMBIGUOUS): Moved here.
10730         (help_cmd, help_cmd_list): Delete declarations.
10731
10732 2012-01-04  Doug Evans  <dje@google.com>
10733
10734         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
10735         All callers updated.
10736         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
10737         Replace all arguments with "per_cu".  All callers updated.
10738
10739         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
10740
10741         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
10742         New arg "per_cu".  All callers updated.
10743
10744         Delete #if 0'd out code.
10745         * language.c (binop_result_type): Delete.
10746         (simple_type, ordered_type, same_type, integral_type): Delete.
10747         (numeric_type, character_type, string_type, boolean_type): Delete.
10748         (float_type, structured_type): Delete.
10749         * language.h: Update.
10750
10751 2012-01-04  Tom Tromey  <tromey@redhat.com>
10752
10753         * python/py-value.c (valpy_binop): Initialize 'res_val'.
10754
10755 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10756
10757         * corefile.c (close_exec_file): Delete.
10758         (reopen_exec_file): Remove commented out code that seems related
10759         to close_exec_file, which is being deleted here.
10760         * inferior.h (close_exec_file): Delete.
10761         * fork-child.c (fork_inferior): Remove call to fork_inferior.
10762
10763 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10764
10765         * ada-lang.c: #include "cli/cli-utils.h".
10766         (get_selections): Use skip_spaces.
10767         (ada_get_next_arg): Use skip_spaces and skip_to_space.
10768         (catch_ada_exception_command_split): Use skip_spaces.
10769         (ada_decode_assert_location): Likewise.
10770
10771 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10772
10773         * linespec.c (decode_line_internal): Check for C++ or Java
10774         compound constructs only if the current language is C, C++
10775         or Java.
10776
10777 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10778
10779         Revert:
10780         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10781                     Joel Brobecker  <brobecker@adacore.com>
10782         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
10783         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
10784         3 times.
10785         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
10786         fall through into AT_ENTRY_POINT.
10787         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
10788         DUMMY_ADDR with it.
10789         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
10790         PPC_INSN_SIZE skip to 3 times.
10791
10792 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10793
10794         * linespec.c (add_minsym): Preserve function descriptors.
10795
10796 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
10797
10798         * breakpoint.c (all_locations_are_pending): Consider locations
10799         in program spaces executing during startup pending as well.
10800
10801 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10802
10803         Copyright year update in most files of the GDB Project.
10804
10805 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10806
10807         * copyright.sh: Delete.
10808         * copyright.py: Rewrite.
10809
10810 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10811
10812         * gnulib/extra/update-copyright: New file, imported from gnulib.
10813
10814 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
10815
10816         * README (Copyright and License Notices): New section.
10817
10818 2012-01-03  Tom Tromey  <tromey@redhat.com>
10819
10820         PR python/12533:
10821         * python/py-value.c (valpy_dereference, valpy_get_address
10822         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
10823         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
10824         (valpy_absolute, valpy_richcompare): Free intermediate values.
10825
10826 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
10827
10828         * ada-lang.c: Reformat the copyright notice.
10829
10830 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10831
10832         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
10833         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
10834         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
10835         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
10836         Revert this part of:
10837         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10838         Build gdb directly from *.o files not using libgdb.a.
10839         * Makefile.in (COMMON_OBS): Remove solib-target.o.
10840
10841 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
10842
10843         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
10844         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
10845         Reformat the copyright header.
10846
10847 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10848
10849         Revert this part of:
10850         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10851         Remove the gdbtui binary.
10852         * gdb.c (main): Remove args.interpreter_p initialization.
10853         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
10854         * main.h (struct captured_main_args): Remove interpreter_p.
10855
10856 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
10857
10858         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
10859
10860 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
10861
10862         * top.c (print_gdb_version): Update copyright year.
10863
10864 2012-01-02  Yao Qi  <yao@codesourcery.com>
10865
10866         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
10867
10868 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10869             Joel Brobecker  <brobecker@adacore.com>
10870
10871         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
10872         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
10873         3 times.
10874         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
10875         fall through into AT_ENTRY_POINT.
10876         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
10877         DUMMY_ADDR with it.
10878         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
10879         PPC_INSN_SIZE skip to 3 times.
10880
10881 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10882
10883         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
10884         the return value.
10885         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
10886
10887 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10888
10889         Build gdb directly from *.o files not using libgdb.a.
10890         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
10891         (COMMON_OBS): Remove solib-target.o.
10892         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
10893         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
10894         (LIBGDB_OBS, libgdb.a): Move it above.
10895         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
10896         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
10897         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
10898         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
10899         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
10900         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
10901         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
10902         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
10903         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
10904         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
10905         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
10906         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
10907         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
10908         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
10909         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
10910         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
10911         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
10912         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
10913         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
10914         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
10915         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
10916         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
10917         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
10918         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
10919         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
10920         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
10921         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
10922
10923 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10924
10925         Remove the gdbtui binary.
10926         * .gitignore (/gdbtui): Remove.
10927         * Makefile.in (TUI): Remove.
10928         (SUBDIR_TUI_OBS): Remove tui-main.o.
10929         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
10930         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
10931         (tui-main.o): Remove.
10932         (all_object_files): Remove tui-main.o.
10933         * NEWS: New note for the gdbtui removal.
10934         * configure: Rebuilt.
10935         * configure.ac: No longer add all-tui, clean-tui, install-tui and
10936         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
10937         CONFIG_UNINSTALL respectively.
10938         * gdb.c (main): Remove args.interpreter_p initialization.
10939         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
10940         * main.h (struct captured_main_args): Remove interpreter_p.
10941         * tui/tui-main.c: Remove.
10942
10943 2012-01-01  Doug Evans  <dje@google.com>
10944
10945         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
10946         (dwarf2_physname, read_import_statement): Ditto.
10947         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
10948         (process_structure_scope read_subroutine_type): Ditto.
10949         (read_typedef, load_partial_dies, read_partial_die): Ditto.
10950         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
10951         (dwarf2_fetch_die_location_block): Ditto.
10952         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
10953
10954         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
10955         All callers updated.
10956         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
10957         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
10958         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
10959
10960         * dwarf2read.c (load_cu): Move assert to more useful location.
10961
10962         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
10963         All callers updated.
10964
10965         * dwarf2read.c (dwarf2_per_objfile): Add comment.
10966         (dwarf2_elf_names): Minor reformat.
10967         (dwarf2_per_cu_data): Tweak comment.
10968         (dwarf2_read_section): Fix comment.
10969         (create_all_comp_units): Fix comment.
10970         (load_full_comp_unit): Fix comment.
10971         (process_full_comp_unit): Fix comment.
10972         (read_signatured_type): Fix comment.
10973
10974 For older changes see ChangeLog-2011.
10975 \f
10976 Local Variables:
10977 mode: change-log
10978 left-margin: 8
10979 fill-column: 74
10980 version-control: never
10981 coding: utf-8
10982 End: