move sizeof_pkt into remote_trace_find
[external/binutils.git] / gdb / ChangeLog
1 2013-08-14  Tom Tromey  <tromey@redhat.com>
2
3         * remote.c (sizeof_pkt): Remove.
4         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
5
6 2013-08-14  Tom Tromey  <tromey@redhat.com>
7
8         * remote.c (struct remote_state) <use_threadinfo_query,
9         use_threadextra_query>: New fields.
10         (remote_threads_info, remote_threads_extra_info)
11         (remote_open_1): Update.
12
13 2013-08-14  Tom Tromey  <tromey@redhat.com>
14
15         * remote.c (struct remote_state) <finished_object,
16         finished_annex, finished_offset>: New fields.
17         (remote_read_qxfer): Use remote_state fields; remove static
18         variables.
19
20 2013-08-14  Tom Tromey  <tromey@redhat.com>
21
22         * remote.c (struct remote_state) <last_sent_step>:
23         New field.
24         (last_sent_step): Remove.
25         (remote_resume, remote_wait_as): Update.
26
27 2013-08-14  Tom Tromey  <tromey@redhat.com>
28
29         * remote.c (struct remote_state) <last_sent_signal>:
30         New field.
31         (last_sent_signal): Remove.
32         (new_remote_state, remote_resume, remote_wait_as): Update.
33
34 2013-08-14  Tom Tromey  <tromey@redhat.com>
35
36         * remote.c (struct remote_state) <last_program_signals_packet>:
37         New field.
38         (last_program_signals_packet): Remove.
39         (remote_program_signals, remote_open_1): Update.
40
41 2013-08-14  Tom Tromey  <tromey@redhat.com>
42
43         * remote.c (struct remote_state) <last_pass_packet>:
44         New field.
45         (last_pass_packet): Remove.
46         (remote_pass_signals, remote_open_1): Update.
47
48 2013-08-14  Tom Tromey  <tromey@redhat.com>
49
50         * remote.c (struct remote_state) <remote_traceframe_number>:
51         New field.
52         (remote_traceframe_number): Remove.
53         (new_remote_state, remote_open_1, set_remote_traceframe)
54         (remote_trace_find): Update.
55
56 2013-08-14  Tom Tromey  <tromey@redhat.com>
57
58         * remote.c (struct remote_state) <general_thread, continue_thread>:
59         New fields.
60         (general_thread, continue_thread): Remove.
61         (record_currthread, set_thread, set_general_process)
62         (remote_open_1, extended_remote_attach_1, remote_wait_as)
63         (extended_remote_mourn_1): Update.
64
65 2013-08-14  Tom Tromey  <tromey@redhat.com>
66
67         * remote.c (struct remote_state) <remote_desc>: New field.
68         (remote_desc): Remove.
69         (remote_threads_info, remote_threads_extra_info, remote_close)
70         (send_interrupt_sequence, remote_start_remote, remote_open_1)
71         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
72         (remote_hostio_send_command, remote_file_put, remote_file_get)
73         (remote_file_delete, remote_can_async_p, remote_is_async_p)
74         (remote_async, remote_new_objfile, set_range_stepping): Update.
75
76 2013-08-14  Tom Tromey  <tromey@redhat.com>
77
78         * remote.c (remote_state): Now a pointer.
79         (get_remote_state_raw): Update.
80         (new_remote_state): New function.
81         (_initialize_remote): Use new_remote_state.
82
83 2013-08-14  Tom Tromey  <tromey@redhat.com>
84
85         * remote.c (remote_protocol_features): Now const.
86
87 2013-08-14  Tom Tromey  <tromey@redhat.com>
88
89         * remote.c (crc32_table, crc32): Remove.
90         (remote_verify_memory): Use xcrc32.
91
92 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
93
94         * value.h (create_internalvar_type_lazy): Adjust prototype
95         declaration.
96
97 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
98
99         * common/format.c (parse_format_string): Don't allow '#' flag for
100         pointer arguments in format string.
101
102 2013-08-13  Pierre Muller  <muller@sourceware.org>
103
104         * utils.c (init_page_info): Only call tgetnum function
105         if rl_get_screen_size did not return useful values.
106
107 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
108
109         PR breakpoints/15117
110         * linespec.c (linespec_parse_basic): Check for convenience
111         variable or history value while parsing.
112
113 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
114
115         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
116         AVR.
117         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
118         different signals between the generic Linux kernel implementation
119         and AVR's.
120         (avr_linux_gdb_signal_from_target): Delete.
121         (avr_linux_gdb_signal_to_target): Delete.
122         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
123
124 2013-08-09  Doug Evans  <dje@google.com>
125
126         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
127         entries.
128
129 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
130
131         * linux-tdep.c: Define enum with generic signal numbers.
132         (linux_gdb_signal_from_target): New function.
133         (linux_gdb_signal_to_target): Likewise.
134         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
135         methods to the functions above.
136         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
137         (linux_gdb_signal_to_target): Likewise.
138         * alpha-linux-tdep.c: Define new enum with signals different
139         from generic Linux kernel.
140         (alpha_linux_gdb_signal_from_target): New function.
141         (alpha_linux_gdb_signal_to_target): Likewise.
142         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
143         with the functions mentioned above.
144         * avr-tdep.c: Define enum with differences between Linux kernel
145         and AVR signals.
146         (avr_linux_gdb_signal_from_target): New function.
147         (avr_linux_gdb_signal_to_target): Likewise.
148         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
149         the functions mentioned above.
150         * sparc-linux-tdep.c: Define enum with differences between SPARC
151         and generic Linux kernel signal numbers.
152         (sparc32_linux_gdb_signal_from_target): New function.
153         (sparc32_linux_gdb_signal_to_target): Likewise.
154         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
155         to the functions defined above.
156         * xtensa-linux-tdep.c: Define enum with differences between
157         Xtensa and Linux kernel generic signals.
158         (xtensa_linux_gdb_signal_from_target): New function.
159         (xtensa_linux_gdb_signal_to_target): Likewise.
160         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
161         to the functions defined above.
162         * mips-linux-tdep.c: Define enum with differences between
163         signals in MIPS and Linux kernel generic ones.
164         (mips_gdb_signal_to_target): New function.
165         (mips_gdb_signal_from_target): Redefine to use new enum, handle
166         only different signals from the Linux kernel generic.
167         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
168         the functions defined above.
169         * mips-linux-tdep.h (enum mips_signals): Remove.
170
171 2013-08-09  Pedro Alves  <palves@redhat.com>
172
173         * avr-tdep.c (XMALLOC): Delete macro.
174         * cli/cli-dump.c (XMALLOC): Delete macro.
175
176 2013-08-09  Pedro Alves  <palves@redhat.com>
177
178         * cli/cli-dump.c: Don't include cli/cli-dump.h.
179         (scan_expression_with_cleanup, scan_filename_with_cleanup)
180         (fopen_with_cleanup, add_dump_command): Make static.
181         * cli/cli-dump.h: Delete file.
182         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
183         cli/cli-dump.h.
184
185 2013-08-09  Pedro Alves  <palves@redhat.com>
186
187         * tracepoint.c (tfile_start): Show tilde-expanded filename in
188         error message.
189
190 2013-08-09  Pedro Alves  <palves@redhat.com>
191
192         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
193         error message.
194
195 2013-08-09  Pedro Alves  <palves@redhat.com>
196
197         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
198         (gcore_command): Use tilde_expand here, and when showing the
199         filename to the user, show the expanded version.
200
201 2013-08-09  Yao Qi  <yao@codesourcery.com>
202
203         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
204         'entryval' is set.
205
206 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
207
208         * gcore.c (create_gcore_bfd): Use tilde_expand.
209
210 2013-08-08  Yao Qi  <yao@codesourcery.com>
211
212         * frame.h (read_frame_local): Declare.
213         * mi/mi-cmd-stack.c (list_args_or_locals): Call
214         read_frame_local.
215         * stack.c (read_frame_local): New.
216
217 2013-08-08  Yao Qi  <yao@codesourcery.com>
218
219         * mi/mi-cmd-stack.c: Update comments to function
220         list_args_or_locals.
221
222 2013-08-07  Tom Tromey  <tromey@redhat.com>
223
224         PR symtab/15028:
225         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
226         (process_psymtab_comp_unit_reader): Use it.
227         (process_psymtab_comp_unit): Update.  Add "pretend_language"
228         argument.
229         (dwarf2_build_psymtabs_hard): Update.
230         (scan_partial_symbols): Pass CU's language to
231         process_psymtab_comp_unit.
232
233 2013-08-07  Tom Tromey  <tromey@redhat.com>
234
235         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
236         (dwarf2_gdb_index_functions): Update.
237         * psymtab.c (find_symbol_file_from_partial): Remove.
238         (psym_functions): Update.
239         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
240         Remove.
241
242 2013-08-07  Tom Tromey  <tromey@redhat.com>
243
244         * symfile.c (set_initial_language): Look up "main" symbol
245         and use its language.
246         * symtab.c (find_main_filename): Remove.
247         * symtab.h (find_main_filename): Remove.
248
249 2013-08-07  Tom Tromey  <tromey@redhat.com>
250
251         * dwarf2read.c (recursively_compute_inclusions): Add
252         "immediate_parent" argument.  Set symtab's "user" field
253         if not set.
254         (compute_symtab_includes): Update.
255
256 2013-08-07  Tom Tromey  <tromey@redhat.com>
257
258         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
259         when adding label symbols.
260
261 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
262             Ulrich Weigand  <uweigand@de.ibm.com>
263
264         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
265         * configure.host (powerpc64-*-aix*): Likewise.
266
267 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
268             Ulrich Weigand  <uweigand@de.ibm.com>
269
270         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
271         is defined.
272         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
273         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
274         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
275         * configure.ac: Check for ptrace64.
276         * configure, config.in: Regenerate.
277
278 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
279             Ulrich Weigand  <uweigand@de.ibm.com>
280
281         * aixthread.c: Call ptrace64 instead of ptracex if defined.
282         Call ptrace64 instead of ptrace if defined.
283         Add macro addr_ptr to take care of ptrace address argument.
284         (pdc_read_regs): Likewise.
285         (pdc_write_regs): Likewise.
286         (aix_thread_resume): Likewise.
287         (fetch_regs_kernel_thread): Likewise.
288         (store_regs_kernel_thread): Likewise.
289
290 2013-08-07  Anton Blanchard  <anton@samba.org>
291
292         * MAINTAINERS: Add myself to Write After Approval.
293
294 2013-08-05  Tom Tromey  <tromey@redhat.com>
295
296         * aix-thread.c (_initialize_aix_thread): Use
297         complete_target_initialization.
298         * bsd-uthread.c (_initialize_bsd_uthread): Use
299         complete_target_initialization.
300         * dec-thread.c (_initialize_dec_thread): Use
301         complete_target_initialization.
302         * ravenscar-thread.c (_initialize_ravenscar): Use
303         complete_target_initialization.
304         * sol-thread.c (_initialize_sol_thread): Use
305         complete_target_initialization.
306         * spu-multiarch.c (_initialize_spu_multiarch): Use
307         complete_target_initialization.
308
309 2013-08-05  Tom Tromey  <tromey@redhat.com>
310
311         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
312         * ada-lang.c (ada_lookup_simple_minsym): Return
313         bound_minimal_symbol.
314         * ada-lang.h (ada_lookup_simple_minsym): Update.
315         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
316         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
317         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
318         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
319         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
320         * minsyms.c (msymbol_objfile): Remove.
321         (lookup_minimal_symbol_internal): New function, from
322         lookup_minimal_symbol.
323         (lookup_minimal_symbol): Rewrite using
324         lookup_minimal_symbol_internal.
325         (lookup_bound_minimal_symbol): New function.
326         * minsyms.h (msymbol_objfile): Remove.
327         (lookup_bound_minimal_symbol): Declare.
328         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
329         * parse.c (write_exp_msymbol): Change parameter to a
330         bound_minimal_symbol.
331         (write_dollar_variable): Use lookup_bound_minimal_symbol.
332         * parser-defs.h (write_exp_msymbol): Update.
333         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
334         * symfile.c (simple_read_overlay_table): Use
335         lookup_bound_minimal_symbol.
336         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
337         (search_symbols): Likewise.
338         (print_msymbol_info): Take a bound_minimal_symbol argument.
339         (symtab_symbol_info, rbreak_command): Update.
340         * symtab.h (struct symbol_search) <msymbol>: Change type
341         to bound_minimal_symbol.
342         * valops.c (find_function_in_inferior): Use
343         lookup_bound_minimal_symbol.
344         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
345
346 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
347
348         Code cleanup.
349         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
350         to ...
351         (async_cleanup_sigint_signal_handler): ... this.
352         (initialize_sigint_signal_handler): Remove declaration.
353         (handle_remote_sigint): Rename the declaration to ...
354         (async_handle_remote_sigint): ... this.
355         (handle_remote_sigint_twice): Rename the declaration to ...
356         (async_handle_remote_sigint_twice): ... this.
357         (async_remote_interrupt, async_remote_interrupt_twice)
358         (remote_interrupt): Remove the declarations.
359         (remote_interrupt_twice): Rename the declaration ...
360         (sync_remote_interrupt_twice): ... this.
361         (sigint_remote_twice_token): Rename the variable to ...
362         (async_sigint_remote_twice_token): ... this.
363         (sigint_remote_token): Rename the variable to ...
364         (async_sigint_remote_token): ... this.
365         (initialize_sigint_signal_handler): Rename the function to ...
366         (async_initialize_sigint_signal_handler): ... this.  Update the name
367         inside.
368         (handle_remote_sigint): Rename the function to ...
369         (async_handle_remote_sigint): ... this.  Update the names inside.
370         (handle_remote_sigint_twice): Rename the function to ...
371         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
372         (cleanup_sigint_signal_handler): Rename the function to ...
373         (async_cleanup_sigint_signal_handler): ... this.
374         (remote_interrupt): Rename the function to ...
375         (sync_remote_interrupt): this.  Update the names inside.
376         (remote_interrupt_twice): Rename the function to ...
377         (sync_remote_interrupt_twice): this.  Update the names inside.
378         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
379         (_initialize_remote): Update the names inside.
380
381 2013-08-02  Tom Tromey  <tromey@redhat.com>
382
383         PR symtab/15719:
384         * breakpoint.c (update_watchpoint, watchpoint_check)
385         (watch_command_1): Update.
386         * eval.c (fetch_subexp_value): Add "preserve_errors"
387         parameter.
388         * ppc-linux-nat.c (check_condition): Update.
389         * value.h (fetch_subexp_value): Update.
390
391 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
392
393         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
394         add_file_handler.
395
396 2013-08-01  Doug Evans  <dje@google.com>
397
398         PR symtab/15691
399         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
400         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
401         Add assert of sig_entry->dwo_unit == NULL.
402         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
403         had already been read.
404         (read_signatured_type): Set per_cu.tu_read.
405
406         PR symtab/15695
407         * valops.c (value_struct_elt): Add missing call to check_typedef.
408         (value_find_oload_method_list): Ditto.
409
410         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
411         effectively, struct symbol_search **.
412         (make_cleanup_free_search_symbols): Change arg to struct
413         symbol_search **.  All callers updated.
414         (compare_search_syms): Compare symtab file name and block as well.
415         (search_symbols_equal): New function.
416         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
417         New args new_head, new_tail.  Result is now void.  Remove dups after
418         sorting the symbols.
419         (search_symbols): Sort all found symbols once, after all have been
420         found, and remove duplicates.  Simplify cleanup tracking of result.
421         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
422
423         Further workarounds for binutils/15021.
424         * dwarf2read.c (recursively_compute_inclusions): Change type of result
425         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
426         Watch for duplicate symtabs coming from type units.
427         (compute_symtab_includes): Update call to
428         recursively_compute_inclusions. Build vector of included symtabs
429         instead of per_cus.
430         * symtab.h (symtab_ptr): New typedef.
431         (DEF_VEC_P (symtab_ptr)): New VEC type.
432         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
433         instead.
434
435 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
436
437         * cli/cli-script.c (script_from_file): Remove use of
438         error_pre_print.
439         * main.c (captured_main): Remove use of error_pre_print and
440         quit_pre_print.
441         * utils.c (error_pre_print, quit_pre_print): Remove.
442         * utils.h (error_pre_print, quit_pre_print): Likewise.
443
444 2013-08-01  Yao Qi  <yao@codesourcery.com>
445
446         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
447         with mi_getopt.
448         (mi_cmd_stack_list_variables): Likewise.
449
450 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
451
452         * exceptions.c (deprecated_throw_reason): Remove.
453         * exceptions.h (deprecated_throw_reason): Remove.
454
455 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
456
457         * remote-mips.c (mips_error): Replace use of
458         deprecated_throw_reason with throw_verror.  Use the error message
459         passed to mips_error as the error message for throw_verror.
460
461 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
462
463         * monitor.c (monitor_interrupt_query): Replace use of
464         deprecated_throw_reason with quit.
465         * nto-procfs.c (interrupt_query): Likewise.
466         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
467         * remote-mips.c (mips_kill): Likewise.
468         * remote.c (interrupt_query): Likewise.
469
470 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
471
472         * utils.c (internal_verror): Replace use of deprecated_throw_reason
473         with call to fatal.
474
475 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
476             Yao Qi  <yao@codesourcery.com>
477
478         * tracepoint.c (trace_dump_command): Select the current frame.
479
480 2013-07-30  Doug Evans  <dje@google.com>
481
482         * dwarf2read.c (process_queue): Add type signature to debug output.
483
484 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
485
486         * value.c (value_fetch_lazy): Mark optimized out values as such
487         rather than raising an error.
488
489 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
490
491         * value.c (value_fetch_lazy): Ensure parent value is not lazy
492         before checking which bits of the parent, not the child, value are
493         valid.
494
495 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
496
497         PR gdb/15715
498         * top.c: Include "filenames.h".
499         (set_history_filename): New function.
500         (init_main): Install it as set hook of the "set history filename"
501         command.
502
503 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
504
505         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
506         attribute parameter.
507         (dwarf2_const_value_data): Constify struct attribute parameter.
508         (dwarf2_const_value): Constify struct attribute parameter.
509         (dwarf2_const_value_attr): Constify struct attribute parameter.
510         (lookup_die_type): Constify struct attribute parameter.
511         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
512         (follow_die_ref_or_sig): Constify struct attribute parameter.
513         (follow_die_ref): Constify struct attribute parameter.
514         (follow_die_sig): Constify struct attribute parameter.
515         (get_DW_AT_signature_type): Constify struct attribute parameter.
516         (get_type_unit_group): Constify struct attribute parameter.
517         (fill_in_loclist_baton): Constify struct attribute parameter.
518         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
519         (type_unit_group): Constify struct attribute parameter.
520
521 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
522
523         * dwarf2read.c (attr_form_is_block): Make argument const.
524         (attr_form_is_section_offset): Make argument const.
525         (attr_form_is_constant): Make argument const.
526         (attr_form_is_ref): Make argument const.
527
528 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
529
530         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
531         All uses updated.
532         (attr_form_is_ref): Moved below attr_form_is_constant.
533
534 2013-07-29  Doug Evans  <dje@google.com>
535
536         * main.c (captured_command_loop): Tweak comment.
537
538         * target.c (target_async_permitted_1): Fix comment.
539
540         * symtab.c (iterate_over_some_symtabs): Add comment.
541
542         * symtab.c (iterate_over_some_symtabs): Fix indentation.
543
544 2013-07-27  Yao Qi  <yao@codesourcery.com>
545
546         * NEWS: Mention that GDBserver now supports hardware
547         watchpoints on the MIPS GNU/Linux target.
548
549 2013-07-27  Yao Qi  <yao@codesourcery.com>
550
551         * Makefile.in (HFILES_NO_SRCDIR): Add
552         common/mips-linux-watch.h.
553         (mips-linux-watch.o): New rule.
554         * common/mips-linux-watch.c: New.
555         * common/mips-linux-watch.h: New.
556         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
557         * mips-linux-nat.c: Include mips-linux-watch.h.
558         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
559         to common/mips-linux-watch.h.
560         (MAX_DEBUG_REGISTER): Likewise.
561         (enum pt_watch_style): Likewise.
562         (struct mips32_watch_regs): Likewise.
563         (struct mips64_watch_regs): Likewise.
564         (struct pt_watch_regs): Likewise.
565         (struct mips_watchpoint): Likewise.
566         (mips_linux_watch_get_irw_mask): Move to
567         common/mips-linux-watch.c.
568         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
569         (mips_linux_watch_get_watchlo): Likewise.
570         (mips_linux_watch_set_watchlo): Likewise.
571         (mips_linux_watch_get_watchhi): Likewise.
572         (mips_linux_watch_set_watchhi): Likewise.
573         (mips_linux_read_watch_registers): Likewise.
574         (mips_linux_watch_type_to_irw): Likewise.
575         (mips_linux_stopped_data_address, fill_mask): Likewise.
576         (mips_linux_watch_try_one_watch): Likewise.
577         (mips_linux_watch_populate_regs): Likewise.
578
579 2013-07-27  Yao Qi  <yao@codesourcery.com>
580
581         * mips-linux-nat.c (get_irw_mask): Rename to ...
582         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
583         'set' to 'n'.  Update function comment.  All callers changed.
584         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
585         function comment.  All callers changed.
586         (get_num_valid): Rename to ...
587         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
588         'set' to 'n'.  Update function comment.  All callers changed.
589         (get_watchlo): Rename to ...
590         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
591         'set' to 'n'.  Update function comment.  All callers changed.
592         (set_watchlo): Rename to ...
593         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
594         'set' to 'n'.  Update function comment.  All callers changed.
595         (get_watchhi): Rename to ...
596         (mips_linux_watch_get_watchhi): ... this.  Update function
597         comment.  All callers changed.
598         (set_watchhi): Rename to ...
599         (mips_linux_watch_set_watchhi): ... this.  Update function
600         comment.  All callers changed.
601         (mips_linux_read_watch_registers): Update function comment.
602         Add new parameters 'lwpid', 'watch_readback', and
603         'watch_readback_valid'.  Update.
604         (type_to_irw): Rename to ...
605         (mips_linux_watch_type_to_irw): ... this.  Update function
606         comment.  All callers changed.
607         (fill_mask): Update function comment.
608         (try_one_watch): Rename to ...
609         (mips_linux_watch_try_one_watch): ... this.  Change the type
610         of parameter 'irw' from 'unsigned' to 'uint32_t'.
611         (populate_regs_from_watches): Rename to ...
612         (mips_linux_watch_populate_regs): ... this.  Add parameter
613         'current_watches'.  All callers changed.
614
615 2013-07-27  Yao Qi  <yao@codesourcery.com>
616
617         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
618         the code.
619         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
620         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
621         (struct pt_watch_regs): Likewise.
622         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
623         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
624         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
625         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
626         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
627
628 2013-07-27  Yao Qi  <yao@codesourcery.com>
629
630         * breakpoint.h: Include break-common.h.
631         (enum target_hw_bp_type): Move to ...
632         * common/break-common.h: ... here.  New.
633
634 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
635
636         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
637         process group regardless of having tty on stdin.
638
639 2013-07-25  Doug Evans  <dje@google.com>
640
641         * linux-fork.h (detach_fork): Delete.
642
643 2013-07-25  Tom Tromey  <tromey@redhat.com>
644
645         PR remote/15256, PR remote/15266:
646         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
647         * monitor.c (monitor_detach): Use unpush_target.
648         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
649         * remote-mips.c (mips_detach): Use unpush_target.  Don't
650         call mips_close.
651         * remote-sim.c (gdbsim_detach): Use unpush_target.
652         * target.c (pop_target): Remove.
653         (pop_all_targets_above): Don't call target_close.
654         (target_close): Assert that the target is unpushed.
655         * target.h (pop_target): Don't declare.
656         * tracepoint.c (tfile_open): Use unpush_target.
657
658 2013-07-25  Tom Tromey  <tromey@redhat.com>
659
660         * linux-thread-db.c (init_thread_db_ops): Call
661         complete_target_initialization.
662         (_initialize_thread_db): Don't call add_target.
663         * target.c (complete_target_initialization): New function.
664         (add_target_with_completer): Call it.
665         * target.h (complete_target_initialization): Declare.
666
667 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
668
669         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
670         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
671         (HPPANBSD_SIZEOF_GREGS): New define.
672         (hppaobsd_supply_gregset): Handle additional registers.
673         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
674         we provide more registers now.
675         (hppabsd_supply_gregset): Supply additional registers.
676         (hppabsd_collect_gregset): Collect additional registers.
677
678 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
679
680         * hppabsd-tdep.c: Include "dwarf2-frame.h".
681         (hppabsd_dwarf2_frame_init_reg): New function.
682         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
683
684 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
685
686         * mi/mi-main.c (output_register): Make MI 'r' format use standard
687         'z' format code.  Remove error for optimized out values, standard
688         code will handle these fine.
689
690 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
691
692         * NEWS: Mention new 'z' formatter.
693         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
694         (_initialize_printcmd): Mention 'z' formatter in help text of the
695         'x' command.
696
697 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
698
699         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
700         formatting.
701
702 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
703
704         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
705         interface can evaluate arguments.  Fallback to the old mode if it
706         cannot.
707         (create_exception_master_breakpoint): Likewise.
708         * elfread.c (elf_can_evaluate_probe_arguments): New function.
709         (struct sym_probe_fns elf_probe_fns): Export function above to the
710         probe interface.
711         * probe.c (can_evaluate_probe_arguments): New function.
712         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
713         function pointer.
714         (can_evaluate_probe_arguments): New function prototype.
715         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
716         probe interface can evaluate arguments.  Fallback to the old mode
717         if it cannot.
718         * stap-probe.c (stap_get_probe_argument_count): Check if probe
719         interface can evaluate arguments.  Warning the user if it cannot.
720         (stap_can_evaluate_probe_arguments): New function.
721         (struct probe_ops stap_probe_ops): Export function above to the
722         probe interface.
723         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
724         New function pointer.
725
726 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
727
728         * Makefile.in (SFILES): Add common/target-common.c.
729         Add common/target-common.h to headers.
730         (COMMON_OBS): Add target-common.o.
731         (target-common.o): New target.
732         * linux-nat.h (resume_kind): Move to common/target-common.h.
733         * target.c (target_waitstatus_to_string): Move to
734         common/target-common.c.
735         * target.h: Include target-common.h.
736         (target_waitkind): Move to common/target-common.h.
737         (target_waitstatus): Likewise.
738         (TARGET_WNOHANG): Likewise.
739         * common/target-common.c: New file.
740         * common/target-common.h: New file.
741
742 2013-07-24  Doug Evans  <dje@google.com>
743
744         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
745         a warning.
746
747 2013-07-23  Yao Qi  <yao@codesourcery.com>
748
749         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
750         parameter 'gdbarch'.
751         (i386_stack_tramp_frame_sniffer): Caller update.
752         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
753         parameter 'gdbarch' and 'target'.
754         (i386_linux_core_read_description): Caller update.
755         * amd64-linux-tdep.c (amd64_linux_core_read_description):
756         Likewise.
757         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
758         declaration.
759
760 2013-07-23  Tom Tromey  <tromey@redhat.com>
761
762         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
763         2013-07-22.
764
765 2013-07-22  Doug Evans  <dje@google.com>
766
767         * exec.h (remove_target_sections): Delete arg abfd.
768         * exec.c (exec_close): Update call to remove_target_sections.
769         (remove_target_sections): Delete arg abfd.
770         * solib.c (update_solib_list): Ditto.
771         (reload_shared_libraries_1): Ditto.
772         (clear_solib): Ditto, and unconditionally call remove_target_sections.
773         * target.h (struct target_section): Rename key to owner.
774         All uses updated.
775
776 2013-07-22  Tom Tromey  <tromey@redhat.com>
777
778         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
779
780 2013-07-22  Tom Tromey  <tromey@redhat.com>
781
782         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
783         Simplify cleanup handling.
784
785 2013-07-22  Tom Tromey  <tromey@redhat.com>
786
787         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
788         on all return paths.
789
790 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
791
792         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
793         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
794         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
795
796 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
797
798         * top.c (print_gdb_version): Add help, apropos description and
799         url to online documentation.
800
801 2013-07-19  Hui Zhu  <hui@codesourcery.com>
802
803         PR gdb/15692
804         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
805
806 2013-07-19  Yao Qi  <yao@codesourcery.com>
807
808         * target.c (update_current_target): Change the default action
809         of 'to_traceframe_info' from tcomplain to return_zero.
810         * target.h (struct target_ops) <to_traceframe_info>: Add more
811         comments.
812         * valops.c (read_value_memory): Call
813         traceframe_available_memory unconditionally.
814
815 2013-07-18  Yao Qi  <yao@codesourcery.com>
816
817         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
818         if the name is prefixed by "__imp_" or "_imp_", look for minimal
819         symbol without prefix.  If found, set its type to
820         'mst_solib_trampoline'.
821
822 2013-07-17  Doug Evans  <dje@google.com>
823
824         * NEWS: Mention "set print raw frame-arguments".
825         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
826         * stack.c (print_raw_frame_arguments): New static global.
827         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
828         (_initialize_stack): New command "set/show print raw frame-arguments".
829         * valprint.c (setprintrawlist, showprintrawlist): New globals.
830         (set_print_raw, show_print_raw): New functions.
831         (_initialize_valprint): New prefix command "set/show print raw".
832         * valprint.h (value_print_options): Improve comments.
833
834         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
835         of all *list variables.
836
837         * gdbcmd.h (togglelist): Delete.
838         * cli/cli-cmds.c (togglelist): Delete.
839         (init_cmd_lists): Update.
840         * cli/cli-cmds.h (togglelist): Delete.
841
842 2013-07-17  Tom Tromey  <tromey@redhat.com>
843
844         * dwarf2read.c (dwarf2_per_objfile_free): Clear
845         dwarf2_per_objfile.
846
847 2013-07-16  Doug Evans  <dje@google.com>
848
849         * nto-tdep.c (nto_relocate_section_addresses): Update,
850         target_section.bfd deleted.
851         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
852         * s390-tdep.c (s390_load): Ditto.
853         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
854
855 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
856
857         * common/format.c (parse_format_string): Add checks for NULL
858         character before calling strchr.
859
860 2013-07-16  Doug Evans  <dje@google.com>
861
862         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
863         temp_pathname argument.
864         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
865         when opening the file fails.
866
867         * target.h (struct target_section): Delete member bfd.
868         All users updated to use the_bfd_section->owner instead.
869         * exec.c (add_to_section_table): Assert bfd is expected value.
870         Remove initialization of target_section.bfd.
871         (remove_target_sections): Update.
872         (section_table_available_memory): Update.
873         (section_table_xfer_memory_partial): Update.
874         (print_section_info): Update.
875         (exec_set_section_address): Update.
876         * record-full.c (record_full_core_xfer_partial): Update.
877         * solib-svr4.c (svr4_relocate_section_addresses): Update.
878         * solib-target.c (solib_target_relocate_section_addresses): Update.
879         * symfile.c (build_section_addr_info_from_section_table): Update.
880         * target.c (memory_xfer_live_readonly_partial): Update.
881         (memory_xfer_partial_1): Update.
882
883 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
884
885         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
886         now available for embedded (BookE) and server (BookS) processors,
887         correct mentions of 'booke' and adjust comments accordingly in order to
888         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
889         (have_ptrace_booke_interface): Rename function and variable
890         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
891         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
892         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
893         'hwdebug_point_cmp'. Update all uses.
894         (booke_find_thread_points_by_tid): Rename function
895         'booke_find_thread_points_by_tid' to
896         'hwdebug_find_thread_points_by_tid'. Update all uses.
897         (booke_insert_point): Rename function 'booke_insert_point' to
898         'hwdebug_insert_point'. Update all uses.
899         (booke_remove_point): Rename function 'booke_remove_point' to
900         'hwdebug_remove_point'. Update all uses.
901
902 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
903
904         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
905         numbers with enum values.
906
907 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
908
909         PR threads/13217
910         * thread.c (thread_apply_all_command): Check for valid threads
911         and thread count.
912         (thread_array_cleanup): New struct.
913         (set_thread_refcount): New function.
914
915 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
916
917         * infcmd.c (default_print_one_register_info): Reuse function
918         print_hex_chars.
919
920 2013-07-10  Tom Tromey  <tromey@redhat.com>
921
922         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
923         (ada-exp.o): New target.
924
925 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
926
927         * mt-tdep.c (mt_registers_info): Call
928         get_no_prettyformat_print_options instead of
929         get_raw_print_options (regression by last patch from Doug
930         Evans).
931
932 2013-07-09  Pedro Alves  <palves@redhat.com>
933
934         Checked in by Joel Brobecker  <brobecker@adacore.com>.
935         * ada-lang.c (coerce_unspec_val_to_type): Use
936         value_optimized_out_const.
937         * value.c (value_optimized_out_const): New function.
938         * value.h (value_optimized_out_const): New declaration.
939
940 2013-07-09  Doug Evans  <dje@google.com>
941
942         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
943         Enum values rename as well.  All uses updated.
944         * valprint.h (value_print_options): Rename member pretty to
945         pretty format.  Rename member prettyprint_arrays to
946         prettyformat_arrays.  Rename member prettyprint_structs to
947         prettyformat_structs.  All uses updated.
948         (get_no_prettyformat_print_options): Renamed from
949         get_raw_print_options.
950         * valprint.c (get_no_prettyformat_print_options): Renamed from
951         get_raw_print_options.  All callers updated.
952         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
953         All callers updated.
954         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
955         All callers updated.
956         (_initialize_valprint): Improve help text for "set print pretty" and
957         "set print arrays".
958
959 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
960
961         * value.c (value_bits_valid): Revert previous change, and change
962         by Pedro on 2013-07-04, due to regressions in
963         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
964
965 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
966             Pedro Alves  <palves@redhat.com>
967
968         * value.c (value_bits_valid): If the value is not lval_computed
969         or has no check validity handler then the answer is the
970         optimized_out flag, otherwise defer to the handler.
971
972 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
973
974         * top.c (print_gdb_configuration): Explain in output of
975         --configuration what does "relocatable" mean.
976
977         * main.c (print_gdb_help): Regroup options in the --help text.
978         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
979         the relevant discussions.
980
981 2013-07-06  Yao Qi  <yao@codesourcery.com>
982
983         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
984         Remove parameter 'lsal'.
985         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
986         to inner block.  Caller update.
987         (base_breakpoint_create_breakpoints_sal): Update.
988         (bkpt_create_breakpoints_sal): Likewise.
989         (tracepoint_create_breakpoints_sal): Likewise.
990         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
991         element 0 of vector 'canonical->sals'.
992
993 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
994
995         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
996         register number instead of the pseudo register one.
997         (rs6000_dwarf2_reg_to_regnum): Likewise.
998
999 2013-07-04  Pedro Alves  <palves@redhat.com>
1000
1001         * findvar.c (value_of_register): Use allocate_optimized_out_value
1002         if the register has been optimized out, instead of
1003         set_value_optimized_out.
1004         * frame-unwind.c (frame_unwind_got_optimized): Use
1005         allocate_optimized_out_value.
1006
1007 2013-07-04  Pedro Alves  <palves@redhat.com>
1008
1009         * value.c (value_bits_valid): If the value is not lval_computed,
1010         or doesn't have a check_validity hook, assume the value is entirely
1011         valid.
1012
1013 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
1014
1015         * stack.c (read_frame_arg): No longer fetch lazy values.
1016         * value.c (value_optimized_out): If the value is not already
1017         marked optimized out, and is lazy then fetch it.
1018         (value_primitive_field): Move optimized out check to later in the
1019         function, after we have loaded any lazy values.
1020         (value_fetch_lazy): Use optimized out flag directly rather than
1021         calling optimized_out method.
1022
1023 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
1024
1025         * valops.c: Don't include "user-regs.h".
1026         (value_fetch_lazy): Moved to value.c.
1027         * value.c: Include "user-regs.h".
1028         (value_fetch_lazy): Moved from valops.c.
1029
1030 2013-07-04  Yao Qi  <yao@codesourcery.com>
1031
1032         Revert:
1033         2013-06-27  Yao Qi  <yao@codesourcery.com>
1034
1035         * common/create-version.sh: Update comments.  Handle the case
1036         that TARGET_ALIAS is empty.
1037
1038 2013-07-03  Pedro Alves  <palves@redhat.com>
1039
1040         * Makefile.in (config.status): Depend on development.sh.
1041         (aclocal_m4_deps): Add libmcheck.m4.
1042         * acinclude.m4: Include libmcheck.m4.
1043         * configure.ac: Source development.sh instead of setting
1044         'development' here.  --enable-libmcheck/--disable-libmcheck code
1045         factored out to GDB_AC_LIBMCHECK.  Run it.
1046         * development.sh: New file.
1047         * libmcheck.m4: New file.
1048         * configure: Regenerate.
1049
1050 2013-07-02  Tom Tromey  <tromey@redhat.com>
1051
1052         * contrib/ari/update-web-ari.sh: Update for version.in change.
1053
1054 2013-07-02  Tom Tromey  <tromey@redhat.com>
1055
1056         * common/ptid.h: Comment fixes.
1057
1058 2013-07-01  Tom Tromey  <tromey@redhat.com>
1059
1060         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
1061         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
1062         (dwarf2_read_index, create_all_comp_units): Update.
1063
1064 2013-07-01  Tom Tromey  <tromey@redhat.com>
1065
1066         * configure.ac (build_warnings): Add -Wold-style-definition.
1067         * configure: Rebuild.
1068         * machoread.c (_initialize_machoread): Use "(void)".
1069         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
1070         use "(void)".
1071
1072 2013-07-01  Tom Tromey  <tromey@redhat.com>
1073
1074         * configure.ac (build_warnings): Add -Wold-style-declaration.
1075         * configure: Rebuild.
1076         * dsrec.c (make_srec): Use "static const", not "const static".
1077         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
1078         not "const static".
1079         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
1080         Use "static const", not "const static".
1081         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
1082         not "const static".
1083         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
1084         not "const static".
1085         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
1086         not "const static".
1087         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
1088         not "const static".
1089         (v850_dbtrap_breakpoint_from_pc): Likewise.
1090         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
1091         not "const static".
1092
1093 2013-07-01  Tom Tromey  <tromey@redhat.com>
1094
1095         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
1096         * configure: Rebuild.
1097
1098 2013-07-01  Pedro Alves  <palves@redhat.com>
1099
1100         * defs.h: Include "pathmax.h".
1101         * utils.c: Don't include sys/param.h.
1102         (gdb_realpath): Remove code that checks for MAXPATHLEN.
1103         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
1104         instead of MAXPATHLEN.
1105         * solib-sunos.c: Don't include sys/param.h.
1106         * xcoffread.c: Don't include sys/param.h.
1107         * bsd-kvm.c: Don't include sys/param.h.
1108         * darwin-nat.c: Don't include sys/param.h.
1109         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
1110         * darwin-nat-info.c: Don't include sys/param.h.
1111         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
1112         MAXPATHLEN.
1113         * i386obsd-nat.c: Don't include sys/param.h.
1114         * inf-child.c: Don't include sys/param.h.
1115         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
1116         * linux-fork.c: Don't include sys/param.h.
1117         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
1118         * linux-nat.c: Don't include sys/param.h.
1119         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
1120         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
1121         * m68klinux-nat.c: Don't include sys/param.h.
1122         * nbsd-nat.c: Don't include sys/param.h.
1123         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
1124         * ppc-linux-nat.c: Don't include sys/param.h.
1125         * rs6000-nat.c: Don't include sys/param.h.
1126         * spu-linux-nat.c. Don't include sys/param.h.
1127         * windows-nat.c: Don't include sys/param.h.
1128         * xtensa-linux-nat.c: Don't include sys/param.h.
1129         * config/i386/nm-fbsd.h: Don't include sys/param.h.
1130
1131 2013-07-01  Pedro Alves  <palves@redhat.com>
1132
1133         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
1134         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
1135         * gnulib/aclocal.m4: Regenerate.
1136         * gnulib/config.in: Regenerate.
1137         * gnulib/configure: Regenerate.
1138         * gnulib/import/pathmax.h: New file.
1139         * gnulib/import/Makefile.am: Regenerate.
1140         * gnulib/import/Makefile.in: Regenerate.
1141         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1142         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1143         * gnulib/import/m4/pathmax.m4: New file.
1144
1145 2013-07-01  Pedro Alves  <palves@redhat.com>
1146
1147         * configure.ac (GDBINIT): Define, depending on host.
1148         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
1149         * top.c (PATH_MAX): Delete fallback definition.
1150         (GDBINIT_FILENAME): Delete.
1151         (gdbinit): Reimplement as const char array set to the GDBINIT
1152         string constant.
1153         * top.h (gdbinit): Make const.
1154         * configure, config.in: Regenerate.
1155
1156 2013-07-01  Pedro Alves  <palves@redhat.com>
1157
1158         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
1159         * cli/cli-cmds.h (source_script): Likewise.
1160         * exceptions.c (catch_command_errors_const): New function.
1161         * exceptions.h (catch_command_errors_const): Declare.
1162         * main.c (get_init_files): Make parameters const, and adjust.
1163         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
1164         'local_gdbinit' locals const.  Adjust to use
1165         catch_command_errors_const.
1166         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
1167         'local_gdbinit' locals const.
1168
1169 2013-07-01  Pedro Alves  <palves@redhat.com>
1170
1171         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
1172         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
1173         * tracepoint.c: Don't check HAVE_UNISTD_H before including
1174         <unistd.h>.
1175
1176 2013-07-01  Pedro Alves  <palves@redhat.com>
1177
1178         Import the "unistd" gnulib module.
1179         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
1180         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
1181         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
1182         import/m4/unistd_h.m4.
1183         * gnulib/aclocal.m4: Renenerate.
1184         * gnulib/config.in: Renenerate.
1185         * gnulib/configure: Renenerate.
1186         * gnulib/import/Makefile.am: Renenerate.
1187         * gnulib/import/Makefile.in: Renenerate.
1188         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
1189         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
1190         * gnulib/import/m4/off_t.m4: New file.
1191         * gnulib/import/m4/ssize_t.m4: New file.
1192         * gnulib/import/m4/sys_types_h.m4: New file.
1193         * gnulib/import/m4/unistd_h.m4: New file.
1194         * gnulib/import/sys_types.in.h: New file.
1195         * gnulib/import/unistd.c: New file.
1196         * gnulib/import/unistd.in.h: New file.
1197
1198 2013-07-01  Pedro Alves  <palves@redhat.com>
1199
1200         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
1201         defined instead of checking HAVE_UNISTD_H.
1202
1203 2013-07-01  Pedro Alves  <palves@redhat.com>
1204
1205         Reimport gnulib from scratch.
1206         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
1207         import/m4/onceonly.m4.
1208         * gnulib/aclocal.m4: Renegerate.
1209         * gnulib/config.in: Renegerate.
1210         * gnulib/configure: Renegerate.
1211         * gnulib/import/Makefile.in: Renegerate.
1212         * gnulib/import/extra/update-copyright: Renegerate.
1213         * gnulib/import/m4/onceonly.m4: Delete.
1214
1215 2013-07-01  Pedro Alves  <palves@redhat.com>
1216
1217         * tui/tui-regs.c (pagination_enabled): Delete declaration.
1218
1219 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
1220
1221         Code cleanup.
1222         * remote.c (async_remote_interrupt_twice): Make it static.
1223         * remote.h (async_remote_interrupt_twice): Remove the declaration.
1224
1225 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
1226
1227         * ia64-linux-tdep.c: Include <ctype.h>.
1228         (ia64_linux_stap_is_single_operand): New function.
1229         (ia64_linux_init_abi): Initialize SystemTap related attributes.
1230
1231 2013-06-28  Tom Tromey  <tromey@redhat.com>
1232
1233         * Makefile.in (version.c): Use version.in, not
1234         common/version.in.
1235         * common/create-version.sh: Likewise.
1236         * common/version.in: Move...
1237         * version.in: ...here.
1238
1239 2013-06-28  Pedro Alves  <palves@redhat.com>
1240
1241         * infrun.c (set_observer_mode): Don't declare pagination_enabled
1242         here.
1243         * utils.h (pagination_enabled): Declare.
1244
1245 2013-06-28  Pedro Alves  <palves@redhat.com>
1246
1247         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
1248         Move higher up in file.
1249
1250 2013-06-28  Tom Tromey  <tromey@redhat.com>
1251
1252         * tracepoint.c (deprecated_readline_begin_hook)
1253         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
1254         declare.
1255
1256 2013-06-28  Pedro Alves  <palves@redhat.com>
1257
1258         PR tui/14880
1259         * tui/tui-regs.c (tui_get_register): Fetch value contents before
1260         checking if they're available.
1261         * value.c (value_available_contents_eq): Change comment.
1262         * value.h (value_available_contents_eq): Expand comment.
1263
1264 2013-06-27  Tom Tromey  <tromey@redhat.com>
1265
1266         * target.c (find_run_target): Remove.
1267         * target.h (find_run_target): Remove.
1268
1269 2013-06-27  Tom Tromey  <tromey@redhat.com>
1270
1271         * corelow.c (core_gdbarch): Now static.
1272
1273 2013-06-27  Tom Tromey  <tromey@redhat.com>
1274
1275         * target.c (target_struct_index): Remove.
1276
1277 2013-06-27  Pedro Alves  <palves@redhat.com>
1278
1279         * infrun.c: Remove comment describing the 'stepping over runtime
1280         loader dynamic symbol resolution code' mechanism; moved to
1281         gdbint.texinfo.
1282
1283 2013-06-27  Pedro Alves  <palves@redhat.com>
1284
1285         * exceptions.c (catch_command_errors): Remove spurious space.
1286         * exceptions.h (catch_command_errors): Second parameter is "arg",
1287         not "command".
1288
1289 2013-06-27  Yao Qi  <yao@codesourcery.com>
1290
1291         * common/create-version.sh: Update comments.  Handle the case
1292         that TARGET_ALIAS is empty.
1293
1294 2013-06-26  Pedro Alves  <palves@redhat.com>
1295
1296         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
1297         comment.
1298
1299 2013-06-26  Pedro Alves  <palves@redhat.com>
1300
1301         * infrun.c: Update comments on stepping over runtime loader
1302         dynamic symbol resolution code.
1303
1304 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
1305
1306         * ax-gdb.h (union exp_element): Forward declare.
1307         * parser-defs.h: Include expression.h.
1308
1309 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
1310
1311         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
1312
1313 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
1314
1315         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
1316
1317 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
1318
1319         Fix trace-status to output proper start-time and stop-time.
1320         * tracepoint.c (trace_status_command): Fix type of printf arg to
1321         prevent improper type conversion.
1322         (trace_status_mi): Likewise.
1323
1324 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
1325
1326         * mips-tdep.c (mips_next_pc): Fix a typo.
1327
1328 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
1329
1330         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
1331
1332 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1333             Yao Qi  <yao@codesourcery.com>
1334
1335         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
1336         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
1337         * mi/mi-main.c (print_variable_or_computed): New function.
1338         (mi_cmd_trace_frame_collected): New function.
1339         * tracepoint.c (find_trace_state_variable_by_number): New.
1340         (struct traceframe_info): Move to tracepoint.h
1341         (struct collection_list): Likewise.
1342         (do_collect_symbol): Include locals and arguments in the
1343         collected variables list.
1344         (clear_collection_list): Clear wholly collected variables list
1345         and computed variables list.
1346         (append_exp): New function.
1347         (encode_actions_1): Include variables in the wholly
1348         collected variables list.  Include memory ranges and
1349         full-fledged expressions in the computed expressions list.
1350         (encode_actions): Move some code to ...
1351         Return the cleanup chain.
1352         (encode_actions_rsp): ... here.  New function.
1353         (get_traceframe_location, get_traceframe_info): Remove static.
1354         * tracepoint.h (struct memrange): Moved from tracepoint.c.
1355         (struct collection_list): Moved from tracepoint.c.  Add two
1356         new fields 'wholly_collected' and 'computed'.
1357         (find_trace_state_variable_by_number): Declare.
1358         (encode_actions): Adjust declaration.
1359         (encode_actions_rsp): Declare.
1360         (get_traceframe_info, get_traceframe_location): Declare.
1361
1362         * NEWS: Mention new MI command -trace-frame-collected.
1363
1364 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1365             Yao Qi  <yao@codesourcery.com>
1366
1367         * ctf.c (ctf_traceframe_info): Push trace state variables
1368         present in the trace data into the traceframe info object.
1369         * breakpoint.c (DEF_VEC_I): Remove.
1370         * common/filestuff.c (DEF_VEC_I): Likewise.
1371         * dwarf2loc.c (DEF_VEC_I): Likewise.
1372         * mi/mi-main.c (DEF_VEC_I): Likewise.
1373         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
1374         * features/traceframe-info.dtd: Add tvar element and its
1375         attributes.
1376         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
1377         (build_traceframe_info): Push trace state variables present in
1378         the trace data into the traceframe info object.
1379         (traceframe_info_start_tvar): New function.
1380         (tvar_attributes): New.
1381         (traceframe_info_children): Add "tvar" element.
1382         * tracepoint.h (struct traceframe_info) <tvars>: New field.
1383
1384         * NEWS: Mention the change in GDB and GDBserver.
1385
1386 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1387             Yao Qi  <yao@codesourcery.com>
1388
1389         * tracepoint.c (trace_dump_command): Move code to ...
1390         (get_traceframe_location): ... here.  New.
1391
1392 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1393             Yao Qi  <yao@codesourcery.com>
1394
1395         * tracepoint.c (trace_dump_command): GDB emits an error
1396          instead of a warning when a traceframe is not selected.
1397
1398 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1399             Yao Qi  <yao@codesourcery.com>
1400
1401         * tracepoint.c (tracepoint_list, stepping_list): Remove.
1402         (clear_collection_list): Free fields 'aexpre_list' and 'list'
1403         in collection_list.
1404         (do_clear_collection_list, init_collection_list): New.
1405         (encode_actions): Add local variables 'tracepoint_list' and
1406         'stepping_list'.  Call init_collection_list and make cleanup
1407         which calls do_clear_collection_list.  Don't call
1408         clear_collection_list.
1409         (_initialize_tracepoint): Delete references to
1410         'tracepoint_list' and 'stepping_list'.
1411
1412 2013-06-25  Tom Tromey  <tromey@redhat.com>
1413
1414         * common/create-version.sh (date): Use "$", not "$$" in sed
1415         expression.
1416
1417 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
1418
1419         * NEWS (New targets): Add entry for TI MSP430.
1420
1421 2013-06-25  Yao Qi  <yao@codesourcery.com>
1422
1423         * remote.c (remote_start_remote): Move code to upload tsv
1424         earlier.
1425
1426 2013-06-25  Yao Qi  <yao@codesourcery.com>
1427             Hui Zhu  <hui@codesourcery.com>
1428             Pedro Alves  <palves@redhat.com>
1429
1430         PR breakpoints/15075
1431         PR breakpoints/15434
1432         * breakpoint.c (bpstat_stop_status): Call
1433         b->ops->after_condition_true.
1434         (update_dprintf_command_list): Don't append "continue" command
1435         to the command list of dprintf breakpoint.
1436         (base_breakpoint_after_condition_true): New function.
1437         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
1438         (dprintf_after_condition_true): New function.
1439         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
1440         * breakpoint.h (breakpoint_ops): Add after_condition_true.
1441
1442 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
1443
1444         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
1445         (ALLDEPFILES): Add msp430-tdep.c.
1446         * configure.tgt (msp430*-*-elf): New target.
1447         * msp430-tdep.c: New file.
1448
1449 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
1450
1451         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
1452         microMIPS synthetic symbols.
1453
1454 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
1455
1456         * objfiles.h (pc_in_section): New prototype.
1457         (in_plt_section): Remove name argument, replace prototype with
1458         static inline function.
1459         * mips-tdep.h: Include "objfiles.h".
1460         (in_mips_stubs_section): New function.
1461         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
1462         in_solib_call_trampoline member.
1463         (hppa_in_solib_call_trampoline): Remove name argument.
1464         * objfiles.c (pc_in_section): New function.
1465         (in_plt_section): Remove function.
1466         * mips-linux-tdep.c: Include "objfiles.h".
1467         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
1468         name argument.  Return 1 rather than the low 16-bit halfword of
1469         any instruction examined.
1470         (mips_linux_in_dynsym_resolve_code): Update
1471         mips_linux_in_dynsym_stub call accordingly.
1472         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
1473         rather than an equivalent hand-coded sequence.
1474         * hppa-hpux-tdep.c (in_opd_section): Remove function.
1475         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
1476         (hppa64_hpux_in_solib_call_trampoline): Likewise.
1477         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
1478         in_opd_section.
1479         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
1480         on call to tdep->in_solib_call_trampoline.
1481         (hppa_in_solib_call_trampoline): Remove name argument, update
1482         according to in_plt_section change.
1483         (hppa_skip_trampoline_code): Update according to in_plt_section
1484         change.
1485         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
1486         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
1487         Likewise.
1488         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
1489         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
1490         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
1491         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
1492         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
1493         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
1494         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
1495         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
1496         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
1497         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
1498         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
1499         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
1500         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
1501
1502 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
1503
1504         * common/create-version.sh: Fix expansion of $host_alias
1505         and $target_alias in generation of HOST_NAME and TARGET_NAME
1506         (resp.).
1507
1508 2013-06-24  Tom Tromey  <tromey@redhat.com>
1509
1510         * common/create-version.sh: New file.
1511         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
1512         create-version.sh.
1513         (HFILES_NO_SRCDIR): Use common/version.h.
1514         * version.in: Move to ...
1515         * common/version.in: ... here.  Replace date with "DATE".
1516         * version.h: Move to ...
1517         * common/version.h: ... here.
1518
1519 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
1520
1521         * gdb/gnulib/Makefile.in: Update date in copyright header.
1522         * gdb/gnulib/configure.ac: Ditto.
1523         * gdb/gnulib/update-gnulib.sh: Ditto.
1524
1525 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
1526
1527         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
1528         "gdb/gnulib/import".
1529
1530 2013-06-21  Will Newton  <will.newton@linaro.org>
1531
1532         * doublest.c (ldfrexp): Remove function.
1533         (convert_doublest_to_floatformat): Call frexpl instead of
1534         ldfrexp.
1535
1536 2013-06-21  Will Newton  <will.newton@linaro.org>
1537
1538         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
1539         * gnulib/aclocal.m4: Regenerate.
1540         * gnulib/config.in: Regenerate.
1541         * gnulib/configure: Regenerate.
1542         * gnulib/import/Makefile.am: Update.
1543         * gnulib/import/Makefile.in: Update.
1544         * gnulib/import/m4/gnulib-cache.m4: Update.
1545         * gnulib/import/m4/gnulib-comp.m4: Update.
1546         * gnulib/import/float+.h: Import.
1547         * gnulib/import/float.c: Import.
1548         * gnulib/import/float.in.h: Import.
1549         * gnulib/import/fpucw.h: Import.
1550         * gnulib/import/frexp.c: Import.
1551         * gnulib/import/frexpl.c: Import.
1552         * gnulib/import/isnan.c: Import.
1553         * gnulib/import/isnand-nolibm.h: Import.
1554         * gnulib/import/isnand.c: Import.
1555         * gnulib/import/isnanl-nolibm.h: Import.
1556         * gnulib/import/isnanl.c: Import.
1557         * gnulib/import/itold.c: Import.
1558         * gnulib/import/m4/exponentd.m4: Import.
1559         * gnulib/import/m4/exponentl.m4: Import.
1560         * gnulib/import/m4/float_h.m4: Import.
1561         * gnulib/import/m4/fpieee.m4: Import.
1562         * gnulib/import/m4/frexp.m4: Import.
1563         * gnulib/import/m4/frexpl.m4: Import.
1564         * gnulib/import/m4/isnand.m4: Import.
1565         * gnulib/import/m4/isnanl.m4: Import.
1566         * gnulib/import/m4/math_h.m4: Import.
1567         * gnulib/import/math.c: Import.
1568         * gnulib/import/math.in.h: Import.
1569
1570 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
1571
1572         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
1573         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
1574         signature_INTEL_edx comparisons.
1575
1576 2013-06-20  Doug Evans  <dje@google.com>
1577
1578         symtab/15652
1579         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
1580         All callers updated.
1581         (open_dwp_file): If we can't find the dwp file, search the basename
1582         in debug-file-directory.
1583
1584         * dwarf2read.c (struct dwp_file): Fix comment.
1585         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
1586
1587         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
1588         better.
1589
1590 2013-06-20  Yao Qi  <yao@codesourcery.com>
1591
1592         * breakpoint.c (create_breakpoint): Fix code indentation.
1593
1594 2013-06-20  Yao Qi  <yao@codesourcery.com>
1595
1596         * breakpoint.c (create_breakpoints_sal_default): Remove
1597         parameter 'lsal'.  Update declaration.
1598         (bkpt_create_breakpoints_sal): Caller update.
1599         (tracepoint_create_breakpoints_sal): Likewise.
1600
1601 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
1602             Yao Qi  <yao@codesourcery.com>
1603
1604         * NEWS: Mention the new option '--skip-unavailable' of command
1605         -data-list-register-values.
1606         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
1607         --skip-unavailable option.  Adjust to use output_register.
1608         (output_register): Add new 'skip_unavailable' parameter.
1609         Handle it.
1610
1611 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
1612
1613         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
1614         common/i386-gcc-cpuid.h.
1615         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
1616         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
1617         Copy the latest version from upstream gcc.
1618         * common/linux-btrace.c: Include i386-cpuid.h.
1619         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
1620         call to i386_cpuid.
1621         (cpu_supports_btrace): Likewise.
1622         * go32-nat.c: Include i386-cpuid.h.
1623         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
1624
1625 2013-06-19  Doug Evans  <dje@google.com>
1626
1627         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
1628         (get_section_index): Ditto.
1629
1630 2013-06-19  Tom Tromey  <tromey@redhat.com>
1631
1632         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
1633         "dprintf" help.
1634
1635 2013-06-18  Doug Evans  <dje@google.com>
1636
1637         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
1638         before using it.
1639         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
1640         Move test of cu_index closer to use.  Print complaint if cu_index
1641         is bad.
1642
1643 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
1644
1645         * machoread.c (oso_vector): Delete this global.
1646         (macho_register_oso): Add new parameter "oso_vector_ptr".
1647         Use it instead of the "oso_vector" global.
1648         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
1649         (macho_symfile_read): Use a local oso_vector, to be free'ed
1650         at the end of this function, in place of the old "oso_vector"
1651         global.  Update various function calls accordingly.  Use one
1652         single cleanup chain for the entire function.
1653
1654 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
1655
1656         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
1657         DWARF2_PER_OBJFILE by uses of DATA instead.
1658
1659 2013-06-18  Tom Tromey  <tromey@redhat.com>
1660
1661         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
1662         argument.
1663         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
1664         Special case signals other than GDB_SIGNAL_TRAP.
1665         (explains_signal_watchpoint): New function.
1666         (base_breakpoint_explains_signal): Add 'sig' argument.
1667         (initialize_breakpoint_ops): Set 'explains_signal' method for
1668         watchpoints.
1669         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
1670         signal argument.
1671         (bpstat_explains_signal): Likewise.
1672         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
1673
1674 2013-06-18  Tom Tromey  <tromey@redhat.com>
1675
1676         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
1677
1678 2013-06-18  Tom Tromey  <tromey@redhat.com>
1679
1680         * python/python.c (finish_python_initialization): Decref
1681         'pythondir' on failure path as well.
1682
1683 2013-06-18  Tom Tromey  <tromey@redhat.com>
1684
1685         PR symtab/15391:
1686         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
1687         after taking bits_to_skip into account.  Sign extend byte_offset.
1688         * utils.h (gdb_sign_extend): Declare.
1689         * utils.c (gdb_sign_extend): New function.
1690
1691 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
1692
1693         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
1694
1695 2013-06-17  Pierre Muller  <muller@sourceware.org>
1696
1697         * corelow.c (core_open): Print GDB signal name instead of target
1698         signal number.
1699
1700 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
1701
1702         * .gitignore: Add /gcore.
1703
1704 2013-06-13  Doug Evans  <dje@google.com>
1705
1706         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
1707         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
1708
1709 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
1710
1711         * stack.c (backtrace_command_1): Fix indentation.
1712
1713 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1714
1715         * window-nat.c (thread_rec): Add missing empty line after
1716         local variable declaration.
1717
1718 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1719
1720         * windows-nat.c (thread_rec): Revert format used to print
1721         error code returned by SuspendThread from %d back to %u.
1722
1723 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1724
1725         * windows-nat.c (windows_continue): Add "0x" prefix for thread
1726         ID in debug trace.
1727         (get_windows_debug_event): Likewise, for all debug traces.
1728
1729 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1730
1731         * window-nat.c (thread_rec): Add thread ID in SuspendThread
1732         warning message.
1733
1734 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
1735             Yao Qi  <yao@codesourcery.com>
1736
1737         * mi/mi-main.c (get_register): Remove declaration.
1738         (output_register): Declare.
1739         (mi_cmd_data_list_register_values): Remove local variable
1740         'tuple_cleanup'.  Move some code into output_register.
1741         (get_register): Renamed to ...
1742         (output_register): ... this.  Output the register's
1743         "number" ui_out tuple here.
1744
1745 2013-06-07  Pedro Alves  <palves@redhat.com>
1746
1747         * darwin-nat.c: Fix formating in copyright header.
1748         * darwin-nat.h: Likewise.
1749         * gnu-nat.c: Likewise.
1750         * machoread.c: Likewise.
1751
1752 2013-06-07  Pedro Alves  <palves@redhat.com>
1753
1754         PR server/14823
1755         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
1756         static.  Output a global target description pointer.
1757         (init_registers_${name}): Adjust to initialize a
1758         target description structure.
1759
1760 2013-06-07  Will Newton  <will.newton@linaro.org>
1761
1762         * printcmd.c (build_address_symbolic): Call
1763         gdbarch_addr_bits_remove for text minimal symbols.
1764
1765 2013-06-07  Will Newton  <will.newton@linaro.org>
1766
1767         * MAINTAINERS: Add myself to Write After Approval.
1768
1769 2013-06-07  Yao Qi  <yao@codesourcery.com>
1770
1771         * tracepoint.c (start_tracing): Move code to ...
1772         (trace_reset_local_state): ... here.  New.
1773         (disconnect_tracing): Don't call set_current_traceframe,
1774         set_tracepoint_num, and set_traceframe_context. Call
1775         trace_reset_local_state instead.
1776         (tfile_close): Call trace_reset_local_state.
1777         * ctf.c (ctf_close): Likewise.
1778         * remote.c (remote_close): Likewise.
1779         * tracepoint.h (trace_reset_local_state): Declare.
1780
1781 2013-06-06  Doug Evans  <dje@google.com>
1782
1783         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
1784         and fix header docs.
1785
1786 2013-06-05  Doug Evans  <dje@google.com>
1787             Keith Seitz  <keiths@redhat.com>
1788
1789         PR 15519
1790         * cp-namespace.c (find_symbol_in_baseclass): Call
1791         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
1792         Check result of call to lookup_symbol_static.
1793         Call lookup_static_symbol_aux unconditionally.
1794         Call check_typedef on base types before accessing them.
1795         (cp_lookup_nested_symbol): Fix comment.
1796
1797 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
1798
1799         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
1800         minimal symbols pointing to function descriptors.
1801
1802 2013-06-05  Tom Tromey  <tromey@redhat.com>
1803
1804         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
1805
1806 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
1807             Pedro Alves  <palves@redhat.com>
1808
1809         * remote.c (remote_wait_as): Restore signal handler before returning
1810         when GDB gets a notification.
1811
1812 2013-06-04  Gary Benson  <gbenson@redhat.com>
1813
1814         PR 2328
1815         * breakpoint.h (handle_solib_event): Moved function declaration
1816         to solib.h.
1817         * breakpoint.c (handle_solib_event): Moved function to solib.c.
1818         (bpstat_stop_status): Pass new argument to handle_solib_event.
1819         * solib.h (update_solib_breakpoints): New function declaration.
1820         (handle_solib_event): Moved function declaration from
1821         breakpoint.h.
1822         * solib.c (update_solib_breakpoints): New function.
1823         (handle_solib_event): Moved function from breakpoint.c.
1824         Updated to call solib_ops->handle_event if not NULL.
1825         * solist.h (target_so_ops): New fields "update_breakpoints" and
1826         "handle_event".
1827         * infrun.c (set_stop_on_solib_events): New function.
1828         (_initialize_infrun): Use the above for "set
1829         stop-on-solib-events".
1830         (handle_inferior_event): Pass new argument to handle_solib_event.
1831         * solib-svr4.c (probe.h): New include.
1832         (svr4_free_library_list): New forward declaration.
1833         (probe_action): New enum.
1834         (probe_info): New struct.
1835         (probe_info): New static variable.
1836         (NUM_PROBES): New definition.
1837         (svr4_info): New fields "using_xfer", "probes_table" and
1838         "solib_list".
1839         (free_probes_table): New function.
1840         (free_solib_list): New function.
1841         (svr4_pspace_data_cleanup): Free probes table and solib list.
1842         (svr4_copy_library_list): New function.
1843         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
1844         (svr4_read_so_list): New parameter "prev_lm".
1845         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
1846         (svr4_current_sos): New function.
1847         (probe_and_action): New struct.
1848         (hash_probe_and_action): New function.
1849         (equal_probe_and_action): Likewise.
1850         (register_solib_event_probe): Likewise.
1851         (solib_event_probe_at): Likewise.
1852         (solib_event_probe_action): Likewise.
1853         (solist_update_full): Likewise.
1854         (solist_update_incremental): Likewise.
1855         (disable_probes_interface_cleanup): Likewise.
1856         (svr4_handle_solib_event): Likewise.
1857         (svr4_update_solib_event_breakpoint): Likewise.
1858         (svr4_update_solib_event_breakpoints): Likewise.
1859         (svr4_create_solib_event_breakpoints): Likewise.
1860         (enable_break): Free probes table before creating breakpoints.
1861         Use svr4_create_solib_event_breakpoints to create breakpoints.
1862         (svr4_solib_create_inferior_hook): Free the solib list.
1863         (_initialize_svr4_solib): Initialise
1864         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
1865
1866 2013-06-04  Gary Benson  <gbenson@redhat.com>
1867
1868         * target.h (target_ops): New field
1869         "to_augmented_libraries_svr4_read".
1870         (target_augmented_libraries_svr4_read): New macro.
1871         * target.c (update_current_target): Handle
1872         to_augmented_libraries_svr4_read.
1873         * remote.c (remote_state): New field
1874         "augmented_libraries_svr4_read".
1875         (remote_augmented_libraries_svr4_read_feature): New function.
1876         (remote_protocol_features): Add entry for
1877         "augmented-libraries-svr4-read".
1878         (remote_augmented_libraries_svr4_read): New function.
1879         (init_remote_ops): Initialize
1880         remote_ops.to_augmented_libraries_svr4_read.
1881
1882 2013-06-04  Gary Benson  <gbenson@redhat.com>
1883
1884         * NEWS: Update.
1885
1886 2013-06-04  Gary Benson  <gbenson@redhat.com>
1887
1888         * objfiles.h (inhibit_section_map_updates): New function
1889         declaration.
1890         (resume_section_map_updates): Likewise.
1891         (resume_section_map_updates_cleanup): Likewise.
1892         * objfiles.c (objfile_pspace_info): Removed field
1893         "objfiles_changed_p".  New fields "new_objfiles_available",
1894         "section_map_dirty" and "inhibit_updates".
1895         (allocate_objfile): Set new_objfiles_available.
1896         (free_objfile): Set section_map_dirty.
1897         (objfile_relocate1): Likewise.
1898         (in_plt_section): Likewise.
1899         (find_pc_section): Update the conditions under which the
1900         section map will be updated.
1901         (inhibit_section_map_updates): New function.
1902         (resume_section_map_updates): Likewise.
1903         (resume_section_map_updates_cleanup): Likewise.
1904
1905 2013-06-04  Gary Benson  <gbenson@redhat.com>
1906
1907         * probe.h (get_probe_argument_count): New declaration.
1908         (evaluate_probe_argument): Likewise.
1909         * probe.c (get_probe_argument_count): New function.
1910         (evaluate_probe_argument): Likewise.
1911         (probe_safe_evaluate_at_pc): Use the above new functions.
1912
1913 2013-06-04  Alan Modra  <amodra@gmail.com>
1914
1915         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
1916         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
1917         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
1918         target mem reads on optional insns.
1919         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
1920         ppc_insns_match_pattern calls.
1921         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
1922         Add match for power7 thread safety insns, and new order of
1923         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
1924         invocation in comment, and update rest of comment.
1925         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
1926         PPC64_STANDARD_LINKAGE3_LEN): Delete.
1927         (ppc64_standard_linkage2_target): Update insn offsets.
1928         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
1929         stubs first.  Update calls.
1930
1931 2013-06-04  Yao Qi  <yao@codesourcery.com>
1932
1933         * solib.c (solib_find): Don't need dir separator if path has
1934         drive spec.
1935
1936 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
1937
1938         Revert (indirectly causes a SIGSEGV):
1939         * machoread.c (macho_symfile_read): Assign first cleanup to
1940         'back_to'.
1941
1942 2013-06-03  Yao Qi  <yao@codesourcery.com>
1943
1944         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
1945         mi-parse.c.  Make them static.
1946         (mi_all_values): Likewise.
1947         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
1948         mi_parse_print_values.  Make it external.
1949         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
1950         Remove the declarations.
1951         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
1952         * mi/mi-parse.h (mi_parse_print_values): Declare.
1953         * mi/mi-cmd-stack.c: Include mi-parse.h.
1954         (parse_print_values): Remove
1955         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
1956         of parse_print_values.
1957         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
1958
1959 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
1960             Yao Qi  <yao@codesourcery.com>
1961
1962         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
1963         (encode_actions): Move code to ...
1964         (all_tracepoint_actions_and_cleanup): ... here.  New.
1965         (trace_dump_command): Likewise.
1966
1967 2013-05-30  Tom Tromey  <tromey@redhat.com>
1968
1969         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
1970
1971 2013-05-30  Tom Tromey  <tromey@redhat.com>
1972
1973         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
1974         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
1975         'old_chain' argument.  Add 'parser_result' argument.
1976         (gdb_xml_create_parser_and_cleanup): Remove old version.
1977         (gdb_xml_parse_quick): Update.
1978         (xml_process_xincludes): Update.
1979         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
1980         declare.
1981
1982 2013-05-30  Tom Tromey  <tromey@redhat.com>
1983
1984         * probe.c (collect_probes): Check arguments for NULL before
1985         calling compile_rx_or_error.
1986         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
1987         Remove NULL return.
1988
1989 2013-05-30  Tom Tromey  <tromey@redhat.com>
1990
1991         * infrun.c (adjust_pc_after_break): Introduce an outer null
1992         cleanup.
1993
1994 2013-05-30  Tom Tromey  <tromey@redhat.com>
1995
1996         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
1997
1998 2013-05-30  Tom Tromey  <tromey@redhat.com>
1999
2000         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
2001         for 'old_chain'.  Do not check 'head' before processing
2002         cleanups.
2003
2004 2013-05-30  Tom Tromey  <tromey@redhat.com>
2005
2006         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
2007         "cleanup_tuple".
2008
2009 2013-05-30  Tom Tromey  <tromey@redhat.com>
2010
2011         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
2012         inner scope.  Unconditionally call do_cleanups.
2013
2014 2013-05-30  Tom Tromey  <tromey@redhat.com>
2015
2016         * source.c (find_and_open_source): Call do_cleanups.
2017
2018 2013-05-30  Tom Tromey  <tromey@redhat.com>
2019
2020         * linux-thread-db.c (thread_db_load_search): Unconditionally
2021         call do_cleanups.
2022
2023 2013-05-30  Tom Tromey  <tromey@redhat.com>
2024
2025         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
2026         for 'cleanup'; instead use a later one.
2027
2028 2013-05-30  Tom Tromey  <tromey@redhat.com>
2029
2030         * python/py-breakpoint.c (bppy_get_commands): Use
2031         explicit, unconditional return.
2032         * python/py-frame.c (frapy_read_var): Likewise.
2033         * python/python.c (gdbpy_decode_line): Likewise.
2034
2035 2013-05-30  Tom Tromey  <tromey@redhat.com>
2036
2037         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
2038         do_cleanups on all return paths.
2039
2040 2013-05-30  Tom Tromey  <tromey@redhat.com>
2041
2042         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
2043
2044 2013-05-30  Tom Tromey  <tromey@redhat.com>
2045
2046         * stabsread.c (read_struct_type): Call do_cleanups along
2047         all return paths.
2048
2049 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
2050
2051         * mips-linux-tdep.c: Adjust formatting throughout.
2052
2053 2013-05-30  Tom Tromey  <tromey@redhat.com>
2054
2055         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
2056         along all return paths.
2057
2058 2013-05-30  Tom Tromey  <tromey@redhat.com>
2059
2060         * symfile.c (find_separate_debug_file): Call do_cleanups
2061         along all return paths.
2062
2063 2013-05-30  Tom Tromey  <tromey@redhat.com>
2064
2065         * symtab.c (search_symbols): Introduce a null cleanup for
2066         'retval_chain'.
2067
2068 2013-05-30  Tom Tromey  <tromey@redhat.com>
2069
2070         * python/py-value.c (valpy_binop): Call do_cleanups before
2071         exiting loop.
2072
2073 2013-05-30  Tom Tromey  <tromey@redhat.com>
2074
2075         * python/py-prettyprint.c (print_children): Remove extra
2076         do_cleanups call.
2077
2078 2013-05-30  Tom Tromey  <tromey@redhat.com>
2079
2080         * python/py-frame.c (frapy_read_var): Call do_cleanups along
2081         all return paths.
2082
2083 2013-05-30  Tom Tromey  <tromey@redhat.com>
2084
2085         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
2086         along all return paths.
2087
2088 2013-05-30  Tom Tromey  <tromey@redhat.com>
2089
2090         * cli/cli-logging.c (set_logging_redirect): Unconditionally
2091         call do_cleanups.
2092
2093 2013-05-30  Tom Tromey  <tromey@redhat.com>
2094
2095         * varobj.c (c_value_of_root): Call do_cleanups along all
2096         return paths.
2097
2098 2013-05-30  Tom Tromey  <tromey@redhat.com>
2099
2100         * tracepoint.c (trace_dump_command): Unconditionally call
2101         do_cleanups.
2102
2103 2013-05-30  Tom Tromey  <tromey@redhat.com>
2104
2105         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
2106         do_cleanups earlier.
2107
2108 2013-05-30  Tom Tromey  <tromey@redhat.com>
2109
2110         * machoread.c (macho_symfile_read): Assign first cleanup to
2111         'back_to'.
2112
2113 2013-05-30  Tom Tromey  <tromey@redhat.com>
2114
2115         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
2116
2117 2013-05-30  Tom Tromey  <tromey@redhat.com>
2118
2119         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
2120
2121 2013-05-30  Tom Tromey  <tromey@redhat.com>
2122
2123         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
2124         call discard_cleanups.
2125         (inf_ptrace_attach): Likewise.
2126
2127 2013-05-30  Tom Tromey  <tromey@redhat.com>
2128
2129         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
2130         return paths.
2131         (mips_initialize): Likewise.
2132         (common_open): Call do_cleanups.
2133
2134 2013-05-30  Tom Tromey  <tromey@redhat.com>
2135
2136         * utils.c (internal_vproblem): Call do_cleanups.
2137
2138 2013-05-30  Tom Tromey  <tromey@redhat.com>
2139
2140         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
2141
2142 2013-05-30  Tom Tromey  <tromey@redhat.com>
2143
2144         * cli/cli-script.c (setup_user_args): Don't return after error.
2145
2146 2013-05-30  Tom Tromey  <tromey@redhat.com>
2147
2148         * somread.c (som_symtab_read): Call do_cleanups.
2149
2150 2013-05-30  Tom Tromey  <tromey@redhat.com>
2151
2152         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
2153
2154 2013-05-30  Tom Tromey  <tromey@redhat.com>
2155
2156         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
2157         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
2158         * interps.c (interpreter_exec_cmd): Call do_cleanups.
2159         * source.c (show_substitute_path_command): Call do_cleanups.
2160         (unset_substitute_path_command, set_substitute_path_command):
2161         Likewise.
2162         * symfile.c (load_command): Call do_cleanups.
2163
2164 2013-05-30  Tom Tromey  <tromey@redhat.com>
2165
2166         * contrib/cleanup_check.py: New file.
2167         * contrib/gcc-with-excheck: Add option parsing.
2168
2169 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
2170
2171         * windows-nat.c (windows_delete_thread): Add missing space
2172         in cast expression.
2173
2174 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
2175
2176         * inferior.c (top level): Include tilde.h.
2177         (add_inferior_command): Call tilde_expand on the value of 'exec'
2178         argument.
2179
2180 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
2181             Yao Qi  <yao@codesourcery.com>
2182
2183         * tracepoint.c (encode_actions_1): Remove parameter 't'.
2184         Caller update.
2185         (encode_actions): Likewise.
2186         * remote.c (remote_download_tracepoint): Caller update.
2187         * tracepoint.h (encode_actions): Update declaration.
2188
2189 2013-05-30  Pedro Alves  <palves@redhat.com>
2190
2191         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
2192         pointer.
2193
2194 2013-05-30  Yao Qi  <yao@codesourcery.com>
2195
2196         * remote.c (remote_check_symbols): Remove unused parameter
2197         'objfile'.
2198         Declaration update.
2199         (remote_start_remote, remote_new_objfile): Caller update.
2200
2201 2013-05-30  Yao Qi  <yao@codesourcery.com>
2202
2203         * mi/mi-cmds.c (mi_cmds): Define MI command
2204         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
2205         DEF_MI_CMD_CLI.
2206
2207 2013-05-29  Pedro Alves  <palves@redhat.com>
2208
2209         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
2210         (remote_insert_watchpoint, remote_remove_watchpoint)
2211         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
2212         (remote_verify_memory, compare_sections_command)
2213         (remote_search_memory): Set the general process/thread on the
2214         remote side.
2215
2216 2013-05-29  Pedro Alves  <palves@redhat.com>
2217
2218         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
2219         (_initialize_aarch64_tdep): Don't call
2220         initialize_tdesc_aarch64_without_fpu.
2221         * features/Makefile (WHICH): Remove reference to
2222         aarch64-without-fpu.
2223         * features/aarch64-without-fpu.c: Delete file.
2224         * regformats/aarch64-without-fpu.dat: Delete file.
2225
2226 2013-05-28  Yao Qi  <yao@codesourcery.com>
2227
2228         * tracepoint.c (stringify_collection_list): Remove parameter
2229         'string'.
2230         (encode_actions): Caller update.  Remove local variables.
2231
2232 2013-05-24  Yao Qi  <yao@codesourcery.com>
2233
2234         * tracepoint.c (TFILE_PID): Remove.
2235         (tfile_open): Don't add thread and inferior.
2236         (tfile_close): Don't set 'inferior_ptid'.  Don't call
2237         exit_inferior_silent.
2238         (tfile_thread_alive): Remove.
2239         (init_tfile_ops): Don't set field 'to_thread_alive' of
2240         tfile_ops.
2241
2242 2013-05-23  Doug Evans  <dje@google.com>
2243
2244         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
2245
2246 2013-05-23  Pedro Alves  <palves@redhat.com>
2247
2248         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
2249         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
2250         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
2251         Only define if HAVE_SOCKETS is defined.
2252         * configure.ac: Check for sys/socket.h.
2253         * config.in, configure: Regenerate.
2254
2255 2013-05-23  Pedro Alves  <palves@redhat.com>
2256
2257         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
2258         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
2259         printing uint32_t variables.
2260
2261 2013-05-23  Pedro Alves  <palves@redhat.com>
2262
2263         * NEWS: Mention GDBserver range stepping support.
2264
2265 2013-05-23  Yao Qi  <yao@codesourcery.com>
2266             Pedro Alves  <palves@redhat.com>
2267
2268         * gdbthread.h (struct thread_control_state) <may_range_step>: New
2269         field.
2270         * infcmd.c (step_once, until_next_command): Enable range stepping.
2271         * infrun.c (displaced_step_prepare): Disable range stepping.
2272         (resume): Disable range stepping if stepping over a breakpoint or
2273         we have software watchpoints.  If range stepping is enabled,
2274         assert the thread is in the stepping range.
2275         (clear_proceed_status_thread): Clear may_range_step.
2276         (handle_inferior_event): Disable range stepping as soon as we know
2277         the thread that hit the event.  Re-enable it whenever we're going
2278         to step with a step range.
2279         * remote.c (struct vCont_action_support) <r>: New field.
2280         (use_range_stepping): New global.
2281         (remote_vcont_probe): Handle 'r' action.
2282         (append_resumption): Append an 'r' action if the thread may range
2283         step.
2284         (show_range_stepping): New function.
2285         (set_range_stepping): New function.
2286         (_initialize_remote): Call add_setshow_boolean_cmd to register the
2287         'set range-stepping' and 'show range-stepping' commands.
2288         * NEWS: Mention range stepping, the new vCont;r action, and the
2289         new "set/show range-stepping" commands.
2290
2291 2013-05-23  Yao Qi  <yao@codesourcery.com>
2292             Pedro Alves  <palves@redhat.com>
2293
2294         * remote.c (struct vCont_action_support): New struct.
2295         (struct remote_state) <support_vCont_t>: Remove field.
2296         <vCont_actions_support>: New field.
2297         (remote_vcont_probe, remote_stop_ns): Update.
2298
2299 2013-05-23  Yao Qi  <yao@codesourcery.com>
2300             Pedro Alves  <palves@redhat.com>
2301
2302         * gdbthread.h (pc_in_thread_step_range): New declaration.
2303         * thread.c (pc_in_thread_step_range): New function.
2304         * infrun.c (handle_inferior_event): Use it.
2305
2306 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
2307
2308         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
2309         of sprintf.
2310
2311 2013-05-22  Keith Seitz  <keiths@redhat.com>
2312
2313         * ada-lang.c (is_known_support_routine): Add explicit free of
2314         'func_name' from find_frame_funname.
2315         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
2316         for func_name from find_frame_funname.
2317         * python/py-frame.c (frapy_name): Add explicit free of
2318         'name' from find_frame_funname.
2319         * stack.c (find_frame_funname): Add comment explaining that
2320         funcp must be freed by the caller.
2321         Return copy of symbol names instead of pointers.
2322         (print_frame): Add a cleanup for 'funname' from
2323         find_frame_funname.
2324         * stack.h (find_frame_funname): Remove "const" from
2325         'funname' parameter.
2326
2327 2013-05-22  Tom Tromey  <tromey@redhat.com>
2328
2329         PR c++/15401:
2330         * c-valprint.c (c_value_print): Use value_addr for
2331         references.  Convert back to reference type with value_ref.
2332
2333 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
2334
2335         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
2336         unloaded DLL, it will be done by handle_solib_event.  See
2337         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
2338         details.
2339
2340 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
2341
2342         * ui-out.c: Create typedef ui_out_level_p and define vector
2343         operations for that type.
2344         (struct ui_out): Use a vector instead of an array.
2345         (current_level): Return level from a vector.
2346         (push_level): Create a level in a vector.
2347         (pop_level): Delete a level in a vector.
2348         (ui_out_new): Create initial level zero level, and store in a
2349         vector.
2350         (ui_out_destroy): Add vector cleanup.
2351
2352 2013-05-22  Pedro Alves  <palves@redhat.com>
2353
2354         * python/python-internal.h (gdb_Py_DECREF): Tag with
2355         "ARI: editCase function".
2356
2357 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
2358
2359         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
2360
2361 2013-05-21  Pedro Alves  <palves@redhat.com>
2362
2363         * python/py-prettyprint.c (apply_val_pretty_printer): Check
2364         whether PRINTER is NULL before installing a Py_DECREF cleanup.
2365         * python/py-utils.c (py_decref): Don't check for NULL before
2366         calling Py_DECREF.
2367
2368 2013-05-21  Pedro Alves  <palves@redhat.com>
2369
2370         * python/py-utils.c (py_decref): Remove extra braces.
2371         (gdb_pymodule_addobject): Remove extra braces.
2372         * python-internal.h (gdb_Py_DECREF): New static inline function.
2373         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
2374
2375 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
2376
2377         * breakpoints.c (detach_breakpoints): Do not
2378         detach breakpoints locations with loc_type bp_loc_other.
2379
2380 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2381
2382         Workaround Python 2.6.
2383         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
2384         a block.
2385
2386 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2387
2388         Code cleanup: constification.
2389         * solib.c (solib_ops): Make return type and ops variable type const.
2390         (set_solib_ops): Make the new_ops parameter and ops variable const.
2391         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
2392         (solib_add, solib_keep_data_in_core, clear_solib)
2393         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
2394         (reload_shared_libraries, solib_global_lookup): Make the ops variable
2395         const.
2396         * solib.h (set_solib_ops): Make the new_ops parameter const.
2397
2398 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
2399
2400         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
2401         variable.
2402         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
2403         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
2404         (SYSTEM_GDBINIT_FILES): New variables.
2405         (all): Add stamp-system-gdbinit.
2406         (stamp-system-gdbinit): New rule.
2407         (clean-system-gdbinit, install-system-gdbinit)
2408         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
2409         (install-only): Add dependency on install-system-gdbinit.
2410         (uninstall): Add dependency on uninstall-system-gdbinit.
2411         (clean): Add dependency on clean-system-gdbinit.
2412         * system-gdbinit/elinos.py: New file.
2413         * system-gdbinit/wrs-linux.py: New file.
2414
2415 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
2416
2417         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
2418
2419 2013-05-21  Hui Zhu  <hui@codesourcery.com>
2420
2421         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
2422         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
2423         * mi/mi-cmd-break.c (ctype.h): New include.
2424         (gdb_obstack.h): New include.
2425         (mi_argv_to_format, mi_cmd_break_insert_1): New.
2426         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
2427         (mi_cmd_dprintf_insert): New.
2428         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
2429         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
2430
2431 2013-05-20  Tom Tromey  <tromey@redhat.com>
2432
2433         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
2434
2435 2013-05-20  Tom Tromey  <tromey@redhat.com>
2436
2437         * python/py-value.c (valpy_get_dynamic_type): Simplify
2438         dynamic_type assignment.  Use Py_XINCREF.
2439
2440 2013-05-20  Tom Tromey  <tromey@redhat.com>
2441
2442         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
2443
2444 2013-05-20  Tom Tromey  <tromey@redhat.com>
2445
2446         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
2447         (gdbpy_selected_frame): Move object-construction code
2448         out of TRY_CATCH.
2449
2450 2013-05-20  Tom Tromey  <tromey@redhat.com>
2451
2452         * python/py-arch.c (gdbpy_initialize_arch): Use
2453         gdb_pymodule_addobject.
2454         * python/py-block.c (gdbpy_initialize_blocks): Use
2455         gdb_pymodule_addobject.
2456         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
2457         gdb_pymodule_addobject.
2458         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
2459         gdb_pymodule_addobject.
2460         * python/py-event.c (gdbpy_initialize_event_generic): Use
2461         gdb_pymodule_addobject.
2462         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
2463         gdb_pymodule_addobject.
2464         * python/py-evts.c (add_new_registry): Use
2465         gdb_pymodule_addobject.
2466         (gdbpy_initialize_py_events): Likewise.
2467         * python/py-finishbreakpoint.c
2468         (gdbpy_initialize_finishbreakpoints): Use
2469         gdb_pymodule_addobject.
2470         * python/py-frame.c (gdbpy_initialize_frames): Use
2471         gdb_pymodule_addobject.
2472         * python/py-function.c (gdbpy_initialize_functions): Use
2473         gdb_pymodule_addobject.
2474         * python/py-inferior.c (gdbpy_initialize_inferior): Use
2475         gdb_pymodule_addobject.
2476         * python/py-infthread.c (gdbpy_initialize_thread): Use
2477         gdb_pymodule_addobject.
2478         * python/py-objfile.c (gdbpy_initialize_objfile): Use
2479         gdb_pymodule_addobject.
2480         * python/py-param.c (gdbpy_initialize_parameters): Use
2481         gdb_pymodule_addobject.
2482         * python/py-progspace.c (gdbpy_initialize_pspace): Use
2483         gdb_pymodule_addobject.
2484         * python/py-symbol.c (gdbpy_initialize_symbols): Use
2485         gdb_pymodule_addobject.
2486         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
2487         gdb_pymodule_addobject.
2488         * python/py-type.c (gdbpy_initialize_types): Use
2489         gdb_pymodule_addobject.
2490         * python/py-utils.c (gdb_pymodule_addobject): New function.
2491         * python/py-value.c (gdbpy_initialize_values): Use
2492         gdb_pymodule_addobject.
2493         * python/python-internal.h (gdb_pymodule_addobject): Declare.
2494         * python/python.c (_initialize_python): Use
2495         gdb_pymodule_addobject.
2496
2497 2013-05-20  Tom Tromey  <tromey@redhat.com>
2498
2499         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
2500         * python/py-param.c (get_set_value, get_show_value): Use
2501         explicit decrefs.
2502         * python/python.c (start_type_printers, apply_type_printers):
2503         Use explicit decrefs.
2504
2505 2013-05-20  Tom Tromey  <tromey@redhat.com>
2506
2507         * python/py-evts.c (gdbpy_initialize_py_events): Don't
2508         incref the module.
2509
2510 2013-05-20  Tom Tromey  <tromey@redhat.com>
2511
2512         * python/python.c (gdbpy_run_events): Decref the result
2513         of PyObject_CallObject.
2514
2515 2013-05-20  Tom Tromey  <tromey@redhat.com>
2516
2517         * python/py-symtab.c (set_sal): Use
2518         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
2519         (symtab_and_line_to_sal_object): Update.
2520
2521 2013-05-20  Tom Tromey  <tromey@redhat.com>
2522
2523         * python/py-param.c (compute_enum_values): Decref 'item'.
2524
2525 2013-05-20  Tom Tromey  <tromey@redhat.com>
2526
2527         * mi/mi-main.c: Include python-internal.h.
2528         (mi_cmd_list_features): Check gdb_python_initialized.
2529         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
2530         (python_inferior_exit, python_new_objfile, add_thread_object)
2531         (delete_thread_object, py_free_inferior): Check
2532         gdb_python_initialized.
2533         * python/py-prettyprint.c (apply_val_pretty_printer): Check
2534         gdb_python_initialized.
2535         * python/py-type.c (save_objfile_types): Check
2536         gdb_python_initialized.
2537         * python/python-internal.h (gdb_python_initialized): Declare.
2538         * python/python.c (ensure_python_env): Throw exception if
2539         Python not initialized.
2540         (before_prompt_hook, source_python_script_for_objfile)
2541         (start_type_printers, apply_type_printers,
2542         free_type_printers): Check gdb_python_initialized.
2543         * varobj.c (varobj_get_display_hint)
2544         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
2545         (install_new_value_visualizer, varobj_set_visualizer)
2546         (value_get_print_value): Check gdb_python_initialized.
2547
2548 2013-05-20  Tom Tromey  <tromey@redhat.com>
2549
2550         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
2551         Check errors.
2552         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
2553         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
2554         Check errors.
2555         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
2556         Check errors.
2557         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
2558         Check errors.
2559         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
2560         Check errors.
2561         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
2562         init function to return 'int'.
2563         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
2564         Return 'int'.  Check errors.
2565         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
2566         Check errors.
2567         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
2568         Return 'int'.  Check errors.
2569         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
2570         Check errors.
2571         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
2572         Check errors.
2573         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
2574         Check errors.
2575         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
2576         Check errors.
2577         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
2578         Check errors.
2579         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
2580         Check errors.
2581         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
2582         Check errors.
2583         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
2584         Check errors.
2585         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
2586         Check errors.
2587         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
2588         Check errors.
2589         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
2590         Check errors.
2591         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
2592         Check errors.
2593         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
2594         Check errors.
2595         * python/python-internal.h (gdbpy_initialize_auto_load,
2596         gdbpy_initialize_values, gdbpy_initialize_frames,
2597         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
2598         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
2599         gdbpy_initialize_blocks, gdbpy_initialize_types,
2600         gdbpy_initialize_functions, gdbpy_initialize_pspace,
2601         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
2602         gdbpy_initialize_finishbreakpoints,
2603         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
2604         gdbpy_initialize_thread, gdbpy_initialize_inferior,
2605         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
2606         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
2607         gdbpy_initialize_signal_event,
2608         gdbpy_initialize_breakpoint_event,
2609         gdbpy_initialize_continue_event,
2610         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
2611         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
2612         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2613         * python/python.c (gdb_python_initialized): New global.
2614         (gdbpy_initialize_events): Return 'int'.  Check errors.
2615         (_initialize_python): Check errors.  Set
2616         gdb_python_initialized.
2617
2618 2013-05-20  Tom Tromey  <tromey@redhat.com>
2619
2620         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
2621         Decref the reslut of PyObject_CallMethod.
2622
2623 2013-05-20  Tom Tromey  <tromey@redhat.com>
2624
2625         * python/py-event.c (gdbpy_initialize_event_generic): Return
2626         early if PyType_Ready fails.
2627
2628 2013-05-20  Tom Tromey  <tromey@redhat.com>
2629
2630         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
2631         as 'default' in the switch.
2632
2633 2013-05-20  Tom Tromey  <tromey@redhat.com>
2634
2635         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
2636         get_addr_from_python calls out of TRY_CATCH.
2637         (infpy_write_memory, infpy_search_memory): Likewise.
2638         * python/py-utils.c (get_addr_from_python): Return negative
2639         value on error.  Use TRY_CATCH.
2640         * python/python-internal.h (get_addr_from_python): Use
2641         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2642
2643 2013-05-20  Tom Tromey  <tromey@redhat.com>
2644
2645         * python/py-event.c (evpy_emit_event): Decref the
2646         result of PyObject_CallFunctionObjArgs.
2647
2648 2013-05-20  Tom Tromey  <tromey@redhat.com>
2649
2650         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
2651         Correctly decref.
2652
2653 2013-05-20  Tom Tromey  <tromey@redhat.com>
2654
2655         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
2656
2657 2013-05-20  Tom Tromey  <tromey@redhat.com>
2658
2659         * python/py-event.h (gdbpy_initialize_event_generic): Use
2660         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2661         * python/py-evts.c (add_new_registry): Use
2662         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2663         * python/python-internal.h
2664         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
2665
2666 2013-05-20  Tom Tromey  <tromey@redhat.com>
2667
2668         * python/py-arch.c (archpy_disassemble): Update.
2669         * python/py-type.c (typy_get_composite, typy_lookup_typename)
2670         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
2671         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
2672         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
2673         macro.
2674         (GDB_PY_HANDLE_EXCEPTION): Update.
2675         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
2676
2677 2013-05-20  Tom Tromey  <tromey@redhat.com>
2678
2679         * python/python-internal.h (events_object_type): Remove.
2680
2681 2013-05-20  Tom Tromey  <tromey@redhat.com>
2682
2683         * python/py-event.h (evpy_emit_event): Use
2684         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
2685         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
2686         New macro.
2687
2688 2013-05-20  Tom Tromey  <tromey@redhat.com>
2689
2690         * py-evtregistry.c (create_event_object): Decref
2691         eventregistry_object if PyList_New fails.
2692
2693 2013-05-20  Tom Tromey  <tromey@redhat.com>
2694
2695         * py-cmd.c (gdbpy_string_to_argv): Check result of
2696         PyList_New.
2697
2698 2013-05-20  Tom Tromey  <tromey@redhat.com>
2699
2700         * python/python.c (before_prompt_hook): Add cleanup to
2701         decref 'hook'.
2702
2703 2013-05-20  Tom Tromey  <tromey@redhat.com>
2704
2705         * python/py-function.c (fnpy_init): Decref result of
2706         PyObject_GetAttrString.
2707
2708 2013-05-20  Tom Tromey  <tromey@redhat.com>
2709
2710         * python/py-threadevent.c (get_event_thread): Use
2711         CPYCHECKER_RETURNS_BORROWED_REF.
2712         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
2713         New define.
2714         (pspace_to_pspace_object, objfile_to_objfile_object)
2715         (find_thread_object): Use it.
2716
2717 2013-05-20  Tom Tromey  <tromey@redhat.com>
2718
2719         * python/py-arch.c (arch_object_type): Use
2720         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2721         * python/py-block.c (block_syms_iterator_object_type):
2722         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2723         * python/py-bpevent.c (breakpoint_event_object_type):
2724         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2725         * python/py-cmd.c (cmdpy_object_type): Use
2726         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2727         * python/py-continueevent.c (continue_event_object_type):
2728         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2729         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
2730         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2731         * python/py-events.h (thread_event_object_type):
2732         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2733         * python/py-evtregistry.c (eventregistry_object_type): Use
2734         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2735         * python/py-exitedevent.c (exited_event_object_type):
2736         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2737         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
2738         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2739         * python/py-function.c (fnpy_object_type): Use
2740         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2741         * python/py-inferior.c (inferior_object_type, membuf_object_type):
2742         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2743         * python/py-infthread.c (thread_object_type): Use
2744         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2745         * python/py-lazy-string.c (lazy_string_object_type):
2746         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2747         * python/py-newobjfileevent.c (new_objfile_event_object_type):
2748         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2749         * python/py-objfile.c (objfile_object_type): Use
2750         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2751         * python/py-param.c (parmpy_object_type):
2752         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2753         * python/py-progspace.c (pspace_object_type):
2754         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2755         * python/py-signalevent.c (signal_event_object_type):
2756         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2757         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
2758         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2759         * python/py-type.c (type_object_type, field_object_type)
2760         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2761         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
2762         define.
2763         (value_object_type, block_object_type, symbol_object_type)
2764         (event_object_type, stop_event_object_type, breakpoint_object_type)
2765         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2766
2767 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
2768
2769         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
2770         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
2771
2772 2013-05-20  Doug Evans  <dje@google.com>
2773
2774         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
2775         For Fission.
2776         * dwarf2read.c (struct dwarf2_per_cu_data): New member
2777         reading_dwo_directly.
2778         (struct signatured_type): New member dwo_unit.
2779         (struct die_reader_specs): New member comp_dir.
2780         (create_signatured_type_table_from_index): Use malloc for
2781         all_type_units instead of objfile's obstack.
2782         (create_all_type_units): Ditto.
2783         (fill_in_sig_entry_from_dwo_entry): New function.
2784         (add_type_unit): New function.
2785         (lookup_dwo_signatured_type): New function.
2786         (lookup_dwp_signatured_type): New function.
2787         (lookup_signatured_type): New arg cu.  All callers updated.
2788         (init_cu_die_reader): Initialize comp_dir.
2789         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
2790         Change assert of matching type signatures to call error on mismatch.
2791         (lookup_dwo_unit): Add assert.
2792         (init_tu_and_read_dwo_dies): New function.
2793         (init_cutu_and_read_dies): Call it.
2794         (build_type_unit_groups): Handle case of no type unit groups created.
2795         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
2796         (lookup_dwo_cutu): Tweak complaint.
2797         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
2798         (dwarf2_per_objfile_free): Free all_type_units.
2799
2800 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
2801
2802         * windows-nat.c (handle_unload_dll): Add missing empty line.
2803
2804 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
2805
2806         * dwarf2read.c (prototyped_function_p): New function.
2807         (read_subroutine_type): Use it.
2808
2809 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
2810
2811         * rs6000-aix-tdep.c: De-indent some example code provided
2812         as a comment.
2813
2814 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
2815
2816         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
2817         region is ok for a hardware watchpoint using the new ptrace interface
2818         on Power servers.
2819
2820 2013-05-17  Doug Evans  <dje@google.com>
2821
2822         * NEWS: Mention new maintenance commands check-symtabs, and
2823         expand-symtabs, and renamed check-psymtabs.
2824         * psymtab.c (maintenance_check_psymtabs): Renamed from
2825         maintenance_check_symtabs.  Only process already-expanded symbol
2826         tables.
2827         (_initialize_psymtab): Update.
2828         * symmisc.c (maintenance_check_symtabs): New function.
2829         (maintenance_expand_name_matcher): New function
2830         (maintenance_expand_file_matcher): New function
2831         (maintenance_expand_symtabs): New function.
2832         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
2833         commands.
2834
2835 2013-05-17  Tom Tromey  <tromey@redhat.com>
2836
2837         * python/py-inferior.c (infpy_read_memory): Don't call
2838         PyErr_SetString if PyObject_New fails.
2839         * python/py-frame.c (frame_info_to_frame_object): Don't call
2840         PyErr_SetString if PyObject_New fails.
2841
2842 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
2843
2844         * acinclude.m4: Add check for dlopen in libdl.
2845         * configure.ac: Ditto.
2846         * configure: Regenerate.
2847
2848 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
2849
2850         * frame.c (frame_stash): Convert to htab.
2851         (frame_addr_hash): New function.
2852         (frame_addr_hash_eq): New function.
2853         (frame_stash_create): Convert function to create
2854         a hash table.
2855         (frame_stash_add): Convert function to add an entry to a hash
2856         table.
2857         (frame_stash_find): Convert function to search the hash table.
2858         (frame_stash_invalidate): Convert function to empty the hash
2859         table.
2860         (get_frame_id): Only add to stash if a frame_id is created.
2861         (_initialize_frame): Call frame_stash_create.
2862
2863 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
2864
2865         * configure.ac: Ensure MIG is available when building for GNU Hurd
2866         hosts.
2867         * configure: Regenerate.
2868
2869 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
2870
2871         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
2872
2873 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
2874
2875         * ada-lang.c (ada_make_symbol_completion_list): Make sure
2876         all cleanups are done before returning from this function.
2877
2878 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
2879
2880         * utils.h: #include "exceptions.h".
2881         (enum errors): Remove partial declaration.
2882
2883 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
2884
2885         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
2886         * gdbarch.h, gdbarch.c: Regenerate.
2887         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
2888         handling.
2889
2890         * rs6000-aix-tdep.h: New file.
2891         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
2892         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
2893         "xml-utils.h".
2894         (struct field_info, struct ld_info_desc): New types.
2895         (ld_info32_desc, ld_info64_desc): New static constants.
2896         (struct ld_info): New type.
2897         (rs6000_aix_extract_ld_info): New function.
2898         (rs6000_aix_shared_library_to_xml): Likewise.
2899         (rs6000_aix_ld_info_to_xml): Likewise.
2900         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
2901         (rs6000_aix_init_osabi): Add call to
2902         set_gdbarch_core_xfer_shared_libraries_aix.
2903         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
2904         Remove "xml-utils.h" include.
2905         (LdInfo): Delete typedef.
2906         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
2907         Delete macros.
2908         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
2909         Adjust code accordingly.
2910         (rs6000_core_ldinfo): Delete, folded into
2911         rs6000_aix_core_xfer_shared_libraries_aix.
2912         (rs6000_xfer_shared_library): Delete.
2913         (rs6000_xfer_shared_libraries): Reimplement.
2914
2915 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
2916
2917         * record.c (record_goto_cmdlist): New.
2918         (cmd_record_goto): Split into this ...
2919         (cmd_record_goto_begin): ... this
2920         (cmd_record_goto_end): ... and this.
2921         (_initialize_record): Change "record goto" to prefix command.
2922         Add commands for "record goto begin" and "record goto end".
2923         Add an alias for "record goto start" to "record goto begin".
2924
2925 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2926
2927         * linespec.c (convert_linespec_to_sals): New comment for
2928         SOURCE_FILENAME assignment.
2929
2930 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2931
2932         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
2933         internal_warning.
2934
2935 2013-05-14  Tom Tromey  <tromey@redhat.com>
2936
2937         * eval.c (parse_and_eval_long): Make 'exp' const.
2938         * value.h (parse_and_eval_long): Update.
2939
2940 2013-05-14  Tom Tromey  <tromey@redhat.com>
2941
2942         * ui-file.c (gdb_fopen): Make arguments const.
2943         * ui-file.h (gdb_fopen): Make arguments const.
2944
2945 2013-05-14  Tom Tromey  <tromey@redhat.com>
2946
2947         * remote.c (remote_set_trace_notes): Make arguments const.
2948         * target.c (update_current_target): Update cast.
2949         * target.h (to_set_trace_notes): Make arguments const.
2950
2951 2013-05-14  Tom Tromey  <tromey@redhat.com>
2952
2953         * go32-nat.c (go32_terminal_info): Make 'args' const.
2954         * inferior.h (child_terminal_info): Update.
2955         * inflow.c (child_terminal_info): Make 'args' const.
2956         * target.c (default_terminal_info): Make 'args' const.
2957         (debug_to_terminal_save_ours): Likewise.
2958         * target.h (struct target_ops) <to_terminal_info>: Make argument
2959         const.
2960
2961 2013-05-13  Tom Tromey  <tromey@redhat.com>
2962
2963         * gcore.c (create_gcore_bfd): Make 'filename' const.
2964         * gcore.h (create_gcore_bfd): Make 'filename' const.
2965         * record-full.c (record_full_save): Make 'recfilename' const.
2966         * target.c (target_save_record): Make 'filename' const.
2967         * target.h (struct target_ops) <to_save_record>: Make 'filename'
2968         const.
2969         (target_save_record): Likewise.
2970
2971 2013-05-13  Tom Tromey  <tromey@redhat.com>
2972
2973         PR gdb/15338:
2974         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
2975         ranges section has been read.
2976
2977 2013-05-13  Tom Tromey  <tromey@redhat.com>
2978
2979         PR exp/15364:
2980         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
2981         STRUCTOP_PTR>: Return a not_lval value for
2982         EVAL_AVOID_SIDE_EFFECTS.
2983         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
2984         for EVAL_AVOID_SIDE_EFFECTS.
2985
2986 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
2987
2988         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
2989         floating point registers to register type before storing
2990         value.
2991         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
2992         Likewise.
2993
2994 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
2995             Tom Tromey  <tromey@redhat.com>
2996
2997         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
2998         New functions.
2999         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
3000         Declare.
3001         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
3002         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
3003         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
3004         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
3005
3006 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
3007             Tom Tromey  <tromey@redhat.com>
3008
3009         PR build/15414:
3010         * configure: Rebuild.
3011         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
3012         with -Wno-format.
3013
3014 2013-05-10  Pedro Alves  <palves@redhat.com>
3015
3016         * remote.c (_initialize_remote): Fix spelling of
3017         qXfer:traceframe-info:read packet in packet config command.
3018
3019 2013-05-10  David Taylor  <dtaylor@emc.com>
3020
3021         PR remote/15455
3022
3023         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
3024         "QTro" at start of packet.
3025
3026 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
3027
3028         * solib-aix.c (solib_aix_relocate_section_addresses):
3029         For the .bss section action, apply the same offset as
3030         the .data section.
3031
3032 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
3033
3034         * solib-aix.c (solib_aix_relocate_section_addresses):
3035         Remove FIXME comment.
3036
3037 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
3038
3039         PR tdep/15420:
3040         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
3041         New functions, directly copied from sparc-sol-thread.c.
3042         * sparc-sol-thread.c: Delete.
3043         * configure.ac: Remove code handling sparc-solaris-thread.c.
3044         * configure: Regenerate.
3045
3046 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
3047
3048         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
3049         filter logic.
3050         (backtrace_command): Add "no-filters" option parsing.
3051         (_initialize_stack): Alter help to reflect "no-filters" option.
3052         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
3053         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
3054         (py-frame.o): Add target
3055         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
3056         filter files.
3057         * python/python.h: Add new frame filter constants, and flag enum.
3058         (apply_frame_filter): Add definition.
3059         * python/python.c (apply_frame_filter): New non-Python
3060         enabled function.
3061         * python/py-utils.c (py_xdecref): New function.
3062         (make_cleanup_py_xdecref): Ditto.
3063         * python/py-objfile.c: Declare frame_filters dictionary.
3064         (objfpy_dealloc): Add frame_filters dealloc.
3065         (objfpy_new): Initialize frame_filters attribute.
3066         (objfile_to_objfile_object): Ditto.
3067         (objfpy_get_frame_filters): New function.
3068         (objfpy_set_frame_filters): New function.
3069         * python/py-progspace.c: Declare frame_filters dictionary.
3070         (pspy_dealloc): Add frame_filters dealloc.
3071         (pspy_new): Initialize frame_filters attribute.
3072         (pspacee_to_pspace_object): Ditto.
3073         (pspy_get_frame_filters): New function.
3074         (pspy_set_frame_filters): New function.
3075         * python/py-framefilter.c: New file.
3076         * python/lib/gdb/command/frame_filters.py: New file.
3077         * python/lib/gdb/frames.py: New file.
3078         * python/lib/gdb/__init__.py: Initialize global frame_filters
3079         dictionary
3080         * python/lib/gdb/FrameDecorator.py: New file.
3081         * python/lib/gdb/FrameIterator.py: New file.
3082         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
3083         * mi/mi-cmds.h: Declare.
3084         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
3085         --no-frame-filter logic, and Python frame filter logic.
3086         (stack_enable_frame_filters): New function.
3087         (parse_no_frame_option): Ditto.
3088         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
3089         filter logic.
3090         (mi_cmd_stack_list_locals): Ditto.
3091         (mi_cmd_stack_list_args): Ditto.
3092         (mi_cmd_stack_list_variables): Ditto.
3093         * NEWS: Add frame filter note.
3094
3095 2013-05-09  Doug Evans  <dje@google.com>
3096
3097         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
3098         All callers updated.
3099         (syms_from_objfile): Ditto.  Make static.
3100         (symbol_file_add_with_addrs): Renamed from
3101         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
3102         num_offsets.  All callers updated.
3103         * symfile.h (syms_from_objfile): Delete.
3104
3105         * symfile.c (decrement_reading_symtab): Add assert.
3106         (increment_reading_symtab): Ditto.
3107
3108 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
3109
3110         * source.c (forward_search_command): Replace call to getc
3111         by call to fgetc.
3112         (reverse_search_command): Likewise.
3113
3114 2013-05-08  Doug Evans  <dje@google.com>
3115
3116         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
3117         matching test.
3118
3119 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
3120
3121         * sol-thread.c (info_cb): Factorize the code a little.
3122
3123 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
3124
3125         * sol-thread.c (info_cb): Rework the output of the "maintenance
3126         info sol-threads" command a bit.
3127
3128 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
3129
3130         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
3131         Replace ti.ti_startfunc by ti.ti_pc.
3132
3133 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
3134
3135         * solib-aix.c (solib_aix_free_library_list): New function
3136         for the case where HAVE_LIBEXPAT is not defined.
3137
3138 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
3139
3140         PR breakpoints/15413:
3141         * breakpoint.c (condition_completer): Simplify the code to
3142         disconsider multiple locations of breakpoints when completing the
3143         "condition" command.
3144
3145 2013-05-07  Pierre Muller  <muller@sourceware.org>
3146
3147         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
3148         instead of <sys/wait.h>.
3149
3150 2013-05-07  Pierre Muller  <muller@sourceware.org>
3151
3152         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
3153         trailing new line from warning message.
3154
3155 2013-05-07  Pierre Muller  <muller@sourceware.org>
3156
3157         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
3158         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
3159
3160 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
3161
3162         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
3163         error message (ARI fix).
3164
3165 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
3166
3167         * features/library-list-aix.dtd: Replace library-list by
3168         library-list-aix.
3169         * rs6000-nat.c: Replace library-list by library-list-aix
3170         throughout.
3171         * solib-aix.c: Likewise.
3172
3173 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
3174
3175         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
3176         Renames TARGET_OBJECT_AIX_LIBRARIES.
3177         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
3178         TARGET_OBJECT_LIBRARIES_AIX throughout.
3179         * solib-aix.c: Likwise.
3180
3181 2013-05-07  Yao Qi  <yao@codesourcery.com>
3182
3183         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
3184         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
3185
3186 2013-05-07  Yao Qi  <yao@codesourcery.com>
3187
3188         * solib-dsbt.c (enable_break): Declare.
3189         (dsbt_current_sos): Remove call to enable_break2.
3190         (enable_break2): Rename to enable_break.  Set solib breakpoint
3191         on '_dl_debug_state'.
3192         (enable_break): Remove.
3193
3194 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
3195
3196         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
3197         debug state prior to replicating existing hardware watchpoints or
3198         breakpoints.
3199
3200 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
3201
3202         * gcore.c (gcore_create_callback): Ignore sections with
3203         separate_debug_objfile_backlink != NULL.
3204
3205 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
3206             Andrew Jenner  <andrew@codesourcery.com>
3207             Chung-Lin Tang  <cltang@codesourcery.com>
3208             Julian Brown  <julian@codesourcery.com>
3209
3210         Based on the nios2-elf port from Altera Corporation.
3211
3212         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
3213         nios2-linux-tdep.o.
3214         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
3215         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
3216         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
3217         * nios2-tdep.h: New.
3218         * nios2-tdep.c: New.
3219         * nios2-linux-tdep.c: New.
3220         * features/Makefile (WHICH): Add nios2-linux.
3221         (nios2-linux-expedite): Set.
3222         * features/nios2-cpu.xml: New.
3223         * features/nios2.xml: New.
3224         * features/nios2-linux.xml: New.
3225         * features/nios2.c: New (autogenerated).
3226         * features/nios2-linux.c: New (autogenerated).
3227         * regformats/nios2-linux.dat: New (autogenerated).
3228         * NEWS (Changes since GDB 7.6): Add new Nios II targets
3229         and commands.
3230
3231 2013-05-06  Doug Evans  <dje@google.com>
3232
3233         * symfile.c: Whitespace cleanup.
3234
3235         * solist.h (struct target_so_ops): New member clear_so.
3236         * solib-svr4.c (svr4_clear_so): New function.
3237         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
3238         * solib.c (clear_so): Renamed from free_so_symbols.
3239         All callers updated.  Call target clear_so if it exists.
3240
3241 2013-05-06  Tom Tromey  <tromey@redhat.com>
3242
3243         * ada-lang.c (ada_value_primitive_packed_val): Don't
3244         call value_incref.
3245         * value.c (set_value_parent): Incref the new parent and decref
3246         the old parent.
3247         (value_copy, value_primitive_field): Use set_value_parent.
3248
3249 2013-05-06  Tom Tromey  <tromey@redhat.com>
3250
3251         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
3252         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
3253         if needed.
3254         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
3255         * dwarf2read.c (write_constant_as_bytes)
3256         (dwarf2_fetch_constant_bytes): New functions.
3257
3258 2013-05-06  Tom Tromey  <tromey@redhat.com>
3259
3260         * dwarf2read.c (dwarf2_const_value_data): Remove unused
3261         parameters.
3262         (dwarf2_const_value_attr): Update.
3263
3264 2013-05-06  Tom Tromey  <tromey@redhat.com>
3265
3266         * somread.c (som_symfile_offsets): Add 'const' to addrs.
3267         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
3268         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
3269         Remove declaration.
3270
3271 2013-05-06  Tom Tromey  <tromey@redhat.com>
3272
3273         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
3274         objfile's obstack.
3275
3276 2013-05-06  Doug Evans  <dje@google.com>
3277
3278         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
3279         * stabsread.h (process_one_symbol): Update declaration.
3280         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
3281         * elfread.c (elf_symfile_relocate_probe): Ditto.
3282         * psymtab.c (relocate_psymtabs): Ditto.
3283         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
3284         (objfile_relocate): Ditto.
3285         * objfiles.h (objfile_relocate): Update declaration.
3286         * symfile.c (relative_addr_info_to_section_offsets): Constify
3287         addrs parameter.
3288         (default_symfile_offsets): Ditto.
3289         (syms_from_objfile_1): Constify offsets parameter.
3290         (syms_from_objfile): Ditto.
3291         (symbol_file_add_with_addrs_or_offsets): Ditto.
3292         (symfile_map_offsets_to_segments): Constify data parameter.
3293         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
3294         delta parameters of member relocate.
3295         (struct sym_probe_fns): Constify new_offsets,
3296         delta parameters of member sym_relocate_probe.
3297         (struct sym_fns): Constify section_addr_info parameter of member
3298         sym_offsets.
3299         (relative_addr_info_to_section_offsets): Update declaration.
3300         (default_symfile_offsets): Ditto.
3301         (syms_from_objfile): Ditto.
3302         (symfile_map_offsets_to_segments): Ditto.
3303
3304         * symfile.c (syms_from_objfile_1): Use correct section count when
3305         objfile->sf == NULL.
3306
3307 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
3308
3309         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
3310
3311 2013-05-06  Doug Evans  <dje@google.com>
3312
3313         * psympriv.h (struct partial_symtab): Augment comment for member
3314         section_offsets.
3315
3316 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3317
3318         Reimplement shared library support on ppc-aix...
3319         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
3320         * features/library-list-aix.dtd: New file.
3321         * solib-aix.h, solib-aix.c: New file.
3322         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
3323         (rs6000_find_toc_address_hook): Delete.
3324         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
3325         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
3326         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
3327         "xml-utils.h".
3328         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
3329         (vmap_symtab, fixup_breakpoints): Delete.
3330         (rs6000_xfer_shared_libraries): New function.
3331         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
3332         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
3333         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
3334         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
3335         (rs6000_xfer_shared_library): New function.
3336         (find_toc_address): Delete.
3337         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
3338         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
3339         * xcoffread.c (record_minimal_symbol): Reloate symbol address
3340         before creating minimal symbol.  Adjust function description
3341         accordingly.
3342         (scan_xcoff_symtab): Replace call to
3343         prim_record_minimal_symbol_and_info by call to
3344         record_minimal_symbol.
3345         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
3346         around default_symfile_offsets.
3347         * configure.tgt: Add solib-aix.o to gdb_target_obs for
3348         powerpc-aix targets.
3349         * config/rs6000/nm-rs6000.h: Delete.
3350         * config/powerpc/aix.mh (NAT_FILE): Delete.
3351         (NATDEPFILES): Remove xcoffsolib.o.
3352         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
3353         (ALL_TARGET_OBS): Add solib-aix.o.
3354         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
3355         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
3356         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
3357         * xcoffsolib.h, xcoffsolib.c: Delete.
3358
3359         * solib.c (reload_shared_libraries): Remove reference to
3360         SOLIB_CREATE_INFERIOR_HOOK.
3361         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
3362         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
3363         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
3364         comment.
3365         * corelow.c (deprecated_core_resize_section_table): Delete.
3366         * exec.c: Remove include of xcoffsolib.h".
3367         (map_vmap, vmap): Delete.
3368         (exec_close_1): Remove references to vmap.
3369         (exec_file_attach): Remove vmap handling code, and reference
3370         to DEPRECATED_IBM6000_TARGET.
3371         (bfdsec_to_vmap): Delete.
3372         (exec_files_info): Remove block of code handling VMAP.
3373         * infcmd.c (post_create_inferior): Remove reference to
3374         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
3375         * infrun.c (follow_exec): Remove reference to
3376         SOLIB_CREATE_INFERIOR_HOOK.
3377         * stack.c (print_frame): Remove reference to PC_SOLIB.
3378         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
3379         (dsbt_relocate_main_executable): Likewise.
3380         * solib-frv.c (frv_current_sos): Likewise.
3381
3382 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3383
3384         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
3385         to target_write_memory and target_read_memory.
3386
3387 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3388
3389         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
3390         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
3391
3392 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3393
3394         * darwin-nat.c: Replace all "%x" instances in format strings
3395         into "0x%x" throughout.
3396
3397 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3398
3399         * darwin-nat.c (darwin_mourn_inferior): Replace call to
3400         gdb_assert by call to MACH_CHECK_ERROR.
3401         (darwin_attach_pid): Raise an error rather than a failed
3402         assertion when various system calls failed.  Report a warning
3403         instead of raising a failed assertion when PREV_NOT is not NULL
3404         after call to mach_port_request_notification.
3405         (darwin_ptrace_me): Raise an error rather than a failed
3406         assertion when read returns nonzero.
3407
3408 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3409
3410         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
3411
3412 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3413
3414         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
3415
3416 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3417
3418         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
3419         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
3420         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
3421         a stale cleanup.  Fix double free of NAME.
3422
3423 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
3424
3425         * windows-nat.c (windows_delete_thread): Accept an additional
3426         argument, the thread's exit code, and announce thread death when
3427         print_thread_events is non-zero and we are deleting a thread that
3428         is not the main thread.
3429         (get_windows_debug_event): Pass thread exit code to
3430         windows_delete_thread.
3431
3432 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
3433
3434         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
3435         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
3436         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
3437         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
3438         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
3439         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
3440         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
3441         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
3442         (gdbarch_tdep): New struct.
3443         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
3444         E_NUM_REGS.
3445         (v850e3v5_register_name): New function.
3446         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
3447         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
3448         code handling the struct return conventions for the RH850 ABI.
3449         Update all callers.
3450         (v850_eight_byte_align_p): New function.
3451         (v850_push_call_dummy): Push structs by value, not by reference
3452         for the RH850 ABI.  Add support for eight byte alignment.
3453         (v850_dbtrap_breakpoint_from_pc): New function.
3454         (v850_gdbarch_init): Add ABI detection code.  Register
3455         v850e3v5_register_name for the v850e3v5 architecture.  Set the
3456         number of registers for v850e3v5.  Register
3457         v850_dbtrap_breakpoint_from_pc as appropriate.
3458         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
3459
3460 2013-05-03  Doug Evans  <dje@google.com>
3461
3462         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
3463         of bfd_count_sections.
3464         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
3465         * symfile.c (default_symfile_offsets): Ditto.
3466         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
3467         one entry, not bfd_count_sections entries.
3468
3469 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
3470
3471         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
3472         `save' and `restore' register groups.  Don't include SPL
3473         or SPH in these groups.
3474         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
3475         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
3476         RL78_ES_REGNUM, and RL78_CS_REGNUM.
3477         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
3478         dwarf2_append_unwinders().
3479
3480 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
3481
3482         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
3483         ignore SIGINT and SIGTRAP in case these internal signals are
3484         caught explicitely.
3485
3486 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
3487
3488         * darwin-nat.c (darwin_read_write_inferior): Change types
3489         of parameters rdaddr and wraddr to "gdb_byte *". Change type
3490         of copy_count to "mach_msg_type_number_t".
3491         (darwin_read_dyld_info): Change type of parameter
3492         rdaddr to "gdb_byte *".
3493
3494 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
3495
3496         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
3497         of &info->load_map from "char *" to "gdb_byte *".
3498
3499 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
3500
3501         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
3502         from "char *" to "gdb_byte *".
3503         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
3504
3505 2013-04-30  Doug Evans  <dje@google.com>
3506
3507         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
3508         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
3509         DWO stub.  If DWO isn't found, just use stub.
3510         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
3511
3512         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
3513         calling init_cutu_and_read_dies.
3514
3515 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3516
3517         * target-descriptions.c (maint_print_c_tdesc_cmd):
3518         Add case to parse structures as register types and
3519         bitfields.
3520
3521 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3522
3523         * MAINTAINERS (Write After Approval): Add myself to the list.
3524
3525 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3526
3527         * sol-thread.c (rw_common): Change type of parameter "buf"
3528         to "gdb_byte *".
3529         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
3530         rw_common to "gdb_byte *" instead of "char *".
3531
3532 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3533
3534         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
3535         of local variable msym to const struct bound_minimal_symbol.
3536         Adjust use accordingly.
3537         [ti.ti_state == TD_THR_SLEEP]: Likewise.
3538
3539 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
3540
3541         * i386gnu-nat.c (CREG_OFFSET): New macro.
3542         (creg_offset): New array.
3543         (CREG_ADDR): Use creg_offset instead of reg_offset.
3544
3545 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3546
3547         * mep-tdep.c (mep_write_pc): Delete.
3548         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
3549         Add call to set_gdbarch_pc_regnum.
3550
3551 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3552
3553         * common/filestuff.c: Replace #include <dirent.h> by
3554         #include "gdb_dirent.h".
3555
3556 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3557
3558         * common/filestuff.c: Replace #include <sys/stat.h> by
3559         #include "gdb_stat.h".
3560
3561 2013-04-29  Pierre Muller  <muller@sourceware.org>
3562
3563         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
3564         editCase function rule.
3565         (get_DW_AT_signature_type): Likewise.
3566
3567 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
3568
3569         * m32r-tdep.c (m32r_write_pc): Delete.
3570         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
3571         Add call to set_gdbarch_pc_regnum.
3572
3573 2013-04-29  Pierre Muller  <muller@sourceware.org>
3574
3575         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
3576
3577 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
3578
3579         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
3580
3581 2013-04-28  Yao Qi  <yao@codesourcery.com>
3582
3583         * solib-dsbt.c (fetch_loadmap): Re-indent.
3584         (displacement_from_map, enable_break2): Likewise.
3585         (dsbt_relocate_section_addresses): Likewise.
3586
3587 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
3588
3589         GDB 7.6 released.
3590
3591 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
3592
3593         PR corefiles/14983:
3594         * dwarf2read.c (process_full_comp_unit): Always create a static
3595         block.
3596
3597 2013-04-25  Hui Zhu  <hui@codesourcery.com>
3598
3599         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
3600         to loc->cmd_bytecode.
3601
3602 2013-04-24  Doug Evans  <dje@google.com>
3603
3604         * dwarf2read.c (setup_type_unit_groups): Fix comment.
3605
3606 2013-04-22  Keith Seitz  <keiths@redhat.com>
3607
3608         * tracepoint.c (trace_save):  Call the writer's start method.
3609
3610 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
3611
3612         PR gdb/10462
3613         * cli/cli-decode.c (lookup_command): Show an error if there is no space
3614         before argument.
3615
3616 2013-04-23  Tom Tromey  <tromey@redhat.com>
3617
3618         * common/filestuff.c: Check USE_WIN32API before including
3619         sys/socket.h.
3620         (HAVE_F_GETFD): New define.
3621         (mark_cloexec): Check HAVE_F_GETFD.
3622         (gdb_open_cloexec): Change 'mode' to unsigned long.
3623         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
3624         (gdb_pipe_cloexec): Check HAVE_PIPE.
3625         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
3626         long.
3627
3628 2013-04-23  Hui Zhu  <hui@codesourcery.com>
3629
3630         PR gdb/15293
3631         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
3632
3633 2013-04-23  Hui Zhu  <hui@codesourcery.com>
3634
3635         PR gdb/15165
3636         * breakpoint.c (dprintf_print_recreate): New.
3637         (save_breakpoints): Let it not save dprintf commands.
3638         (initialize_breakpoint_ops): Set dprintf_print_recreate.
3639
3640 2013-04-22  Tom Tromey  <tromey@redhat.com>
3641
3642         PR gdb/7912:
3643         * Makefile.in (SFILES): Add filestuff.c
3644         (COMMON_OBS): Add filestuff.o.
3645         (filestuff.o): New target.
3646         * auto-load.c (auto_load_objfile_script_1): Use
3647         gdb_fopen_cloexec.
3648         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
3649         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
3650         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
3651         * common/agent.c (gdb_connect_sync_socket): Use
3652         gdb_socket_cloexec.
3653         * common/filestuff.c: New file.
3654         * common/filestuff.h: New file.
3655         * common/linux-osdata.c (linux_common_core_of_thread)
3656         (command_from_pid, commandline_from_pid, print_source_lines)
3657         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
3658         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
3659         gdb_fopen_cloexec.
3660         * common/linux-procfs.c (linux_proc_get_int)
3661         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
3662         * config.in, configure: Rebuild.
3663         * configure.ac: Don't check for sys/socket.h.  Check for
3664         fdwalk, pipe2.
3665         * corelow.c (core_open): Use gdb_open_cloexec.
3666         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
3667         * fork-child.c (fork_inferior): Call close_most_fds.
3668         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
3669         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
3670         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
3671         Use gdb_fopen_cloexec.
3672         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
3673         gdb_open_cloexec.
3674         (linux_async_pipe): Use gdb_pipe_cloexec.
3675         * remote-fileio.c (remote_fileio_func_open): Use
3676         gdb_open_cloexec.
3677         * remote.c (remote_file_put, remote_file_get): Use
3678         gdb_fopen_cloexec.
3679         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
3680         close_most_fds.
3681         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
3682         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
3683         * solib.c (solib_find): Use gdb_open_cloexec.
3684         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
3685         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
3686         (tfile_open): Use gdb_open_cloexec.
3687         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
3688         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
3689         * xml-support.c (xml_fetch_content_from_file): Use
3690         gdb_fopen_cloexec.
3691         * main.c (captured_main): Call notice_open_fds.
3692
3693 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
3694
3695         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
3696         'char *' to 'gdb_byte *'.
3697         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
3698         'gdb_byte'.
3699
3700 2013-04-22  Yao Qi  <yao@codesourcery.com>
3701
3702         * infrun.c: Fix typo in comment.
3703
3704 2013-04-22  Andrew Haley  <aph@redhat.com>
3705
3706         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
3707         instead of "long".
3708
3709 2013-04-20  Yao Qi  <yao@codesourcery.com>
3710
3711         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
3712         'char *' to 'gdb_byte *'.  Cast the return value of
3713         'bt_ctf_get_char_array' to 'gdb_byte *'.
3714
3715 2013-04-19  Pedro Alves  <palves@redhat.com>
3716
3717         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
3718         -Wpointer-sign.
3719         * configure: Regenerate.
3720
3721 2013-04-19  Pedro Alves  <palves@redhat.com>
3722
3723         * ser-tcp.c (net_read_prim): Cast second argument to recv to
3724         'void *'.
3725
3726 2013-04-19  Pedro Alves  <palves@redhat.com>
3727
3728         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
3729         Change type of 'myaddr' parameter to gdb_byte pointer.
3730         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
3731         to 'long long' pointer instead of to 'unsigned long long'.
3732         (monitor_write_memory_block, monitor_read_memory_single)
3733         (monitor_read_memory): Change type of 'myaddr' parameter to
3734         gdb_byte pointer.
3735
3736 2013-04-19  Pedro Alves  <palves@redhat.com>
3737
3738         * record.c (validate_history_size): Make parameter 'setting'
3739         unsigned.
3740
3741 2013-04-19  Pedro Alves  <palves@redhat.com>
3742
3743         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
3744         to 'gdb_byte *'.
3745
3746 2013-04-19  Pedro Alves  <palves@redhat.com>
3747
3748         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
3749         local to int.
3750
3751 2013-04-19  Pedro Alves  <palves@redhat.com>
3752
3753         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
3754         * ada-tasks.c (read_fat_string_value): Likewise.
3755
3756 2013-04-19  Pedro Alves  <palves@redhat.com>
3757
3758         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
3759         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
3760         'offset', and adjust.
3761
3762 2013-04-19  Pedro Alves  <palves@redhat.com>
3763
3764         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
3765         (read_index_from_section): Add cast to 'char *'.
3766
3767 2013-04-19  Pedro Alves  <palves@redhat.com>
3768
3769         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
3770
3771 2013-04-19  Pedro Alves  <palves@redhat.com>
3772
3773         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
3774
3775 2013-04-19  Pedro Alves  <palves@redhat.com>
3776
3777         * record-full.c (record_full_get_bookmark): Change local 'ret'
3778         type to char * and add cast to gdb_byte *.
3779         (record_full_goto_bookmark): Handle 'bookmark' argument as a
3780         string.
3781         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
3782
3783 2013-04-19  Pedro Alves  <palves@redhat.com>
3784
3785         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
3786         * python/py-prettyprint.c (print_string_repr): Change type of
3787         'output' local to char *.  Add cast to gdb_byte * in
3788         LA_PRINT_STRING call.
3789         (print_children): Change type of 'output' local to char *.
3790         * python/py-value.c (valpy_string): Add cast to const char * in
3791         PyUnicode_Decode call.
3792
3793 2013-04-19  Pedro Alves  <palves@redhat.com>
3794
3795         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
3796         and change its type to 'const char *'.  Adjust.
3797         (mips_send_packet): Add cast to 'char *', and remove cast to
3798         'unsigned char *'.
3799         (mips_receive_packet): Remove cast to 'unsigned char *'.
3800         (mips_load_srec): Use bfd_byte.
3801         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
3802         (pmon_checkset): Make 'value' parameter unsigned.
3803
3804 2013-04-19  Pedro Alves  <palves@redhat.com>
3805
3806         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
3807
3808 2013-04-19  Pedro Alves  <palves@redhat.com>
3809
3810         * remote.c (remote_write_bytes_aux, compare_sections_command)
3811         (remote_read_qxfer)
3812         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
3813         (remote_hostio_readlink, remote_bfd_iovec_pread)
3814         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
3815         binary buffer, and char when buffer is used as string.
3816         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
3817         (trace_save, tfile_open, traceframe_walk_blocks)
3818         (tfile_fetch_registers): Likewise.
3819
3820 2013-04-19  Pedro Alves  <palves@redhat.com>
3821
3822         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
3823         buffer and size_t size.  Adjust.
3824         * ser-base.h (ser_base_write): Adjust.
3825         * ser-go32.c (cnts): Change type to size_t.
3826         (dos_write): Change prototype -- take 'void *'
3827         buffer and size_t size.  Adjust.
3828         (dos_info): Print elements of 'cnts' as unsigned long.
3829         * serial.c (serial_write): Likewise.
3830         * serial.h (serial_write): Adjust.
3831         (struct serial_ops) <write>: Change prototype -- take 'void *'
3832         buffer and size_t size.  Adjust.
3833
3834 2013-04-19  Pedro Alves  <palves@redhat.com>
3835
3836         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
3837         gdb_byte *.
3838         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
3839
3840 2013-04-19  Pedro Alves  <palves@redhat.com>
3841
3842         * alpha-tdep.c (alpha_extract_return_value): Use
3843         regcache_cooked_read_unsigned to read 'v0'.
3844
3845 2013-04-19  Pedro Alves  <palves@redhat.com>
3846
3847         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
3848         parameters 'at', 'as' and 'offset' to uint32_t.
3849
3850 2013-04-19  Pedro Alves  <palves@redhat.com>
3851
3852         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
3853         'is64' to signed 'int'.
3854
3855 2013-04-19  Pedro Alves  <palves@redhat.com>
3856
3857         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
3858         parameter to int *.
3859
3860 2013-04-19  Pedro Alves  <palves@redhat.com>
3861
3862         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
3863         'insnbuf' buffer type to unsigned int[].
3864
3865 2013-04-19  Pedro Alves  <palves@redhat.com>
3866
3867         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
3868
3869 2013-04-19  Pedro Alves  <palves@redhat.com>
3870
3871         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
3872         unsigned long *.
3873
3874 2013-04-19  Pedro Alves  <palves@redhat.com>
3875
3876         * alpha-tdep.c (heuristic_fence_post): Change type to int.
3877         (alpha_heuristic_proc_start): Adjust to check -1 instead of
3878         UINT_MAX.
3879         * mips-tdep.c (heuristic_fence_post): Change type to int.
3880         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
3881
3882 2013-04-19  Pedro Alves  <palves@redhat.com>
3883
3884         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
3885         (struct gdbarch_tdep) <cris_version>: Make unsigned.
3886         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
3887
3888 2013-04-19  Pedro Alves  <palves@redhat.com>
3889
3890         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
3891         it to get a string view of the byte buffer.
3892         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
3893         type to gdb_byte *.  Adjust.
3894         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
3895         Change local to char *.
3896         * solib-darwin.c (find_program_interpreter): Change return type to
3897         char *.  Adjust.
3898         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
3899         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
3900         * solib-frv.c (enable_break2): Change local 'buf' to char *.
3901         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
3902         * solib-svr4.c (find_program_interpreter): Change return type to
3903         char *.  Adjust.
3904         (enable_break): Change local 'interp_name' to char *.
3905         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
3906         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
3907         (spu_pseudo_register_write_spu): Use char for string buffer.
3908         Adjust.
3909         (info_spu_event_command, info_spu_signal_command): Add casts to
3910         'char *'.
3911
3912 2013-04-19  Pedro Alves  <palves@redhat.com>
3913
3914         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
3915         gdb_byte[].
3916         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
3917         * ada-lang.c (ada_value_assign): Use gdb_byte.
3918         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
3919         (alphanbsd_sigtramp_offset): Use gdb_byte.
3920         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
3921         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
3922         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
3923         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
3924         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
3925         * arm-tdep.c (arm_stub_unwind_sniffer)
3926         (arm_displaced_init_closure): Use gdb_byte.
3927         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
3928         (arm_default_thumb_le_breakpoint)
3929         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
3930         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
3931         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
3932         * arm-wince-tdep.c (arm_wince_le_breakpoint)
3933         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
3934         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
3935         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
3936         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
3937         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
3938         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
3939         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
3940         (cris_store_return_value, cris_extract_return_value): Use
3941         gdb_byte.
3942         (constraint): Change type of parameter to char * from signed
3943         char*.  Use gdb_byte.
3944         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
3945         of local buffer to gdb_byte *.
3946         * dwarf2read.c (read_index_from_section): Use gdb_byte.
3947         (create_dwp_hash_table): Change type of locals to gdb_byte *.
3948         (add_address_entry): Change type of local buffer to gdb_byte[].
3949         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
3950         (frv_push_dummy_call): Use gdb_byte.
3951         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
3952         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
3953         (hppa_hpux_supply_save_state): Use gdb_byte.
3954         * hppa-tdep.c (hppa32_push_dummy_call)
3955         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
3956         * ia64-tdep.c (extract_bit_field, replace_bit_field)
3957         (slotN_contents, replace_slotN_contents): Change type of parameter
3958         to gdb_byte *.
3959         (fetch_instruction, ia64_pseudo_register_write)
3960         (ia64_register_to_value, ia64_value_to_register)
3961         (ia64_extract_return_value, ia64_store_return_value)
3962         (ia64_push_dummy_call): Use gdb_byte.
3963         * m32c-tdep.c (m32c_return_value): Remove cast.
3964         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
3965         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
3966         gdb_byte.
3967         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
3968         * mn10300-tdep.c (mn10300_store_return_value)
3969         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
3970         gdb_byte.
3971         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
3972         (moxie_process_record): Remove casts.
3973         * ppc-ravenscar-thread.c (supply_register_at_address)
3974         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
3975         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
3976         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
3977         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
3978         * remote.c (compare_sections_command): Use gdb_byte.
3979         * score-tdep.c (score7_free_memblock): Change type of parameter to
3980         gdb_byte *.
3981         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
3982         gdb_byte *.  Use gdb_byte.
3983         (sh_push_dummy_call_fpu): Use gdb_byte.
3984         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
3985         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
3986         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
3987         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
3988         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
3989         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
3990         (sh64_store_return_value, sh64_register_convert_to_virtual):
3991         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
3992         (sh64_pseudo_register_write): Use gdb_byte.
3993         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
3994         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
3995         buffer.
3996         (irix_current_sos): Use gdb_byte.
3997         * solib-som.c (som_current_sos): Use gdb_byte.
3998         * sparc-ravenscar-thread.c (supply_register_at_address)
3999         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
4000         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
4001         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
4002         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
4003         'gdb_byte *'.
4004         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
4005         'gdb_byte *'.
4006         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
4007         * xstormy16-tdep.c (xstormy16_extract_return_value)
4008         (xstormy16_store_return_value): Change parameter type to
4009         'gdb_byte *'.  Adjust.
4010         (xstormy16_push_dummy_call): Use gdb_byte.
4011         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
4012         (call0_analyze_prologue, execute_code): Use gdb_byte.
4013
4014 2013-04-19  Vladimir Kargov <kargov@gmail.com>
4015             Pedro Alves  <palves@redhat.com>
4016
4017         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
4018         value contents.
4019
4020 2013-04-17  Doug Evans  <dje@google.com>
4021
4022         * dwarf2read.c (struct signatured_type): New member type.
4023         (struct attribute): Replace member signatured_type with signature.
4024         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
4025         (read_call_site_scope): Call follow_die_ref instead of
4026         follow_die_ref_or_sig.
4027         (read_structure_type): Rewrite handling of signatured types.
4028         (read_enumeration_type): Ditto.
4029         (read_attribute_value): Update.
4030         (build_error_marker_type): New function.
4031         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
4032         Don't call error for bad types, just build an error marker type.
4033         (dump_die_shallow): Update.
4034         (follow_die_sig_1): Renamed from follow_die_sig.
4035         Don't call error for bad types, instead return NULL.
4036         (follow_die_sig): New function.
4037         (get_signatured_type, get_DW_AT_signature_type): New functions.
4038
4039 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
4040
4041         * aarch64-tdep.c (aarch64_write_pc): Removed.
4042         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
4043         function.
4044
4045 2013-04-17  Yao Qi  <yao@codesourcery.com>
4046
4047         * top.c (print_gdb_configuration): Print configure-time
4048         parameter on using libbabeltrace or not.
4049
4050 2013-04-16  Pedro Alves  <palves@redhat.com>
4051
4052         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
4053
4054 2013-04-16  Pedro Alves  <palves@redhat.com>
4055
4056         * common/glibc_thread_db.h: Update from upstream glibc
4057         (git 568035b7874a099087b77f7bba3e36a1173787b0).
4058
4059 2013-04-16  Pedro Alves  <palves@redhat.com>
4060
4061         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
4062         * common/glibc_thread_db.h: ... this new file ...
4063         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
4064
4065 2013-04-16  Will Newton  <will.newton@gmail.com>
4066             Pedro Alves  <palves@redhat.com>
4067
4068         PR build/11881
4069
4070         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
4071         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
4072         HAVE_THREAD_DB_H.
4073
4074 2013-04-16  Pedro Alves  <palves@redhat.com>
4075             Eli Zaretskii  <eliz@gnu.org>
4076
4077         * NEWS: Mention "set foo unlimited".
4078
4079 2013-04-15  Doug Evans  <dje@google.com>
4080
4081         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
4082         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
4083         (create_dwo_cu_reader): Renamed from
4084         create_dwo_debug_info_hash_table_reader.
4085         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
4086         Remove support for multiple CUs in a DWO file.
4087         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
4088
4089         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
4090         instead of phex.
4091         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
4092         (create_dwo_in_dwp): Ditto.
4093
4094 2013-04-15  Tom Tromey  <tromey@redhat.com>
4095
4096         * NEWS: Move recent entries into "since 7.6" section.
4097
4098 2013-04-15  Tom Tromey  <tromey@redhat.com>
4099
4100         PR c++/13588:
4101         * NEWS: Update.
4102         * break-catch-throw.c (struct exception_catchpoint)
4103         <exception_rx, pattern>: New fields.
4104         (fetch_probe_arguments, dtor_exception_catchpoint)
4105         (check_status_exception_catchpoint)
4106         (print_one_detail_exception_catchpoint): New functions.
4107         (handle_gnu_v3_exceptions): Add "except_rx" argument.
4108         Compile regular expression if needed.
4109         (extract_exception_regexp): New function.
4110         (catch_exception_command_1): Use extract_exception_regexp.
4111         (compute_exception): Use fetch_probe_arguments.
4112         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
4113         and check_status fields.
4114         * cp-abi.c (cplus_typename_from_type_info): New function.
4115         * cp-abi.h (cplus_typename_from_type_info): Declare.
4116         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
4117         * gdb_regex.h (compile_rx_or_error): Declare.
4118         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
4119         comment.
4120         (init_gnuv3_ops): Set get_type_from_type_info field.
4121         * probe.c (compile_rx_or_error): Move...
4122         * utils.c (compile_rx_or_error): ... here.
4123
4124 2013-04-15  Tom Tromey  <tromey@redhat.com>
4125
4126         PR c++/15176:
4127         * NEWS: Update.
4128         * break-catch-throw.c (compute_exception): New function.
4129         (exception_funcs): New global.
4130         (_initialize_break_catch_throw): Create $_exception.
4131         * cp-abi.c (cplus_type_from_type_info): New function.
4132         * cp-abi.h (cplus_type_from_type_info): Declare.
4133         (struct cp_abi_ops) <get_type_from_type_info>: New field.
4134         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
4135         (gnuv3_get_type_from_type_info): New functions.
4136         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
4137
4138 2013-04-15  Tom Tromey  <tromey@redhat.com>
4139
4140         * break-catch-throw.c (struct exception_names): New.
4141         (exception_functions): Change type.
4142         (re_set_exception_catchpoint): Look for SDT probes.
4143
4144 2013-04-15  Tom Tromey  <tromey@redhat.com>
4145
4146         PR c++/10119:
4147         * break-catch-throw.c (exception_functions): New global.
4148         (gnu_v3_exception_catchpoint_ops): Move earlier.
4149         (struct exception_catchpoint): New.
4150         (classify_exception_breakpoint): Rewrite.
4151         (re_set_exception_catchpoint): New function.
4152         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
4153         Allocate a struct exception_catchpoint.
4154         (catch_exception_command_1): Update.
4155         (initialize_throw_catchpoint_ops): Set 're_set' method.
4156
4157 2013-04-15  Tom Tromey  <tromey@redhat.com>
4158
4159         * Makefile.in (SFILES): Add break-catch-throw.c
4160         (COMMON_OBS): Add break-catch-throw.o.
4161         * break-catch-throw.c: New file.
4162         * breakpoint.c: Move exception-catching code to new file.
4163         (ep_parse_optional_if_clause): No longer static.
4164         * breakpoint.h (ep_parse_optional_if_clause): Declare.
4165
4166 2013-04-15  Tom Tromey  <tromey@redhat.com>
4167
4168         PR c++/9065:
4169         * NEWS: Update.
4170         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
4171         * c-exp.y (TYPEID): New token.
4172         (exp): Add new TYPEID productions.
4173         (ident_tokens): Add "typeid".
4174         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
4175         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
4176         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
4177         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
4178         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
4179         case.
4180         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
4181         (build_std_type_info_type, gnuv3_get_typeid_type)
4182         (gnuv3_get_typeid): New functions.
4183         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
4184         new fields on ABI object.
4185         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
4186         * std-operator.def (OP_TYPEID): New.
4187
4188 2013-04-15  Tom Tromey  <tromey@redhat.com>
4189
4190         * elfread.c (elf_symtab_read): Install versioned symbol under
4191         unversioned name as well.
4192
4193 2013-04-15  Tom Tromey  <tromey@redhat.com>
4194
4195         PR c++/11990:
4196         * c-lang.c (cplus_language_defn): Use gdb_demangle.
4197         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
4198         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
4199         (gdb_demangle): New function.
4200         * cp-support.h (gdb_demangle): Declare.
4201         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
4202         (dwarf2_name): Use gdb_demangle.
4203         * gdbtypes.c (check_stub_method): Use gdb_demangle.
4204         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
4205         suffixes from name.
4206         (gnuv3_print_method_ptr): Use gdb_demangle.
4207         * jv-lang.c (java_demangle): Use gdb_demangle.
4208         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
4209         * language.c (unk_lang_demangle): Use gdb_demangle.
4210         * symtab.c (symbol_find_demangled_name)
4211         (demangle_for_lookup): Use gdb_demangle.
4212
4213 2013-04-15  Tom Tromey  <tromey@redhat.com>
4214
4215         PR c++/12824:
4216         * NEWS: Update.
4217         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
4218         New constant.
4219         (classify_exception_breakpoint): New function.
4220         (print_it_exception_catchpoint, print_one_exception_catchpoint)
4221         (print_mention_exception_catchpoint)
4222         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
4223         (catch_exception_command_1): Handle "rethrow" catchpoint.
4224         (catch_rethrow_command): New function.
4225         (_initialize_breakpoint): Add "catch rethrow" command.
4226
4227 2013-04-15  Pierre Muller  <muller@sourceware.org>
4228
4229         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
4230         set_gdbarch_write_pc as deprecated anymore.
4231
4232 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
4233
4234         * spu-tdep.c (spu_write_pc): Add empty line after local variable
4235         declarations.
4236
4237 2013-04-13  Yao Qi  <yao@codesourcery.com>
4238
4239         * ctf.c (_initialize_ctf): Include "completer.h".
4240         Call add_target_with_completer instead of add_target.
4241
4242 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
4243
4244         Fix GDB regression related to PR binutils/14813.
4245         * jit.c (mem_bfd_iovec_close): Return 0 for success.
4246         * minidebug.c (lzma_close): Add return value comment.
4247         * remote.c (remote_bfd_iovec_close): Return 0 for success.
4248         * solib-spu.c (spu_bfd_iovec_close): Likewise.
4249         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
4250
4251 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
4252
4253         * config.in: Regenerate.
4254
4255 2013-04-12  Tom Tromey  <tromey@redhat.com>
4256
4257         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
4258         const.
4259         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
4260         (struct die_reader_specs) <buffer>: Likewise.
4261         (die_reader_func_ftype): Make 'info_ptr' const.
4262         (struct line_header) <include_dirs, statement_program_start,
4263         statement_program_end>: Now const.
4264         (struct file_entry) <name>: Likewise.
4265         (struct partial_die_info) <sibling>: Likewise.
4266         (struct dwarf_block) <data>: Likewise.
4267         (dwarf2_read_section): Remove cast.
4268         (dwarf2_get_section_info): Make 'bufp' const.
4269         (read_index_from_section): Constify.
4270         (dw2_get_file_names_reader): Make 'info_ptr' const.
4271         (dw2_get_primary_filename_reader): Likewise.
4272         (read_comp_unit_head): Make 'info_ptr' and return type const.
4273         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
4274         Likewise.
4275         (read_abbrev_offset): Constify.
4276         (dwarf2_create_include_psymtab): Make 'name' const.
4277         (create_debug_types_hash_table): Update.
4278         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
4279         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
4280         Constify.
4281         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
4282         (load_partial_comp_unit_reader): Make 'info_ptr' const.
4283         (read_comp_units_from_section): Constify.
4284         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
4285         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
4286         const.
4287         (dwarf2_compute_name, setup_type_unit_groups): Constify.
4288         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
4289         (create_dwp_hash_table, dwarf2_ranges_read)
4290         (dwarf2_record_block_ranges): Constify.
4291         (read_die_and_children, read_die_and_siblings_1)
4292         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
4293         const.
4294         (read_full_die_1, read_full_die): Make 'info_ptr' const.
4295         (abbrev_table_read_table): Constify.
4296         (load_partial_dies): Make 'info_ptr' const.
4297         (read_partial_die, read_attribute_value, read_attribute): Make
4298         'info_ptr' and return type const.
4299         (read_address, read_initial_length)
4300         (read_checked_initial_length_and_offset, read_offset)
4301         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
4302         const.
4303         (read_direct_string): Make 'buf' and return type const.
4304         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
4305         (read_indirect_string): Make return type const.
4306         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
4307         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
4308         'info_ptr' const.
4309         (read_str_index): Make return type const.
4310         (add_include_dir): Make 'include_dir' const.
4311         (add_file_name): Make 'name' const.
4312         (dwarf_decode_line_header): Constify.
4313         (psymtab_include_file_name): Make return type const.
4314         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
4315         (dwarf2_start_subfile): Make 'filename' const.
4316         (dwarf2_const_value_attr): Make 'bytes' const.
4317         (read_signatured_type_reader): Make 'info_ptr' const.
4318         (decode_locdesc): Constify.
4319         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
4320         const.
4321         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
4322         'mac_end', and return type const.
4323         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
4324         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
4325         type const.
4326         (per_cu_header_read_in): Constify.
4327         * symfile.h (dwarf2_get_section_info): Update.
4328
4329 2013-04-12  Tom Tromey  <tromey@redhat.com>
4330
4331         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
4332
4333 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
4334
4335         * NEWS: Mention "show configuration", --configuration.
4336         * top.c (print_gdb_configuration): New function, displays the
4337         details about GDB configure-time parameters.
4338         (print_gdb_version): Mention "show configuration".
4339         * cli/cli-cmds.c (show_configuration): New function.
4340         (_initialize_cli_cmds): Add the "show configuration" command.
4341         * main.c (captured_main) <print_configuration>: New static var.
4342         <long_options>: Use it.
4343         If --configuration was given, call print_gdb_configuration.
4344
4345 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4346             Pedro Alves  <palves@redhat.com>
4347
4348         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
4349         (generated_files): Add gcore.
4350         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
4351         HAVE_NATIVE_GCORE_HOST.
4352         (gcore): New.
4353         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
4354         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
4355         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
4356         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
4357         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
4358         Add HAVE_NATIVE_GCORE_HOST.
4359         * configure: Regenerate.
4360         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
4361         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
4362         AC_CONFIG_FILES for gcore.
4363         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
4364         gdb_have_gcore.
4365         * gdb_gcore.sh: Rename to ...
4366         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
4367         and GCORE_TRANSFORM_NAME substitutions.
4368
4369         Fix parsing tabs in ${gdb_target_obs}.
4370         * configure.tgt (gdb_have_gcore): Replace case with for and if.
4371
4372 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4373
4374         * remote.c (unpush_and_perror): Add output message final dot.
4375
4376 2013-04-11  Yao Qi  <yao@codesourcery.com>
4377
4378         * tracepoint.c (tfile_interp_line): Fit parameters line and
4379         utpp in one line.
4380
4381 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
4382
4383         * solib.c (solib_map_sections): Remove code overwriting
4384         SO->SO_NAME with the bfd's filename.
4385
4386 2013-04-10  Pedro Alves  <palves@redhat.com>
4387
4388         * cli/cli-decode.c (integer_unlimited_completer): New function.
4389         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
4390         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
4391         completer.
4392         * cli/cli-setshow.c: Include "cli/cli-utils.h".
4393         (is_unlimited_literal): New function.
4394         (do_set_command): Handle literal "unlimited" arguments.
4395         * frame.c (_initialize_frame) <set backtrace limit>: Document
4396         "unlimited".
4397         * printcmd.c (_initialize_printcmd) <set print
4398         max-symbolic-offset>: Add help text.
4399         * record-full.c (_initialize_record_full) <set record full
4400         insn-number-max>: Likewise.
4401         * record.c (_initialize_record) <set record
4402         instruction-history-size, set record function-call-history-size>:
4403         Add help text.
4404         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
4405         help text.
4406         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
4407         Likewise.
4408         * source.c (_initialize_source) <set listsize>: Add help text.
4409         * utils.c (initialize_utils) <set height, set width>: Likewise.
4410         <set pagination>: Mention "set height unlimited".
4411         * valprint.c (_initialize_valprint) <set print elements, set print
4412         repeats>: Document "unlimited".
4413
4414 2013-04-10  Pedro Alves  <palves@redhat.com>
4415
4416         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
4417         instead of disconnect_tracing.
4418         * infcmd.c (detach_command, disconnect_command): Call
4419         query_if_trace_running.  Adjust.
4420         * top.c: Include "tracepoint.h".
4421         (quit_target): Delete.  Contents moved ...
4422         (quit_force): ... here.  Wrap each stage of teardown in
4423         TRY_CATCH.  Call disconnect_tracing before detaching.
4424
4425 2013-04-10  Hui Zhu  <hui@codesourcery.com>
4426             Yao Qi  <yao@codesourcery.com>
4427
4428         * configure.ac: Check libbabeltrace is installed.
4429         * config.in: Regenerate.
4430         * configure: Regenerate.
4431         * Makefile.in (LIBBABELTRACE): New.
4432         (CLIBS): Add LIBBABELTRACE.
4433         * ctf.c: Include "exec.h".
4434         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
4435         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
4436         (ctf_save_metadata_header): Define new type aliases in
4437         metadata.
4438         (ctf_write_header): Define event type "tsv_def" and "tp_def"
4439         in metadata.  Start a new faked packet for trace status.
4440         (ctf_write_status): Write trace status to CTF.
4441         (ctf_write_uploaded_tsv): Write TSV to CTF.
4442         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
4443         (ctf_write_definition_end): End the faked packet.
4444
4445         (ctx, ctf_iter, trace_dirname): New.
4446         (start_pos): New variable.
4447         (ctf_destroy, ctf_open_dir, ctf_open): New.
4448         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
4449         macros.
4450         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
4451         (ctf_fetch_registers, ctf_xfer_partial): New.
4452         (ctf_get_trace_state_variable_value): New.
4453         (ctf_get_tpnum_from_frame_event): New.
4454         (ctf_get_traceframe_address): New.
4455         (ctf_trace_find, ctf_has_stack): New.
4456         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
4457         (ctf_get_trace_status, ctf_read_status): New.
4458         (_initialize_ctf): New.
4459         * tracepoint.c (get_tracepoint_number): New
4460         (get_uploaded_tsv): Remove 'static'.
4461         (struct traceframe_info, trace_regblock_size): Move it to ...
4462         * tracepoint.h: ... here.
4463         (get_tracepoint_number): Declare it.
4464         (get_uploaded_tsv): Declare it.
4465
4466         * NEWS: Mention new configure option.
4467
4468 2013-04-10  Pedro Alves  <palves@redhat.com>
4469             Hui Zhu  <hui@codesourcery.com>
4470
4471         * breakpoint.c (dprintf_re_set): New.
4472         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
4473         to dprintf_re_set.
4474
4475 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
4476
4477         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
4478         Remove solib-svr4.o from the list.
4479
4480 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
4481
4482         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
4483         Use gdb_assert_not_reached instead of invalid boolean expression.
4484
4485 2013-04-09  Pedro Alves  <palves@redhat.com>
4486
4487         * remote.c (unpush_and_perror): New function.
4488         (readchar, remote_serial_write): Use it.
4489
4490 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
4491
4492         * NEWS: Mention new btrace RSP packets.
4493
4494 2013-04-08  Tom Tromey  <tromey@redhat.com>
4495
4496         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
4497         long.
4498
4499 2013-04-08  Tom Tromey  <tromey@redhat.com>
4500
4501         * maint.c (print_bfd_section_info): Print the section index.
4502         * symmisc.c (dump_msymbols): Print the section index.
4503
4504 2013-04-08  Tom Tromey  <tromey@redhat.com>
4505
4506         PR symtab/8424:
4507         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
4508         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
4509         * breakpoint.c (resolve_sal_pc): Update.
4510         * elfread.c (elf_gnu_ifunc_record_cache): Update.
4511         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
4512         (minsym_lookup_iterator_cb): Use it.
4513         (default_read_var_value): Update.
4514         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
4515         Update.
4516         * infcmd.c (jump_command): Update.
4517         * linespec.c (minsym_found): Update.
4518         * maint.c (maintenance_translate_address): Update.
4519         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
4520         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
4521         * parse.c (write_exp_msymbol): Update.
4522         * printcmd.c (address_info): Update.
4523         * psymtab.c (find_pc_sect_psymbol): Update.
4524         (fixup_psymbol_section): Check SYMBOL_SECTION, not
4525         SYMBOL_OBJ_SECTION.
4526         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
4527         Don't initialize SYMBOL_OBJ_SECTION.
4528         * spu-tdep.c (spu_catch_start): Update.
4529         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
4530         * symmisc.c (dump_msymbols, print_symbol): Update.
4531         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
4532         how fallback section is computed.
4533         (fixup_symbol_section): Update.
4534         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
4535         Update.
4536         (allocate_symbol, initialize_symbol, allocate_template_symbol):
4537         Initialize SYMBOL_SECTION.
4538         * symtab.h (struct general_symbol_info) <section>: Update comment.
4539         <obj_section>: Remove.
4540         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
4541         (SYMBOL_OBJFILE): New macro.
4542
4543 2013-04-08  Tom Tromey  <tromey@redhat.com>
4544
4545         * coffread.c (record_minimal_symbol): Update.
4546         * dbxread.c (record_minimal_symbol): Update.
4547         * elfread.c (record_minimal_symbol): Update.
4548         * machoread.c (macho_symtab_add_minsym): Update.
4549         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
4550         Update.
4551         * minsyms.c (prim_record_minimal_symbol): Update.
4552         (prim_record_minimal_symbol_full): Remove 'bfd_section'
4553         argument.
4554         (prim_record_minimal_symbol_and_info): Likewise.
4555         * minsyms.h (prim_record_minimal_symbol_full)
4556         (prim_record_minimal_symbol_and_info): Update.
4557         * symtab.c (allocate_symbol, initialize_symbol)
4558         (allocate_template_symbol): Initialize SYMBOL_SECTION.
4559         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
4560         Update.
4561
4562 2013-04-08  Tom Tromey  <tromey@redhat.com>
4563
4564         PR symtab/8423:
4565         * solib-som.c (som_solib_section_offsets): Use BFD section
4566         indices.  Set offsets for all sections.
4567         * somread.c (som_symtab_read): Compute BFD section for
4568         symbol.  Use prim_record_minimal_symbol_and_info.
4569         (som_symfile_read): Fix comment.
4570         (struct find_section_offset_arg): New.
4571         (find_section_offset, set_section_index): New functions.
4572         (som_symfile_offsets): Use set_section_index to compute
4573         section indices.
4574
4575 2013-04-08  Tom Tromey  <tromey@redhat.com>
4576
4577         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
4578         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
4579         gdb_bfd_section_index.
4580         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
4581         New functions.
4582         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
4583         Declare.
4584         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
4585         Update.
4586         * objfiles.c (add_to_objfile_sections_full): New function.
4587         (add_to_objfile_sections): Use it.
4588         (build_section_table): Rewrite.
4589         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
4590         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
4591         (struct objfile) <sections>: Update comment.
4592         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
4593         is NULL.
4594         (ALL_OBJSECTIONS): Use it.
4595         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
4596         * solib-frv.c (frv_relocate_main_executable): Update.
4597         * solib-target.c (solib_target_relocate_section_addresses):
4598         Use gdb_bfd_section_index.
4599         * symfile.c (build_section_addr_info_from_section_table):
4600         Use gdb_bfd_section_index.
4601         (build_section_addr_info_from_bfd, place_section): Likewise.
4602         * symtab.c (fixup_section): Update.
4603         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
4604
4605 2013-04-08  Tom Tromey  <tromey@redhat.com>
4606
4607         * minsyms.h (struct bound_minimal_symbol): New.
4608         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
4609         Remove objfile argument.
4610         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
4611         Return bound_minimal_symbol.
4612         * minsyms.c (lookup_minimal_symbol_by_pc_1)
4613         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
4614         Return bound_minimal_symbol.
4615         (in_gnu_ifunc_stub): Update.
4616         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
4617         Remove 'objfile_p' argument.
4618         (lookup_solib_trampoline_symbol_by_pc): Update.
4619         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
4620         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
4621         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
4622         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
4623         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
4624         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
4625         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
4626         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
4627         stack.c, symtab.c, tui/tui-disasm.c: Update.
4628
4629 2013-04-08  Tom Tromey  <tromey@redhat.com>
4630
4631         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
4632         Use symbol's obstack, not an objfile.
4633         * coffread.c (process_coff_symbol): Update.
4634         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
4635         * jv-lang.c (add_class_symbol): Update.
4636         * mdebugread.c (new_symbol): Update.
4637         * minsyms.c (prim_record_minimal_symbol_full)
4638         (terminate_minimal_symbol_table): Update.
4639         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
4640         * stabsread.c (define_symbol, read_enum_type): Update.
4641         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
4642         Handle Ada specially.
4643         (symbol_set_language): Add 'obstack' argument.
4644         (symbol_set_names): Update.
4645         (symbol_natural_name, symbol_demangled_name): Always use
4646         ada_decode_symbol.
4647         * symtab.h (struct general_symbol_info)
4648         <language_specific::obstack>: New field.
4649         <ada_mangled>: New field.
4650         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
4651         (symbol_set_language): Update.
4652
4653 2013-04-08  Tom Tromey  <tromey@redhat.com>
4654
4655         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
4656         Take an obstack, not an objfile.
4657         (symbol_set_names): Update.
4658         * symtab.h (symbol_set_demangled_name): Update.
4659
4660 2013-04-08  Tom Tromey  <tromey@redhat.com>
4661
4662         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
4663         allocate_symbol.
4664         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
4665         (read_func_scope): Call allocate_template_symbol.
4666         (new_symbol_full): Call allocate_symbol.
4667         * jit.c (finalize_symtab): Call allocate_symbol.
4668         * jv-lang.c (add_class_symbol): Call allocate_symbol.
4669         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
4670         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
4671         (common_block_end): Call allocate_symbol.
4672         * symtab.c (allocate_symbol, initialize_symbol)
4673         (allocate_template_symbol): New functions.
4674         * symtab.c (allocate_symbol, initialize_symbol)
4675         (allocate_template_symbol): Declare.
4676         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
4677
4678 2013-04-08  Pedro Alves  <palves@redhat.com>
4679             Keith Seitz  <keiths@redhat.com>
4680
4681         * breakpoint.c (create_breakpoint): Rename
4682         "parse_condition_and_thread" parameter to "parse_arg".  Update
4683         describing comment.  If !PARSE_ARG, then error out if ARG is not
4684         the empty string after extracting the location.
4685         * breakpoint.h (create_breakpoint): Rename
4686         "parse_condition_and_thread" parameter to "parse_arg".
4687
4688 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
4689
4690         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
4691
4692 2013-04-07  Yao Qi  <yao@codesourcery.com>
4693
4694         * remote.c (remote_trace_find): Change type of parameters 'addr1'
4695         and 'addr2' to CORE_ADDR.
4696         * target.c (update_current_target): Update.
4697         * target.h (struct target_ops) <to_trace_find>: Change parameter
4698         type to CORE_ADDR.
4699         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
4700         'addr2' to CORE_ADDR.
4701         (tfile_trace_find): Likewise.
4702         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
4703         Change local variable 'addr' to type CORE_ADDR.
4704         * tracepoint.h (tfind_1): Update declaration.
4705
4706 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
4707
4708         * windows-nat.c (windows_get_absolute_argv0): Move from here...
4709         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
4710         Include main.h.
4711
4712         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
4713         here...
4714         * main.h (windows_get_absolute_argv0): ...to here.
4715
4716 2013-04-05  Doug Evans  <dje@google.com>
4717
4718         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
4719         (read_cutu_die_from_dwo): Add comments.
4720         (read_structure_type): Update comment.
4721         (read_enumeration_type, read_namespace_type): Update comment.
4722         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
4723
4724 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4725
4726         Convert man pages to texinfo, new gdbinit.5 texinfo page.
4727         * Makefile.in (gdb.z): Remove.
4728         (install-only): Remove $(man1dir) and gdb.1 installation.
4729         * gdb.1: Remove.
4730
4731 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4732
4733         Fix compatibility with Linux kernel 3.8.3.
4734         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
4735         to more inner block.  Remove parsing of NUMBER from outer block.
4736         Parse NUMBER only if KEYWORD has been identified.
4737
4738 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4739
4740         Fix variable name shadowing.
4741         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
4742         filename to mapsfilename and update its uses.
4743
4744 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
4745
4746         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
4747         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
4748         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
4749         details of the problem.
4750
4751 2013-04-04  Pedro Alves  <palves@redhat.com>
4752             Hui Zhu  <hui@codesourcery.com>
4753
4754         * breakpoint.c (validate_commands_for_breakpoint): If validating a
4755         tracepoint, reset its STEP_COUNT and call validate_actionline.
4756
4757 2013-04-03  Doug Evans  <dje@google.com>
4758
4759         * dwarf2read.c (read_die_and_siblings_1): Renamed from
4760         read_die_and_siblings.
4761         (read_die_and_siblings): New function.
4762         (read_cutu_die_from_dwo): Dump die if requested.
4763         (read_die_and_children): Call read_full_die_1 and
4764         read_die_and_siblings_1.
4765         (read_full_die): Dump die if requested.
4766
4767         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
4768
4769         * dwarf2read.c (struct dwo_file): New member comp_dir.
4770         Rename member name to dwo_name.  All uses updated.
4771         (hash_dwo_file): Include comp_dir in computation.
4772         (eq_dwo_file): Ditto.
4773         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
4774         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
4775
4776         * psymtab.c (read_psymtabs_with_fullname): Don't call
4777         psymtab_to_fullname if the basenames are different.
4778
4779 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4780
4781         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
4782         New entry about "fullname" presence.
4783
4784 2013-04-03  Pedro Alves  <palves@redhat.com>
4785
4786         * NEWS: Mention x86_64/Cygwin as new native configuration.
4787
4788 2013-04-02  Doug Evans  <dje@google.com>
4789
4790         * dwarf2read.c (read_structure_type): Fix typo in comment.
4791
4792 2013-04-02  Pedro Alves  <palves@redhat.com>
4793
4794         * NEWS: Mention "set/show debug aarch64", "set/show debug
4795         coff-pe-read" and "set/show debug mach-o".
4796
4797 2013-04-02  Pedro Alves  <palves@redhat.com>
4798
4799         * NEWS: Mention "set/show remote trace-buffer-size-packet".
4800
4801 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
4802
4803         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
4804         gdb_string.h is now in common/.
4805
4806 2013-04-02  Pedro Alves  <palves@redhat.com>
4807
4808         * NEWS: Move "set debug notification" and "set trace-buffer-size"
4809         under "New options".
4810
4811 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4812
4813         Revert this patch:
4814         PR gdb/15275
4815         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
4816
4817 2013-04-02  Pedro Alves  <palves@redhat.com>
4818
4819         PR gdb/15275
4820
4821         * remote.c (send_interrupt_sequence): Use remote_serial_write.
4822         (remote_serial_write): New function.
4823         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
4824
4825 2013-04-01  Jiong Wang  <jiwang@tilera.com>
4826
4827         * NEWS: Mention TILE-Gx in "New native configurations" and
4828         "New targets" sections. 
4829
4830 2013-04-01  Doug Evans  <dje@google.com>
4831
4832         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
4833         (process_enumeration_scope): Simplify.
4834
4835         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
4836         type_unit_group ...
4837         (struct signatured_type): ... to here.
4838         (sig_type_ptr): New typedef.
4839         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
4840         out of union 't'.  All uses updated.
4841         (dw2_get_file_names_reader): Assert not called for a type unit.
4842         (dw2_get_file_names): Assert not called for a type unit or type
4843         unit group.
4844         (build_type_psymtabs_reader): Assert called for a type unit.
4845         (build_type_psymtab_dependencies): Assert called for a type unit group.
4846
4847         * dwarf2read.c (free_dwo_file): Add comment.
4848         (dwarf2_per_objfile_free): Unref dwp bfd.
4849
4850 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
4851
4852         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
4853         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
4854         (read_pe_exported_syms): Remove unused 'exportix'.
4855         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
4856         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
4857         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
4858
4859 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
4860
4861         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
4862         (print_it_watchpoint): Remove unused 'bl'.
4863         (say_where): Remove unused 'uiout'.
4864         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
4865         (bkpt_breakpoint_hit): Remove unused 'b'.
4866         (internal_bkpt_print_it): Remove unused 'uiout'.
4867         * buildsym.c (augment_type_symtab): Remove unused 'i'.
4868
4869 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
4870
4871         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
4872         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
4873
4874 2013-03-29  Doug Evans  <dje@google.com>
4875
4876         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
4877         Delete arg is_dwp.  All callers updated.
4878         (open_dwp_file): New function.
4879         (open_and_init_dwp_file): Call it.
4880         (get_dwp_file): New function.
4881         (lookup_dwo_cutu): Call it.
4882
4883         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
4884         unnecessary, cleanup.
4885
4886         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
4887
4888         * dwarf2read.c (read_cutu_die_from_dwo): New function.
4889         (lookup_dwo_unit): New function.
4890         (init_cutu_and_read_dies): Move DWO handling to new functions.
4891
4892         * dwarf2read.c (struct signatured_type): Tweak comment.
4893         (struct dwo_unit): Tweak comment.
4894         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
4895         (create_dwo_debug_info_hash_table): Tweak comment.
4896         (dwarf2_per_cu_offset_and_type): Tweak comment.
4897
4898         * dwarf2read.c (lookup_signatured_type): Remove complaint about
4899         missing .debug_types section.
4900
4901 2013-03-29  Yao Qi  <yao@codesourcery.com>
4902
4903         * corelow.c: Include "completer.h".
4904         (_initialize_corelow): Call add_target_with_completer with
4905         argument 'filename_completer'.
4906         * tracepoint.c: Likewise.
4907         * exec.c (_initialize_exec): Likewise.
4908         * target.c (add_target): Rename to ...
4909         (add_target_with_completer): ... this.  Call set_cmd_completer
4910         if parameter completer is not NULL.
4911         (add_target): New.
4912         * target.h: Include "command.h".
4913         (add_target_with_completer): Declare it.
4914
4915 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
4916
4917         * coffread.c (is_import_fixup_symbol): New function.
4918         (record_minimal_symbol): Use is_import_fixup_symbol to
4919         detect import fixup symbols, and discard them.
4920
4921 2013-03-28  Doug Evans  <dje@google.com>
4922
4923         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
4924         types hash table until we know we need it.
4925
4926         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
4927         index numbers.
4928
4929         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
4930         All callers updated.
4931         (dw2_print_stats): Print #read CUs too.
4932         (dump_die_shallow): Print signatured types better.
4933
4934         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
4935         info_or_types_section to section.  All uses updated.
4936         (struct dwo_unit): Ditto.
4937
4938 2013-03-28  Pedro Alves  <palves@redhat.com>
4939
4940         * NEWS (New options): New section.
4941         (New options): Mention set/show remote trace-status-packet.
4942         * remote.c (PACKET_qTStatus): New enumeration value.
4943         (remote_get_trace_status): Skip sending qTStatus if the packet is
4944         disabled.  Use packet_ok.
4945         (_initialize_remote): Register a configuration command for
4946         qTStatus packet.
4947
4948 2013-03-28  Doug Evans  <dje@google.com>
4949
4950         * symfile.c (find_separate_debug_file): Add comment.
4951         (terminate_after_last_dir_separator): Tweak comment.
4952
4953         * dwarf2read.c (create_partial_symtab): Add forward decl.
4954         (create_partial_symtab): Move to be closer to other psymtab functions.
4955         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
4956
4957         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
4958         (compute_symtab_includes): Remove unnecessary forward declaration.
4959         (die_needs_namespace): Add comment marking group of functions for
4960         dwarf2 name computation.
4961
4962         * typeprint.c (_initialize_typeprint): Improve type help text.
4963
4964         * python/python.c (finish_python_initialization): Provide suggestion
4965         for how to tell gdb to find its python files.
4966
4967 2013-03-28  Pedro Alves  <palves@redhat.com>
4968
4969         PR gdb/15294
4970
4971         * source.c (_initialize_source): Change back "set listsize" to an
4972         integer command.
4973
4974 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
4975
4976         PR gdb/15275
4977         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
4978
4979 2013-03-27  Pedro Alves  <palves@redhat.com>
4980
4981         * top.c (history_size): Rename to ...
4982         (history_size_setshow_var): ... this.  Add comment.
4983         (show_commands): Use readline's 'history_length' instead of
4984         computing the history length by calling history_get in a loop.
4985         (set_history_size_command): Error out for sizes over INT_MAX.
4986         Restore previous history size on invalid size.
4987         (init_history): If HISTSIZE is negative, leave the history size as
4988         zero.  Add comments.
4989         (init_main): Adjust.
4990
4991 2013-03-27  Pedro Alves  <palves@redhat.com>
4992
4993         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
4994         coff_pe_read" command to "set debug coff-pe-read".
4995
4996 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
4997
4998         * record.c (command_size_to_target_size): Fix size comparison.
4999         Change parameter type from pointer to integer to integer.
5000         Update all users.
5001
5002 2013-03-27  Pierre Muller  <muller@sourceware.org>
5003
5004         * windows-nat.c (handle_output_debug_string): Avoid typecast
5005         from integer of different size warning.
5006
5007 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
5008
5009         * windows-nat.c (handle_output_debug_string): Add empty line
5010         after local block variable definition.
5011
5012 2013-03-26  Pedro Alves  <palves@redhat.com>
5013
5014         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
5015         (net_open): Make 'polls' local unsigned.
5016
5017 2013-03-26  Pedro Alves  <palves@redhat.com>
5018
5019         * remote.c (_initialize_remote): Make "set remoteaddresssize"
5020         a zuinteger command instead of uinteger.
5021
5022 2013-03-26  Pedro Alves  <palves@redhat.com>
5023
5024         * record-full.c (record_full_insn_num): Make it unsigned.
5025         (record_full_check_insn_num, record_full_message)
5026         (record_full_registers_change, record_full_xfer_partial): Remove
5027         record_full_insn_max_num check (it's always != 0).
5028         (record_full_info, record_full_restore): Use %u as format string.
5029         (): Use %u as format string.
5030         (set_record_full_insn_max_num): Remove record_full_insn_max_num
5031         check (it's always != 0).
5032
5033 2013-03-26  Pedro Alves  <palves@redhat.com>
5034
5035         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
5036         and "set dcache size" commands zuinteger instead of uinteger.
5037
5038 2013-03-26  Pedro Alves  <palves@redhat.com>
5039
5040         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
5041         command zuinteger instead of uinteger.
5042
5043 2013-03-26  Pedro Alves  <palves@redhat.com>
5044
5045         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
5046         zuinteger instead of uinteger.
5047
5048 2013-03-26  Pedro Alves  <palves@redhat.com>
5049
5050         * record.c (record_insn_history_size_setshow_var)
5051         (record_call_history_size_setshow_var): New globals.
5052         (command_size_to_target_size): New function.
5053         (cmd_record_insn_history, cmd_record_call_history): Use
5054         command_size_to_target_size instead of cast.
5055         (validate_history_size, set_record_insn_history_size)
5056         (set_record_call_history_size): New functions.
5057         (_initialize_record): Install set_record_insn_history_size and
5058         set_record_call_history_size as "set" hooks of "set record
5059         instruction-history-size" and "set record
5060         function-call-history-size".
5061
5062 2013-03-26  Pedro Alves  <palves@redhat.com>
5063
5064         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
5065         use with history_max_entries use.  Remove FIXME note.
5066
5067 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
5068
5069         * record-btrace.c (record_btrace_close): Call
5070         record_btrace_auto_disable.
5071
5072 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
5073
5074         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
5075
5076 2013-03-25  Doug Evans  <dje@google.com>
5077
5078         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
5079
5080 2013-03-25  Tom Tromey  <tromey@redhat.com>
5081
5082         PR symtab/11462:
5083         * c-exp.y (exp): Add new productions for destructors after '.' and
5084         '->'.
5085         (write_destructor_name): New function.
5086
5087 2013-03-25  Tom Tromey  <tromey@redhat.com>
5088
5089         PR c++/9197:
5090         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
5091         value_struct_elt, not lookup_struct_elt_type.
5092         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5093         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
5094         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
5095
5096 2013-03-25  Yao Qi  <yao@codesourcery.com>
5097
5098         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
5099         instead of '_mkdir'.
5100
5101 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
5102
5103         * windows-nat.c (windows_get_absolute_argv0): New function.
5104         * windows-nat.h: Add its prototype.
5105
5106         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
5107         Use IS_DIR_SEPARATOR instead of looking for a character inside
5108         SLASH_STRING.  Include filenames.h.
5109         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
5110         relocate_gdb_directory works when passed gdb_program_name.
5111         Include windows-nat.h.
5112
5113 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
5114
5115         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
5116         * remote.c (trace_error): Remove the special handling of '2'.
5117         (readchar) <SERIAL_EOF>
5118         (readchar) <SERIAL_ERROR>
5119         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
5120         (remote_get_trace_status): Call throw_exception if EX is
5121         TARGET_CLOSE_ERROR.
5122         * utils.c (perror_with_name): Rename to ...
5123         (throw_perror_with_name): ... here.  New parameter errcode, describe it
5124         in the function comment.
5125         (perror_with_name): New function wrapper.
5126         * utils.h (enum errors): New stub declaration.
5127         (throw_perror_with_name): New declaration.
5128
5129 2013-03-22  Pedro Alves  <palves@redhat.com>
5130             Yao Qi  <yao@codesourcery.com>
5131             Mark Kettenis  <kettenis@gnu.org>
5132
5133         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
5134         Don't let the user set the value to UINT_MAX directly.
5135         <var_integer>: Don't let the user set the value to INT_MAX
5136         directly.
5137
5138 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
5139
5140         * remote.c (remote_unpush_target): New function.
5141         (remote_open_1): Remove two pop_target calls, update one comment, add
5142         comment to target_preopen call.  Replace pop_target call by
5143         remote_unpush_target call.
5144         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
5145         pop_target calls by remote_unpush_target calls.
5146
5147 2013-03-22  Pedro Alves  <palves@redhat.com>
5148
5149         * linux-nat.c (linux_child_follow_fork): Don't call
5150         linux_enable_event_reporting.
5151         (linux_handle_extended_wait): Don't call
5152         linux_enable_event_reporting.
5153
5154 2013-03-22  Pedro Alves  <palves@redhat.com>
5155
5156         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
5157         use it to rewrite the trampoline buffers with type gdb_byte[], and
5158         undefine the macro.  Remove char* cast.
5159
5160 2013-03-21  Doug Evans  <dje@google.com>
5161
5162         New commands "mt set per-command {space,time,symtab} {on,off}".
5163         * NEWS: Add entry.
5164         * event-top.c: #include "maint.h".
5165         * main.c: #include "maint.h".
5166         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
5167         timeval-utils.h, maint.h, cli/cli-setshow.h.
5168         (per_command_time, per_command_space): New static globals.
5169         (per_command_symtab): New static global.
5170         (per_command_setlist, per_command_showlist): New static globals.
5171         (struct cmd_stats): Move here from utils.c.
5172         (set_per_command_time): Renamed from set_display_time in utils.c
5173         and moved here.  All callers updated.
5174         (set_per_command_space): Renamed from set_display_space in utils.c
5175         and moved here.  All callers updated.
5176         (count_symtabs_and_blocks): New function.
5177         (report_command_stats): Moved here from utils.c.  Add support for
5178         printing symtab stats.  Only print data if enabled before command
5179         executed.
5180         (make_command_stats_cleanup): Ditto.
5181         (sert_per_command_cmd, show_per_command_cmd): New functions.
5182         (_initialize_maint_cmds): Add new commands
5183         mt set per-command {space,time,symtab} {on,off}.
5184         * maint.h: New file.
5185         * top.c: #include "maint.h".
5186         * utils.c (reset_prompt_for_continue_wait_time): New function.
5187         (get_prompt_for_continue_wait_time): New function.
5188         * utils.h (reset_prompt_for_continue_wait_time): Declare
5189         (get_prompt_for_continue_wait_time): Declare.
5190         (make_command_stats_cleanup): Moved to maint.h.
5191         (set_display_time, set_display_space): Moved to maint.h and renamed
5192         to set_per_command_time, set_per_command_space.
5193         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
5194         parse_binary_operation and made non-static.  Don't call error,
5195         just return an error marker.  All callers updated.
5196         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
5197
5198 2013-03-21  Tom Tromey  <tromey@redhat.com>
5199
5200         * symfile.c (alloc_section_addr_info): Update header.  Don't set
5201         'num_sections' field.
5202         (build_section_addr_info_from_section_table): Set 'num_sections'.
5203         (build_section_addr_info_from_bfd): Likewise.
5204         (build_section_addr_info_from_objfile): Remove dead loop
5205         condition.
5206         (free_section_addr_info): Unconditionally call xfree.
5207         (relative_addr_info_to_section_offsets, addrs_section_sort)
5208         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
5209         condition.
5210         (syms_from_objfile_1): Remove dead 'if' condition.  Check
5211         'num_sections'.
5212         (add_symbol_file_command): Set 'num_sections'.
5213         * symfile-mem.c (symbol_file_add_from_memory): Set
5214         'num_sections'.
5215         * somread.c (som_symfile_offsets): Remove dead loop condition.
5216         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
5217         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
5218
5219 2013-03-21  Tom Tromey  <tromey@redhat.com>
5220
5221         * tracepoint.h (decode_agent_options): Add 'trace_string'
5222         argument.
5223         * tracepoint.c (decode_agent_options): Add 'trace_string'
5224         argument.
5225         (validate_actionline): Update.
5226         (collect_symbol): Add 'trace_string' argument.
5227         (struct add_local_symbols_data) <trace_string>: New field.
5228         (do_collect_symbol): Update.
5229         (add_local_symbols): Add 'trace_string' argument.
5230         (encode_actions_1): Update.
5231         (trace_dump_actions): Update.
5232         * dwarf2loc.c (access_memory): Update.
5233         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
5234         * ax-general.c (new_agent_expr): Update.
5235         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
5236         (gen_trace_for_return_address): Add argument.
5237         (trace_kludge, trace_string_kludge): Remove.
5238         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
5239         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
5240         (gen_trace_for_var): Add 'trace_string' argument.
5241         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
5242         (gen_printf, agent_eval_command_one): Update.
5243
5244 2013-03-21  Tom Tromey  <tromey@redhat.com>
5245
5246         PR exp/15109:
5247         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
5248         Handle FILENAME token.
5249
5250 2013-03-21  Tom Tromey  <tromey@redhat.com>
5251
5252         * c-exp.y (YYPRINT): Define.
5253         (c_print_token): New function.
5254
5255 2013-03-21  Tom Tromey  <tromey@redhat.com>
5256
5257         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
5258
5259 2013-03-21  Yao Qi  <yao@codesourcery.com>
5260
5261         * ctf.c: Include "gdb_stat.h".
5262         [USE_WIN32API]: New macro 'mkdir'.
5263         (ctf_start): Use permission bits macros if they are defined.
5264
5265 2013-03-20  Keith Seitz  <keiths@redhat.com>
5266
5267         * breakpoint.h (struct breakpoint): Add comment to
5268         extra_string indicating that this member is mallod'd.
5269         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
5270
5271 2013-03-20  Pedro Alves  <palves@redhat.com>
5272
5273         PR gdb/15289
5274
5275         * cli/cli-setshow.c (do_set_command)
5276         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
5277         the result of parsing the command argument.  Throw error if the
5278         value is greater than UINT_MAX.  Print the invalid value with
5279         plongest.
5280         <var_integer, var_zinteger>: Use LONGEST for variable holding the
5281         result of parsing the command argument.  Throw error if the value
5282         is greater than INT_MAX, not greater or equal.  Also throw error
5283         if the value is less than INT_MIN.  Print the invalid value with
5284         plongest.
5285         <var_zuinteger_unlimited>: Throw error if the value is greater
5286         than INT_MAX, not greater or equal.
5287         (do_show_command) <var_integer, var_zinteger,
5288         var_zuinteger_unlimited>: Use %d for printing int, not %u.
5289
5290 2013-03-20  Tom Tromey  <tromey@redhat.com>
5291
5292         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
5293         if possible.
5294         * dwarf2read.c (read_func_scope): Remove old FIXME.
5295         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
5296         not LOC_COMPUTED.
5297         * findvar.c (symbol_read_needs_frame, default_read_var_value):
5298         Unconditionally call via computed ops, if possible.
5299         * printcmd.c (address_info): Unconditionally call via computed ops,
5300         if possible.
5301         * stack.c (read_frame_arg): Unconditionally call via computed ops,
5302         if possible.
5303         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
5304         * tracepoint.c (scope_info): Unconditionally call via computed ops,
5305         if possible.
5306
5307 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
5308             Tom Tromey  <tromey@redhat.com>
5309
5310         PR symtab/8421:
5311         * coffread.c (coff_register_index): New global.
5312         (process_coff_symbol, coff_read_enum_type): Set
5313         SYMBOL_ACLASS_INDEX.
5314         (_initialize_coffread): Initialize new global.
5315         * dwarf2loc.c (locexpr_find_frame_base_location)
5316         (dwarf2_block_frame_base_locexpr_funcs)
5317         (loclist_find_frame_base_location)
5318         (dwarf2_block_frame_base_loclist_funcs): New.
5319         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
5320         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
5321         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
5322         (dwarf2_block_frame_base_loclist_funcs): New.
5323         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
5324         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
5325         globals.
5326         (read_func_scope): Update.
5327         (fixup_go_packaging, mark_common_block_symbol_computed)
5328         (var_decode_location, new_symbol_full, dwarf2_const_value):
5329         Set SYMBOL_ACLASS_INDEX.
5330         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
5331         (_initialize_dwarf2_read): Initialize new globals.
5332         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
5333         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
5334         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
5335         globals.
5336         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
5337         (_initialize_mdebugread): Initialize new globals.
5338         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
5339         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
5340         (stab_register_index, stab_regparm_index): New globals.
5341         (define_symbol, read_enum_type, common_block_end): Set
5342         SYMBOL_ACLASS_INDEX.
5343         (_initialize_stabsread): Initialize new globals.
5344         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
5345         globals.
5346         (MAX_SYMBOL_IMPLS): New define.
5347         (register_symbol_computed_impl, register_symbol_block_impl)
5348         (register_symbol_register_impl)
5349         (initialize_ordinary_address_classes): New functions.
5350         (_initialize_symtab): Call initialize_ordinary_address_classes.
5351         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
5352         (struct symbol_impl): New.
5353         (SYMBOL_ACLASS_BITS): New define.
5354         (struct symbol) <aclass, ops>: Remove fields.
5355         <aclass_index>: New field.
5356         (symbol_impls): Declare.
5357         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
5358         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
5359         (register_symbol_computed_impl, register_symbol_block_impl)
5360         (register_symbol_register_impl): Declare.
5361         (struct symbol_computed_ops): Add location_has_loclist.
5362         (struct symbol_block_ops): New.
5363         (SYMBOL_BLOCK_OPS): New.
5364         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
5365
5366 2013-03-20  Tom Tromey  <tromey@redhat.com>
5367
5368         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
5369         (print_partial_symbols, recursively_search_psymtabs): Use
5370         PSYMBOL_CLASS.
5371
5372 2013-03-20  Pierre Muller  <muller@sourceware.org>
5373
5374         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
5375         addtion, subtraction, multiplication and division binary operator.
5376
5377 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
5378
5379         Code cleanup.
5380         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
5381         * bsd-kvm.c (bsd_kvm_close): Likewise.
5382         * bsd-uthread.c (bsd_uthread_close): Likewise.
5383         * corelow.c (core_close): Likewise.
5384         (core_close_cleanup): Remove parameter quitting from a caller.
5385         * event-top.c (async_disconnect): Likewise.
5386         * exec.c (exec_close_1): Remove parameter quitting.
5387         * go32-nat.c (go32_close): Likewise.
5388         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
5389         parameter quitting from a caller.
5390         * mips-linux-nat.c (super_close): Remove parameter quitting from the
5391         variable.
5392         (mips_linux_close): Remove parameter quitting.  Remove parameter
5393         quitting from a caller.
5394         * monitor.c (monitor_close): Remove parameter quitting.
5395         * monitor.h (monitor_close): Likewise.
5396         * record-btrace.c (record_btrace_close): Likewise.
5397         * record-full.c (record_full_close): Likewise.
5398         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
5399         it also from fprintf_unfiltered.
5400         * remote-mips.c (mips_close): Remove parameter quitting.
5401         (mips_detach): Remove parameter quitting from a caller.
5402         * remote-sim.c (gdbsim_close): Remove parameter quitting.
5403         (gdbsim_close): Remove duplicate function comment.  Remove parameter
5404         quitting and remove it also from printf_filtered.
5405         * remote.c (remote_close): Remove parameter quitting.
5406         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
5407         * target.c (update_current_target): Remove parameter int from to_close
5408         de_fault.
5409         (push_target, unpush_target, pop_target): Remove parameter quitting from
5410         a caller.
5411         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
5412         Remove parameter quitting from a caller.
5413         (target_preopen): Remove parameter quitting from a caller.
5414         (target_close): Remove parameter quitting.  Remove parameter quitting
5415         from a caller two times.  Remove parameter quitting also from
5416         fprintf_unfiltered.
5417         * target.h (struct target_ops): Remove parameter quitting and as int
5418         from fields to_xclose and to_close.
5419         (extern struct target_ops current_target):
5420         (target_close, pop_all_targets): Remove parameter quitting.  Update the
5421         comment.
5422         (pop_all_targets_above): Remove parameter quitting.
5423         * top.c (quit_target): Remove parameter quitting from a caller.
5424         * tracepoint.c (tfile_close): Remove parameter quitting.
5425         * windows-nat.c (windows_close): Remove parameter quitting.
5426
5427 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
5428
5429         * windows-nat.c (handle_output_debug_string): Replace call
5430         to string_to_core_addr with call to strtoull.
5431
5432 2013-03-20  Yao Qi  <yao@codesourcery.com>
5433
5434         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
5435         and write it to CTF metadata.
5436
5437 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
5438
5439         * windows-nat.c (handle_output_debug_string): Change type of n to
5440         SIZE_T to avoid crash on 64 bit systems.
5441
5442 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
5443
5444         * python/python-internal.h (HAVE_SNPRINTF)
5445         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
5446         about redefinition of snprintf by pyerrors.h.
5447
5448 2013-03-15  Steve Ellcey  <sellcey@mips.com>
5449
5450         * remote-sim.c (sim_command_completer): Make char arguments const.
5451
5452 2013-03-15  Tom Tromey  <tromey@redhat.com>
5453
5454         PR c++/15116:
5455         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
5456
5457 2013-03-14  Tom Tromey  <tromey@redhat.com>
5458
5459         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
5460         New fields.
5461         (get_file_crc): Move from symfile.c.
5462         (gdb_bfd_crc): New function.
5463         * gdb_bfd.h (gdb_bfd_crc): Declare.
5464         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
5465         * symfile.c (get_file_crc): Move to gdb_bfd.c.
5466         (separate_debug_file_exists): Use gdb_bfd_crc.
5467
5468 2013-03-14  Tom Tromey  <tromey@redhat.com>
5469
5470         * symfile.c (get_debug_link_info): Remove.
5471         (find_separate_debug_file_by_debuglink): Use
5472         bfd_get_debug_link_info.
5473
5474 2013-03-14  Tom Tromey  <tromey@redhat.com>
5475
5476         * symtab.c (error_in_psymtab_expansion): New function.
5477         (lookup_symbol_aux_quick)
5478         (basic_lookup_transparent_type_quick): Remove "last resort"
5479         code.  Use error_in_psymtab_expansion.
5480
5481 2013-03-14  Doug Evans  <dje@google.com>
5482             Jan Kratochvil  <jan.kratochvil@redhat.com>
5483
5484         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
5485         any successful compare_filenames_for_search or FILENAME_CMP.
5486         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
5487         * symtab.c (iterate_over_some_symtabs): Likewise.
5488
5489 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5490
5491         * source.c (print_source_lines_base): Make a local copy of
5492         symtab_to_fullname.
5493
5494 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
5495             Jan Kratochvil  <jan.kratochvil@redhat.com>
5496
5497         * source.c (print_source_lines_base): Suppress "file" for TUI.
5498
5499 2013-03-14  Keith Seitz  <keiths@redhat.com>
5500             Alan Matsuoka  <alanm@redhat.com>
5501
5502         PR c++/15203
5503         PR c++/15210
5504         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
5505         TYPE_CODE_METHOD.
5506         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
5507         symbols.
5508
5509 2013-03-14  Yao Qi  <yao@codesourcery.com>
5510
5511         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
5512         status to tfile if trace is stopped by command 'tstop'.
5513
5514 2013-03-14  Yao Qi  <yao@codesourcery.com>
5515
5516         * tracepoint.c (tfile_write_status): Write trace notes and user
5517         name into tfile if they are not NULL.
5518
5519 2013-03-14  Hui Zhu  <hui@codesourcery.com>
5520             Yao Qi  <yao@codesourcery.com>
5521
5522         * Makefile.in (REMOTE_OBS): Add ctf.o.
5523         (SFILES): Add ctf.c.
5524         (HFILES_NO_SRCDIR): Add ctf.h.
5525         * ctf.c, ctf.h: New files.
5526         * tracepoint.c: Include 'ctf.h'.
5527         (collect_pseudocommand): Remove static.
5528         (trace_save_command): Parse option "-ctf".
5529         Produce different trace file writers per option.
5530         Adjust output message.
5531         (trace_save_tfile, trace_save_ctf): New.
5532         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
5533         * mi/mi-main.c: Include 'ctf.h'.
5534         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
5535         trace_save_tfile or trace_save_ctf.
5536         * NEWS: Mention these changes.
5537
5538 2013-03-14  Yao Qi  <yao@codesourcery.com>
5539
5540         * tracepoint.c (trace_file_writer_xfree): New.
5541         (struct tfile_writer_data): New.
5542         (tfile_dtor, tfile_can_target_save, tfile_start): New.
5543         (tfile_write_header, tfile_write_regblock_type): New.
5544         (tfile_write_status, tfile_write_uploaded_tsv): New.
5545         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
5546         (tfile_write_raw_data, (tfile_end): New.
5547         (tfile_write_ops): New global variable.
5548         (TRACE_WRITE_R_BLOCK): New macro.
5549         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
5550         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
5551         (TRACE_WRITE_V_BLOCK): New macro.
5552         (trace_save): Add extra one parameter WRITER.  Make it static.
5553         Use WRITER to writer trace.
5554         (tfile_trace_file_writer_new): New.
5555         (trace_save_command): Caller update.
5556         (trace_save_tfile): Write trace data in TFILE format.
5557         * tracepoint.h (struct trace_frame_write_ops): New.
5558         (struct trace_file_write_ops): New.
5559         (struct trace_file_writer): New.
5560         (trace_save): Remove its declaration.
5561         (trace_save_tfile): Declare it.
5562         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
5563         instead of trace_save.
5564
5565 2013-03-13  Pedro Alves  <palves@redhat.com>
5566
5567         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
5568
5569 2013-03-13  Pedro Alves  <palves@redhat.com>
5570
5571         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
5572         commented out code.
5573         * demangle.c (current_demangling_style_string): Make it const.
5574         (set_demangling_command): Assert the demangling style is known.
5575         Remove all handling of unknown styles.  Set
5576         'current_demangling_style_string' to an element of the
5577         demangling_style_names array.
5578         (set_demangling_style): Delete.
5579         (_initialize_demangler): Set current_demangling_style_string to the
5580         element of the demangling_style_names array that corresponds to
5581         the default demangling style.  Remove FIXME note.  Don't call
5582         set_demangling_style.
5583         * gdb-demangle.h (set_demangling_style): Remove declaration.
5584
5585 2013-03-13  Pedro Alves  <palves@redhat.com>
5586
5587         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
5588         fields const.
5589         (ada_make_symbol_completion_list): Make "text0" parameter const.
5590         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
5591         * breakpoint.c (condition_completer): Make "text" and "word"
5592         parameters const.  Adjust.
5593         (check_tracepoint_command): Adjust to validate_actionline
5594         prototype change.
5595         (catch_syscall_completer): Make "text" and "word" parameters
5596         const.
5597         * cli/cli-cmds.c (show_user): Make "comname" local const.
5598         (valid_command_p): Make "command" parameter const.
5599         (alias_command): Make "alias_prefix" and "command_prefix" locals
5600         const.
5601         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
5602         (add_alias_cmd): Make "name" and "oldname" parameters const.
5603         Adjust.  No longer make copy of OLDNAME.
5604         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
5605         (add_setshow_cmd_full, add_setshow_enum_cmd)
5606         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
5607         (add_setshow_filename_cmd, add_setshow_string_cmd)
5608         (add_setshow_string_noescape_cmd)
5609         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
5610         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
5611         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
5612         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
5613         Make "name" parameter const.
5614         (help_cmd): Rename "command" parameter to "arg".  New const local
5615         "command".
5616         (find_cmd): Make "command" parameter const.
5617         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
5618         deprecated_cmd_warning prototype change.
5619         (undef_cmd_error): Make "cmdtype" parameter const.
5620         (lookup_cmd): Make "line" parameter const.
5621         (deprecated_cmd_warning): Change type of "text" parameter to
5622         pointer to const char, from pointer to pointer to char.  Adjust.
5623         (lookup_cmd_composition): Make "text" parameter const.
5624         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
5625         parameters const.
5626         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
5627         const.
5628         * cli/cli-script.c (validate_comname): Make "tem" local const.
5629         (define_command): New const local "tem_c".  Use it in calls to
5630         lookup_cmd.
5631         (document_command): Make "tem" and "comfull" locals const.
5632         (show_user_1): Make "prefix" and "name" parameters const.
5633         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
5634         const.
5635         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
5636         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
5637         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
5638         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
5639         (complete_on_enum, add_setshow_enum_cmd)
5640         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
5641         (add_setshow_filename_cmd, add_setshow_string_cmd)
5642         (add_setshow_string_noescape_cmd)
5643         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
5644         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
5645         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
5646         Change prototypes, constifying strings.
5647         * completer.c (noop_completer, filename_completer): Make "text"
5648         and "prefix" parameters const.
5649         (location_completer, expression_completer)
5650         (complete_line_internal): Make "text" and "prefix" parameters
5651         const and adjust.
5652         (command_completer, signal_completer): Make "text" and "prefix"
5653         parameters const.
5654         * completer.h (noop_completer, filename_completer)
5655         (expression_completer, location_completer, command_completer)
5656         (signal_completer): Change prototypes.
5657         * corefile.c (complete_set_gnutarget): Make "text" and "word"
5658         parameters const.
5659         * cp-abi.c (cp_abi_completer): Likewise.
5660         * expression.h (parse_expression_for_completion): Change
5661         prototype.
5662         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
5663         parameters const.
5664         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
5665         * infrun.c (handle_completer): Make "text" and "word" parameters
5666         const.
5667         * interps.c (interpreter_completer): Make "text" and "word"
5668         parameters const.
5669         * language.h (struct language_defn)
5670         <la_make_symbol_completion_list>: Make "text" and "word"
5671         parameters const.
5672         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
5673         (parse_exp_in_context): Rename to ...
5674         (parse_exp_in_context_1): ... this.
5675         (parse_exp_in_context): Reimplement, with const hack from
5676         parse_exp_1.
5677         (parse_expression_for_completion): Make "string" parameter const.
5678         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
5679         to pointer to const char.  Adjust.
5680         (print_command_1): Make "exp" parameter const.
5681         (output_command): Rename to ...
5682         (output_command_const): ... this.  Make "exp" parameter const.
5683         (output_command): Reimplement.
5684         (x_command): Adjust.
5685         (display_command): Rename "exp" parameter to "arg".  New "exp"
5686         local, const version of "arg".
5687         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
5688         "cmd_name" local const.
5689         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
5690         call.
5691         (cmdpy_completer): Make "text" and "word" parameters const.
5692         (gdbpy_parse_command_name): Make "prefix_text2" local const.
5693         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
5694         const.
5695         * remote.c (_initialize_remote): Make "cmd_name" local const.
5696         * symtab.c (language_search_unquoted_string): Make "text" and "p"
5697         parameters const.  Adjust.
5698         (completion_list_add_fields): Make "sym_text", "text" and "word"
5699         parameters const.
5700         (struct add_name_data) <sym_text, text, word>: Make fields const.
5701         (default_make_symbol_completion_list_break_on): Make "text" and
5702         "word" parameters const.  Adjust locals.
5703         (default_make_symbol_completion_list)
5704         (make_symbol_completion_list, make_symbol_completion_type)
5705         (make_symbol_completion_list_fn): Make "text" and "word"
5706         parameters const.
5707         (make_file_symbol_completion_list): Make "text", "word" and
5708         "srcfile" parameters const.  Adjust locals.
5709         (add_filename_to_list): Make "text" and "word" parameters const.
5710         (struct add_partial_filename_data) <text, word>: Make fields
5711         const.
5712         (make_source_files_completion_list): Make "text" and "word"
5713         parameters const.
5714         * symtab.h (default_make_symbol_completion_list_break_on)
5715         (default_make_symbol_completion_list, make_symbol_completion_list)
5716         (make_symbol_completion_type enum type_code)
5717         (make_symbol_completion_list_fn make_file_symbol_completion_list)
5718         (make_source_files_completion_list): Change prototype.
5719         * top.c (execute_command): Adjust to pass pointer to pointer to
5720         const char to lookup_cmd, and to deprecated_cmd_warning prototype
5721         change.
5722         (set_verbose): Make "cmdname" local const.
5723         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
5724         and adjust.
5725         (validate_actionline): Make "line" parameter a pointer to const
5726         char, and adjust.
5727         (encode_actions_1): Make "action_exp" local const, and adjust.
5728         (encode_actions): Adjust.
5729         (replace_comma): Delete.
5730         (trace_dump_actions): Make "action_exp" and "next_comma" locals
5731         const, and adjust.  Don't frob the action string while splitting
5732         it at commas.  Instead, make a copy of each split substring in
5733         turn.
5734         (trace_dump_command): Adjust to validate_actionline prototype
5735         change.
5736         * tracepoint.h (decode_agent_options, decode_agent_options)
5737         (encode_actions, validate_actionline): Change prototypes.
5738         * valprint.h (output_command): Delete declaration.
5739         (output_command_const): Declare.
5740         * value.c (function_destroyer): Cast const away in xfree call.
5741
5742 2013-03-13  Pedro Alves  <palves@redhat.com>
5743
5744         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
5745         rather than casting 'const char * const *' to 'const char **'.
5746         * ada-lex.l (processInt): Make "trailer" local const.  Remove
5747         'const char **' cast.
5748         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
5749         locals, and use those as strtol output pointer, instead than doing
5750         invalid casts to from 'const char **' to 'char **'.
5751         (_initialize_demangle): Remove cast.
5752         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
5753         locals, and use those as strtol output pointer, instead than doing
5754         invalid casts to from 'const char **' to 'char **'.
5755         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
5756         casts.
5757         * stap-probe.c (stap_parse_register_operand)
5758         (stap_parse_single_operand): Likewise.
5759
5760 2013-03-13  Yao Qi  <yao@codesourcery.com>
5761
5762         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
5763         the last matched 'V' blcok in trace frame.
5764
5765 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
5766
5767         * NEWS: Create a new section for the next release branch.
5768         Rename the section of the current branch, now that it has
5769         been cut.
5770
5771 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
5772
5773         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
5774         * version.in: Bump version to 7.6.50.20130312-cvs.
5775
5776 2013-03-12  Keith Seitz  <keiths@redhat.com>
5777
5778         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
5779         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
5780         Remove temporary copy of input string.
5781         (mi_execute_command_wrapper): Make "cmd" const.
5782         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
5783         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
5784         Use const strings.
5785         (mi_parse): Make "cmd" const.
5786         Use const strings.
5787         * mi/mi-parse.h (mi_parse): Make "cmd" const.
5788
5789 2013-03-12  Keith Seitz  <keiths@redhat.com>
5790
5791         * ada-lang.c (ada_read_renaming_var_value): Pass const
5792         pointer to expression string to parse_exp_1.
5793         (create_excep_cond_exprs): Likewise.
5794         * ax-gdb.c (agent_eval_command_one): Likewise.
5795         (maint_agent_printf_command): Likewise.
5796         Constify much of the string handling/parsing.
5797         * breakpoint.c (set_breakpoint_condition): Pass const
5798         pointer to expression string to parse_exp_1.
5799         (update_watchpoint): Likewise.
5800         (parse_cmd_to_aexpr): Constify string handling.
5801         Pass const pointer to parse_exp_1.
5802         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
5803         (find_condition_and_thread): Likewise.
5804         Make TOK const.
5805         (watch_command_1): Make "arg" const.
5806         Constify string handling.
5807         Copy the expression string instead of changing the input
5808         string.
5809         (update_breakpoint_location): Pass const pointer to
5810         parse_exp_1.
5811         * eval.c (parse_and_eval_address): Make "exp" const.
5812         (parse_to_comma_and_eval): Make "expp" const.
5813         (parse_and_eval): Make "exp" const.
5814         * expression.h (parse_expression): Make argument const.
5815         (parse_exp_1): Make first argument const.
5816         * findcmd.c (parse_find_args): Treat "args" as const.
5817         * linespec.c (parse_linespec): Pass const pointer to
5818         linespec_expression_to_pc.
5819         (linespec_expression_to_pc): Make "exp_ptr" const.
5820         * parse.c (parse_exp_1): Make "stringptr" const.
5821         Make a copy of the expression to pass to parse_exp_in_context until
5822         this whole interface can be constified.
5823         (parse_expression): Make "string" const.
5824         * printcmd.c (ui_printf): Treat "arg" as const.
5825         Handle const strings.
5826         * tracepoint.c (validate_actionline): Pass const pointer to
5827         all calls to parse_exp_1.
5828         (encode_actions_1): Likewise.
5829         * value.h (parse_to_comma_and_eval): Make argument const.
5830         (parse_and_eval_address): Likewise.
5831         (parse_and_eval): Likewise.
5832         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
5833         (varobj_set_value): Likewise.
5834         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
5835         constify string handling.
5836         Pass const pointers to parse_and_eval_address and
5837         parse_to_comman_and_eval.
5838         * cli/cli-utils.c (skip_to_space): Rename to ...
5839         (skip_to_space_const): ... this. Handle const strings.
5840         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
5841         skip_to_space_const.
5842         (skip_to_space_const): Declare.
5843         * common/format.c (parse_format_string): Make "arg" const.
5844         Handle const strings.
5845         * common/format.h (parse_format_string): Make "arg" const.
5846         * gdbserver/ax.c (ax_printf): Make "format" const.
5847         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
5848         of the expression string.
5849
5850 2013-03-12  Hui Zhu  <hui@codesourcery.com>
5851
5852         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
5853
5854 2013-03-12  Yao Qi  <yao@codesourcery.com>
5855             Hui Zhu  <hui@codesourcery.com>
5856
5857         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
5858         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
5859         DW_OP_deref_size.
5860
5861 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
5862
5863         * ada-lex.l (rules): Only recognize 'thread' as a
5864         delimiter when followed by numerals, as for c-exp.y.
5865         Use new rewind_to_char function to rewind the input for
5866         expression-delimiting tokens.
5867         (rewind_to_char): New function.
5868
5869 2013-03-11  Pedro Alves  <palves@redhat.com>
5870             Jan Kratochvil  <jan.kratochvil@redhat.com>
5871
5872         * configure: Regenerate.
5873         * configure.ac (check dynamic export flag): Link python test with
5874         $PYTHON_LIBS.
5875
5876 2013-03-11  Doug Evans  <dje@google.com>
5877             Keith Seitz  <keiths@redhat.com>
5878
5879         * linespec.c (find_linespec_symbols): Call find_function_symbols
5880         first, and then call lookup_prefix_sym/find_method.
5881
5882 2013-03-11  Pedro Alves  <palves@redhat.com>
5883
5884         * charset.c (convert_between_encodings): Don't cast between
5885         different pointer to pointer types.  Instead, make the 'inp' local
5886         be of the type iconv expects.
5887         (wchar_iterate): Don't cast between different pointer to pointer
5888         types.  Instead, use new pointer local of the type iconv expects.
5889         * target.c (target_read_stralloc, target_fileio_read_stralloc):
5890         Add new local of type char pointer, and use it to get a
5891         char/string view of the byte buffer, instead of casting between
5892         pointer to pointer types.
5893
5894 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
5895
5896         * remote.c (remote_set_trace_buffer_size): Move != operator
5897         to the start of next line to fix an ARI warning.
5898
5899 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5900
5901         * NEWS: Add record changes.
5902
5903 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5904
5905         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
5906         the instruction history disassembly.
5907         * disasm.c (dump_insns): Omit the pc prefix, if requested.
5908         * disasm.h (DISASSEMBLY_OMIT_PC): New.
5909
5910 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5911
5912         * Makefile.in (SFILES): Add record-btrace.c
5913         (COMMON_OBS): Add record-btrace.o
5914         * record-btrace.c: New.
5915         * objfiles.c: Include btrace.h.
5916         (free_objfile): call btrace_free_objfile.
5917
5918 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5919
5920         * target.c (target_call_history, target_call_history_from,
5921         target_call_history_range): New.
5922         * target.h (target_ops) <to_call_history, to_call_history_from,
5923         to_call_history_range>: New fields.
5924         (target_call_history, target_call_history_from,
5925         target_call_history_range): New declaration.
5926         * record.c (get_call_history_modifiers, cmd_record_call_history,
5927         record_call_history_size): New.
5928         (_initialize_record): Add the "record function-call-history" command.
5929         Add "set/show record function-call-history-size" commands.
5930         * record.h (record_print_flag): New.
5931
5932 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5933
5934         * target.h (target_ops) <to_insn_history, to_insn_history_from,
5935         to_insn_history_range>: New fields.
5936         (target_insn_history): New.
5937         (target_insn_history_from): New.
5938         (target_insn_history_range): New.
5939         * target.c (target_insn_history): New.
5940         (target_insn_history_from): New.
5941         (target_insn_history_range): New.
5942         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
5943         (record_insn_history_size): New.
5944         (get_insn_number): New.
5945         (get_context_size): New.
5946         (no_chunk): New.
5947         (get_insn_history_modifiers): New.
5948         (cmd_record_insn_history): New.
5949         (_initialize_record): Add "set/show record instruction-history-size"
5950         command. Add "record instruction-history" command.
5951
5952 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5953
5954         * record.h (record_disconnect): New.
5955         (record_detach): New.
5956         (record_mourn_inferior): New.
5957         (record_kill): New.
5958         * record-full.c (record_disconnect, record_detach,
5959         record_mourn_inferior, record_kill): Move to...
5960         * record.c: ...here.
5961         (DEBUG): New.
5962         (record_stop): New.
5963         (record_unpush): New.
5964         (cmd_record_stop): Call record_stop. Replace unpush_target
5965         call with record_unpush call.
5966         (record_disconnect, record_detach): Assert that the target
5967         is of record stratum. Call record_unpush, record_stop, and
5968         DEBUG.
5969         (record_mourn_inferior, record_kill): Assert that the target
5970         is of record stratum. Call record_unpush and DEBUG.
5971
5972 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5973
5974         * record-full.h, record-full.c (record_memory_query): Rename
5975         to ...
5976         (record_full_memory_query): ...this. Update all users.
5977         (record_arch_list_add_reg): Rename to ...
5978         (record_full_arch_list_add_reg): ...this. Update all users.
5979         (record_arch_list_add_mem): Rename to ...
5980         (record_full_arch_list_add_mem): ...this. Update all users.
5981         (record_arch_list_add_end): Rename to ...
5982         (record_full_arch_list_add_end): ...this. Update all users.
5983         (record_gdb_operation_disable_set): Rename to ...
5984         (record_full_gdb_operation_disable_set): ...this.
5985         Update all users.
5986
5987 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5988
5989         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
5990         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
5991         (RECORD_IS_REPLAY): Renamed to ...
5992         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
5993         (RECORD_FILE_MAGIC): Renamed to ...
5994         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
5995         (record_mem_entry): Renamed to ...
5996         (record_full_mem_entry): ... this. Updated all users.
5997         (record_reg_entry): Renamed to ...
5998         (record_full_reg_entry): ... this. Updated all users.
5999         (record_end_entry): Renamed to ...
6000         (record_full_end_entry): ... this. Updated all users.
6001         (record_type) <record_end, record_reg, record_mem>: Renamed
6002         to ...
6003         (record_full_type) <record_full_end, record_full_reg,
6004         record_full_mem>: ... this. Updated all users.
6005         (record_entry): Renamed to ...
6006         (record_full_entry): ... this. Updated all users.
6007         (record_core_buf_entry): Renamed to ...
6008         (record_full_core_buf_entry): ... this. Updated all users.
6009         (record_core_regbuf): Renamed to ...
6010         (record_full_core_regbuf): ... this. Updated all users.
6011         (record_core_start): Renamed to ...
6012         (record_full_core_start): ... this. Updated all users.
6013         (record_core_end): Renamed to ...
6014         (record_full_core_end): ... this. Updated all users.
6015         (record_core_buf_list): Renamed to ...
6016         (record_full_core_buf_list): ... this. Updated all users.
6017         (record_first): Renamed to ...
6018         (record_full_first): ... this. Updated all users.
6019         (record_list): Renamed to ...
6020         (record_full_list): ... this. Updated all users.
6021         (record_arch_list_head): Renamed to ...
6022         (record_full_arch_list_head): ... this. Updated all users.
6023         (record_arch_list_tail): Renamed to ...
6024         (record_full_arch_list_tail): ... this. Updated all users.
6025         (record_stop_at_limit): Renamed to ...
6026         (record_full_stop_at_limit): ... this. Updated all users.
6027         (record_insn_max_num): Renamed to ...
6028         (record_full_insn_max_num): ... this. Updated all users.
6029         (record_insn_num): Renamed to ...
6030         (record_full_insn_num): ... this. Updated all users.
6031         (record_insn_count): Renamed to ...
6032         (record_full_insn_count): ... this. Updated all users.
6033         (record_ops): Renamed to ...
6034         (record_full_ops): ... this. Updated all users.
6035         (record_core_ops): Renamed to ...
6036         (record_full_core_ops): ... this. Updated all users.
6037         (set_record_cmdlist): Renamed to ...
6038         (set_record_full_cmdlist): ... this. Updated all users.
6039         (show_record_cmdlist): Renamed to ...
6040         (show_record_full_cmdlist): ... this. Updated all users.
6041         (record_cmdlist): Renamed to ...
6042         (record_full_cmdlist): ... this. Updated all users.
6043         (record_beneath_to_resume_ops): Renamed to ...
6044         (record_full_beneath_to_resume_ops): ... this. Updated all users.
6045         (record_beneath_to_resume): Renamed to ...
6046         (record_full_beneath_to_resume): ... this. Updated all users.
6047         (record_beneath_to_wait_ops): Renamed to ...
6048         (record_full_beneath_to_wait_ops): ... this. Updated all users.
6049         (record_beneath_to_wait): Renamed to ...
6050         (record_full_beneath_to_wait): ... this. Updated all users.
6051         (record_beneath_to_store_registers_ops): Renamed to ...
6052         (record_full_beneath_to_store_registers_ops): ... this.
6053         Updated all users.
6054         (record_beneath_to_store_registers): Renamed to ...
6055         (record_full_beneath_to_store_registers): ... this.
6056         Updated all users.
6057         (record_beneath_to_xfer_partial_ops): Renamed to ...
6058         (record_full_beneath_to_xfer_partial_ops): ... this.
6059         Updated all users.
6060         (record_beneath_to_xfer_partial): Renamed to ...
6061         (record_full_beneath_to_xfer_partial): ... this.
6062         Updated all users.
6063         (record_beneath_to_insert_breakpoint): Renamed to ...
6064         (record_full_beneath_to_insert_breakpoint): ... this.
6065         Updated all users.
6066         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
6067         (record_full_beneath_to_stopped_by_watchpoint): ... this.
6068         Updated all users.
6069         (record_beneath_to_stopped_data_address): Renamed to ...
6070         (record_full_beneath_to_stopped_data_address): ... this.
6071         Updated all users.
6072         (record_beneath_to_async): Renamed to ...
6073         (record_full_beneath_to_async): ... this. Updated all users.
6074         (record_goto_insn): Renamed to ...
6075         (record_full_goto_insn): ... this. Updated all users.
6076         (record_save): Renamed to ...
6077         (record_full_save): ... this. Updated all users.
6078         (record_reg_alloc): Renamed to ...
6079         (record_full_reg_alloc): ... this. Updated all users.
6080         (record_reg_release): Renamed to ...
6081         (record_full_reg_release): ... this. Updated all users.
6082         (record_mem_alloc): Renamed to ...
6083         (record_full_mem_alloc): ... this. Updated all users.
6084         (record_mem_release): Renamed to ...
6085         (record_full_mem_release): ... this. Updated all users.
6086         (record_end_alloc): Renamed to ...
6087         (record_full_end_alloc): ... this. Updated all users.
6088         (record_end_release): Renamed to ...
6089         (record_full_end_release): ... this. Updated all users.
6090         (record_entry_release): Renamed to ...
6091         (record_full_entry_release): ... this. Updated all users.
6092         (record_list_release): Renamed to ...
6093         (record_full_list_release): ... this. Updated all users.
6094         (record_list_release_following): Renamed to ...
6095         (record_full_list_release_following): ... this.
6096         Updated all users.
6097         (record_list_release_first): Renamed to ...
6098         (record_full_list_release_first): ... this. Updated all users.
6099         (record_arch_list_add): Renamed to ...
6100         (record_full_arch_list_add): ... this. Updated all users.
6101         (record_get_loc): Renamed to ...
6102         (record_full_get_loc): ... this. Updated all users.
6103         (record_check_insn_num): Renamed to ...
6104         (record_full_check_insn_num): ... this. Updated all users.
6105         (record_arch_list_cleanups): Renamed to ...
6106         (record_full_arch_list_cleanups): ... this. Updated all users.
6107         (record_message): Renamed to ...
6108         (record_full_message): ... this. Updated all users.
6109         (record_message_wrapper): Renamed to ...
6110         (record_full_message_wrapper): ... this. Updated all users.
6111         (record_message_wrapper_safe): Renamed to ...
6112         (record_full_message_wrapper_safe): ... this. Updated all users.
6113         (record_gdb_operation_disable): Renamed to ...
6114         (record_full_gdb_operation_disable): ... this. Updated all users.
6115         (record_hw_watchpoint): Renamed to ...
6116         (record_full_hw_watchpoint): ... this. Updated all users.
6117         (record_exec_insn): Renamed to ...
6118         (record_full_exec_insn): ... this. Updated all users.
6119         (record_restore): Renamed to ...
6120         (record_full_restore): ... this. Updated all users.
6121         (record_async_inferior_event_token): Renamed to ...
6122         (record_full_async_inferior_event_token): ... this.
6123         Updated all users.
6124         (record_async_inferior_event_handler): Renamed to ...
6125         (record_full_async_inferior_event_handler): ... this.
6126         Updated all users.
6127         (record_core_open_1): Renamed to ...
6128         (record_full_core_open_1): ... this. Updated all users.
6129         (record_open_1): Renamed to ...
6130         (record_full_open_1): ... this. Updated all users.
6131         (record_open): Renamed to ...
6132         (record_full_open): ... this. Updated all users.
6133         (record_close): Renamed to ...
6134         (record_full_close): ... this. Updated all users.
6135         (record_resume_step): Renamed to ...
6136         (record_full_resume_step): ... this. Updated all users.
6137         (record_resumed): Renamed to ...
6138         (record_full_resumed): ... this. Updated all users.
6139         (record_execution_dir): Renamed to ...
6140         (record_full_execution_dir): ... this. Updated all users.
6141         (record_resume): Renamed to ...
6142         (record_full_resume): ... this. Updated all users.
6143         (record_get_sig): Renamed to ...
6144         (record_full_get_sig): ... this. Updated all users.
6145         (record_sig_handler): Renamed to ...
6146         (record_full_sig_handler): ... this. Updated all users.
6147         (record_wait_cleanups): Renamed to ...
6148         (record_full_wait_cleanups): ... this. Updated all users.
6149         (record_wait_1): Renamed to ...
6150         (record_full_wait_1): ... this. Updated all users.
6151         (record_wait): Renamed to ...
6152         (record_full_wait): ... this. Updated all users.
6153         (record_stopped_by_watchpoint): Renamed to ...
6154         (record_full_stopped_by_watchpoint): ... this. Updated all users.
6155         (record_disconnect): Renamed to ...
6156         (record_full_disconnect): ... this. Updated all users.
6157         (record_detach): Renamed to ...
6158         (record_full_detach): ... this. Updated all users.
6159         (record_mourn_inferior): Renamed to ...
6160         (record_full_mourn_inferior): ... this. Updated all users.
6161         (record_kill): Renamed to ...
6162         (record_full_kill): ... this. Updated all users.
6163         (record_stopped_data_address): Renamed to ...
6164         (record_full_stopped_data_address): ... this. Updated all users.
6165         (record_registers_change): Renamed to ...
6166         (record_full_registers_change): ... this. Updated all users.
6167         (record_store_registers): Renamed to ...
6168         (record_full_store_registers): ... this. Updated all users.
6169         (record_xfer_partial): Renamed to ...
6170         (record_full_xfer_partial): ... this. Updated all users.
6171         (record_breakpoint): Renamed to ...
6172         (record_full_breakpoint): ... this. Updated all users.
6173         (record_breakpoint_p): Renamed to ...
6174         (record_full_breakpoint_p): ... this. Updated all users.
6175         (record_breakpoints): Renamed to ...
6176         (record_full_breakpoints): ... this. Updated all users.
6177         (record_sync_record_breakpoints): Renamed to ...
6178         (record_full_sync_record_breakpoints): ... this.
6179         Updated all users.
6180         (record_init_record_breakpoints): Renamed to ...
6181         (record_full_init_record_breakpoints): ... this.
6182         Updated all users.
6183         (record_insert_breakpoint): Renamed to ...
6184         (record_full_insert_breakpoint): ... this. Updated all users.
6185         (record_remove_breakpoint): Renamed to ...
6186         (record_full_remove_breakpoint): ... this. Updated all users.
6187         (record_can_execute_reverse): Renamed to ...
6188         (record_full_can_execute_reverse): ... this. Updated all users.
6189         (record_get_bookmark): Renamed to ...
6190         (record_full_get_bookmark): ... this. Updated all users.
6191         (record_goto_bookmark): Renamed to ...
6192         (record_full_goto_bookmark): ... this. Updated all users.
6193         (record_async): Renamed to ...
6194         (record_full_async): ... this. Updated all users.
6195         (record_can_async_p): Renamed to ...
6196         (record_full_can_async_p): ... this. Updated all users.
6197         (record_is_async_p): Renamed to ...
6198         (record_full_is_async_p): ... this. Updated all users.
6199         (record_execution_direction): Renamed to ...
6200         (record_full_execution_direction): ... this. Updated all users.
6201         (record_info): Renamed to ...
6202         (record_full_info): ... this. Updated all users.
6203         (record_delete): Renamed to ...
6204         (record_full_delete): ... this. Updated all users.
6205         (record_is_replaying): Renamed to ...
6206         (record_full_is_replaying): ... this. Updated all users.
6207         (record_goto_entry): Renamed to ...
6208         (record_full_goto_entry): ... this. Updated all users.
6209         (record_goto_begin): Renamed to ...
6210         (record_full_goto_begin): ... this. Updated all users.
6211         (record_goto_end): Renamed to ...
6212         (record_full_goto_end): ... this. Updated all users.
6213         (record_goto): Renamed to ...
6214         (record_full_goto): ... this. Updated all users.
6215         (init_record_ops): Renamed to ...
6216         (init_record_full_ops): ... this. Updated all users.
6217         (record_core_resume): Renamed to ...
6218         (record_full_core_resume): ... this. Updated all users.
6219         (record_core_kill): Renamed to ...
6220         (record_full_core_kill): ... this. Updated all users.
6221         (record_core_fetch_registers): Renamed to ...
6222         (record_full_core_fetch_registers): ... this. Updated all users.
6223         (record_core_prepare_to_store): Renamed to ...
6224         (record_full_core_prepare_to_store): ... this. Updated all users.
6225         (record_core_store_registers): Renamed to ...
6226         (record_full_core_store_registers): ... this. Updated all users.
6227         (record_core_xfer_partial): Renamed to ...
6228         (record_full_core_xfer_partial): ... this. Updated all users.
6229         (record_core_insert_breakpoint): Renamed to ...
6230         (record_full_core_insert_breakpoint): ... this. Updated all users.
6231         (record_core_remove_breakpoint): Renamed to ...
6232         (record_full_core_remove_breakpoint): ... this. Updated all users.
6233         (record_core_has_execution): Renamed to ...
6234         (record_full_core_has_execution): ... this. Updated all users.
6235         (init_record_core_ops): Renamed to ...
6236         (init_record_full_core_ops): ... this. Updated all users.
6237         (cmd_record_restore): Renamed to ...
6238         (cmd_record_full_restore): ... this. Updated all users.
6239         (record_save_cleanups): Renamed to ...
6240         (record_full_save_cleanups): ... this. Updated all users.
6241         (cmd_record_start): Renamed to ...
6242         (cmd_record_full_start): ... this. Updated all users.
6243         (set_record_insn_max_num): Renamed to ...
6244         (set_record_full_insn_max_num): ... this. Updated all users.
6245         (set_record_command): Renamed to ...
6246         (set_record_full_command): ... this. Updated all users.
6247         (show_record_command): Renamed to ...
6248         (show_record_full_command): ... this. Updated all users.
6249         (_initialize_record): Renamed to ...
6250         (_initialize_record_full): ... this. Updated all users.
6251
6252 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6253
6254         * record.h: Split into this and ...
6255         * record-full.h: ... this.
6256         * record.c: Split into this and ...
6257         * record-full.c: ... this.
6258         * target.h (target_ops): Add new fields to_info_record,
6259         to_save_record, to_delete_record, to_record_is_replaying,
6260         to_goto_record_begin, to_goto_record_end, to_goto_record.
6261         (target_info_record): New.
6262         (target_save_record): New.
6263         (target_supports_delete_record): New.
6264         (target_delete_record): New.
6265         (target_record_is_replaying): New.
6266         (target_goto_record_begin): New.
6267         (target_goto_record_end): New.
6268         (target_goto_record): New.
6269         * target.c (target_info_record): New.
6270         (target_save_record): New.
6271         (target_supports_delete_record): New.
6272         (target_delete_record): New.
6273         (target_record_is_replaying): New.
6274         (target_goto_record_begin): New.
6275         (target_goto_record_end): New.
6276         (target_goto_record): New.
6277         * record.h: Declare struct cmd_list_element.
6278         (record_cmdlist): New declaration.
6279         (set_record_cmdlist): New declaration.
6280         (show_record_cmdlist): New declaration.
6281         (info_record_cmdlist): New declaration.
6282         (cmd_record_goto): New declaration.
6283         * record.c: Remove unnecessary includes.
6284         Include inferior.h.
6285         (cmd_record_goto): Remove declaration.
6286         (record_cmdlist): Now extern. Initialize.
6287         (set_record_cmdlist): Now extern. Initialize.
6288         (show_record_cmdlist): Now extern. Initialize.
6289         (info_record_cmdlist): Now extern. Initialize.
6290         (find_record_target): New.
6291         (require_record_target): New.
6292         (cmd_record_start): Update.
6293         (cmd_record_delete): Remove target-specific code.
6294         Call target_delete_record.
6295         (cmd_record_stop): Unpush any record target.
6296         (set_record_insn_max_num): Move to record-full.c
6297         (set_record_command): Add comment.
6298         (show_record_command): Add comment.
6299         (info_record_command): Update comment.
6300         Remove target-specific code.
6301         Call the record target's to_info_record.
6302         (cmd_record_start): New.
6303         (cmd_record_goto): Now extern.
6304         Remove target-specific code.
6305         Call target_goto_begin,  target_goto_end, or target_goto.
6306         (_initialize_record): Move record target ops initialization to
6307         record-full.c.
6308         Change "record" command help text.
6309         Move "record restore", "record set", and "record show" commands to
6310         record-full.c.
6311         * Makefile.in (SFILES): Add record-full.c.
6312         (HFILES_NO_SRCDIR): Add record-full.h.
6313         (COMMON_OBS): Add record-full.o.
6314         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
6315         * arm-tdep.c: Include record-full.h.
6316         * i386-linux-tdep.c: Include record-full.h instead of record.h.
6317         * i386-tdep.c: Include record-full.h.
6318         * infrun.c: Include record-full.h.
6319         * linux-record.c: Include record-full.h.
6320         * moxie-tdep.c: Include record-full.h.
6321         * record-full.c: Include record-full.h.
6322         Change module comment.
6323         (set_record_full_cmdlist): New.
6324         (show_record_full_cmdlist): New.
6325         (record_full_cmdlist): New.
6326         (record_goto_insn): New declaration.
6327         (record_save): New declaration.
6328         (record_check_insn_num): Change query string.
6329         (record_info): New.
6330         (record_delete): New.
6331         (record_is_replaying): New.
6332         (record_goto_entry): New.
6333         (record_goto_begin): New.
6334         (record_goto_end): New.
6335         (record_goto): New.
6336         (init_record_ops): Update.
6337         (init_record_core_ops): Update.
6338         (cmd_record_save): Rename to record_save. Remove target and arg checks.
6339         (cmd_record_start): New.
6340         (set_record_insn_max_num): Moved from record.c
6341         (set_record_full_command): New.
6342         (show_record_full_command): New.
6343         (_initialize_record_full): New.
6344
6345 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6346
6347         * target.h (add_deprecated_target_alias): New.
6348         * target.c (add_deprecated_target_alias): New.
6349
6350 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6351
6352         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
6353         and signal.h.
6354         (linux_supports_btrace): Add kernel and
6355         cpuid check.
6356         (kernel_supports_btrace): New function.
6357         (cpu_supports_btrace): New function.
6358         (intel_supports_btrace): New function.
6359
6360 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6361
6362         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
6363         * remote.c: Include btrace.h.
6364         (struct btrace_target_info): New struct.
6365         (remote_supports_btrace): New function.
6366         (send_Qbtrace): New function.
6367         (remote_enable_btrace): New function.
6368         (remote_disable_btrace): New function.
6369         (remote_teardown_btrace): New function.
6370         (remote_read_btrace): New function.
6371         (init_remote_ops): Add btrace ops.
6372         (enum <unnamed>): Add btrace packets.
6373         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
6374         (_initialize_remote): Add packet configuration for branch tracing.
6375
6376 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6377
6378         * features/btrace.dtd: New file.
6379         * Makefile.in (XMLFILES): Add btrace.dtd.
6380         * btrace.h (parse_xml_btrace): New declaration.
6381         * btrace.c: Include xml-support.h.
6382         (parse_xml_btrace): New function.
6383         (parse_xml_btrace_block): New function.
6384         (block_attributes): New struct.
6385         (btrace_attributes): New struct.
6386         (btrace_children): New struct.
6387         (btrace_elements): New struct.
6388
6389 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6390
6391         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
6392         (amd64_linux_enable_btrace): New.
6393         (amd64_linux_disable_btrace): New.
6394         (amd64_linux_teardown_btrace): New.
6395         (_initialize_amd64_linux_nat): Initialize btrace ops.
6396         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
6397         (i386_linux_enable_btrace): New.
6398         (i386_linux_disable_btrace): New.
6399         (i386_linux_teardown_btrace): New.
6400         (_initialize_i386_linux_nat): Initialize btrace ops.
6401         * config/i386/linux.mh: Add linux-btrace.o.
6402         * config/i386/linux64.mh: Add linux-btrace.o.
6403
6404 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6405
6406         * common/linux_btrace.h: New file.
6407         * common/linux_btrace.c: New file.
6408         * Makefile.in (SFILES): Add btrace.c.
6409         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
6410         (COMMON_OBS): Add btrace.o.
6411         (linux-btrace.o): New rule.
6412
6413 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6414
6415         * target.h: Include btrace.h.
6416         (struct target_ops) <to_supports_btrace, to_enable_btrace,
6417         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
6418         * target.c (target_supports_btrace): New function.
6419         (target_enable_btrace): New function.
6420         (target_disable_btrace): New function.
6421         (target_teardown_btrace): New function.
6422         (target_read_btrace): New function.
6423         * btrace.h: New file.
6424         * btrace.c: New file.
6425         * Makefile.in: Add btrace.c.
6426         * gdbthread.h: Include btrace.h.
6427         (struct thread_info): Add btrace field.
6428         * thread.c: Include btrace.h.
6429         (clear_thread_inferior_resources): Call target_teardown_btrace.
6430         * common/btrace-common.h: New file.
6431
6432 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6433
6434         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
6435         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
6436         kill_status to outer block.
6437
6438 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6439
6440         Fix entry-values if the callee called a noreturn function.
6441         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
6442         get_frame_address_in_block.  Add new comment.
6443
6444 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6445
6446         Fix entry-values in C++ across CUs.
6447         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
6448         lookup_minimal_symbol.  Add a comment.
6449         * dwarf2read.c
6450         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
6451         DW_AT_linkage_name.
6452
6453 2013-03-08  Yao Qi  <yao@codesourcery.com>
6454
6455         * tracepoint.c (_initialize_tracepoint): Indent the code.
6456
6457 2013-03-08  Pedro Alves  <palves@redhat.com>
6458
6459         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
6460         (parse_find_args, find_command): Change type of pattern buffer
6461         locals to 'gdb_byte *'.
6462
6463 2013-03-08  Stan Shebs  <stan@codesourcery.com>
6464             Hafiz Abid Qadeer  <abidh@codesourcery.com>
6465
6466         * NEWS: Mention set and show trace-buffer-size commands.
6467         Mention new packet.
6468         * target.h (struct target_ops): New method
6469         to_set_trace_buffer_size.
6470         (target_set_trace_buffer_size): New macro.
6471         * target.c (update_current_target): Set up new method.
6472         * tracepoint.c (trace_buffer_size): New global.
6473         (start_tracing): Send it to the target.
6474         (set_trace_buffer_size): New function.
6475         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
6476         * remote.c (remote_set_trace_buffer_size): New function.
6477         (_initialize_remote): Use it.
6478         (QTBuffer:size) New remote command.
6479         (PACKET_QTBuffer_size): New enum.
6480         (remote_protocol_features): Add an entry for
6481         PACKET_QTBuffer_size.
6482
6483 2013-03-08  Tom Tromey  <tromey@redhat.com>
6484
6485         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
6486         variable.
6487
6488 2013-03-07  Pedro Alves  <palves@redhat.com>
6489
6490         * target.c (target_read_stralloc, target_fileio_read_alloc):
6491         *Cast pointer to 'gdb_byte *' in target call.
6492
6493 2013-03-07  Pedro Alves  <palves@redhat.com>
6494
6495         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
6496         call.
6497
6498 2013-03-07  Keith Seitz  <keiths@redhat.com>
6499
6500         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
6501         (trace_pass_command): Likewise.
6502         * cli/cli-cmds.c: Include cli/cli-utils.h.
6503         (source_command): Use skip-spaces.
6504         (disassemble_command): Likewise.
6505         * findcmd.c: Include cli/cli-utils.h.
6506         (parse_find_args): Use skip_spaces.
6507         * go32-nat.c: Include cli/cli-utils.h.
6508         (go32_sldt): Use skip_spaces.
6509         (go32_sgdt): Likewise.
6510         (go32_sidt): Likewise.
6511         (go32_pde): Likewise.
6512         (go32_pte): Likewise.
6513         (go32_pte_for_address): Likewise.
6514         * infcmd.c: Include cli/cli-utils.h.
6515         (registers_info): Use skip_spaces.
6516         * linux-tdep.c (read_mapping): Use skip_spaces_const.
6517         (linux_info_proc): Likewise.
6518         * linux-thread-db.c: Include cli/cli-utils.h.
6519         (info_auto_load_libthread_db): Use skip_spaces_const.
6520         * m32r-rom.c: Include cli/cli-utils.h.
6521         (m32r_upload_command): Use skip_spaces.
6522         * maint.c: Include cli/cli-utils.h.
6523         (maintenance_translate_address): Use skip_spaces.
6524         * mi/mi-parse.c: Include cli/cli-utils.h.
6525         (mi_parse_argv): Use skip_spaces.
6526         (mi_parse): Likewise.
6527         * minsyms.c: Include cli/cli-utils.h.
6528         (msymbol_hash_iw): Use skip_spaces_const.
6529         * objc-lang.c: Include cli/cli-utils.h.
6530         (parse_selector): Use skip_spaces.
6531         (parse_method): Likewise.
6532         * python/python.c: Include cli/cli-utils.h.
6533         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
6534         (python_command)[HAVE_PYTHON]: Likewise.
6535         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
6536         * remote-m32r-sdi.c: Include cli/cli-utils.h.
6537         (m32r_load): Use skip_spaces.
6538         * serial.c: Include cli/cli-utils.h.
6539         (serial_open): Use skip_spaces_const.
6540         * stack.c: Include cli/cli-utils.h.
6541         (parse_frame_specification_1): Use skip_spaces_const.
6542         * symfile.c: Include cli/cli-utils.h.
6543         (set_ext_lang_command): Use skip_spaces.
6544         * symtab.c: Include cli/cli-utils.h.
6545         (rbreak_command): Use skip_spaces.
6546         * thread.c (thread_name_command): Use skip_spaces.
6547         * tracepoint.c (validate_actionline): Use skip_spaces.
6548         (encode_actions_1): Likewise.
6549         (trace_find_range_command): Likewise.
6550         (trace_find_outside_command): Likewise.
6551         (trace_dump_actions): Likewise.
6552
6553 2013-03-07  Pedro Alves  <palves@redhat.com>
6554
6555         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
6556         * expprint.c (print_subexp_standard): Likewise.
6557         * utils.c (host_char_to_target): Likewise.
6558         * valprint.c (generic_emit_char, generic_printstr): Likewise.
6559         * varobj.c (value_get_print_value): Change type of local to char*.
6560         Cast it gdb_byte * in call to language printer.
6561
6562 2013-03-07  Pedro Alves  <palves@redhat.com>
6563
6564         * charset.c (struct wchar_iterator) <input>: Change type to 'const
6565         gdb_byte *'.
6566         (make_wchar_iterator): Remove cast to char*.
6567         (wchar_iterate): Change type of local.
6568
6569 2013-03-07  Pedro Alves  <palves@redhat.com>
6570
6571         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
6572         for 'regcache->register_status'.
6573
6574 2013-03-07  Pedro Alves  <palves@redhat.com>
6575
6576         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
6577         int.
6578
6579 2013-03-07  Pedro Alves  <palves@redhat.com>
6580
6581         * stap-probe.c (handle_stap_probe): Add cast to char*.
6582
6583 2013-03-07  Pedro Alves  <palves@redhat.com>
6584
6585         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
6586         RECORD_MSGRCV>: Pass a signed variable to
6587         regcache_raw_read_signed, instead of an unsigned one.
6588
6589 2013-03-07  Pedro Alves  <palves@redhat.com>
6590
6591         * remote-notif.c (notif_debug): Change type to int.
6592         * remote-notif.h (notif_debug): Likewise.
6593
6594 2013-03-07  Pedro Alves  <palves@redhat.com>
6595
6596         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
6597
6598 2013-03-07  Pedro Alves  <palves@redhat.com>
6599
6600         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
6601         * remote.h (hex2bin, bin2hex): ... here.
6602         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
6603
6604 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
6605
6606         * utils.c (initialize_utils): Improve doc strings of "set/show
6607         width", "set/show height", and "set/show pagination".
6608
6609 2013-03-06  Keith Seitz  <keiths@redhat.com>
6610
6611         * ax-gdb.c (gen_printf): Make FORMAT const.
6612         * ax-gdb.h (gen_printf): Likewise.
6613         * ax-general.c (ax_string): Make STR const.
6614         * ax.h (ax_string): Likewise.
6615
6616 2013-03-06  Doug Evans  <dje@google.com>
6617
6618         * elfread.c (elf_symfile_read): Move debugging printf to more
6619         logical location.
6620
6621 2013-03-06  Pedro Alves  <palves@redhat.com>
6622
6623         * python/py-utils.c (target_string_to_unicode): Delete function.
6624         * python/python-internal.h (target_string_to_unicode): Delete
6625         declaration.
6626
6627 2013-03-06  Pierre Muller  <muller@sourceware.org>
6628
6629         * linespec.c (get_current_search_block): ARI fix, use (void)
6630         for empty parameter list.
6631
6632 2013-03-05  Doug Evans  <dje@google.com>
6633
6634         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
6635         of old ada_lookup_symbol_list.  In !full_search case, don't
6636         search superblocks.
6637         (ada_lookup_symbol_list): Delete arg full_search, all callers
6638         updated.  Call ada_lookup_symbol_list_worker.
6639         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
6640         * ada-lang.h (ada_lookup_symbol_list): Update.
6641         * language.h (language_defn): Update comment for
6642         la_iterate_over_symbols.
6643         * linespec.c (iterate_over_file_blocks): New function.
6644         (iterate_over_all_matching_symtabs): Call it.
6645         (lookup_prefix_sym): Ditto.
6646         (get_current_search_block): New function.
6647         (get_search_block): Delete.
6648         (find_label_symbols): Call get_current_search_block.
6649         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
6650         * symtab.c (iterate_over_symbols): Don't search superblocks.
6651
6652 2013-03-05  Yao Qi  <yao@codesourcery.com>
6653
6654         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
6655         parameter VAR's type from "unsigned int" to "int".
6656         * command.h (var_zuinteger_unlimited): Update its comments.
6657         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
6658
6659 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
6660
6661         * NEWS: Mention new target x86_64-*-cygwin*.
6662
6663 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
6664
6665         * configure.host: Add x86_64-*-cygwin* as host.
6666         * configure.tgt: Add x86_64-*-cygwin* as target.
6667         * config/i386/cygwin64.mh: New file.
6668
6669 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6670
6671         * linespec.c (decode_line_2): Fix duplicate request off by two message.
6672
6673 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6674
6675         * linespec.c (struct linespec_canonical_name): New.
6676         (struct linespec_state): Change canonical_names type to it.
6677         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
6678         xrealloc element size.  Initialize the different CANONICAL fields.
6679         (canonical_to_fullform): New.
6680         (filter_results): Use it.  Add variables canonical, fullform and
6681         cleanup.
6682         (struct decode_line_2_item, decode_line_2_compare_items): New.
6683         (decode_line_2): Remove variables iter and item_names, add variables
6684         items and items_count.  Modify the code for these new variables.
6685
6686 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
6687
6688         * coff-pe-read.c (read_pe_exported_syms): Don't return without
6689         calling do_cleanup.
6690
6691 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
6692
6693         * tracepoint.c (build_traceframe_info): Add code for byte order.
6694
6695 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
6696
6697         * v850-tdep.c: (v850e2_register_name): Revise system register
6698         names to match current V850E2M architecture specifications.
6699         Update register number enum comments too.
6700         
6701 2013-03-01  Jiong Wang  <jiwang@tilera.com>
6702             Pedro Alves  <palves@redhat.com>
6703
6704         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
6705         to END_ADDR.
6706         (tilegx_skip_prologue): Limit prologue analysis to section end.
6707
6708 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
6709
6710         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
6711         use it.
6712
6713 2013-03-01  Pedro Alves  <palves@redhat.com>
6714
6715         Use gdb_byte for bytes from the program being debugged.
6716
6717         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
6718         Change type of local 'buf' to gdb_byte.
6719         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
6720         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
6721         * cris-tdep.c (cris_sigcontext_addr)
6722         (cris_sigtramp_frame_unwind_cache): Likewise.
6723         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
6724         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
6725         Likewise.
6726         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
6727         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
6728         (hppa32_hpux_search_dummy_call_sequence)
6729         (hppa_hpux_supply_save_state): Likewise.
6730         * hppa-linux-tdep.c (insns_match_pattern)
6731         (hppa_linux_find_global_pointer): Likewise.
6732         * hppa-tdep.c (hppa_in_function_epilogue_p)
6733         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
6734         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
6735         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
6736         (i386fbsd_collect_uthread): Likewise.
6737         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
6738         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
6739         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
6740         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
6741         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
6742         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
6743         (ia64_libunwind_frame_prev_register)
6744         (ia64_libunwind_sigtramp_frame_this_id)
6745         (ia64_find_global_pointer_from_dynamic_section)
6746         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
6747         (ia64_unwind_pc): Likewise.
6748         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
6749         * m68hc11-tdep.c (m68hc11_push_dummy_call)
6750         (m68hc11_extract_return_value): Likewise.
6751         * m68klinux-nat.c (fetch_register, store_register): Likewise.
6752         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
6753         (mep_get_insn, mep_push_dummy_call): Likewise.
6754         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
6755         (mips_linux_in_dynsym_stub): Likewise.
6756         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
6757         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
6758         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
6759         to gdb_byte.
6760         * remote-mips.c (mips_set_register): Likewise.
6761         * remote-sim.c (gdbsim_fetch_register): Likewise.
6762         * score-tdep.c (score7_fetch_inst): Change type of parameter
6763         'memblock' and local 'buf' to gdb_byte.
6764         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
6765         Change type of local 'buf' to gdb_byte.  Adjust.
6766         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
6767         to gdb_byte**.
6768         (score7_analyze_prologue): Change type of 'memblock' and
6769         'memblock_ptr' locals to gdb_byte*.
6770         * sh64-tdep.c (sh64_extract_return_value)
6771         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
6772         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
6773         * solib-pa64.c (pa64_solib_create_inferior_hook)
6774         (pa64_open_symbol_file_object): Remove local 'buf'.
6775         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
6776         (som_open_symbol_file_object): Likewise.
6777         * solib-spu.c (spu_current_sos): Likewise.
6778         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
6779         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
6780         (spu_store_registers): Likewise.
6781         * target.c (debug_print_register): Likewise.
6782         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
6783         * xstormy16-tdep.c (xstormy16_store_return_value)
6784         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
6785         (xstormy16_find_jmp_table_entry): Likewise.
6786
6787 2013-03-01  Jiong Wang  <jiwang@tilera.com>
6788
6789         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
6790         (tilegx_gdbarch_init): Install it.
6791
6792 2013-02-28  Tom Tromey  <tromey@redhat.com>
6793
6794         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
6795         PyLong_Check.
6796
6797 2013-02-28  Doug Evans  <dje@google.com>
6798
6799         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
6800         * python/python.c (gdbpy_find_pc_line): Ditto.
6801
6802 2013-02-28  Tom Tromey  <tromey@redhat.com>
6803
6804         * contrib/excheck.py: New file.
6805         * contrib/exsummary.py: New file.
6806         * contrib/gcc-with-excheck: New file.
6807
6808 2013-02-28  Tom Tromey  <tromey@redhat.com>
6809
6810         * python/python.c (gdbpy_print_stack): Call begin_line and
6811         fprintf_filtered inside TRY_CATCH.
6812
6813 2013-02-28  Tom Tromey  <tromey@redhat.com>
6814
6815         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
6816         inside TRY_CATCH.
6817
6818 2013-02-28  Tom Tromey  <tromey@redhat.com>
6819
6820         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
6821         frame_object_to_frame_info inside TRY_CATCH.
6822
6823 2013-02-28  Tom Tromey  <tromey@redhat.com>
6824
6825         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
6826         TRY_CATCH.
6827
6828 2013-02-28  Tom Tromey  <tromey@redhat.com>
6829
6830         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
6831
6832 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
6833
6834         * windows-nat.c: Throughout, fix format strings and casts of
6835         printf-like functions to avoid type related warnings on all
6836         platforms.
6837         (handle_output_debug_string): Fetch context information address
6838         from debug string using string_to_core_addr.
6839
6840 2013-02-27  Jiong Wang  <jiwang@tilera.com>
6841
6842         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
6843         * regformats/reg-tilegx32.dat: New.
6844
6845 2013-02-27  Jiong Wang  <jiwang@tilera.com>
6846
6847         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
6848
6849 2013-02-27  Jiong Wang  <jiwang@tilera.com>
6850
6851         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
6852
6853 2013-02-27  Yao Qi  <yao@codesourcery.com>
6854             Pedro Alves  <palves@redhat.com>
6855
6856         * tracepoint.c (tfile_trace_find): For tfind
6857         pc/tp/range/outside, look for the next trace frame instead of
6858         always starting from frame 0.
6859
6860 2013-02-26  Anthony Green  <green@moxielogic.com>
6861
6862         * configure.tgt: Add support for moxie-*-rtems* target.
6863
6864 2013-02-25  Pedro Alves  <palves@redhat.com>
6865
6866         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
6867         warning text.
6868
6869 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
6870
6871         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
6872         if $fp is used as the virtual frame pointer.
6873
6874 2013-02-23  Alan Modra  <amodra@gmail.com>
6875
6876         * elfread.c (elf_symtab_read): Do not use udata.p here to find
6877         symbol size.
6878         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
6879         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
6880         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
6881         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
6882
6883 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
6884
6885         Code cleanup.
6886         * elfread.c (build_id_bfd_get): Make the return type const.
6887         (build_id_verify): Make the check parameter const.
6888         (build_id_to_debug_filename): Make the build_id parameter and variable
6889         data const.
6890         (find_separate_debug_file_by_buildid): Make the variable build_id const.
6891
6892 2013-02-21  Alan Modra  <amodra@gmail.com>
6893
6894         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
6895
6896 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
6897
6898         Add a new method 'disassemble' to gdb.Architecture class.
6899         * python/py-arch.c (archpy_disassmble): Implementation of the
6900         new method gdb.Architecture.disassemble.
6901         (arch_object_methods): Add entry for the new method.
6902
6903 2013-02-20  Jiong Wang  <jiwang@tilera.com>
6904
6905         * MAINTAINERS (Write After Approval): Add myself to the list.
6906
6907 2013-02-19  Pedro Alves  <palves@redhat.com>
6908
6909         Garbage collect 'struct monitor_ops'::load_routine.
6910
6911         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
6912         * monitor.c (monitor_load): No longer call
6913         current_monitor->load_routine.
6914         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
6915         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
6916         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
6917
6918 2013-02-19  Pedro Alves  <palves@redhat.com>
6919
6920         PR gdb/15161
6921
6922         Harmonize with generic_load.
6923
6924         * monitor.c: Include "readline/readline.h".
6925         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
6926         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
6927         long/strtol for the 'load_offset' local.  Error out if no argument
6928         is given or if too many arguments are given.  Tilde expand the
6929         passed in file name.
6930
6931 2013-02-19  Kai Tietz  <ktietz@redhat.com>
6932
6933         PR gdb/15161
6934         * symfile.c (load_section_data): Change type of load_offset
6935         to CORE_ADDR.
6936         (generic_load): User strtoulst instead of strtoul for conversion
6937         of load_offset.
6938
6939 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6940
6941         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
6942          for return address, "lr" register, saved on stack.
6943         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
6944         after we invoke tilegx_analyze_prologue.
6945
6946 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6947
6948         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
6949
6950 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6951
6952         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
6953
6954 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6955
6956         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
6957         (tilegx_write_pc): New function.
6958         (tilegx_cannot_reference_register): Return zero if REGNO
6959         is TILEGX_FAULTNUM_REGNUM.
6960         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
6961         (tilegx_register_name): Add handling of "faultnum" register.
6962         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
6963         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
6964         handling of TILEGX_FAULTNUM_REGNUM.
6965         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
6966
6967 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6968
6969         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
6970         should be aligned to 64bit.
6971
6972 2013-02-19  Kai Tietz  <ktietz@redhat.com>
6973
6974         * windows-nat.c (windows_xfer_memory): Fix debug-output
6975         for LLP64.
6976
6977 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
6978
6979         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
6980         Don't check DSP register number if HAVE_DSP is not set.
6981
6982 2013-02-19  Alan Modra  <amodra@gmail.com>
6983
6984         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
6985         throughout file instead.
6986         (build_id_bfd_get): Update to use new elf_tdata build_id field.
6987         Don't xmalloc return value.
6988         (build_id_verify): Similarly.  Don't xfree.
6989         (build_id_to_debug_filename): Update.
6990         (find_separate_debug_file_by_buildid): Update, don't xfree.
6991
6992 2013-02-18  Tom Tromey  <tromey@redhat.com>
6993
6994         PR gdb/15102:
6995         * dwarf2read.c (read_subrange_type): Use result of
6996         'check_typedef'.
6997
6998 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
6999
7000         * frame.c: Remove one extra white space after #include
7001         directive.
7002
7003 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
7004
7005         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
7006
7007 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
7008
7009         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
7010         and dir commands into an if block.
7011
7012 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
7013
7014         * python/py-breakpoint (struct pybp_code):  Use int instead of
7015         enum type_code.
7016
7017 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
7018             Hafiz Abid Qadeer  <abidh@codesourcery.com>
7019
7020         * NEWS: Mention new field "trace-file".
7021         * tracepoint.c (trace_status_mi): Output "trace-file" field.
7022         (tfile_open): Record the trace file's filename in the trace
7023         status.
7024         (tfile_files_info): Mention the name of the trace file.
7025         Check the "filename" field explicitely.
7026         (trace_status_command): Explicitely check "filename" field.
7027         (trace_find_command): Ditto.
7028         (trace_find_pc_command): Ditto.
7029         (trace_find_tracepoint_command): Ditto.
7030         (trace_find_line_command): Ditto.
7031         (trace_find_range_command): Ditto.
7032         (trace_find_outside_command): Ditto.
7033         * tracepoint.h (struct trace_status) <from_file>: Rename it
7034         to "filename" and make it hold the trace file's filename
7035         instead of a boolean.
7036         * remote.c (remote_get_trace_status): Initialize "filename"
7037         field with NULL instead of 0.
7038
7039 2013-02-15  Yao Qi  <yao@codesourcery.com>
7040
7041         * remote.c: Fix a typo.
7042
7043 2013-02-14  Pierre Muller  <muller@sourceware.org>
7044
7045         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
7046
7047 2013-02-14  Pedro Alves  <palves@redhat.com>
7048
7049         * utils.c (savestring): Don't #undef it.  Move function to
7050         common/common-utils.c.
7051         * common/common-utils.c: Include gdb_string.h.
7052         (savestring): Move here from utils.c.
7053         * common/common-utils.h (savestring): Declare.
7054
7055 2013-02-14  Pedro Alves  <palves@redhat.com>
7056
7057         * utils.c (savestring): Rename parameter 'size' to 'len'.
7058
7059 2013-02-14  Pedro Alves  <palves@redhat.com>
7060             Yufeng Zhang  <yufeng.zhang@arm.com>
7061
7062         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
7063         (aarch64_inferior_data, struct aarch64_inferior_data):
7064         Delete.
7065         (struct aarch64_process_info): New.
7066         (aarch64_process_list): New global.
7067         (aarch64_find_process_pid, aarch64_add_process)
7068         (aarch64_process_info_get): New functions.
7069         (aarch64_inferior_data_get): Delete.
7070         (aarch64_process_info_get): New function.
7071         (aarch64_forget_process): New function.
7072         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
7073         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
7074         aarch64_get_debug_reg_state.
7075         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
7076         instead of linux_nat_iterate_watchpoint_lwps.
7077         (aarch64_linux_new_fork): New function.
7078         (aarch64_linux_child_post_startup_inferior): Use
7079         aarch64_forget_process instead of aarch64_init_debug_reg_state.
7080         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
7081         (aarch64_linux_remove_hw_breakpoint)
7082         (aarch64_handle_aligned_watchpoint)
7083         (aarch64_handle_unaligned_watchpoint)
7084         (aarch64_linux_insert_watchpoint)
7085         (aarch64_linux_remove_watchpoint)
7086         (aarch64_linux_stopped_data_address): Adjust to pass the current
7087         process id to aarch64_debug_reg_state.
7088         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
7089         linux_nat_new_fork hook, and aarch64_forget_process as
7090         linux_nat_forget_process hook; remove the call to
7091         register_inferior_data_with_cleanup.
7092
7093 2013-02-14  Pedro Alves  <palves@redhat.com>
7094
7095         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
7096         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
7097         lval_memory.
7098
7099 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
7100             Hafiz Abid Qadeer  <abidh@codesourcery.com>
7101
7102         * tracepoint.h (validate_trace_state_variable_name): Declare.
7103         * tracepoint.c (validate_trace_state_variable_name): New.
7104         (trace_variable_command): Parse the trace state variable's name
7105         without using parse_expression.  Do several validations.
7106         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
7107         trace state variable's name with parse_expression.  Validate it.
7108
7109 2013-02-14  Yao Qi  <yao@codesourcery.com>
7110
7111         * infcmd.c (breakpoint_proceeded): Remove it.
7112
7113 2013-02-14  Yao Qi  <yao@codesourcery.com>
7114
7115         * tracepoint.c (end_actions_pseudocommand): Make it static.
7116         (while_stepping_pseudocommand): Likewise.
7117         * tracepoint.h (end_actions_pseudocommand): Remove the
7118         declaration.
7119         (while_stepping_pseudocommand): Likewise.
7120
7121 2013-02-14  Yao Qi  <yao@codesourcery.com>
7122
7123         * cli/cli-decode.c (help_cmd): Remove the declaration of
7124         "cmdlist".
7125         (help_all): Likewise.
7126
7127 2013-02-13  Pedro Alves  <palves@redhat.com>
7128
7129         * amd64-linux-nat.c (update_debug_registers_callback):
7130         Update comment.
7131         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
7132         iterate_over_lwps.
7133         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
7134         i386_debug_reg_state.
7135         (amd64_linux_new_fork): New function.
7136         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
7137         linux_nat_new_fork hook, and i386_forget_process as
7138         linux_nat_forget_process hook.
7139         * i386-linux-nat.c (update_debug_registers_callback):
7140         Update comment.
7141         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
7142         iterate_over_lwps.
7143         (i386_linux_prepare_to_resume): Pass the lwp's pid to
7144         i386_debug_reg_state.
7145         (i386_linux_new_fork): New function.
7146         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
7147         linux_nat_new_fork hook, and i386_forget_process as
7148         linux_nat_forget_process hook.
7149         * i386-nat.c (i386_init_dregs): Delete.
7150         (i386_inferior_data, struct i386_inferior_data):
7151         Delete.
7152         (struct i386_process_info): New.
7153         (i386_process_list): New global.
7154         (i386_find_process_pid, i386_add_process, i386_process_info_get):
7155         New functions.
7156         (i386_inferior_data_get): Delete.
7157         (i386_process_info_get): New function.
7158         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
7159         (i386_forget_process): New function.
7160         (i386_cleanup_dregs): Rewrite.
7161         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
7162         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
7163         (i386_stopped_data_address, i386_insert_hw_breakpoint)
7164         (i386_remove_hw_breakpoint): Adjust to pass the current process id
7165         to i386_debug_reg_state.
7166         (i386_use_watchpoints): Don't register inferior data.
7167         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
7168         adjust comment.
7169         (i386_forget_process): Declare.
7170         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
7171         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
7172         New static globals.
7173         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
7174         (add_initial_lwp): New, factored out from ...
7175         (add_lwp): ... this.  Don't check the number of lwps before
7176         calling linux_nat_new_thread.
7177         (linux_nat_iterate_watchpoint_lwps): Delete.
7178         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
7179         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
7180         forks and vforks.
7181         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
7182         initial lwp.
7183         (linux_nat_kill, linux_nat_mourn_inferior): Call
7184         linux_nat_forget_process.
7185         (linux_nat_set_new_fork, linux_nat_set_forget_process)
7186         (linux_nat_forget_process): New functions.
7187         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
7188         type.
7189         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
7190         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
7191         types.
7192         (linux_nat_set_new_fork, linux_nat_set_forget_process)
7193         (linux_nat_forget_process): New declarations.
7194
7195         * amd64fbsd-nat.c (super_mourn_inferior): New global.
7196         (amd64fbsd_mourn_inferior): New function.
7197         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
7198         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
7199
7200 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7201
7202         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
7203         Adding _().
7204
7205 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7206
7207         * aarch64-linux-nat.c (debug_reg_change_callback)
7208         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
7209         %s and phex().
7210
7211 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7212
7213         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
7214         with LONGEST.
7215
7216 2013-02-13  Pedro Alves  <palves@redhat.com>
7217             Hafiz Abid Qadeer  <abidh@codesourcery.com>
7218
7219         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
7220
7221 2013-02-12  Tom Tromey  <tromey@redhat.com>
7222
7223         PR symtab/11464:
7224         * c-exp.y (lex_one_token): Initialize other fields of yylval on
7225         NAME return.
7226         (classify_inner_name): Remove 'first_name' argument, add
7227         'context'.  Remove unused variable.
7228         (yylex): Explicitly maintain the context type.  Exit loop earlier
7229         if NAME result is seen.
7230
7231 2013-02-12  Pedro Alves  <palves@redhat.com>
7232
7233         * amd64-darwin-tdep.c: Add (C) after Copyright.
7234         * cli/cli-cmds.h: Ditto.
7235         * cli/cli-decode.c: Ditto.
7236         * cli/cli-decode.h: Ditto.
7237         * cli/cli-dump.c: Ditto.
7238         * cli/cli-dump.h: Ditto.
7239         * cli/cli-interp.c: Ditto.
7240         * cli/cli-logging.c: Ditto.
7241         * cli/cli-script.c: Ditto.
7242         * cli/cli-script.h: Ditto.
7243         * cli/cli-setshow.c: Ditto.
7244         * cli/cli-setshow.h: Ditto.
7245         * cli/cli-utils.c: Ditto.
7246         * cli/cli-utils.h: Ditto.
7247         * config/alpha/nm-osf3.h: Ditto.
7248         * config/djgpp/djconfig.sh: Ditto.
7249         * config/i386/nm-fbsd.h: Ditto.
7250         * config/i386/nm-i386gnu.h: Ditto.
7251         * config/nm-linux.h: Ditto.
7252         * config/nm-nto.h: Ditto.
7253         * config/rs6000/nm-rs6000.h: Ditto.
7254         * config/sparc/nm-sol2.h: Ditto.
7255         * darwin-nat-info.c: Ditto.
7256         * dfp.c: Ditto.
7257         * dfp.h: Ditto.
7258         * gdb-demangle.h: Ditto.
7259         * i386-darwin-nat.c: Ditto.
7260         * i386-darwin-tdep.c: Ditto.
7261         * linux-fork.h: Ditto.
7262         * m32c-tdep.c: Ditto.
7263         * microblaze-linux-tdep.c: Ditto.
7264         * microblaze-rom.c: Ditto.
7265         * microblaze-tdep.c: Ditto.
7266         * microblaze-tdep.h: Ditto.
7267         * mips-linux-tdep.h: Ditto.
7268         * ppc-ravenscar-thread.c: Ditto.
7269         * ppc-ravenscar-thread.h: Ditto.
7270         * prologue-value.c: Ditto.
7271         * prologue-value.h: Ditto.
7272         * ravenscar-thread.c: Ditto.
7273         * ravenscar-thread.h: Ditto.
7274         * sparc-ravenscar-thread.c: Ditto.
7275         * sparc-ravenscar-thread.h: Ditto.
7276         * tilegx-linux-tdep.c: Ditto.
7277         * unwind_stop_reasons.def: Ditto.
7278         * windows-nat.h: Ditto.
7279         * xtensa-linux-tdep.c: Ditto.
7280         * xtensa-xtregs.c: Ditto.
7281         * regformats/regdat.sh: Ditto.
7282         * regformats/regdef.h: Ditto.
7283
7284 2013-02-12  Pedro Alves  <palves@redhat.com>
7285
7286         * break-catch-sig.c: Update copyright years.
7287
7288 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
7289
7290         Add support for a destructor for ui_out data and use it to
7291         provide a ui_out destructor.
7292         * ui-out.h: Declare the new ui_out destructor.
7293         (ui_out_impl): Add a field for data destructor in ui_out_impl.
7294         * ui-out.c (default_data_destroy): Add a default data destructor
7295         which does nothing.
7296         (default_ui_out_impl): Set the new data_destroy field to
7297         default_data_destroy
7298         (uo_data_destroy): Local function which invokes the data
7299         destructor if present.
7300         (clear_table): Local function which clears the table data of a
7301         ui_out object.
7302         (ui_out_destroy): Public function which frees a ui_out object.
7303         (ui_out_table_end): Use the new clear_table function.
7304         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
7305         NULL.
7306         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
7307         to NULL.
7308
7309 2013-02-11  Doug Evans  <dje@google.com>
7310
7311         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
7312         (printf_decfloat): New function.  Broken out from ui_printf.
7313         Remove unnecessary code to shift the entire format string down.
7314         (printf_pointer): New function.
7315         (ui_printf): Code to print C strings, wide C strings, decfloats,
7316         and pointers moved to separate functions.
7317
7318 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7319
7320         * valops.c (value_assign): Handling bitfield offset in
7321         `lval_internalvar_component' case.
7322
7323 2013-02-08  Doug Evans  <dje@google.com>
7324
7325         * common/format.c (parse_format_string): Fix whitespace.
7326
7327 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
7328
7329         * stack.c (return_command): Work around uninitialized variable
7330         warning.
7331
7332 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
7333
7334         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
7335         number of the registers from 36 to 34.
7336
7337 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7338
7339         * NEWS: Mention new AArch64 native and target support.
7340
7341 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7342
7343         * MAINTAINERS (Write After Approval): Add myself.
7344
7345 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
7346             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7347             Nigel Stephens  <nigel.stephens@arm.com>
7348             Yufeng Zhang  <yufeng.zhang@arm.com>
7349
7350         * aarch64-linux-nat.c: New file.
7351         * config/aarch64/linux.mh: New file.
7352         * configure.host: Add AArch64.
7353         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
7354
7355 2013-02-07  Doug Evans  <dje@google.com>
7356
7357         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
7358         disassemble command.
7359
7360 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7361
7362         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
7363         set_gdbarch_fetch_tls_load_module_address.
7364
7365 2013-02-06  David S. Miller  <davem@davemloft.net>
7366
7367         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
7368         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
7369         * value.c (struct_return_convention): New function.
7370         (using_struct_return): Implement in terms of struct_return_convention.
7371         * value.h (struct_return_convention): Declare.
7372         * stack.c (return_command): Allow successful overriding of the return
7373         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
7374
7375 2013-02-06  Tom Tromey  <tromey@redhat.com>
7376
7377         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
7378         outside of TRY_CATCH.
7379
7380 2013-02-06  Yao Qi  <yao@codesourcery.com>
7381
7382         * mi/mi-interp.c: Include "tracepoint.h".
7383         (mi_tsv_modified): Declare.
7384         (mi_tsv_created, mi_tsv_deleted): Update declaration.
7385         (mi_interpreter_init): Call observer_attach_tsv_modified.
7386         (mi_tsv_modified): New.
7387         (mi_tsv_created, mi_tsv_deleted): Update.
7388         * tracepoint.c (trace_variable_command): Call
7389         observer_notify_tsv_modified if the initial value of tsv is
7390         changed.
7391         (delete_trace_state_variable): Call
7392         observer_notify_tsv_deleted earlier.
7393         (trace_variable_command): Caller update.
7394         (create_tsv_from_upload): Likewise.
7395         * observer.sh: Declare "struct trace_state_variable".
7396
7397         * NEWS: Mention the new MI notification "=tsv-modified".
7398
7399 2013-02-05  Doug Evans  <dje@google.com>
7400
7401         * completer.c (location_completer): Fix typo in comment.
7402
7403 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7404
7405         * breakpoint.c (add_location_to_breakpoint): Insert the location with
7406         ADDRESS sorted.
7407
7408 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7409
7410         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
7411         Refactor if statement to avoid trailing || operator.
7412
7413 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
7414
7415         * NEWS: Add PowerPC FreeBSD as a new native configuration.
7416
7417 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
7418
7419         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
7420         * configure.host: Add powerpc*-*-freebsd* target.
7421         * configure.tgt: Add target info for powerpc*-*-freebsd*.
7422         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
7423         * config/powerpc/fbsd.mh: New file.
7424
7425 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
7426             Denys Vlasenko  <dvlasenk@redhat.com>
7427             Pedro Alves  <palves@redhat.com>
7428
7429         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
7430         (struct elf_internal_linux_prpsinfo): Forward declare.
7431         * gdbarch.h, gdbarch.c: Regenerate.
7432         * linux-tdep.c: Include `cli/cli-utils.h'.
7433         (linux_fill_prpsinfo): New function.
7434         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
7435         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
7436         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
7437         depending on gdbarch pointer bitness.
7438         * ppc-linux-tdep.c: Include elf-bfd.h.
7439         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
7440         on 32-bit.
7441
7442 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7443             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7444             Nigel Stephens  <nigel.stephens@arm.com>
7445             Yufeng Zhang  <yufeng.zhang@arm.com>
7446
7447         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
7448
7449 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7450             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7451             Nigel Stephens  <nigel.stephens@arm.com>
7452             Yufeng Zhang  <yufeng.zhang@arm.com>
7453
7454         * aarch64-newlib-tdep.c: New file.
7455         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
7456         aarch64*-*-elf.
7457         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
7458         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
7459         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
7460         * osabi.c (gdb_osabi_names): Add "Newlib".
7461
7462 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7463             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7464             Nigel Stephens  <nigel.stephens@arm.com>
7465             Yufeng Zhang  <yufeng.zhang@arm.com>
7466
7467         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
7468         (ALLDEPFILES): Add aarch64-linux-tdep.c.
7469         * aarch64-linux-tdep.c: New file.
7470         * aarch64-linux-tdep.h: New file.
7471         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
7472         * configure.tgt: Add aarch64-none-linux-gnu.
7473
7474 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7475             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7476             Nigel Stephens  <nigel.stephens@arm.com>
7477             Yufeng Zhang  <yufeng.zhang@arm.com>
7478
7479         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
7480         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
7481         (ALLDEPFILES): Add aarch64-tdep.c.
7482         * aarch64-tdep.c: New file.
7483         * aarch64-tdep.h: New file.
7484         * configure.tgt: Add AArch64.
7485         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
7486         (aarch64-expedite): New definition.
7487         * features/aarch64-core.xml: New file.
7488         * features/aarch64-fpu.xml: New file.
7489         * features/aarch64-without-fpu.c: New file (generated).
7490         * features/aarch64-without-fpu.xml: New file.
7491         * features/aarch64.c: New file (generated).
7492         * features/aarch64.xml: New file.
7493         * regformats/aarch64-without-fpu.dat: New file (generated).
7494         * regformats/aarch64.dat: New file (generated).
7495
7496 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7497
7498         * contrib/expect-read1.c: New file.
7499         * contrib/expect-read1.sh: New file.
7500
7501 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7502
7503         * dwarf2read.c (file_file_name): New function with code from
7504         file_full_name.
7505         (file_full_name): Move most of the code to file_file_name.
7506         (macro_start_file): Rename variable full_name to file_name and use
7507         file_file_name for it.  Add comp_dir parameter to new_macro_table.
7508         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
7509         macro_source_file->filename access by macro_source_fullname call.
7510         * macroscope.c (_initialize_macroscope): Update the new_macro_table
7511         caller.
7512         * macrotab.c (struct macro_table): New field comp_dir.
7513         (macro_include): New variables link_fullname and source_fullname.
7514         Replace any macro_source_file->filename access by macro_source_fullname
7515         call.
7516         (macro_lookup_inclusion): Remove the partial filenames checking code.
7517         (check_for_redefinition): New variables source_fullname and
7518         found_key_fullname.  Replace any macro_source_file->filename access by
7519         macro_source_fullname call.
7520         (macro_undef): New variables source_fullname and key_fullname.  Replace
7521         any macro_source_file->filename access by macro_source_fullname call.
7522         (macro_lookup_definition): New variables retval and source_fullname.
7523         Replace any macro_source_file->filename access by macro_source_fullname
7524         call.
7525         (foreach_macro): New variable key_fullname.  Replace any
7526         macro_source_file->filename access by macro_source_fullname call.
7527         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
7528         macro_source_file->filename access by macro_source_fullname call.
7529         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
7530         (macro_source_fullname): New function.
7531         * macrotab.h (struct macro_source_file): Extent the filename field
7532         comment.
7533         (new_macro_table): New parameter comp_dir, add a comment for it.
7534         (macro_source_fullname): new declaration.
7535
7536 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7537
7538         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
7539         this_real_name to outer block.  Use it also for
7540         compare_filenames_for_search.
7541         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
7542         with dw2_get_real_path for file_matcher, considering also
7543         BASENAMES_MAY_DIFFER.
7544         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
7545
7546 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7547
7548         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
7549         to the file_matcher parameter.  Pass 0 to it.
7550         (dwarf2_create_include_psymtab): Copy also DIRNAME.
7551         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
7552         NULL psymtab_to_fullname result.
7553         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
7554         an expected filename instead.
7555         (expand_symtabs_matching_via_partial): Add basenames parameter to the
7556         file_matcher parameter.  Call also psymtab_to_fullname, after newly
7557         considering BASENAMES_MAY_DIFFER.
7558         * source.c (rewrite_source_path): Remove static.
7559         * source.h (rewrite_source_path): New declaration.
7560         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
7561         the expand_symtabs_matching field.  Comment it.
7562         * symtab.c (file_matches): New function comment.  Add parameter
7563         basenames, implement it.
7564         (search_symbols_file_matches): Add basenames parameter.  Update the
7565         file_matches caller.
7566         (search_symbols): Match FILES also against symtab_to_fullname.
7567         Optimize it for BASENAMES_MAY_DIFFER.
7568
7569 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7570
7571         * source.c (print_source_lines_base): Print for TUI also "fullname".
7572         * tui/tui-data.c (init_content_element): Change tui_locator_element
7573         field to full_name.
7574         * tui/tui-data.h (struct tui_locator_element): Likewise.
7575         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
7576         tui_update_locator_filename calls to tui_update_locator_fullname.
7577         Replace symtab->filename refererence by symtab_to_fullname call.
7578         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
7579         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
7580         field to full_name.  Replace symtab->filename refererence by
7581         symtab_to_fullname call.
7582         (tui_show_symtab_source): Rename parameter to fullname.  Change
7583         tui_locator_element field to full_name.
7584         * tui/tui-stack.c: Include source.h.
7585         (tui_set_locator_filename): Rename the declaration to ...
7586         (tui_set_locator_fullname): ... here.  Rename its parameter to
7587         fullname, updates its comment.
7588         (tui_set_locator_info): Rename its parameter to fullname.
7589         (tui_set_locator_filename): Rename the definition to ...
7590         (tui_set_locator_fullname): ... here.  Rename its parameter to
7591         fullname, updates its comment.  Change tui_locator_element field to
7592         full_name.
7593         (tui_set_locator_info): Rename its parameter to fullname.
7594         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
7595         (tui_update_locator_filename): Rename to ...
7596         (tui_update_locator_fullname): ... here. Rename callee to
7597         tui_set_locator_fullname.
7598         (tui_show_frame_info): Replace symtab->filename refererence by
7599         symtab_to_fullname call.
7600         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
7601         (tui_update_locator_fullname): ... here.
7602         * tui/tui-winsource.c (tui_display_main): Rename the callee to
7603         tui_update_locator_fullname.  Replace symtab->filename refererence by
7604         symtab_to_fullname call.
7605         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
7606         Rename the callee to tui_update_locator_fullname.
7607         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
7608
7609 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7610
7611         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
7612         by symtab_to_filename_for_display calls.
7613         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
7614         (clear_command): New variable sal_fullname, initialize it.  Replace
7615         compare_filenames_for_search by filename_cmp with sal_fullname.
7616         (say_where, update_static_tracepoint): Replace symtab->filename
7617         refererences by symtab_to_filename_for_display calls.
7618         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
7619         Likewise.
7620         * dwarf2read.c: Include source.h.
7621         (fixup_go_packaging): Replace symtab->filename refererences by
7622         symtab_to_filename_for_display calls.
7623         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
7624         Replace symtab->filename refererences by symtab_to_filename_for_display
7625         calls.
7626         (create_sals_line_offset, convert_linespec_to_sals): New variable
7627         fullname, initialize it, replace symtab->filename reference by the
7628         variable.
7629         * linux-fork.c: Include source.h.
7630         (info_checkpoints_command): Replace symtab->filename refererences by
7631         symtab_to_filename_for_display calls.
7632         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
7633         by symtab_to_filename_for_display calls.
7634         * mdebugread.c: Include source.h.
7635         (psymtab_to_symtab_1): Replace symtab->filename refererences by
7636         symtab_to_filename_for_display calls.
7637         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
7638         (mi_cmd_file_list_exec_source_files): Likewise.
7639         * printcmd.c: Include source.h.
7640         (build_address_symbolic): Replace symtab->filename refererences by
7641         symtab_to_filename_for_display calls.
7642         * psymtab.c (partial_map_symtabs_matching_filename)
7643         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
7644         with psymtab_to_fullname.
7645         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
7646         by symtab_to_filename_for_display calls.
7647         (stpy_get_filename): New variable filename, initialize it, use instead
7648         of symtab->filename refererences.
7649         (salpy_str): Make variable filename const char *.  Replace
7650         symtab->filename refererences by symtab_to_filename_for_display calls.
7651         * skip.c: Include source.h and filenames.h.
7652         (skip_file_command): Remove const from the symtab variable.  Replace
7653         symtab->filename refererences by symtab_to_fullname call.
7654         (function_name_is_marked_for_skip): New variables searched_for_fullname
7655         and fullname.  Use them to search also with symtab's fullname.
7656         * source.c (find_source_lines): Replace symtab->filename refererences
7657         by symtab_to_filename_for_display calls.
7658         (print_source_lines_base): New variable filename, use it instead of
7659         symtab->filename.  Replace symtab->filename refererences by
7660         symtab_to_filename_for_display calls.
7661         (line_info, forward_search_command): Replace symtab->filename
7662         refererences by symtab_to_filename_for_display calls.
7663         (reverse_search_command): Replace symtab->filename refererences by
7664         symtab_to_filename_for_display calls.  New variable filename for it.
7665         * stack.c (frame_info): Likewise.
7666         * symmisc.c: Include source.h.
7667         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
7668         (maintenance_info_symtabs): Replace symtab->filename refererences by
7669         symtab_to_filename_for_display calls.
7670         * symtab.c (iterate_over_some_symtabs): Call
7671         compare_filenames_for_search also with symtab_to_fullname.
7672         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
7673         symtab->filename refererences by symtab_to_filename_for_display calls.
7674         (find_line_symtab): Replace symtab->filename refererences by
7675         symtab_to_filename_for_display calls.
7676         (file_matches): Replace filename_cmp by compare_filenames_for_search.
7677         (print_symbol_info): Make the last parameter const char *.  New
7678         variable s_filename.  Use it in the function.
7679         (symtab_symbol_info): Make the last_filename variable const char *.
7680         Replace symtab->filename refererences by symtab_to_filename_for_display
7681         calls.
7682         (rbreak_command): New variable fullname.  Use it.  Replace
7683         symtab->filename refererence by symtab_to_filename_for_display call.
7684         * tracepoint.c (set_traceframe_context, trace_find_line_command)
7685         (print_one_static_tracepoint_marker): Replace symtab->filename
7686         refererences by symtab_to_filename_for_display calls.
7687         * tui/tui-source.c (tui_set_source_content): New variables filename and
7688         s_filename.  Replace symtab->filename refererences by this variable.
7689         Replace other symtab->filename refererences by
7690         symtab_to_filename_for_display calls.
7691
7692 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
7693             Jan Kratochvil  <jan.kratochvil@redhat.com>
7694
7695         Add a new variable that controls a way in which filenames are
7696         displayed.
7697         * NEWS (set filename-display): New entry.
7698         * source.c (filename_display_basename, filename_display_relative)
7699         (filename_display_absolute, filename_display_kind_names)
7700         (filename_display_string, show_filename_display_string)
7701         (symtab_to_filename_for_display): New.
7702         (_initialize_source): Added initialization of 'filename-display'
7703         variable.
7704         * source.h (symtab_to_filename_for_display): Added declaration.
7705         * stack.c (print_frame): Added new variable and calling of a new
7706         function and condition with this variable. Changed third argument of
7707         calling of a function.
7708
7709 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7710
7711         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
7712         Rename field reference filename to fullname.
7713         * tui/tui-data.h (struct tui_source_info): Rename field filename to
7714         fullname.  New comment for it.
7715         * tui/tui-source.c (tui_set_source_content): Rename field reference
7716         filename to fullname.  Initialize field by symtab_to_fullname now.
7717         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
7718         reference filename to fullname.  Use symtab_to_fullname during
7719         comparison.
7720
7721 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7722
7723         Code cleanup.
7724         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
7725         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
7726         filename to fullname.  Rename variable this_name to this_fullname.
7727         Lowercase FILENAME_CMP call.
7728         (dw2_find_symbol_file): New comment for the returned string.
7729         (dwarf2_gdb_index_functions): Rename the function to
7730         dw2_expand_symtabs_with_fullname.
7731         * psymtab.c (read_psymtabs_with_filename): Rename to ...
7732         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
7733         fullname.
7734         (psym_functions): Rename the function to read_psymtabs_with_fullname.
7735         * symfile.h (struct quick_symbol_functions): Rename field
7736         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
7737         parameter filename to fullname.  Document returned string meaning for
7738         find_symbol_file.
7739         * symtab.c (find_line_symtab): Rename the called function to
7740         expand_symtabs_with_fullname.
7741
7742 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7743
7744         Code cleanup.
7745         * breakpoint.c (clear_command): Remove variable is_abs, unify the
7746         call of filename_cmp with compare_filenames_for_search.
7747         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
7748         is_abs, unify the call of FILENAME_CMP with
7749         compare_filenames_for_search.  New gdb_asserts for real_path and name.
7750         Unify the call of compare_filenames_for_search with FILENAME_CMP.
7751         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
7752         * symfile.h (struct quick_symbol_functions): Extend the comment for
7753         map_symtabs_matching_filename.
7754         * symtab.c (compare_filenames_for_search): Remove the function comment
7755         relative path requirement.  Handle absolute filenames, with a comment.
7756         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
7757         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
7758         real_path and name.  Unify the call of compare_filenames_for_search
7759         with FILENAME_CMP.
7760         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
7761
7762 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7763
7764         Code cleanup.
7765         * breakpoint.c (print_breakpoint_location): Replace bp_location field
7766         source_file references by symtab field references.  Remove variables
7767         sal and fullname.
7768         (momentary_breakpoint_from_master, add_location_to_breakpoint):
7769         (clear_command, say_where): Replace bp_location field source_file
7770         references by symtab field references.
7771         (bp_location_dtor): Remove the source_file reference.
7772         (update_static_tracepoint): Replace bp_location field source_file
7773         references by symtab field references.
7774         (breakpoint_free_objfile): New function.
7775         * breakpoint.h (struct bp_location): Extend the comment for line_number.
7776         Replace the field source_file by field symtab, extend its comment.
7777         (breakpoint_free_objfile): New declaration.
7778         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
7779         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
7780         field source_file references by symtab field references.
7781
7782 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7783
7784         Replace xfullpath calls by gdb_realpath calls.
7785         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
7786         function comment.
7787         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
7788         Remove it from the iterate_over_some_symtabs call.
7789         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
7790         Remove it from the dw2_map_expand_apply calls, remove a block handling
7791         it.
7792         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
7793         Remove it from the iterate_over_some_symtabs call.
7794         (partial_map_symtabs_matching_filename): Remove parameter full_path.
7795         Remove it from the partial_map_expand_apply calls, remove a block
7796         handling it.  Drop gdb_realpath call and cleanups from the real_path
7797         handling.
7798         * source.c (openp): Drop the comment part about xfullpath.  Replace
7799         xfullpath calls by gdb_realpath calls.
7800         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
7801         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
7802         from method map_symtabs_matching_filename and its comment.
7803         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
7804         gdb_realpath call.
7805         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
7806         remove it also from the function comment, remove a block handling it.
7807         Drop gdb_realpath call and cleanups from the real_path handling.
7808         (iterate_over_symtabs): Drop variable full_path and its use.
7809         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
7810         * utils.c (xfullpath): Remove.
7811         * utils.h (xfullpath): Remove.
7812
7813 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
7814
7815         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
7816         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
7817         (ALLDEPFILES): Add ppc64-tdep.c.
7818         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
7819         ppc64-tdep.o to gdb_target_obs.
7820         * ppc64-tdep.h: New file.
7821         * ppc64-tdep.c: New file.
7822         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
7823         ppc-linux-tdep.c to here.
7824         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
7825         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
7826         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
7827         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
7828         from ppc-linux-tdep.c to here.
7829         (ppc64_convert_from_func_ptr_addr): Rename from
7830         ppc64_linux_convert_from_func_ptr_addr to
7831         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
7832         here.
7833         * rs6000-tdep.c:
7834         (read_insn): Move from ppc-linux-tdep.c to here.
7835         (insns_match_pattern, insn_d_field, insn_ds_field): Move
7836         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
7837         * ppc-linux-tdep.c: Include ppc64-tdep.h.
7838         Removed above functions.
7839         (ppc_linux_init_abi): Adjust.
7840
7841 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
7842
7843         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
7844
7845 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
7846
7847         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
7848
7849 2013-02-01  Pedro Alves  <palves@redhat.com>
7850
7851         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
7852         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
7853
7854 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
7855
7856         * elfread.c (elf_symfile_read): Limit separate debug info additions to
7857         files with no separate debug info.
7858         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
7859         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
7860         only for files with no separate debug info.
7861
7862 2013-01-31  Tom Tromey  <tromey@redhat.com>
7863
7864         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
7865         change type.
7866         (struct jit_program_space_data): Rename from jit_inferior_data.
7867         Update comments.
7868         (get_jit_program_space_data): Rename from get_jit_inferior_data.
7869         Change return type.  Attach data to program space.
7870         (jit_program_space_data_cleanup): Rename from
7871         jit_inferior_data_cleanup; change argument type.
7872         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
7873         change type.
7874         (jit_register_code): Update.
7875         (jit_update_inferior_cache): Remove.
7876         (jit_breakpoint_deleted): Get jit data from the location's program
7877         space.
7878         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
7879         'ps_data', change type.
7880         (jit_inferior_init, jit_breakpoint_re_set_internal)
7881         (jit_event_handler): Update.
7882         (free_objfile_data): Get data from objfile's program space.
7883         (_initialize_jit): Update.
7884
7885 2013-01-31  Tom Tromey  <tromey@redhat.com>
7886
7887         PR gdb/13987:
7888         * jit.c (struct jit_inferior_data) <cached_code_address,
7889         jit_breakpoint>: New fields.
7890         (jit_breakpoint_re_set_internal): Fix logging.  Only create
7891         breakpoint if cached address has changed.
7892         (jit_update_inferior_cache, jit_breakpoint_deleted): New
7893         functions.
7894         (_initialize_jit): Register breakpoint deleted observer.
7895
7896 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7897
7898         * infrun.c (handle_syscall_event): Remove unused gdbarch.
7899         (save_infcall_suspend_state): Ifdef out unused inf.
7900         (restore_infcall_suspend_state): Ifdef out unused inf.
7901         * jit.c (jit_register_code): Remove unused i, b, inf_data.
7902         (jit_frame_sniffer): Remove unused inf_data.
7903
7904 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7905
7906         * c-exp.y (classify_inner_name): Remove unused type.
7907         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
7908         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
7909         need_escape.
7910         (c_get_string): Remove unused kind.
7911         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
7912
7913 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7914
7915         * charset.c (intermediate_encoding): Remove unused i.
7916         * completer.c (signal_completer): Remove unused i.
7917         * continuations.c (discard_my_continuations_1): Remove unused
7918         continuation_ptr.
7919         * corelow.c (core_close): Remove unuseD name.
7920         (get_core_siginfo): Remove unused pid.
7921         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
7922         i, cps.
7923         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
7924         (loclist_describe_location): Remove unused first.
7925         * event-top.c (command_line_handler): Remove unused got_eof.
7926         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
7927         (resize_section_table): Remove unused old_value.
7928         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
7929         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
7930         * i386-tdep.c (i386_process_record): Remove unused rex.
7931         * infcmd.c (get_return_value): Remove unused uiout.
7932         * jv-lang.c (type_from_class): Remove unused is_array.
7933         * jv-valprint.c (java_val_print): Remove unused i.
7934         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
7935         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
7936         * m2-typeprint.c (m2_print_type): Remove unused code.
7937         * macroexp.c (get_character_constant): Remove unused body_start.
7938         (macro_stringify): Remove unused result.
7939         * objc-lang.c (find_methods): Remove unused gdbarch.
7940         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
7941         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
7942         * stack.c (print_frame_args): Remove unused summary.
7943         * thread.c (thread_apply_command): Remove unused p.
7944         * valarith.c (value_x_unop): Remove unused mangle_ptr.
7945         * valops.c (search_struct_method): Remove unused skip.
7946         * valprint.c (generic_val_print): Remove unused byte_order.
7947         * varobj.c (varobj_update): Remove unused changed.
7948         * cli/cli-cmds.c (complete_command): Remove unused next_item.
7949         (alias_command): Remove unused c.
7950         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
7951         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
7952         format.
7953         (mi_cmd_data_write_memory): Remove unused word_format.
7954         (mi_cmd_data_write_memory_bytes): Remove unused r.
7955         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
7956         p_start, p_end.
7957         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
7958         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
7959         line_width.
7960
7961 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7962
7963         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
7964         * symtab.c (iterate_over_symtabs): Remove unused s.
7965         (find_pc_sect_symtab): Remove unused pspAce.
7966         (find_pc_sect_line): Remove unused alt_symtab.
7967         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
7968         (completion_list_add_name): Remove unused newsize.
7969
7970 2013-01-31  Tom Tromey  <tromey@redhat.com>
7971
7972         PR c++/14998:
7973         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
7974         TYPE_CODE_FUNC.
7975
7976 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7977
7978         * target.c (target_read_string): Remove unused origlen.
7979
7980 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7981
7982         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
7983         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
7984         * ax-general.c (ax_print): Remove unused is_float.
7985         * blockframe.c (block_innermost_frame): Remove unused start, end.
7986         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
7987
7988 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7989
7990         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
7991         (svr4_read_so_list): Remove unused lmo.
7992         * solib-target.c (solib_target_relocate_section_addresses): Remove
7993         unused flags.
7994
7995 2013-01-30  Tom Tromey  <tromey@redhat.com>
7996
7997         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
7998
7999 2013-01-30  Tom Tromey  <tromey@redhat.com>
8000
8001         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
8002         * utils.c (gnu_debuglink_crc32): Remove.
8003         * utils.h (gnu_debuglink_crc32): Don't declare.
8004
8005 2013-01-30  Tom Tromey  <tromey@redhat.com>
8006
8007         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
8008         (read_structure_type, read_enumeration_type): Remove cast.
8009
8010 2013-01-30  Tom Tromey  <tromey@redhat.com>
8011
8012         * dwarf2read.c (read_namespace_type): Remove cast.
8013         (read_typedef): Likewise.
8014
8015 2013-01-29  Tom Tromey  <tromey@redhat.com>
8016
8017         * dwarf2read.c (free_dwo_file): Remove assert.
8018
8019 2013-01-29  Tom Tromey  <tromey@redhat.com>
8020
8021         * value.c (deprecated_set_value_modifiable): Remove.
8022         * value.h (deprecated_set_value_modifiable): Remove.
8023
8024 2013-01-28  Doug Evans  <dje@google.com>
8025
8026         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
8027         to addresses from dwo files.
8028
8029 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
8030
8031         * valops.c (find_overload_match): Remove unused argument 'lax'.
8032         * value.h: Remove unused argument 'lax' from the declaration of
8033         find_overload_match.
8034         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
8035         to find_overload_match.
8036         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
8037         argument to find_overload_match.
8038
8039 2013-01-25  Tom Tromey  <tromey@redhat.com>
8040
8041         * dwarf2read.c (processing_has_namespace_info): Remove.
8042         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
8043         (process_die, read_func_scope, dwarf2_start_symtab)
8044         (new_symbol_full): Update.
8045
8046 2013-01-25  Tom Tromey  <tromey@redhat.com>
8047
8048         * cp-namespace.c (cp_set_block_scope): Remove.
8049         * cp-support.h (cp_set_block_scope): Remove.
8050         * dbxread.c: Include block.h.
8051         (cp_set_block_scope): New function.
8052         (process_one_symbol): Update.
8053         * dwarf2read.c (read_func_scope): Use block_set_scope.
8054
8055 2013-01-25  Pedro Alves  <palves@redhat.com>
8056
8057         * remote.c (add_current_inferior_and_thread): Tweak comment.
8058
8059 2013-01-25  Tom Tromey  <tromey@redhat.com>
8060
8061         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
8062         (cp_add_using_directive): Add 'copy_names' argument.
8063         * cp-support.h (cp_add_using_directive): Update.
8064         (struct using_direct) <import_src, import_dest, alias,
8065         declaration>: Now const.
8066         * dwarf2read.c (read_import_statement): Use obconcat.
8067         Don't copy names passed to cp_add_using_directive.
8068
8069 2013-01-25  Tom Tromey  <tromey@redhat.com>
8070
8071         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
8072
8073 2013-01-25  Pedro Alves  <palves@redhat.com>
8074
8075         * remote.c (stop_reply_extract_thread): New.
8076         (add_current_inferior_and_thread): New parameter 'wait_status'.
8077         Handle it.
8078         (remote_start_remote): Pass wait status to
8079         add_current_inferior_and_thread.
8080         (extended_remote_run): Update comment.
8081         (extended_remote_create_inferior_1): Pass wait status to
8082         add_current_inferior_and_thread.
8083
8084 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
8085             Ulrich Weigand  <uweigand@de.ibm.com>
8086
8087         * valarith.c (value_vector_widen): New function for replicating a
8088         scalar into a vector.
8089         (value_binop): Use value_vector_widen to widen scalar to vector
8090         rather than casting, this better matches gcc C behaviour.
8091         * valops.c (value_casst): Update logic for casting between vector
8092         types, and for casting from scalar to vector, try to match gcc C
8093         behaviour.
8094         * value.h (value_vector_widen): Declare.
8095         * opencl-lang.c (opencl_value_cast): New opencl specific casting
8096         function, handle special case for casting scalar to vector.
8097         (opencl_relop): Use opencl_value_cast.
8098         (evaluate_subexp_opencl): Use opencl_value_cast instead of
8099         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
8100         in order to use opencl_value_cast.
8101
8102 2013-01-25  Yao Qi  <yao@codesourcery.com>
8103
8104         * event-loop.c: Include "queue.h".
8105         (gdb_event_p): New typedef.
8106         (DECLARE_QUEUE_P): Use.
8107         (DEFINE_QUEUE_P): Use.
8108         (async_queue_event): Remove.
8109         (gdb_event_xfree): New.
8110         (initialize_event_loop): New.
8111         (process_event): Use QUEUE macros.
8112         (event_queue): Remove.
8113         (gdb_wait_for_event): Caller update.
8114         (check_async_event_handlers): Likewise.
8115         (poll_timers): Likewise.
8116         * event-loop.h (initialize_event_loop): Declare.
8117         * event-loop.c (gdb_event_xfree): New.
8118         * top.c (gdb_init): Call initialize_event_loop.
8119
8120 2013-01-25  Yao Qi  <yao@codesourcery.com>
8121
8122         * event-loop.c (async_queue_event): Remove one parameter
8123         'position'.  Remove code handling 'position' == TAIL.
8124         (gdb_wait_for_event): Caller update.
8125         (check_async_event_handlers): Caller update.
8126         (poll_timers): Caller update.
8127         * event-loop.h (enum queue_position): Remove.
8128
8129 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
8130
8131         * MAINTAINERS: Update my email.
8132
8133 2013-01-25  Yao Qi  <yao@codesourcery.com>
8134
8135         * main.c (print_gdb_help): Remove "--epoch" from the help
8136         message.
8137
8138 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
8139
8140         * symtab.c (skip_prologue_using_sal): Consider a file
8141         change the same as an increased line number
8142
8143 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
8144
8145         * MAINTAINERS (Write After Approval): Add myself to the list.
8146
8147 2013-01-24  Tom Tromey  <tromey@redhat.com>
8148
8149         * ada-lang.h (ada_decode_symbol): Make return type const.
8150         * ada-lang.c (ada_decode_symbol): Likewise.
8151
8152 2013-01-23  Doug Evans  <dje@google.com>
8153
8154         * linespec.c (find_linespec_symbols): Make static.
8155
8156 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
8157
8158         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
8159         type on float conversion for complex type.
8160
8161 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
8162
8163         Add a new class gdb.Architecture which exposes GDB's
8164         internal representation of architecture via GDB Python API.
8165         * Makefile.in: Add entries corresponding to the new file
8166         python/py-arch.c.
8167         * NEWS (Python Scripting): Add entries for the new class
8168         gdb.Architecture and the new method gdb.Frame.architecture.
8169         * python/py-arch.c: Implement gdb.Architecture class.
8170         * python/py-frame.c (frapy_arch): Implement the method
8171         gdb.Frame.architecture().
8172         (frame_object_methods): Add 'architecture' to the method table.
8173         * python/python-internal.h: Add declarations of new utility
8174         functions.
8175         * python/python.c (_initialize_python): Initialize
8176         gdb.Architecture class.
8177
8178 2013-01-23  Doug Evans  <dje@google.com>
8179
8180         Work around binutils/15021.
8181         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
8182         type_unit_group out of union s.  All uses updated.
8183         (read_index_from_section): Watch for index version 8.
8184         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
8185         an imported symtab.
8186         (write_psymtabs_to_index): Increment version number to 8.
8187
8188 2013-01-22  Pedro Alves  <palves@redhat.com>
8189
8190         * annotate.c (breakpoint_changed): Skip if breakpoint is not
8191         user-visible.
8192
8193 2013-01-22  Pedro Alves  <palves@redhat.com>
8194
8195         * annotate.c (annotate_breakpoints_changed): Rename to ...
8196         (annotate_breakpoints_invalid): ... this.  Make static.
8197         (breakpoint_changed): Adjust.
8198         (_initialize_annotate): Always install the observers.  Install a
8199         "breakpoint_created" observer.
8200         * annotate.h (annotate_breakpoints_changed): Delete declaration.
8201         * breakpoint.c (set_breakpoint_condition)
8202         (breakpoint_set_commands, do_map_commands_command)
8203         (init_raw_breakpoint, clear_command, set_ignore_count)
8204         (enable_breakpoint_disp): No longer call
8205         annotate_breakpoints_changed.
8206
8207 2013-01-22  Pedro Alves  <palves@redhat.com>
8208
8209         * annotate.c: Include "inferior.h".
8210         (frames_invalid_emitted)
8211         (breakpoints_invalid_emitted): New globals.
8212         (async_background_execution_p): New function.
8213         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
8214         emitting the annotation if it has already been emitted.
8215         (annotate_display_prompt): New function.
8216         * annotate.h (annotate_display_prompt): New declaration.
8217         * event-top.c: Include annotate.h.
8218         (display_gdb_prompt): Call annotate_display_prompt.
8219
8220 2013-01-22  Pedro Alves  <palves@redhat.com>
8221
8222         * annotate.c (ignore_count_changed): Delete.
8223         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
8224         (annotate_ignore_count_change): Delete.
8225         (annotate_stopped): Don't emit a delayed breakpoints-changed
8226         annotation.
8227         * annotate.h (annotate_ignore_count_change): Delete.
8228         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
8229         annotate_ignore_count_change.
8230
8231 2013-01-22  Tom Tromey  <tromey@redhat.com>
8232
8233         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
8234         require_rvalue for a register location.
8235
8236 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
8237
8238         * breakpoint.c (print_one_breakpoint_location): Add MI
8239         field 'thread-groups' when printing a breakpoint.
8240         (output_thread_groups): New function.
8241
8242 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
8243
8244         * python/lib/gdb/commands/explore.py
8245         (CompoundExplorer.explore_expr): Correct the name of a method
8246         being invoked.
8247         (ExploreTypeCommand.invoke): Add a missing 'return'.
8248
8249 2013-01-21  Tom Tromey  <tromey@redhat.com>
8250
8251         * gdb_obstack.h (obconcat): Move declaration here, from...
8252         * symfile.h (obconcat): ... here.
8253         * gdb_obstack.c: New file.
8254         (obconcat): Move from...
8255         * symfile.c (obconcat): ... here.
8256         * Makefile.in (SFILES): Add gdb_obstack.c.
8257         (COMMON_OBS): Add gdb_obstack.o.
8258
8259 2013-01-21  Tom Tromey  <tromey@redhat.com>
8260
8261         * symfile.h (obsavestring): Don't declare.
8262         * symfile.c (obsavestring): Remove.
8263         * ada-exp.y: Use obstack_copy0, not obsavestring.
8264         * ada-lang.c: Use obstack_copy0, not obsavestring.
8265         * coffread.c: Use obstack_copy0, not obsavestring.
8266         * cp-namespace.c: Use obstack_copy0, not obsavestring.
8267         * dbxread.c: Use obstack_copy0, not obsavestring.
8268         * dwarf2read.c: Use obstack_copy0, not obsavestring.
8269         * jit.c: Use obstack_copy0, not obsavestring.
8270         * mdebugread.c: Use obstack_copy0, not obsavestring.
8271         * psymtab.c: Use obstack_copy0, not obsavestring.
8272         * stabsread.c: Use obstack_copy0, not obsavestring.
8273         * xcoffread.c: Use obstack_copy0, not obsavestring.
8274
8275 2013-01-21  Tom Tromey  <tromey@redhat.com>
8276
8277         * dwarf2read.c (fixup_go_packaging): Save package name
8278         on objfile obstack.
8279         * gdbtypes.c (init_type): Don't copy name.
8280
8281 2013-01-21  Tom Tromey  <tromey@redhat.com>
8282
8283         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
8284         const.
8285         (struct attribute) <u.str>: Now const.
8286         (struct fnfieldlist) <name>: Now const.
8287         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
8288         (partial_die_parent_scope): Make return type const.
8289         (partial_die_full_name, add_partial_symbol): Update.
8290         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
8291         'name' const.
8292         (find_file_and_directory): Make 'name' and 'comp_dir' const.
8293         (read_file_scope, read_func_scope, dwarf2_add_field)
8294         (dwarf2_add_member_fn, read_structure_type)
8295         (process_enumeration_scope, read_array_type, read_module_type)
8296         (read_base_type, read_subrange_type): Update.
8297         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
8298         (new_symbol_full, guess_full_die_structure_name): Update.
8299         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
8300         (dwarf2_name): Return const type.
8301         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
8302         const.
8303
8304 2013-01-21  Tom Tromey  <tromey@redhat.com>
8305
8306         * gdbtypes.c (init_type): Make 'name' const.
8307         * gdbtypes.h (init_type): Update.
8308
8309 2013-01-21  Tom Tromey  <tromey@redhat.com>
8310
8311         * buildsym.c (patch_subfile_names): Use set_last_source_file.
8312         (start_symtab): Make 'name' and 'dirname' const.  Use
8313         set_last_source_file.
8314         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
8315         (last_source_file): Define.  Now static.
8316         (set_last_source_file, get_last_source_file): New functions.
8317         * buildsym.h (last_source_file): Don't declare.
8318         (start_symtab): Update.
8319         (set_last_source_file, get_last_source_file): Declare.
8320         * coffread.c (complete_symtab): Use set_last_source_file.
8321         (coff_end_symtab): Likewise.
8322         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
8323         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
8324         set_last_source_file.
8325         (process_one_symbol): Use get_last_source_file.
8326         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
8327         (psymtab_to_symtab_1): Use get_last_source_file.
8328         * xcoffread.c (process_linenos): Use get_last_source_file.
8329         (complete_symtab): Use set_last_source_file.
8330         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
8331         (scan_xcoff_symtab): Use set_last_source_file.
8332
8333 2013-01-21  Tom Tromey  <tromey@redhat.com>
8334
8335         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
8336         (symbol_set_names): Remove casts.  Handle field const-ness.
8337
8338 2013-01-21  Tom Tromey  <tromey@redhat.com>
8339
8340         * dwarf2read.c (new_symbol_full): Remove cast.
8341         * symtab.c (symbol_set_demangled_name): Make 'name' const.
8342         * symtab.h (symbol_set_demangled_name): Update.
8343
8344 2013-01-21  Tom Tromey  <tromey@redhat.com>
8345
8346         * main.c (captured_main): Call bfd_init.
8347
8348 2013-01-21  Tom Tromey  <tromey@redhat.com>
8349
8350         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
8351         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
8352         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
8353         * NEWS: Update.
8354
8355 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
8356
8357         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
8358
8359 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
8360
8361         Fix gdb.fortran/common-block.exp crash in PIE mode.
8362         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
8363         LOC_COMMON_BLOCK.
8364         * f-valprint.c (info_common_command_for_block): Expect
8365         LOC_COMMON_BLOCK in gdb_assert.
8366         * symtab.h (struct general_symbol_info): Update comment for the
8367         common_block member.
8368         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
8369         (enum address_class): New member LOC_COMMON_BLOCK.
8370
8371 2013-01-18  David Blaikie  <dblaikie@gmail.com>
8372
8373         * MAINTAINERS (Write After Approval): Add "David Blaikie".
8374
8375 2013-01-18  Tom Tromey  <tromey@redhat.com>
8376
8377         PR c++/14999:
8378         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
8379         Call require_rvalue.
8380
8381 2013-01-18  Yao Qi  <yao@codesourcery.com>
8382
8383         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
8384         (dbx_read_symtab): New declaration.
8385         (dbx_psymtab_to_symtab): Delete.
8386         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
8387         Rename parameter PST to SELF.  Exchanged two parameters.
8388         (start_psymtab): Caller update.
8389         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
8390         (dwarf2_read_symtab): New declaration.
8391         (dwarf2_psymtab_to_symtab): Delete.
8392         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
8393         Rename parameter PST to SELF.  Exchanged two parameters.
8394         (create_partial_symtab): Caller update.
8395         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
8396         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
8397         Rename parameter PST to SELF.  Exchanged two parameters.
8398         (parse_partial_symbols, new_psymtab): Caller update.
8399         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
8400         two parameters.
8401         * psymtab.c (psymtab_to_symtab): Caller update.
8402         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
8403         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
8404         Rename parameter PST to SELF.  Exchanged two parameters.
8405         (xcoff_start_psymtab): Caller update.
8406
8407 2013-01-18  Yao Qi  <yao@codesourcery.com>
8408
8409         * infrun.c (proceed): Rename local variable 'oneproc' to
8410         'force_step'.
8411
8412 2013-01-17  Doug Evans  <dje@google.com>
8413
8414         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
8415         (dw2_build_type_unit_groups): Delete.  All uses updated.
8416
8417         * symtab.h (struct symbol_search): Add comment.
8418
8419 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8420
8421         * symtab.c (compare_filenames_for_search): New comment for
8422         HAS_DRIVE_SPEC.
8423
8424 2013-01-17  Tom Tromey  <tromey@redhat.com>
8425
8426         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
8427
8428 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8429
8430         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
8431         initialize it by existing make_cleanup.  Call new do_cleanups.
8432
8433 2013-01-17  Tom Tromey  <tromey@redhat.com>
8434
8435         * cp-abi.c (cp_abi_completer): New function.
8436         (_initialize_cp_abi): Set completer for "set cp-abi".
8437
8438 2013-01-17  Tom Tromey  <tromey@redhat.com>
8439
8440         * mem-break.c: Remove obsolete comment.
8441         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
8442
8443 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
8444
8445         * jit.c (jit_reader_load_command): Interpret the jit reader name
8446         as an absolute path if it begins with a forward slash.
8447
8448 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
8449
8450         PR gdb/14550
8451
8452         * jit.c (finalize_symtab): Ensure that only the global block has a
8453         NULL superblock.
8454
8455 2013-01-17  Pedro Alves  <palves@redhat.com>
8456
8457         * acinclude.m4: Include ../config/plugins.m4,
8458         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
8459         * Makefile.in (aclocal_m4_deps): Update.
8460         * aclocal.m4: Renegerate.
8461
8462 2013-01-16  Doug Evans  <dje@google.com>
8463
8464         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
8465
8466 2013-01-16  Pedro Alves  <palves@redhat.com>
8467             Tom Tromey  <tromey@redhat.com>
8468
8469         PR cli/7221:
8470         * NEWS: Add "catch signal".
8471         * breakpoint.c (base_breakpoint_ops): No longer static.
8472         (bpstat_explains_signal): New function.
8473         (init_catchpoint): No longer static.
8474         (base_breakpoint_explains_signal): New function.
8475         (base_breakpoint_ops): Initialize new field.
8476         * breakpoint.h (enum bpstat_signal_value): New.
8477         (struct breakpoint_ops) <explains_signal>: New field.
8478         (bpstat_explains_signal): Remove macro, declare as function.
8479         (base_breakpoint_ops, init_catchpoint): Declare.
8480         * break-catch-sig.c: New file.
8481         * inferior.h (signal_catch_update): Declare.
8482         * infrun.c (signal_catch): New global.
8483         (handle_syscall_event): Update for change to
8484         bpstat_explains_signal.
8485         (handle_inferior_event): Likewise.  Always handle random signals
8486         via bpstats.
8487         (signal_cache_update): Check signal_catch.
8488         (signal_catch_update): New function.
8489         (_initialize_infrun): Initialize signal_catch.
8490         * Makefile.in (SFILES): Add break-catch-sig.c.
8491         (COMMON_OBS): Add break-catch-sig.o.
8492
8493 2013-01-16  Tom Tromey  <tromey@redhat.com>
8494
8495         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
8496         (print_one_catch_solib, print_one_catch_syscall)
8497         (print_one_catch_exec, print_one_exception_catchpoint): Emit
8498         "catch-type".
8499
8500 2013-01-16  Yao Qi  <yao@codesourcery.com>
8501
8502         * printcmd.c (current_display_number): Make it static.
8503
8504 2013-01-16  Yao Qi  <yao@codesourcery.com>
8505
8506         * infcmd.c (step_once): Don't check '!single_inst' as it was
8507         checked before.
8508
8509 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
8510
8511         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
8512
8513 2013-01-14  Tom Tromey  <tromey@redhat.com>
8514
8515         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
8516         set command.
8517         * command.h (add_setshow_string_noescape_cmd): Update.
8518         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
8519         (complete_set_gnutarget): New function.
8520         (_initialize_core): Set the "set gnutarget" completer.
8521
8522 2013-01-14  Tom Tromey  <tromey@redhat.com>
8523
8524         PR symtab/14442:
8525         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
8526         (c_type_print_modifier): Likewise.
8527         * dwarf2read.c (read_tag_restrict_type): New function.
8528         (read_type_die_1): Handle DW_TAG_restrict_type.
8529         * gdbtypes.c (make_restrict_type): New function.
8530         (recursive_dump_type): Handle TYPE_RESTRICT.
8531         * gdbtypes.h (enum type_flag_values): Renumber.
8532         (enum type_instance_flag_value): Add
8533         TYPE_INSTANCE_FLAG_RESTRICT.
8534         (TYPE_RESTRICT): New macro.
8535         (make_restrict_type): Declare.
8536
8537 2013-01-14  Tom Tromey  <tromey@redhat.com>
8538
8539         PR symtab/14931:
8540         * psymtab.c (struct psymtab_state): New.
8541         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
8542         functions.
8543         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
8544         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
8545
8546 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
8547             Pedro Alves  <palves@redhat.com>
8548
8549         PR remote/14786
8550
8551         * remote.c (remote_threads_info): Make a copy of the reply from
8552         qfThreadInfo and use that instead of rs->buf.
8553
8554 2013-01-14  Yao Qi  <yao@codesourcery.com>
8555
8556         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
8557         (dbx_psymtab_to_symtab): Likewise.
8558         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
8559         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
8560         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
8561
8562 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8563
8564         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
8565         make_cleanup_restore_current_language.  Call set_language.  Move
8566         OLD_CHAIN and INNER_CHAIN cleanups.
8567         * utils.c (do_restore_current_language)
8568         (make_cleanup_restore_current_language): New functions.
8569         * utils.h (make_cleanup_restore_current_language): New declaration.
8570
8571 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8572
8573         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
8574         non-existing files.
8575
8576         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
8577         non-existing files if FILENAME is already absolute.
8578
8579 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8580
8581         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
8582         fputs_filtered.  Append trailing newline.
8583
8584 2013-01-11  Yao Qi  <yao@codesourcery.com>
8585             Stan Shebs  <stan@codesourcery.com>
8586
8587         * psymtab.c (init_psymbol_list): Clarify the comment.
8588
8589 2013-01-11  Yao Qi  <yao@codesourcery.com>
8590
8591         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
8592         (update_dprintf_command_list): Assert that 'printf_line' is
8593         non-null.  Remove condition check.
8594
8595 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8596
8597         Code cleanup.
8598         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
8599         type const char *.
8600         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
8601         const char *.
8602         * tui/tui-source.h (tui_source_is_displayed): Likewise.
8603
8604 2013-01-09  Anthony Green  <green@moxielogic.com>
8605
8606         * cp-abi.c (cplus_print_vtable): Don't return value from void
8607         function.
8608         * ada-lang.c (re_set_catch_assert): Ditto.
8609
8610 2013-01-09  Doug Evans  <dje@google.com>
8611
8612         * symfile.h (quick_symbol_functions): Delete member
8613         pre_expand_symtabs_matching.  All uses removed.
8614         * dwarf2read.c (dw2_lookup_symbol): Implement.
8615         (dw2_do_expand_symtabs_matching): Delete.
8616         (dw2_pre_expand_symtabs_matching): Delete.
8617         (struct dw2_symtab_iterator): New type.
8618         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
8619         (dw2_expand_symtabs_for_function): Rewrite.
8620         (dwarf2_gdb_index_functions): Update.
8621         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
8622         (psym_functions): Update.
8623
8624 2013-01-09  Tom Tromey  <tromey@redhat.com>
8625
8626         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
8627         * configure: Rebuild.
8628         * configure.ac: Add somread.o to the build if BFD has SOM
8629         support.
8630         * somread.c: Include som/aout.h, not syms.h.
8631         (som_symtab_read): Use som_external_symbol_dictionary_record.
8632         Unpack records manually.
8633         (_initialize_somread): Declare.
8634
8635 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
8636
8637         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
8638         Cast return_address to 64bits.
8639
8640 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
8641
8642         * printcmd.c: Remove define of function output_command.
8643         * tracepoint.c: Remove extern of function output_command.
8644         * valprint.h: (output_command): New extern.
8645
8646 2013-01-07  Tom Tromey  <tromey@redhat.com>
8647
8648         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
8649         Remove.
8650         (objc_language_defn): Use c_printchar, c_printstr,
8651         c_emit_char.
8652
8653 2013-01-07  Tom Tromey  <tromey@redhat.com>
8654
8655         PR cli/7719:
8656         * NEWS: Update.
8657         * ada-valprint.c (printstr, print_field_values): Remove
8658         "inspect_it" code.
8659         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
8660         code.
8661         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
8662         code.
8663         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
8664         * main.c (captured_main): Remove "epoch" argument.
8665         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
8666         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
8667         * p-valprint.c (pascal_object_print_value_fields): Remove
8668         "inspect_it" code.
8669         * printcmd.c (print_command_1): Remove 'inspect' argument.
8670         (print_command, call_command): Update.
8671         (inspect_command): Remove.
8672         (_initialize_printcmd): Make "inspect" an alias for "print".
8673         * top.c (epoch_interface): Remove.
8674         * top.h (epoch_interface): Remove.
8675         * valprint.c (user_print_options): Update.
8676         (print_converted_chars_to_obstack): Remove "inspect_it" code.
8677         * valprint.h (struct value_print_options) <inspect_it>: Remove
8678         field.
8679
8680 2013-01-04  Tom Tromey  <tromey@redhat.com>
8681
8682         * valprint.h (read_string): Add 'extern'.
8683
8684 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
8685
8686         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
8687         used to decide whether to define darwin_read_dyld_info or not.
8688
8689 2013-01-03  Pierre Muller  <muller@sourceware.org>
8690
8691         * main.c (relocate_gdb_directory): Avoid calling stat function
8692         if DIR is empty.
8693
8694 2013-01-03  Yao Qi  <yao@codesourcery.com>
8695
8696         * psymtab.c (fixup_psymbol_section): Update declaration.
8697         (fixup_psymbol_section): Remove code returning value.
8698
8699 2013-01-03  Yao Qi  <yao@codesourcery.com>
8700
8701         * symtab.h: Remove some out of date comments.
8702          (enum exception_event_kind): Move it ...
8703         * breakpoint.c: ... here.
8704
8705 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
8706
8707         PR gdb/14405
8708         * darwin-nat.c (darwin_read_dyld_info): Only build if
8709         TASK_DYLD_INFO_COUNT is defined.
8710         (darwin_xfer_partial): Call darwin_read_dyld_info only if
8711         TASK_DYLD_INFO_COUNT is defined.
8712
8713 2013-01-02  Tom Tromey  <tromey@redhat.com>
8714
8715         * symfile.h (struct ecoff_debug_hack): Remove.
8716         * objfiles.c: Don't include mdebugread.h.
8717
8718 2013-01-02  Tom Tromey  <tromey@redhat.com>
8719
8720         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
8721         * configure.ac: Check for Mach-O support in BFD.  Update
8722         CONFIG_OBS.
8723         * configure: Rebuild.
8724
8725 2013-01-02  Tom Tromey  <tromey@redhat.com>
8726
8727         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
8728         * configure.ac: Use GDB_AC_CHECK_BFD.
8729         * configure: Rebuild.
8730
8731 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
8732
8733         * MAINTAINERS: Update my email.
8734
8735 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
8736
8737         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
8738
8739 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
8740
8741         * rs6000-nat.c (bss_data_overlap): New function.
8742         (vmap_symtab): Use it to adjust the .bss section's offset.
8743
8744 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
8745
8746         Update year range in copyright notice of all files.
8747
8748 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
8749
8750         * top.c (print_gdb_version): Update copyright year.
8751
8752 For older changes see ChangeLog-2012.
8753 \f
8754 Local Variables:
8755 mode: change-log
8756 left-margin: 8
8757 fill-column: 74
8758 version-control: never
8759 coding: utf-8
8760 End: