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