mep: Add cast for int to enum conversion
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
2
3 * mep-tdep.c (current_me_module): Add cast.
4 (mep_gdbarch_init): Likewise.
5
6 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
7
8 * m32c-tdep.c (m32c_move_reg_t): Replace with...
9 (m32c_write_reg_t): ...this and...
10 (m32c_read_reg_t): ...this.
11 (struct m32c_reg): Update types of read and write.
12 (m32c_raw_read): Change declaration type to m32c_read_reg_t and
13 adjust definition.
14 (m32c_banked_read): Likewise.
15 (m32c_sb_read): Likewise.
16 (m32c_part_read): Likewise.
17 (m32c_cat_read): Likewise.
18 (m32c_r3r2r1r0_read): Likewise.
19 (m32c_raw_write): Change declaration type to m32c_write_reg_t
20 and adjust definition.
21 (m32c_banked_write): Likewise.
22 (m32c_sb_write): Likewise.
23 (m32c_part_write): Likewise.
24 (m32c_cat_write): Likewise.
25 (m32c_r3r2r1r0_write): Likewise.
26
27 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
28
29 * aarch64-linux-tdep.c (aarch64_linux_syscall_record): Add cast.
30
31 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
32
33 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Return
34 gdb_sys_no_syscall instead of -1.
35
36 2015-10-12 Yao Qi <yao.qi@linaro.org>
37
38 * NEWS: Mention the change.
39
40 2015-10-12 Yao Qi <yao.qi@linaro.org>
41
42 * arch/aarch64-insn.c (emit_load_store): Rename to ...
43 (aarch64_emit_load_store): ... it. All callers updated.
44
45 2015-10-12 Yao Qi <yao.qi@linaro.org>
46
47 * arch/aarch64-insn.c (emit_insn): Rename to ...
48 (aarch64_emit_insn): ... it. All callers updated.
49
50 2015-10-12 Yao Qi <yao.qi@linaro.org>
51
52 * aarch64-linux-tdep.c: Include arch-utils.h.
53 (aarch64_linux_init_abi): Call set_gdbarch_max_insn_length,
54 set_gdbarch_displaced_step_copy_insn,
55 set_gdbarch_displaced_step_fixup,
56 set_gdbarch_displaced_step_free_closure,
57 set_gdbarch_displaced_step_location,
58 and set_gdbarch_displaced_step_hw_singlestep.
59 * aarch64-tdep.c (struct displaced_step_closure): New.
60 (struct aarch64_displaced_step_data): New.
61 (aarch64_displaced_step_b): New function.
62 (aarch64_displaced_step_b_cond): Likewise.
63 (aarch64_register): Likewise.
64 (aarch64_displaced_step_cb): Likewise.
65 (aarch64_displaced_step_tb): Likewise.
66 (aarch64_displaced_step_adr): Likewise.
67 (aarch64_displaced_step_ldr_literal): Likewise.
68 (aarch64_displaced_step_others): Likewise.
69 (aarch64_displaced_step_copy_insn): Likewise.
70 (aarch64_displaced_step_fixup): Likewise.
71 (aarch64_displaced_step_hw_singlestep): Likewise.
72 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): New macro.
73 (aarch64_displaced_step_copy_insn): Declare.
74 (aarch64_displaced_step_fixup): Declare.
75 (aarch64_displaced_step_hw_singlestep): Declare.
76 * arch/aarch64-insn.c (emit_insn): Moved from
77 gdbserver/linux-aarch64-low.c.
78 (emit_load_store): Likewise.
79 * arch/aarch64-insn.h (enum aarch64_opcodes): Moved from
80 gdbserver/linux-aarch64-low.c.
81 (struct aarch64_register): Likewise.
82 (struct aarch64_memory_operand): Likewise.
83 (ENCODE): Likewise.
84 (can_encode_int32): New macro.
85 (emit_b, emit_bcond, emit_cb, emit_ldr, emit_ldrsw): Likewise.
86 (emit_tb, emit_nop): Likewise.
87 (emit_insn): Declare.
88 (emit_load_store): Declare.
89
90 2015-10-12 Yao Qi <yao.qi@linaro.org>
91
92 * arch/aarch64-insn.c (aarch64_decode_ldr_literal): Moved from
93 gdbserver/linux-aarch64-low.c.
94 (aarch64_relocate_instruction): Likewise.
95 * arch/aarch64-insn.h (aarch64_decode_ldr_literal): Declare.
96 (struct aarch64_insn_data): Moved from
97 gdbserver/linux-aarch64-low.c.
98 (struct aarch64_insn_visitor): Likewise.
99 (aarch64_relocate_instruction): Declare.
100
101 2015-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
102
103 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT>: If
104 EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute
105 to the returned value.
106
107 2015-10-09 Joel Brobecker <brobecker@adacore.com>
108
109 * ada-lang.c (ada_unpack_from_contents): Add guard that unpacked
110 is large enough for BIT_SIZE. Update function comment.
111
112 2015-10-09 Joel Brobecker <brobecker@adacore.com>
113
114 * ada-lang.c (ada_value_primitive_packed_val): Move
115 src_len variable to local block where used. Override
116 BIT_SIZE if bigger than size of resolved type.
117
118 2015-10-09 Joel Brobecker <brobecker@adacore.com>
119
120 * gdbtypes.h (is_scalar_type): Add extern declaration.
121 * gdbtypes.c (is_scalar_type): Make non-static.
122 * ada-lang.c (ada_value_primitive_packed_val): Use is_scalar_type
123 to compute IS_SCALAR instead of doing it ourselves.
124
125 2015-10-09 Joel Brobecker <brobecker@adacore.com>
126
127 * ada-lang.c (ada_value_primitive_packed_val): Rework handling
128 of case where TYPE is dynamic.
129
130 2015-10-09 Joel Brobecker <brobecker@adacore.com>
131
132 * ada-lang.c (ada_unpack_from_contents): New function,
133 extracted from ada_value_primitive_packed_val.
134 (ada_value_primitive_packed_val): Replace extracted out code
135 by call to ada_unpack_from_contents.
136
137 2015-10-09 Joel Brobecker <brobecker@adacore.com>
138
139 * ada-lang.c (ada_value_primitive_packed_val): Reorder local
140 variable declarations.
141
142 2015-10-09 Joel Brobecker <brobecker@adacore.com>
143
144 * ada-lang.c (ada_value_primitive_packed_val): Change the type
145 of local variables src and unpacked to "gdb_type *" instead of
146 "unsigned char *".
147
148 2015-10-09 Joel Brobecker <brobecker@adacore.com>
149
150 * ada-lang.c (ada_value_primitive_packed_val): Make the name
151 of various local variables more explicit and consistent.
152 No real code change otherwise.
153
154 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
155
156 * i386-tdep.h (struct gdbarch_tdep): Change type of
157 register_reggroup_p to gdbarch_register_reggroup_p_ftype.
158
159 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
160
161 * cris-tdep.c (struct instruction_environment): Change type of
162 byte_order to enum bfd_endian.
163
164 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
165
166 * arm-linux-tdep.c (arm_canonicalize_syscall): Add
167 enum gdb_syscall casts.
168
169 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
170
171 * aarch64-tdep.c (stack_item_t): Change type of data to gdb_byte*.
172 * arm-tdep.c (struct stack_item): Likewise.
173 (push_stack_item): Add gdb_byte* cast.
174 * avr-tdep.c (struct stack_item): Change type of data to gdb_byte*.
175 (push_stack_item): Add gdb_byte* cast.
176 * cli/cli-dump.c (dump_memory_to_file): Change type of buf to gdb_byte*
177 and add cast.
178 * cris-tdep.c (struct stack_item): Change type of data to gdb_byte*.
179 (push_stack_item): Add gdb_byte* cast.
180 * gcore.c (gcore_copy_callback): Change type of memhunk to gdb_byte* and
181 add cast.
182 * gdbtypes.h (print_scalar_formatted): Change type of first parameter to
183 gdb_byte*.
184 * h8300-tdep.c (h8300_extract_return_value): Change type of valbuf to
185 gdb_byte* and remove unnecessary cast.
186 (h8300h_extract_return_value): Likewise.
187 (h8300_store_return_value): Change type of valbuf to gdb_byte*.
188 (h8300h_store_return_value): Likewise.
189 * iq2000-tdep.c (iq2000_extract_return_value): Change type of valbuf to
190 gdb_byte* and remove unnecessary cast.
191 * jit.c (jit_reader_try_read_symtab): Change type of gdb_mem to gdb_byte*
192 and add cast.
193 * m32r-tdep.c (m32r_store_return_value): Change type of valbuf to
194 gdb_byte* and remove unnecessary cast.
195 (m32r_extract_return_value): Change type of dst to gdb_byte* and remove
196 valbuf.
197 * mep-tdep.c (mep_pseudo_cr32_read): Change type of buf to gdb_byte*.
198 (mep_pseudo_cr64_read): Likewise.
199 (mep_pseudo_csr_write): Likewise.
200 (mep_pseudo_cr32_write): Likewise.
201 (mep_pseudo_cr64_write): Likewise.
202 * mi/mi-main.c (mi_cmd_data_write_memory): Change type of buffer to
203 gdb_byte* and add cast.
204 * moxie-tdep.c (moxie_store_return_value): Change type of valbuf to
205 gdb_byte* and remove unnecessary cast.
206 (moxie_extract_return_value): Change type of dst to gdb_byte* and remove
207 valbuf.
208 * p-valprint.c (print_scalar_formatted): Change type of valaddr to
209 gdb_byte*.
210 * printcmd.c (void): Likewise.
211 * python/py-inferior.c (infpy_read_memory): Change type of buffer to
212 gdb_byte* and add cast.
213 (infpy_write_memory): Likewise.
214 (infpy_search_memory): Likewise.
215 * regcache.c (regcache_raw_write_signed): Change type of buf to gdb_byte*
216 and add cast.
217 (regcache_raw_write_unsigned): Likewise.
218 (regcache_cooked_write_signed): Likewise.
219 (regcache_cooked_write_unsigned): Likewise.
220 * sh64-tdep.c (h64_extract_return_value): Change type of valbuf to
221 gdb_byte*.
222
223 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
224
225 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Add cast.
226 * linux-tdep.c (linux_collect_regset_section_cb_data): Likewise.
227
228 2015-10-09 Eli Zaretskii <eliz@gnu.org>
229
230 * stack.c (print_stack_frame):
231 * utils.c (printchar): Fix typos in commentary.
232
233 2015-10-08 Iain Buclaw <ibuclaw@gdcproject.org>
234
235 * d-exp.y: (UnaryExpression): Support `type.sizeof' expressions.
236 (PostfixExpression): Support `expr.sizeof' expressions.
237 (PrimaryExpression): Support `typeof(expr)' expressions.
238
239 2015-10-08 Maciej W. Rozycki <macro@imgtec.com>
240
241 * MAINTAINERS: Update my email address.
242
243 2015-10-08 Markus Metzger <markus.t.metzger@intel.com>
244
245 * record-btrace.c (record_btrace_resume): Fix void return.
246
247 2015-10-07 Yao Qi <yao.qi@linaro.org>
248
249 * aarch64-tdep.c: Include opcode/aarch64.h.
250 (submask): Move it above.
251 (bit): Likewise.
252 (bits): Likewise.
253 (aarch64_software_single_step): Call aarch64_decode_insn.
254 Decode instruction by aarch64_inst instead of using
255 aarch64_decode_bcond and decode_masked_match.
256
257 2015-10-06 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
258
259 * cli/cli-dump.c (restore_command): Parse load_offset (bias) as address
260 only when the file is binary.
261
262 2015-10-02 James Bowman <james.bowman@ftdichip.com>
263
264 * ft32-tdep.c (ft32_analyze_prologue): Add function prolog
265 subroutine handling.
266
267 2015-10-01 Simon Marchi <simon.marchi@ericsson.com>
268
269 * common/vec.h (VEC_OP (T,cleanup)): Add pointer cast.
270
271 2015-09-30 Doug Evans <dje@google.com>
272
273 * dwarf2read.c (setup_type_unit_groups): Add comment.
274
275 2015-09-30 Pedro Alves <palves@redhat.com>
276
277 * linux-nat.c (linux_nat_always_non_stop_p): Always return 1.
278 * x86-linux-nat.c (x86_linux_always_non_stop_p): Delete.
279 (x86_linux_create_target): Don't install
280 x86_linux_always_non_stop_p.
281
282 2015-09-30 Don Breazeal <donb@codesourcery.com>
283
284 * remote.c (remote_parse_stop_reply): Call strprefix instead
285 of strncmp.
286
287 2015-09-30 Simon Marchi <simon.marchi@ericsson.com>
288
289 * gdbarch.sh (struct gdbarch_info): Change tdep_info's type to void *.
290 * gdbarch.h: Regenerate.
291 * i386-tdep.c (i386_gdbarch_init): Remove cast to
292 struct gdbarch_tdep_info *.
293 * mips-tdep.c (mips_gdbarch_init): Likewise.
294 * ppc-linux-tdep (ppu2spu_sniffer): Likewise.
295 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
296 * spu-multiarch.c (spu_gdbarch): Likewise.
297
298 2015-09-30 Kevin Buettner <kevinb@redhat.com>
299
300 * infcmd.c (finish_command_fsm_should_stop): Don't attempt to
301 record a NULL value.
302
303 2015-09-29 Kevin Buettner <kevinb@redhat.com>
304
305 * msp430-tdep.c (msp430_push_dummy_call): Treat reference, struct,
306 and union arguments the same as pointer arguments when determining
307 size of argument.
308
309 2015-09-29 James Bowman <james.bowman@ftdichip.com>
310
311 * ft32-tdep.c: #include "opcode/ft32.h".
312 Delete local macros IS_PUSH, PUSH_REG, IS_LINK, LINK_SIZE.
313 (ft32_analyze_prologue): Use FT32_* macros.
314
315 2015-09-28 Simon Marchi <simon.marchi@ericsson.com>
316
317 * cli/cli-script.c (read_next_line): Fix stdout -> stdin in
318 comment.
319
320 2015-09-28 Doug Evans <dje@google.com>
321
322 * MAINTAINERS: Add Iain Buclaw as D language maintainer.
323
324 2015-09-28 Doug Evans <dje@google.com>
325
326 * common/filestuff.c (make_cleanup_close): Update comment.
327
328 2015-09-26 Simon Marchi <simark@nova.polymtl.ca>
329
330 * btrace.c (parse_xml_btrace_block): Fix cast of
331 xml_find_attribute's return value.
332 * memory-map.c (memory_map_start_memory): Likewise.
333 * solib-svr4.c (library_list_start_library): Likewise.
334 * solib-target.c (library_list_start_segment): Likewise.
335 (library_list_start_section): Likewise.
336 * tracepoint.c (traceframe_info_start_memory): Likewise.
337
338 2015-09-26 Iain Buclaw <ibuclaw@gdcproject.org>
339
340 * d-namespace.c (d_lookup_symbol): New arg langdef.
341 All callers updated. Support looking up symbol as a primitive type.
342 (lookup_module_scope): New arg langdef. All callers updated.
343 Call d_lookup_symbol directly for simple bare symbols.
344
345 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
346
347 * macrocmd.c (print_macro_callback): Add cast(s).
348 * macrotab.c (macro_bcache_str): Likewise.
349 (new_macro_definition): Likewise.
350 * main.c (captured_main): Likewise.
351 * maint.c (print_bfd_section_info): Likewise.
352 * mdebugread.c (mdebug_build_psymtabs): Likewise.
353 (basic_type): Likewise.
354 * memattr.c (mem_region_cmp): Likewise.
355 * memory-map.c (memory_map_start_memory): Likewise.
356 (memory_map_end_memory): Likewise.
357 (memory_map_start_property): Likewise.
358 (memory_map_end_property): Likewise.
359 (clear_result): Likewise.
360 * memrange.c (compare_mem_ranges): Likewise.
361 * mep-tdep.c (mep_analyze_frame_prologue): Likewise.
362 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Likewise.
363 * mi/mi-console.c (mi_console_file_delete): Likewise.
364 (mi_console_file_fputs): Likewise.
365 (mi_console_raw_packet): Likewise.
366 (mi_console_file_flush): Likewise.
367 (mi_console_set_raw): Likewise.
368 * mi/mi-interp.c (mi_interpreter_resume): Likewise.
369 (mi_new_thread): Likewise.
370 (mi_thread_exit): Likewise.
371 (mi_record_changed): Likewise.
372 (mi_inferior_added): Likewise.
373 (mi_inferior_appeared): Likewise.
374 (mi_inferior_exit): Likewise.
375 (mi_inferior_removed): Likewise.
376 (mi_interp_data): Likewise.
377 (mi_on_normal_stop): Likewise.
378 (mi_traceframe_changed): Likewise.
379 (mi_tsv_created): Likewise.
380 (mi_tsv_deleted): Likewise.
381 (mi_tsv_modified): Likewise.
382 (mi_breakpoint_created): Likewise.
383 (mi_breakpoint_deleted): Likewise.
384 (mi_breakpoint_modified): Likewise.
385 (mi_output_running_pid): Likewise.
386 (mi_inferior_count): Likewise.
387 (mi_solib_loaded): Likewise.
388 (mi_solib_unloaded): Likewise.
389 (mi_command_param_changed): Likewise.
390 (mi_memory_changed): Likewise.
391 (report_initial_inferior): Likewise.
392 (mi_ui_out): Likewise.
393 (mi_set_logging): Likewise.
394 * mi/mi-main.c (collect_cores): Likewise.
395 (print_one_inferior): Likewise.
396 (free_vector_of_ints): Likewise.
397 (free_splay_tree): Likewise.
398 (mi_execute_command): Likewise.
399 * mi/mi-out.c (mi_table_body): Likewise.
400 (mi_table_end): Likewise.
401 (mi_table_header): Likewise.
402 (mi_begin): Likewise.
403 (mi_end): Likewise.
404 (mi_field_int): Likewise.
405 (mi_field_string): Likewise.
406 (mi_field_fmt): Likewise.
407 (mi_flush): Likewise.
408 (mi_redirect): Likewise.
409 (field_separator): Likewise.
410 (mi_open): Likewise.
411 (mi_close): Likewise.
412 (mi_out_buffered): Likewise.
413 (mi_out_rewind): Likewise.
414 (mi_out_put): Likewise.
415 (mi_version): Likewise.
416 (mi_out_data_dtor): Likewise.
417 * mi/mi-parse.c (mi_parse_cleanup): Likewise.
418 * microblaze-tdep.c (microblaze_frame_cache): Likewise.
419 * minidebug.c (lzma_open): Likewise.
420 (lzma_pread): Likewise.
421 (lzma_close): Likewise.
422 (lzma_stat): Likewise.
423 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
424 * mips-sde-tdep.c (mips_sde_frame_cache): Likewise.
425 (mips_sde_elf_osabi_sniff_abi_tag_sections): Likewise.
426 * mips-tdep.c (mips_insn16_frame_cache): Likewise.
427 (mips_micro_frame_cache): Likewise.
428 (mips_insn32_frame_cache): Likewise.
429 (mips_stub_frame_cache): Likewise.
430 (gdb_print_insn_mips): Likewise.
431 (value_of_mips_user_reg): Likewise.
432 (mips_gdbarch_init): Likewise.
433 * mips64obsd-tdep.c (mips64obsd_supply_gregset): Likewise.
434 * mipsnbsd-tdep.c (mipsnbsd_supply_fpregset): Likewise.
435 (mipsnbsd_supply_gregset): Likewise.
436 * mn10300-linux-tdep.c (am33_supply_fpregset_method): Likewise.
437 (am33_collect_gregset_method): Likewise.
438 (am33_collect_fpregset_method): Likewise.
439 * mn10300-tdep.c (mn10300_analyze_frame_prologue): Likewise.
440 * moxie-tdep.c (moxie_frame_cache): Likewise.
441 * msp430-tdep.c (msp430_get_opcode_byte): Likewise.
442 (msp430_analyze_frame_prologue): Likewise.
443 * mt-tdep.c (mt_frame_unwind_cache): Likewise.
444 * nios2-linux-tdep.c (nios2_supply_gregset): Likewise.
445 (nios2_collect_gregset): Likewise.
446 * nios2-tdep.c (nios2_frame_unwind_cache): Likewise.
447 (nios2_stub_frame_cache): Likewise.
448 * objc-lang.c (find_methods): Likewise.
449 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
450 (get_objfile_pspace_data): Likewise.
451 (get_objfile_bfd_data): Likewise.
452 (objfile_bfd_data_free): Likewise.
453 (add_to_objfile_sections): Likewise.
454 (do_free_objfile_cleanup): Likewise.
455 (resume_section_map_updates_cleanup): Likewise.
456 * opencl-lang.c (builtin_opencl_type): Likewise.
457 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
458 * osdata.c (osdata_start_osdata): Likewise.
459 (osdata_start_item): Likewise.
460 (osdata_start_column): Likewise.
461 (osdata_end_column): Likewise.
462 (clear_parsing_data): Likewise.
463 (osdata_free_cleanup): Likewise.
464 * parse.c (type_stack_cleanup): Likewise.
465 (exp_uses_objfile_iter): Likewise.
466 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Likewise.
467 (ppc_linux_collect_gregset): Likewise.
468 (ppu2spu_prev_arch): Likewise.
469 (ppu2spu_this_id): Likewise.
470 (ppu2spu_prev_register): Likewise.
471 (ppu2spu_unwind_register): Likewise.
472 (ppu2spu_sniffer): Likewise.
473 (ppu2spu_dealloc_cache): Likewise.
474 (ppc_linux_init_abi): Likewise.
475 * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
476 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
477 * progspace.c (restore_program_space): Likewise.
478 * psymtab.c (find_pc_sect_psymtab): Likewise.
479 (compare_psymbols): Likewise.
480 (psymbol_bcache_full): Likewise.
481 (allocate_psymtab): Likewise.
482 (discard_psymtabs_upto): Likewise.
483 * python/py-block.c (set_block): Likewise.
484 (del_objfile_blocks): Likewise.
485 * python/py-breakpoint.c (build_bp_list): Likewise.
486 * python/py-inferior.c (inferior_to_inferior_object): Likewise.
487 (build_inferior_list): Likewise.
488 (py_free_inferior): Likewise.
489 * python/py-objfile.c (py_free_objfile): Likewise.
490 (objfile_to_objfile_object): Likewise.
491 * python/py-prettyprint.c (py_restore_tstate): Likewise.
492 * python/py-progspace.c (py_free_pspace): Likewise.
493 (pspace_to_pspace_object): Likewise.
494 * python/py-symbol.c (set_symbol): Likewise.
495 (del_objfile_symbols): Likewise.
496 * python/py-symtab.c (set_sal): Likewise.
497 (set_symtab): Likewise.
498 (del_objfile_symtab): Likewise.
499 (del_objfile_sal): Likewise.
500 * python/py-type.c (save_objfile_types): Likewise.
501 (set_type): Likewise.
502 * python/py-unwind.c (pyuw_prev_register): Likewise.
503 (pyuw_on_new_gdbarch): Likewise.
504 * python/py-utils.c (py_decref): Likewise.
505 (py_xdecref): Likewise.
506 (gdb_py_generic_dict): Likewise.
507 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data): Likewise.
508 (gdbpy_clone_xmethod_worker_data): Likewise.
509 (gdbpy_get_xmethod_arg_types): Likewise.
510 (gdbpy_get_xmethod_result_type): Likewise.
511 (gdbpy_invoke_xmethod): Likewise.
512 * python/python.c (gdbpy_apply_type_printers): Likewise.
513 (gdbpy_free_type_printers): Likewise.
514 * record-btrace.c (record_btrace_disable_callback): Likewise.
515 (bfcache_hash): Likewise.
516 (bfcache_eq): Likewise.
517 (btrace_get_frame_function): Likewise.
518 (record_btrace_frame_unwind_stop_reason): Likewise.
519 (record_btrace_frame_this_id): Likewise.
520 (record_btrace_frame_prev_register): Likewise.
521 (record_btrace_frame_dealloc_cache): Likewise.
522 * record-full.c (record_full_message_wrapper): Likewise.
523 (record_full_save_cleanups): Likewise.
524 * regcache.c (regcache_descr): Likewise.
525 (do_regcache_xfree): Likewise.
526 (do_regcache_invalidate): Likewise.
527 (do_cooked_read): Likewise.
528 (regcache_transfer_regset): Likewise.
529 * reggroups.c (reggroup_add): Likewise.
530 (reggroup_next): Likewise.
531 (reggroup_prev): Likewise.
532 * remote-fileio.c (do_remote_fileio_request): Likewise.
533 * remote-notif.c (remote_async_get_pending_events_handler): Likewise.
534 (do_notif_event_xfree): Likewise.
535 * remote.c (get_remote_arch_state): Likewise.
536 (remote_pspace_data_cleanup): Likewise.
537 (get_remote_exec_file): Likewise.
538 (set_pspace_remote_exec_file): Likewise.
539 (compare_pnums): Likewise.
540 (clear_threads_listing_context): Likewise.
541 (remote_newthread_step): Likewise.
542 (start_thread): Likewise.
543 (end_thread): Likewise.
544 (remove_child_of_pending_fork): Likewise.
545 (remove_stop_reply_for_inferior): Likewise.
546 (remove_stop_reply_of_remote_state): Likewise.
547 (remote_notif_remove_once_on_match): Likewise.
548 (stop_reply_match_ptid_and_ws): Likewise.
549 (kill_child_of_pending_fork): Likewise.
550 (register_remote_g_packet_guess): Likewise.
551 (remote_read_description_p): Likewise.
552 (remote_read_description): Likewise.
553 (free_actions_list_cleanup_wrapper): Likewise.
554 (remote_async_serial_handler): Likewise.
555 * rl78-tdep.c (rl78_get_opcode_byte): Likewise.
556 (rl78_analyze_frame_prologue): Likewise.
557 * rs6000-tdep.c (ppc_supply_gregset): Likewise.
558 (ppc_supply_fpregset): Likewise.
559 (ppc_supply_vsxregset): Likewise.
560 (ppc_supply_vrregset): Likewise.
561 (ppc_collect_gregset): Likewise.
562 (ppc_collect_fpregset): Likewise.
563 (ppc_collect_vsxregset): Likewise.
564 (ppc_collect_vrregset): Likewise.
565 (e500_move_ev_register): Likewise.
566 (do_regcache_raw_write): Likewise.
567 (rs6000_frame_cache): Likewise.
568 (rs6000_epilogue_frame_cache): Likewise.
569 (rs6000_gdbarch_init): Likewise.
570 * rx-tdep.c (rx_get_opcode_byte): Likewise.
571 (rx_analyze_frame_prologue): Likewise.
572 (rx_frame_type): Likewise.
573 (rx_frame_sniffer_common): Likewise.
574 * s390-linux-tdep.c (s390_check_for_saved): Likewise.
575 (s390_frame_unwind_cache): Likewise.
576 (s390_stub_frame_unwind_cache): Likewise.
577 (s390_sigtramp_frame_unwind_cache): Likewise.
578 * score-tdep.c (score_make_prologue_cache): Likewise.
579 * sentinel-frame.c (sentinel_frame_prev_register): Likewise.
580 (sentinel_frame_prev_arch): Likewise.
581 * ser-base.c (fd_event): Likewise.
582 (push_event): Likewise.
583 (ser_base_write): Likewise.
584 * ser-pipe.c (pipe_close): Likewise.
585 * serial.c (serial_write): Likewise.
586 * sh-tdep.c (sh_frame_cache): Likewise.
587 (sh_stub_this_id): Likewise.
588 * sh64-tdep.c (sh64_frame_cache): Likewise.
589 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
590 (library_list_start_library): Likewise.
591 (library_list_start_list): Likewise.
592 (solib_aix_free_library_list): Likewise.
593 * solib-darwin.c (get_darwin_info): Likewise.
594 * solib-dsbt.c (get_dsbt_info): Likewise.
595 * solib-spu.c (append_ocl_sos): Likewise.
596 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
597 (get_svr4_info): Likewise.
598 (library_list_start_library): Likewise.
599 (svr4_library_list_start_list): Likewise.
600 (hash_probe_and_action): Likewise.
601 (equal_probe_and_action): Likewise.
602 (svr4_update_solib_event_breakpoint): Likewise.
603 (set_solib_svr4_fetch_link_map_offsets): Likewise.
604 (svr4_fetch_link_map_offsets): Likewise.
605 (svr4_have_link_map_offsets): Likewise.
606 * solib-target.c (library_list_start_segment): Likewise.
607 (library_list_start_section): Likewise.
608 (library_list_start_library): Likewise.
609 (library_list_end_library): Likewise.
610 (library_list_start_list): Likewise.
611 (solib_target_free_library_list): Likewise.
612 * solib.c (solib_ops): Likewise.
613 (set_solib_ops): Likewise.
614 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
615 * sparc-tdep.c (sparc_frame_cache): Likewise.
616 (sparc32_frame_cache): Likewise.
617 (sparc32_supply_gregset): Likewise.
618 (sparc32_collect_gregset): Likewise.
619 (sparc32_supply_fpregset): Likewise.
620 (sparc32_collect_fpregset): Likewise.
621 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
622 * sparc64-tdep.c (sparc64_supply_gregset): Likewise.
623 (sparc64_collect_gregset): Likewise.
624 (sparc64_supply_fpregset): Likewise.
625 (sparc64_collect_fpregset): Likewise.
626 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_cache): Likewise.
627 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_cache): Likewise.
628 * sparc64obsd-tdep.c (sparc64obsd_frame_cache): Likewise.
629 (sparc64obsd_trapframe_cache): Likewise.
630 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_cache): Likewise.
631 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_cache): Likewise.
632 * spu-multiarch.c (spu_gdbarch): Likewise.
633 * spu-tdep.c (spu_frame_unwind_cache): Likewise.
634 (spu2ppu_prev_arch): Likewise.
635 (spu2ppu_this_id): Likewise.
636 (spu2ppu_prev_register): Likewise.
637 (spu2ppu_dealloc_cache): Likewise.
638 (spu_dis_asm_print_address): Likewise.
639 (gdb_print_insn_spu): Likewise.
640 (spu_get_overlay_table): Likewise.
641 * stabsread.c (rs6000_builtin_type): Likewise.
642 * stack.c (do_print_variable_and_value): Likewise.
643 * stap-probe.c (get_stap_base_address_1): Likewise.
644 * symfile-debug.c (debug_qf_has_symbols): Likewise.
645 (debug_qf_find_last_source_symtab): Likewise.
646 (debug_qf_forget_cached_source_info): Likewise.
647 (debug_qf_map_symtabs_matching_filename): Likewise.
648 (debug_qf_lookup_symbol): Likewise.
649 (debug_qf_print_stats): Likewise.
650 (debug_qf_dump): Likewise.
651 (debug_qf_relocate): Likewise.
652 (debug_qf_expand_symtabs_for_function): Likewise.
653 (debug_qf_expand_all_symtabs): Likewise.
654 (debug_qf_expand_symtabs_with_fullname): Likewise.
655 (debug_qf_map_matching_symbols): Likewise.
656 (debug_qf_expand_symtabs_matching): Likewise.
657 (debug_qf_find_pc_sect_compunit_symtab): Likewise.
658 (debug_qf_map_symbol_filenames): Likewise.
659 (debug_sym_get_probes): Likewise.
660 (debug_sym_new_init): Likewise.
661 (debug_sym_init): Likewise.
662 (debug_sym_read): Likewise.
663 (debug_sym_read_psymbols): Likewise.
664 (debug_sym_finish): Likewise.
665 (debug_sym_offsets): Likewise.
666 (debug_sym_read_linetable): Likewise.
667 (debug_sym_relocate): Likewise.
668 (uninstall_symfile_debug_logging): Likewise.
669 * symfile-mem.c (symbol_file_add_from_memory_wrapper): Likewise.
670 * symfile.c (place_section): Likewise.
671 (add_section_size_callback): Likewise.
672 (load_progress): Likewise.
673 (load_section_callback): Likewise.
674 (clear_memory_write_data): Likewise.
675 (allocate_symtab): Likewise.
676 * symmisc.c (maintenance_expand_file_matcher): Likewise.
677 * symtab.c (lookup_symtab_callback): Likewise.
678 (hash_demangled_name_entry): Likewise.
679 (eq_demangled_name_entry): Likewise.
680 (get_symbol_cache): Likewise.
681 (symbol_cache_cleanup): Likewise.
682 (set_symbol_cache_size): Likewise.
683 (symbol_cache_flush): Likewise.
684 (maintenance_print_symbol_cache): Likewise.
685 (maintenance_print_symbol_cache_statistics): Likewise.
686 (delete_filename_seen_cache): Likewise.
687 (output_partial_symbol_filename): Likewise.
688 (search_symbols_file_matches): Likewise.
689 (search_symbols_name_matches): Likewise.
690 (do_free_completion_list): Likewise.
691 (maybe_add_partial_symtab_filename): Likewise.
692 (get_main_info): Likewise.
693 (main_info_cleanup): Likewise.
694 * target-dcache.c (target_dcache_cleanup): Likewise.
695 (target_dcache_init_p): Likewise.
696 (target_dcache_invalidate): Likewise.
697 (target_dcache_get): Likewise.
698 (target_dcache_get_or_init): Likewise.
699 * target-descriptions.c (target_find_description): Likewise.
700 (tdesc_find_type): Likewise.
701 (tdesc_data_cleanup): Likewise.
702 (tdesc_find_arch_register): Likewise.
703 (tdesc_register_name): Likewise.
704 (tdesc_register_type): Likewise.
705 (tdesc_register_reggroup_p): Likewise.
706 (set_tdesc_pseudo_register_name): Likewise.
707 (set_tdesc_pseudo_register_type): Likewise.
708 (set_tdesc_pseudo_register_reggroup_p): Likewise.
709 (tdesc_use_registers): Likewise.
710 (free_target_description): Likewise.
711 * target-memory.c (compare_block_starting_address): Likewise.
712 (cleanup_request_data): Likewise.
713 (cleanup_write_requests_vector): Likewise.
714 * target.c (open_target): Likewise.
715 (cleanup_restore_target_terminal): Likewise.
716 (free_memory_read_result_vector): Likewise.
717 * thread.c (disable_thread_stack_temporaries): Likewise.
718 (finish_thread_state_cleanup): Likewise.
719 (do_restore_current_thread_cleanup): Likewise.
720 (restore_current_thread_cleanup_dtor): Likewise.
721 (set_thread_refcount): Likewise.
722 (tp_array_compar): Likewise.
723 (do_captured_thread_select): Likewise.
724 * tic6x-tdep.c (tic6x_frame_unwind_cache): Likewise.
725 (tic6x_stub_this_id): Likewise.
726 * tilegx-tdep.c (tilegx_frame_cache): Likewise.
727 * top.c (do_restore_instream_cleanup): Likewise.
728 (gdb_readline_wrapper_cleanup): Likewise.
729 (kill_or_detach): Likewise.
730 (print_inferior_quit_action): Likewise.
731 * tracefile-tfile.c (match_blocktype): Likewise.
732 (build_traceframe_info): Likewise.
733 * tracefile.c (trace_file_writer_xfree): Likewise.
734 * tracepoint.c (memrange_cmp): Likewise.
735 (do_collect_symbol): Likewise.
736 (do_clear_collection_list): Likewise.
737 (do_restore_current_traceframe_cleanup): Likewise.
738 (restore_current_traceframe_cleanup_dtor): Likewise.
739 (free_current_marker): Likewise.
740 (traceframe_info_start_memory): Likewise.
741 (traceframe_info_start_tvar): Likewise.
742 (free_result): Likewise.
743 * tramp-frame.c (tramp_frame_cache): Likewise.
744 * tui/tui-file.c (tui_file_delete): Likewise.
745 (tui_fileopen): Likewise.
746 (tui_sfileopen): Likewise.
747 (tui_file_isatty): Likewise.
748 (tui_file_rewind): Likewise.
749 (tui_file_put): Likewise.
750 (tui_file_fputs): Likewise.
751 (tui_file_get_strbuf): Likewise.
752 (tui_file_adjust_strbuf): Likewise.
753 (tui_file_flush): Likewise.
754 * tui/tui-layout.c (make_command_window): Likewise.
755 (make_data_window): Likewise.
756 (show_source_disasm_command): Likewise.
757 (show_data): Likewise.
758 (make_source_or_disasm_window): Likewise.
759 (show_source_or_disasm_and_command): Likewise.
760 * tui/tui-out.c (tui_field_int): Likewise.
761 (tui_field_string): Likewise.
762 (tui_field_fmt): Likewise.
763 (tui_text): Likewise.
764 * typeprint.c (hash_typedef_field): Likewise.
765 (eq_typedef_field): Likewise.
766 (do_free_typedef_hash): Likewise.
767 (copy_typedef_hash_element): Likewise.
768 (do_free_global_table): Likewise.
769 (find_global_typedef): Likewise.
770 (find_typedef_in_hash): Likewise.
771 * ui-file.c (ui_file_write_for_put): Likewise.
772 (do_ui_file_xstrdup): Likewise.
773 (mem_file_delete): Likewise.
774 (mem_file_rewind): Likewise.
775 (mem_file_put): Likewise.
776 (mem_file_write): Likewise.
777 (stdio_file_delete): Likewise.
778 (stdio_file_flush): Likewise.
779 (stdio_file_read): Likewise.
780 (stdio_file_write): Likewise.
781 (stdio_file_write_async_safe): Likewise.
782 (stdio_file_fputs): Likewise.
783 (stdio_file_isatty): Likewise.
784 (stdio_file_fseek): Likewise.
785 (tee_file_delete): Likewise.
786 (tee_file_flush): Likewise.
787 (tee_file_write): Likewise.
788 (tee_file_fputs): Likewise.
789 (tee_file_isatty): Likewise.
790 * ui-out.c (do_cleanup_table_end): Likewise.
791 (do_cleanup_end): Likewise.
792 * user-regs.c (user_reg_add): Likewise.
793 (user_reg_map_name_to_regnum): Likewise.
794 (usernum_to_user_reg): Likewise.
795 (maintenance_print_user_registers): Likewise.
796 * utils.c (do_bfd_close_cleanup): Likewise.
797 (do_fclose_cleanup): Likewise.
798 (do_obstack_free): Likewise.
799 (do_ui_file_delete): Likewise.
800 (do_ui_out_redirect_pop): Likewise.
801 (do_free_section_addr_info): Likewise.
802 (restore_integer): Likewise.
803 (do_unpush_target): Likewise.
804 (do_htab_delete_cleanup): Likewise.
805 (do_restore_ui_file): Likewise.
806 (do_value_free): Likewise.
807 (do_free_so): Likewise.
808 (free_current_contents): Likewise.
809 (do_regfree_cleanup): Likewise.
810 (core_addr_hash): Likewise.
811 (core_addr_eq): Likewise.
812 (do_free_char_ptr_vec): Likewise.
813 * v850-tdep.c (v850_frame_cache): Likewise.
814 * varobj.c (do_free_variable_cleanup): Likewise.
815 * vax-tdep.c (vax_supply_gregset): Likewise.
816 (vax_frame_cache): Likewise.
817 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_cache): Likewise.
818 * xml-support.c (gdb_xml_body_text): Likewise.
819 (gdb_xml_values_cleanup): Likewise.
820 (gdb_xml_start_element): Likewise.
821 (gdb_xml_start_element_wrapper): Likewise.
822 (gdb_xml_end_element): Likewise.
823 (gdb_xml_end_element_wrapper): Likewise.
824 (gdb_xml_cleanup): Likewise.
825 (gdb_xml_fetch_external_entity): Likewise.
826 (gdb_xml_parse_attr_enum): Likewise.
827 (xinclude_start_include): Likewise.
828 (xinclude_end_include): Likewise.
829 (xml_xinclude_default): Likewise.
830 (xml_xinclude_start_doctype): Likewise.
831 (xml_xinclude_end_doctype): Likewise.
832 (xml_xinclude_cleanup): Likewise.
833 (xml_fetch_content_from_file): Likewise.
834 * xml-syscall.c (free_syscalls_info): Likewise.
835 (syscall_start_syscall): Likewise.
836 * xml-tdesc.c (tdesc_end_arch): Likewise.
837 (tdesc_end_osabi): Likewise.
838 (tdesc_end_compatible): Likewise.
839 (tdesc_start_target): Likewise.
840 (tdesc_start_feature): Likewise.
841 (tdesc_start_reg): Likewise.
842 (tdesc_start_union): Likewise.
843 (tdesc_start_struct): Likewise.
844 (tdesc_start_flags): Likewise.
845 (tdesc_start_field): Likewise.
846 (tdesc_start_vector): Likewise.
847 (fetch_available_features_from_target): Likewise.
848 * xstormy16-tdep.c (xstormy16_frame_cache): Likewise.
849 * xtensa-tdep.c (xtensa_supply_gregset): Likewise.
850 (xtensa_frame_cache): Likewise.
851 (xtensa_frame_prev_register): Likewise.
852 (xtensa_extract_return_value): Likewise.
853
854 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
855
856 * aarch64-tdep.c (aarch64_make_prologue_cache): Add cast(s).
857 (aarch64_make_stub_cache): Likewise.
858 (value_of_aarch64_user_reg): Likewise.
859 * ada-lang.c (ada_inferior_data_cleanup): Likewise.
860 (get_ada_inferior_data): Likewise.
861 (get_ada_pspace_data): Likewise.
862 (ada_pspace_data_cleanup): Likewise.
863 (ada_complete_symbol_matcher): Likewise.
864 (ada_exc_search_name_matches): Likewise.
865 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
866 (get_ada_tasks_inferior_data): Likewise.
867 * addrmap.c (addrmap_mutable_foreach_worker): Likewise.
868 (splay_obstack_alloc): Likewise.
869 (splay_obstack_free): Likewise.
870 * alpha-linux-tdep.c (alpha_linux_supply_gregset): Likewise.
871 (alpha_linux_collect_gregset): Likewise.
872 (alpha_linux_supply_fpregset): Likewise.
873 (alpha_linux_collect_fpregset): Likewise.
874 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind_cache): Likewise.
875 * alpha-tdep.c (alpha_lds): Likewise.
876 (alpha_sts): Likewise.
877 (alpha_sigtramp_frame_unwind_cache): Likewise.
878 (alpha_heuristic_frame_unwind_cache): Likewise.
879 (alpha_supply_int_regs): Likewise.
880 (alpha_fill_int_regs): Likewise.
881 (alpha_supply_fp_regs): Likewise.
882 (alpha_fill_fp_regs): Likewise.
883 * alphanbsd-tdep.c (alphanbsd_supply_fpregset): Likewise.
884 (alphanbsd_aout_supply_gregset): Likewise.
885 (alphanbsd_supply_gregset): Likewise.
886 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
887 (amd64_x32_linux_init_abi): Likewise.
888 * amd64-nat.c (amd64_supply_native_gregset): Likewise.
889 (amd64_collect_native_gregset): Likewise.
890 * amd64-tdep.c (amd64_frame_cache): Likewise.
891 (amd64_sigtramp_frame_cache): Likewise.
892 (amd64_epilogue_frame_cache): Likewise.
893 (amd64_supply_fxsave): Likewise.
894 (amd64_supply_xsave): Likewise.
895 (amd64_collect_fxsave): Likewise.
896 (amd64_collect_xsave): Likewise.
897 * amd64-windows-tdep.c (amd64_windows_frame_cache): Likewise.
898 * amd64obsd-tdep.c (amd64obsd_trapframe_cache): Likewise.
899 * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
900 (arm_linux_collect_gregset): Likewise.
901 (arm_linux_supply_nwfpe): Likewise.
902 (arm_linux_collect_nwfpe): Likewise.
903 (arm_linux_supply_vfp): Likewise.
904 (arm_linux_collect_vfp): Likewise.
905 * arm-tdep.c (arm_find_mapping_symbol): Likewise.
906 (arm_prologue_unwind_stop_reason): Likewise.
907 (arm_prologue_this_id): Likewise.
908 (arm_prologue_prev_register): Likewise.
909 (arm_exidx_data_free): Likewise.
910 (arm_find_exidx_entry): Likewise.
911 (arm_stub_this_id): Likewise.
912 (arm_m_exception_this_id): Likewise.
913 (arm_m_exception_prev_register): Likewise.
914 (arm_normal_frame_base): Likewise.
915 (gdb_print_insn_arm): Likewise.
916 (arm_objfile_data_free): Likewise.
917 (arm_record_special_symbol): Likewise.
918 (value_of_arm_user_reg): Likewise.
919 * armbsd-tdep.c (armbsd_supply_fpregset): Likewise.
920 (armbsd_supply_gregset): Likewise.
921 * auto-load.c (auto_load_pspace_data_cleanup): Likewise.
922 (get_auto_load_pspace_data): Likewise.
923 (hash_loaded_script_entry): Likewise.
924 (eq_loaded_script_entry): Likewise.
925 (clear_section_scripts): Likewise.
926 (collect_matching_scripts): Likewise.
927 * auxv.c (auxv_inferior_data_cleanup): Likewise.
928 (get_auxv_inferior_data): Likewise.
929 * avr-tdep.c (avr_frame_unwind_cache): Likewise.
930 * ax-general.c (do_free_agent_expr_cleanup): Likewise.
931 * bfd-target.c (target_bfd_xfer_partial): Likewise.
932 (target_bfd_xclose): Likewise.
933 (target_bfd_get_section_table): Likewise.
934 * bfin-tdep.c (bfin_frame_cache): Likewise.
935 * block.c (find_block_in_blockvector): Likewise.
936 (call_site_for_pc): Likewise.
937 (block_find_non_opaque_type_preferred): Likewise.
938 * break-catch-sig.c (signal_catchpoint_insert_location): Likewise.
939 (signal_catchpoint_remove_location): Likewise.
940 (signal_catchpoint_breakpoint_hit): Likewise.
941 (signal_catchpoint_print_one): Likewise.
942 (signal_catchpoint_print_mention): Likewise.
943 (signal_catchpoint_print_recreate): Likewise.
944 * break-catch-syscall.c (get_catch_syscall_inferior_data): Likewise.
945 * breakpoint.c (do_cleanup_counted_command_line): Likewise.
946 (bp_location_compare_addrs): Likewise.
947 (get_first_locp_gte_addr): Likewise.
948 (check_tracepoint_command): Likewise.
949 (do_map_commands_command): Likewise.
950 (get_breakpoint_objfile_data): Likewise.
951 (free_breakpoint_probes): Likewise.
952 (do_captured_breakpoint_query): Likewise.
953 (compare_breakpoints): Likewise.
954 (bp_location_compare): Likewise.
955 (bpstat_remove_breakpoint_callback): Likewise.
956 (do_delete_breakpoint_cleanup): Likewise.
957 * bsd-uthread.c (bsd_uthread_set_supply_uthread): Likewise.
958 (bsd_uthread_set_collect_uthread): Likewise.
959 (bsd_uthread_activate): Likewise.
960 (bsd_uthread_fetch_registers): Likewise.
961 (bsd_uthread_store_registers): Likewise.
962 * btrace.c (check_xml_btrace_version): Likewise.
963 (parse_xml_btrace_block): Likewise.
964 (parse_xml_btrace_pt_config_cpu): Likewise.
965 (parse_xml_btrace_pt_raw): Likewise.
966 (parse_xml_btrace_pt): Likewise.
967 (parse_xml_btrace_conf_bts): Likewise.
968 (parse_xml_btrace_conf_pt): Likewise.
969 (do_btrace_data_cleanup): Likewise.
970 * c-typeprint.c (find_typedef_for_canonicalize): Likewise.
971 * charset.c (cleanup_iconv): Likewise.
972 (do_cleanup_iterator): Likewise.
973 * cli-out.c (cli_uiout_dtor): Likewise.
974 (cli_table_begin): Likewise.
975 (cli_table_body): Likewise.
976 (cli_table_end): Likewise.
977 (cli_table_header): Likewise.
978 (cli_begin): Likewise.
979 (cli_end): Likewise.
980 (cli_field_int): Likewise.
981 (cli_field_skip): Likewise.
982 (cli_field_string): Likewise.
983 (cli_field_fmt): Likewise.
984 (cli_spaces): Likewise.
985 (cli_text): Likewise.
986 (cli_message): Likewise.
987 (cli_wrap_hint): Likewise.
988 (cli_flush): Likewise.
989 (cli_redirect): Likewise.
990 (out_field_fmt): Likewise.
991 (field_separator): Likewise.
992 (cli_out_set_stream): Likewise.
993 * cli/cli-cmds.c (compare_symtabs): Likewise.
994 * cli/cli-dump.c (call_dump_func): Likewise.
995 (restore_section_callback): Likewise.
996 * cli/cli-script.c (clear_hook_in_cleanup): Likewise.
997 (do_restore_user_call_depth): Likewise.
998 (do_free_command_lines_cleanup): Likewise.
999 * coff-pe-read.c (get_section_vmas): Likewise.
1000 (pe_as16): Likewise.
1001 (pe_as32): Likewise.
1002 * coffread.c (coff_symfile_read): Likewise.
1003 * common/agent.c (agent_look_up_symbols): Likewise.
1004 * common/filestuff.c (do_close_cleanup): Likewise.
1005 * common/format.c (free_format_pieces_cleanup): Likewise.
1006 * common/vec.c (vec_o_reserve): Likewise.
1007 * compile/compile-c-support.c (print_one_macro): Likewise.
1008 * compile/compile-c-symbols.c (hash_symbol_error): Likewise.
1009 (eq_symbol_error): Likewise.
1010 (del_symbol_error): Likewise.
1011 (error_symbol_once): Likewise.
1012 (gcc_convert_symbol): Likewise.
1013 (gcc_symbol_address): Likewise.
1014 (hash_symname): Likewise.
1015 (eq_symname): Likewise.
1016 * compile/compile-c-types.c (hash_type_map_instance): Likewise.
1017 (eq_type_map_instance): Likewise.
1018 (insert_type): Likewise.
1019 (convert_type): Likewise.
1020 * compile/compile-object-load.c (munmap_listp_free_cleanup): Likewise.
1021 (setup_sections): Likewise.
1022 (link_hash_table_free): Likewise.
1023 (copy_sections): Likewise.
1024 * compile/compile-object-run.c (do_module_cleanup): Likewise.
1025 * compile/compile.c (compile_print_value): Likewise.
1026 (do_rmdir): Likewise.
1027 (cleanup_compile_instance): Likewise.
1028 (cleanup_unlink_file): Likewise.
1029 * completer.c (free_completion_tracker): Likewise.
1030 * corelow.c (add_to_spuid_list): Likewise.
1031 * cp-namespace.c (reset_directive_searched): Likewise.
1032 * cp-support.c (reset_directive_searched): Likewise.
1033 * cris-tdep.c (cris_sigtramp_frame_unwind_cache): Likewise.
1034 (cris_frame_unwind_cache): Likewise.
1035 * d-lang.c (builtin_d_type): Likewise.
1036 * d-namespace.c (reset_directive_searched): Likewise.
1037 * dbxread.c (dbx_free_symfile_info): Likewise.
1038 (do_free_bincl_list_cleanup): Likewise.
1039 * disasm.c (hash_dis_line_entry): Likewise.
1040 (eq_dis_line_entry): Likewise.
1041 (dis_asm_print_address): Likewise.
1042 (fprintf_disasm): Likewise.
1043 (do_ui_file_delete): Likewise.
1044 * doublest.c (convert_floatformat_to_doublest): Likewise.
1045 * dummy-frame.c (pop_dummy_frame_bpt): Likewise.
1046 (dummy_frame_prev_register): Likewise.
1047 (dummy_frame_this_id): Likewise.
1048 * dwarf2-frame-tailcall.c (cache_hash): Likewise.
1049 (cache_eq): Likewise.
1050 (cache_find): Likewise.
1051 (tailcall_frame_this_id): Likewise.
1052 (dwarf2_tailcall_prev_register_first): Likewise.
1053 (tailcall_frame_prev_register): Likewise.
1054 (tailcall_frame_dealloc_cache): Likewise.
1055 (tailcall_frame_prev_arch): Likewise.
1056 * dwarf2-frame.c (dwarf2_frame_state_free): Likewise.
1057 (dwarf2_frame_set_init_reg): Likewise.
1058 (dwarf2_frame_init_reg): Likewise.
1059 (dwarf2_frame_set_signal_frame_p): Likewise.
1060 (dwarf2_frame_signal_frame_p): Likewise.
1061 (dwarf2_frame_set_adjust_regnum): Likewise.
1062 (dwarf2_frame_adjust_regnum): Likewise.
1063 (clear_pointer_cleanup): Likewise.
1064 (dwarf2_frame_cache): Likewise.
1065 (find_cie): Likewise.
1066 (dwarf2_frame_find_fde): Likewise.
1067 * dwarf2expr.c (dwarf_expr_address_type): Likewise.
1068 (free_dwarf_expr_context_cleanup): Likewise.
1069 * dwarf2loc.c (locexpr_find_frame_base_location): Likewise.
1070 (locexpr_get_frame_base): Likewise.
1071 (loclist_find_frame_base_location): Likewise.
1072 (loclist_get_frame_base): Likewise.
1073 (dwarf_expr_dwarf_call): Likewise.
1074 (dwarf_expr_get_base_type): Likewise.
1075 (dwarf_expr_push_dwarf_reg_entry_value): Likewise.
1076 (dwarf_expr_get_obj_addr): Likewise.
1077 (entry_data_value_coerce_ref): Likewise.
1078 (entry_data_value_copy_closure): Likewise.
1079 (entry_data_value_free_closure): Likewise.
1080 (get_frame_address_in_block_wrapper): Likewise.
1081 (dwarf2_evaluate_property): Likewise.
1082 (dwarf2_compile_property_to_c): Likewise.
1083 (needs_frame_read_addr_from_reg): Likewise.
1084 (needs_frame_get_reg_value): Likewise.
1085 (needs_frame_frame_base): Likewise.
1086 (needs_frame_frame_cfa): Likewise.
1087 (needs_frame_tls_address): Likewise.
1088 (needs_frame_dwarf_call): Likewise.
1089 (needs_dwarf_reg_entry_value): Likewise.
1090 (get_ax_pc): Likewise.
1091 (locexpr_read_variable): Likewise.
1092 (locexpr_read_variable_at_entry): Likewise.
1093 (locexpr_read_needs_frame): Likewise.
1094 (locexpr_describe_location): Likewise.
1095 (locexpr_tracepoint_var_ref): Likewise.
1096 (locexpr_generate_c_location): Likewise.
1097 (loclist_read_variable): Likewise.
1098 (loclist_read_variable_at_entry): Likewise.
1099 (loclist_describe_location): Likewise.
1100 (loclist_tracepoint_var_ref): Likewise.
1101 (loclist_generate_c_location): Likewise.
1102 * dwarf2read.c (line_header_hash_voidp): Likewise.
1103 (line_header_eq_voidp): Likewise.
1104 (dwarf2_has_info): Likewise.
1105 (dwarf2_get_section_info): Likewise.
1106 (locate_dwz_sections): Likewise.
1107 (hash_file_name_entry): Likewise.
1108 (eq_file_name_entry): Likewise.
1109 (delete_file_name_entry): Likewise.
1110 (dw2_setup): Likewise.
1111 (dw2_get_file_names_reader): Likewise.
1112 (dw2_find_pc_sect_compunit_symtab): Likewise.
1113 (hash_signatured_type): Likewise.
1114 (eq_signatured_type): Likewise.
1115 (add_signatured_type_cu_to_table): Likewise.
1116 (create_debug_types_hash_table): Likewise.
1117 (lookup_dwo_signatured_type): Likewise.
1118 (lookup_dwp_signatured_type): Likewise.
1119 (lookup_signatured_type): Likewise.
1120 (hash_type_unit_group): Likewise.
1121 (eq_type_unit_group): Likewise.
1122 (get_type_unit_group): Likewise.
1123 (process_psymtab_comp_unit_reader): Likewise.
1124 (sort_tu_by_abbrev_offset): Likewise.
1125 (process_skeletonless_type_unit): Likewise.
1126 (psymtabs_addrmap_cleanup): Likewise.
1127 (dwarf2_read_symtab): Likewise.
1128 (psymtab_to_symtab_1): Likewise.
1129 (die_hash): Likewise.
1130 (die_eq): Likewise.
1131 (load_full_comp_unit_reader): Likewise.
1132 (reset_die_in_process): Likewise.
1133 (free_cu_line_header): Likewise.
1134 (handle_DW_AT_stmt_list): Likewise.
1135 (hash_dwo_file): Likewise.
1136 (eq_dwo_file): Likewise.
1137 (hash_dwo_unit): Likewise.
1138 (eq_dwo_unit): Likewise.
1139 (create_dwo_cu_reader): Likewise.
1140 (create_dwo_unit_in_dwp_v1): Likewise.
1141 (create_dwo_unit_in_dwp_v2): Likewise.
1142 (lookup_dwo_unit_in_dwp): Likewise.
1143 (dwarf2_locate_dwo_sections): Likewise.
1144 (dwarf2_locate_common_dwp_sections): Likewise.
1145 (dwarf2_locate_v2_dwp_sections): Likewise.
1146 (hash_dwp_loaded_cutus): Likewise.
1147 (eq_dwp_loaded_cutus): Likewise.
1148 (lookup_dwo_cutu): Likewise.
1149 (abbrev_table_free_cleanup): Likewise.
1150 (dwarf2_free_abbrev_table): Likewise.
1151 (find_partial_die_in_comp_unit): Likewise.
1152 (free_line_header_voidp): Likewise.
1153 (follow_die_offset): Likewise.
1154 (follow_die_sig_1): Likewise.
1155 (free_heap_comp_unit): Likewise.
1156 (free_stack_comp_unit): Likewise.
1157 (dwarf2_free_objfile): Likewise.
1158 (per_cu_offset_and_type_hash): Likewise.
1159 (per_cu_offset_and_type_eq): Likewise.
1160 (get_die_type_at_offset): Likewise.
1161 (partial_die_hash): Likewise.
1162 (partial_die_eq): Likewise.
1163 (dwarf2_per_objfile_free): Likewise.
1164 (hash_strtab_entry): Likewise.
1165 (eq_strtab_entry): Likewise.
1166 (add_string): Likewise.
1167 (hash_symtab_entry): Likewise.
1168 (eq_symtab_entry): Likewise.
1169 (delete_symtab_entry): Likewise.
1170 (cleanup_mapped_symtab): Likewise.
1171 (add_indices_to_cpool): Likewise.
1172 (hash_psymtab_cu_index): Likewise.
1173 (eq_psymtab_cu_index): Likewise.
1174 (add_address_entry_worker): Likewise.
1175 (unlink_if_set): Likewise.
1176 (write_one_signatured_type): Likewise.
1177 (save_gdb_index_command): Likewise.
1178 * elfread.c (elf_symtab_read): Likewise.
1179 (elf_gnu_ifunc_cache_hash): Likewise.
1180 (elf_gnu_ifunc_cache_eq): Likewise.
1181 (elf_gnu_ifunc_record_cache): Likewise.
1182 (elf_gnu_ifunc_resolve_by_cache): Likewise.
1183 (elf_get_probes): Likewise.
1184 (probe_key_free): Likewise.
1185 * f-lang.c (builtin_f_type): Likewise.
1186 * frame-base.c (frame_base_append_sniffer): Likewise.
1187 (frame_base_set_default): Likewise.
1188 (frame_base_find_by_frame): Likewise.
1189 * frame-unwind.c (frame_unwind_prepend_unwinder): Likewise.
1190 (frame_unwind_append_unwinder): Likewise.
1191 (frame_unwind_find_by_frame): Likewise.
1192 * frame.c (frame_addr_hash): Likewise.
1193 (frame_addr_hash_eq): Likewise.
1194 (frame_stash_find): Likewise.
1195 (do_frame_register_read): Likewise.
1196 (unwind_to_current_frame): Likewise.
1197 (frame_cleanup_after_sniffer): Likewise.
1198 * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
1199 * frv-tdep.c (frv_frame_unwind_cache): Likewise.
1200 * ft32-tdep.c (ft32_frame_cache): Likewise.
1201 * gcore.c (do_bfd_delete_cleanup): Likewise.
1202 (gcore_create_callback): Likewise.
1203 * gdb_bfd.c (hash_bfd): Likewise.
1204 (eq_bfd): Likewise.
1205 (gdb_bfd_open): Likewise.
1206 (free_one_bfd_section): Likewise.
1207 (gdb_bfd_ref): Likewise.
1208 (gdb_bfd_unref): Likewise.
1209 (get_section_descriptor): Likewise.
1210 (gdb_bfd_map_section): Likewise.
1211 (gdb_bfd_crc): Likewise.
1212 (gdb_bfd_mark_parent): Likewise.
1213 (gdb_bfd_record_inclusion): Likewise.
1214 (gdb_bfd_requires_relocations): Likewise.
1215 (print_one_bfd): Likewise.
1216 * gdbtypes.c (type_pair_hash): Likewise.
1217 (type_pair_eq): Likewise.
1218 (builtin_type): Likewise.
1219 (objfile_type): Likewise.
1220 * gnu-v3-abi.c (vtable_ptrdiff_type): Likewise.
1221 (vtable_address_point_offset): Likewise.
1222 (gnuv3_get_vtable): Likewise.
1223 (hash_value_and_voffset): Likewise.
1224 (eq_value_and_voffset): Likewise.
1225 (compare_value_and_voffset): Likewise.
1226 (compute_vtable_size): Likewise.
1227 (gnuv3_get_typeid_type): Likewise.
1228 * go-lang.c (builtin_go_type): Likewise.
1229 * guile/scm-block.c (bkscm_hash_block_smob): Likewise.
1230 (bkscm_eq_block_smob): Likewise.
1231 (bkscm_objfile_block_map): Likewise.
1232 (bkscm_del_objfile_blocks): Likewise.
1233 * guile/scm-breakpoint.c (bpscm_build_bp_list): Likewise.
1234 * guile/scm-disasm.c (gdbscm_disasm_read_memory_worker): Likewise.
1235 (gdbscm_disasm_print_address): Likewise.
1236 * guile/scm-frame.c (frscm_hash_frame_smob): Likewise.
1237 (frscm_eq_frame_smob): Likewise.
1238 (frscm_inferior_frame_map): Likewise.
1239 (frscm_del_inferior_frames): Likewise.
1240 * guile/scm-gsmob.c (gdbscm_add_objfile_ref): Likewise.
1241 * guile/scm-objfile.c (ofscm_handle_objfile_deleted): Likewise.
1242 (ofscm_objfile_smob_from_objfile): Likewise.
1243 * guile/scm-ports.c (ioscm_write): Likewise.
1244 (ioscm_file_port_delete): Likewise.
1245 (ioscm_file_port_rewind): Likewise.
1246 (ioscm_file_port_put): Likewise.
1247 (ioscm_file_port_write): Likewise.
1248 * guile/scm-progspace.c (psscm_handle_pspace_deleted): Likewise.
1249 (psscm_pspace_smob_from_pspace): Likewise.
1250 * guile/scm-safe-call.c (scscm_recording_pre_unwind_handler): Likewise.
1251 (scscm_recording_unwind_handler): Likewise.
1252 (gdbscm_with_catch): Likewise.
1253 (scscm_call_0_body): Likewise.
1254 (scscm_call_1_body): Likewise.
1255 (scscm_call_2_body): Likewise.
1256 (scscm_call_3_body): Likewise.
1257 (scscm_call_4_body): Likewise.
1258 (scscm_apply_1_body): Likewise.
1259 (scscm_eval_scheme_string): Likewise.
1260 (gdbscm_safe_eval_string): Likewise.
1261 (scscm_source_scheme_script): Likewise.
1262 (gdbscm_safe_source_script): Likewise.
1263 * guile/scm-string.c (gdbscm_call_scm_to_stringn): Likewise.
1264 (gdbscm_call_scm_from_stringn): Likewise.
1265 * guile/scm-symbol.c (syscm_hash_symbol_smob): Likewise.
1266 (syscm_eq_symbol_smob): Likewise.
1267 (syscm_get_symbol_map): Likewise.
1268 (syscm_del_objfile_symbols): Likewise.
1269 * guile/scm-symtab.c (stscm_hash_symtab_smob): Likewise.
1270 (stscm_eq_symtab_smob): Likewise.
1271 (stscm_objfile_symtab_map): Likewise.
1272 (stscm_del_objfile_symtabs): Likewise.
1273 * guile/scm-type.c (tyscm_hash_type_smob): Likewise.
1274 (tyscm_eq_type_smob): Likewise.
1275 (tyscm_type_map): Likewise.
1276 (tyscm_copy_type_recursive): Likewise.
1277 (save_objfile_types): Likewise.
1278 * guile/scm-utils.c (extract_arg): Likewise.
1279 * h8300-tdep.c (h8300_frame_cache): Likewise.
1280 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind_cache): Likewise.
1281 * hppa-tdep.c (compare_unwind_entries): Likewise.
1282 (find_unwind_entry): Likewise.
1283 (hppa_frame_cache): Likewise.
1284 (hppa_stub_frame_unwind_cache): Likewise.
1285 * hppanbsd-tdep.c (hppanbsd_supply_gregset): Likewise.
1286 * hppaobsd-tdep.c (hppaobsd_supply_gregset): Likewise.
1287 (hppaobsd_supply_fpregset): Likewise.
1288 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1289 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1290 * i386-tdep.c (i386_frame_cache): Likewise.
1291 (i386_epilogue_frame_cache): Likewise.
1292 (i386_sigtramp_frame_cache): Likewise.
1293 (i386_supply_gregset): Likewise.
1294 (i386_collect_gregset): Likewise.
1295 (i386_gdbarch_init): Likewise.
1296 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Likewise.
1297 (i386obsd_trapframe_cache): Likewise.
1298 * i387-tdep.c (i387_supply_fsave): Likewise.
1299 (i387_collect_fsave): Likewise.
1300 (i387_supply_fxsave): Likewise.
1301 (i387_collect_fxsave): Likewise.
1302 (i387_supply_xsave): Likewise.
1303 (i387_collect_xsave): Likewise.
1304 * ia64-tdep.c (ia64_frame_cache): Likewise.
1305 (ia64_sigtramp_frame_cache): Likewise.
1306 * infcmd.c (attach_command_continuation): Likewise.
1307 (attach_command_continuation_free_args): Likewise.
1308 * inferior.c (restore_inferior): Likewise.
1309 (delete_thread_of_inferior): Likewise.
1310 * inflow.c (inflow_inferior_data_cleanup): Likewise.
1311 (get_inflow_inferior_data): Likewise.
1312 (inflow_inferior_exit): Likewise.
1313 * infrun.c (displaced_step_clear_cleanup): Likewise.
1314 (restore_current_uiout_cleanup): Likewise.
1315 (release_stop_context_cleanup): Likewise.
1316 (do_restore_infcall_suspend_state_cleanup): Likewise.
1317 (do_restore_infcall_control_state_cleanup): Likewise.
1318 (restore_inferior_ptid): Likewise.
1319 * inline-frame.c (block_starting_point_at): Likewise.
1320 * iq2000-tdep.c (iq2000_frame_cache): Likewise.
1321 * jit.c (get_jit_objfile_data): Likewise.
1322 (get_jit_program_space_data): Likewise.
1323 (jit_object_close_impl): Likewise.
1324 (jit_find_objf_with_entry_addr): Likewise.
1325 (jit_breakpoint_deleted): Likewise.
1326 (jit_unwind_reg_set_impl): Likewise.
1327 (jit_unwind_reg_get_impl): Likewise.
1328 (jit_dealloc_cache): Likewise.
1329 (jit_frame_sniffer): Likewise.
1330 (jit_frame_prev_register): Likewise.
1331 (jit_prepend_unwinder): Likewise.
1332 (jit_inferior_exit_hook): Likewise.
1333 (free_objfile_data): Likewise.
1334 * jv-lang.c (jv_per_objfile_free): Likewise.
1335 (get_dynamics_objfile): Likewise.
1336 (get_java_class_symtab): Likewise.
1337 (builtin_java_type): Likewise.
1338 * language.c (language_string_char_type): Likewise.
1339 (language_bool_type): Likewise.
1340 (language_lookup_primitive_type): Likewise.
1341 (language_lookup_primitive_type_as_symbol): Likewise.
1342 * linespec.c (hash_address_entry): Likewise.
1343 (eq_address_entry): Likewise.
1344 (iterate_inline_only): Likewise.
1345 (iterate_name_matcher): Likewise.
1346 (decode_line_2_compare_items): Likewise.
1347 (collect_one_symbol): Likewise.
1348 (compare_symbols): Likewise.
1349 (compare_msymbols): Likewise.
1350 (add_symtabs_to_list): Likewise.
1351 (collect_symbols): Likewise.
1352 (compare_msyms): Likewise.
1353 (add_minsym): Likewise.
1354 (cleanup_linespec_result): Likewise.
1355 * linux-fork.c (inferior_call_waitpid_cleanup): Likewise.
1356 * linux-nat.c (delete_lwp_cleanup): Likewise.
1357 (count_events_callback): Likewise.
1358 (select_event_lwp_callback): Likewise.
1359 (resume_stopped_resumed_lwps): Likewise.
1360 * linux-tdep.c (get_linux_gdbarch_data): Likewise.
1361 (invalidate_linux_cache_inf): Likewise.
1362 (get_linux_inferior_data): Likewise.
1363 (linux_find_memory_regions_thunk): Likewise.
1364 (linux_make_mappings_callback): Likewise.
1365 (linux_corefile_thread_callback): Likewise.
1366 (find_mapping_size): Likewise.
1367 * linux-thread-db.c (find_new_threads_callback): Likewise.
1368 * lm32-tdep.c (lm32_frame_cache): Likewise.
1369 * m2-lang.c (builtin_m2_type): Likewise.
1370 * m32c-tdep.c (m32c_analyze_frame_prologue): Likewise.
1371 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_cache): Likewise.
1372 (m32r_linux_supply_gregset): Likewise.
1373 (m32r_linux_collect_gregset): Likewise.
1374 * m32r-tdep.c (m32r_frame_unwind_cache): Likewise.
1375 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
1376 * m68k-tdep.c (m68k_frame_cache): Likewise.
1377 * m68kbsd-tdep.c (m68kbsd_supply_fpregset): Likewise.
1378 (m68kbsd_supply_gregset): Likewise.
1379 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
1380 * m88k-tdep.c (m88k_frame_cache): Likewise.
1381 (m88k_supply_gregset): Likewise.
1382
1383 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
1384
1385 * aarch64-linux-tdep.c (aarch64_stap_parse_special_token): Add cast
1386 to allocation result assignment.
1387 * ada-exp.y (write_object_renaming): Likewise.
1388 (write_ambiguous_var): Likewise.
1389 (ada_nget_field_index): Likewise.
1390 (write_var_or_type): Likewise.
1391 * ada-lang.c (ada_decode_symbol): Likewise.
1392 (ada_value_assign): Likewise.
1393 (value_pointer): Likewise.
1394 (cache_symbol): Likewise.
1395 (add_nonlocal_symbols): Likewise.
1396 (ada_name_for_lookup): Likewise.
1397 (symbol_completion_add): Likewise.
1398 (ada_to_fixed_type_1): Likewise.
1399 (ada_get_next_arg): Likewise.
1400 (defns_collected): Likewise.
1401 * ada-lex.l (processId): Likewise.
1402 (processString): Likewise.
1403 * ada-tasks.c (read_known_tasks_array): Likewise.
1404 (read_known_tasks_list): Likewise.
1405 * ada-typeprint.c (decoded_type_name): Likewise.
1406 * addrmap.c (addrmap_mutable_create_fixed): Likewise.
1407 * amd64-tdep.c (amd64_push_arguments): Likewise.
1408 (amd64_displaced_step_copy_insn): Likewise.
1409 (amd64_classify_insn_at): Likewise.
1410 (amd64_relocate_instruction): Likewise.
1411 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Likewise.
1412 * arch-utils.c (simple_displaced_step_copy_insn): Likewise.
1413 (initialize_current_architecture): Likewise.
1414 * arm-linux-tdep.c (arm_stap_parse_special_token): Likewise.
1415 * arm-symbian-tdep.c (arm_symbian_osabi_sniffer): Likewise.
1416 * arm-tdep.c (arm_exidx_new_objfile): Likewise.
1417 (arm_push_dummy_call): Likewise.
1418 (extend_buffer_earlier): Likewise.
1419 (arm_adjust_breakpoint_address): Likewise.
1420 (arm_skip_stub): Likewise.
1421 * auto-load.c (filename_is_in_pattern): Likewise.
1422 (maybe_add_script_file): Likewise.
1423 (maybe_add_script_text): Likewise.
1424 (auto_load_objfile_script_1): Likewise.
1425 * auxv.c (ld_so_xfer_auxv): Likewise.
1426 * ax-general.c (new_agent_expr): Likewise.
1427 (grow_expr): Likewise.
1428 (ax_reg_mask): Likewise.
1429 * bcache.c (bcache_full): Likewise.
1430 * breakpoint.c (program_breakpoint_here_p): Likewise.
1431 * btrace.c (parse_xml_raw): Likewise.
1432 * build-id.c (build_id_to_debug_bfd): Likewise.
1433 * buildsym.c (end_symtab_with_blockvector): Likewise.
1434 * c-exp.y (string_exp): Likewise.
1435 (qualified_name): Likewise.
1436 (write_destructor_name): Likewise.
1437 (operator_stoken): Likewise.
1438 (parse_number): Likewise.
1439 (scan_macro_expansion): Likewise.
1440 (yylex): Likewise.
1441 (c_print_token): Likewise.
1442 * c-lang.c (c_get_string): Likewise.
1443 (emit_numeric_character): Likewise.
1444 * charset.c (wchar_iterate): Likewise.
1445 * cli/cli-cmds.c (complete_command): Likewise.
1446 (make_command): Likewise.
1447 * cli/cli-dump.c (restore_section_callback): Likewise.
1448 (restore_binary_file): Likewise.
1449 * cli/cli-interp.c (cli_interpreter_exec): Likewise.
1450 * cli/cli-script.c (execute_control_command): Likewise.
1451 * cli/cli-setshow.c (do_set_command): Likewise.
1452 * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
1453 (read_pe_exported_syms): Likewise.
1454 * coffread.c (coff_read_struct_type): Likewise.
1455 (coff_read_enum_type): Likewise.
1456 * common/btrace-common.c (btrace_data_append): Likewise.
1457 * common/buffer.c (buffer_grow): Likewise.
1458 * common/filestuff.c (gdb_fopen_cloexec): Likewise.
1459 * common/format.c (parse_format_string): Likewise.
1460 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
1461 * common/xml-utils.c (xml_escape_text): Likewise.
1462 * compile/compile-object-load.c (copy_sections): Likewise.
1463 (compile_object_load): Likewise.
1464 * compile/compile-object-run.c (compile_object_run): Likewise.
1465 * completer.c (filename_completer): Likewise.
1466 * corefile.c (read_memory_typed_address): Likewise.
1467 (write_memory_unsigned_integer): Likewise.
1468 (write_memory_signed_integer): Likewise.
1469 (complete_set_gnutarget): Likewise.
1470 * corelow.c (get_core_register_section): Likewise.
1471 * cp-name-parser.y (d_grab): Likewise.
1472 (allocate_info): Likewise.
1473 (cp_new_demangle_parse_info): Likewise.
1474 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Likewise.
1475 (cp_lookup_symbol_in_namespace): Likewise.
1476 (lookup_namespace_scope): Likewise.
1477 (find_symbol_in_baseclass): Likewise.
1478 (cp_lookup_nested_symbol): Likewise.
1479 (cp_lookup_transparent_type_loop): Likewise.
1480 * cp-support.c (copy_string_to_obstack): Likewise.
1481 (make_symbol_overload_list): Likewise.
1482 (make_symbol_overload_list_namespace): Likewise.
1483 (make_symbol_overload_list_adl_namespace): Likewise.
1484 (first_component_command): Likewise.
1485 * cp-valprint.c (cp_print_value): Likewise.
1486 * ctf.c (ctf_xfer_partial): Likewise.
1487 * d-exp.y (StringExp): Likewise.
1488 * d-namespace.c (d_lookup_symbol_in_module): Likewise.
1489 (lookup_module_scope): Likewise.
1490 (find_symbol_in_baseclass): Likewise.
1491 (d_lookup_nested_symbol): Likewise.
1492 * dbxread.c (find_stab_function_addr): Likewise.
1493 (read_dbx_symtab): Likewise.
1494 (dbx_end_psymtab): Likewise.
1495 (cp_set_block_scope): Likewise.
1496 * dcache.c (dcache_alloc): Likewise.
1497 * demangle.c (_initialize_demangler): Likewise.
1498 * dicos-tdep.c (dicos_load_module_p): Likewise.
1499 * dictionary.c (dict_create_hashed_expandable): Likewise.
1500 (dict_create_linear_expandable): Likewise.
1501 (expand_hashtable): Likewise.
1502 (add_symbol_linear_expandable): Likewise.
1503 * dwarf2-frame.c (add_cie): Likewise.
1504 (add_fde): Likewise.
1505 (dwarf2_build_frame_info): Likewise.
1506 * dwarf2expr.c (dwarf_expr_grow_stack): Likewise.
1507 (dwarf_expr_fetch_address): Likewise.
1508 (add_piece): Likewise.
1509 (execute_stack_op): Likewise.
1510 * dwarf2loc.c (chain_candidate): Likewise.
1511 (dwarf_entry_parameter_to_value): Likewise.
1512 (read_pieced_value): Likewise.
1513 (write_pieced_value): Likewise.
1514 * dwarf2read.c (dwarf2_read_section): Likewise.
1515 (add_type_unit): Likewise.
1516 (read_comp_units_from_section): Likewise.
1517 (fixup_go_packaging): Likewise.
1518 (dwarf2_compute_name): Likewise.
1519 (dwarf2_physname): Likewise.
1520 (create_dwo_unit_in_dwp_v1): Likewise.
1521 (create_dwo_unit_in_dwp_v2): Likewise.
1522 (read_func_scope): Likewise.
1523 (read_call_site_scope): Likewise.
1524 (dwarf2_attach_fields_to_type): Likewise.
1525 (process_structure_scope): Likewise.
1526 (mark_common_block_symbol_computed): Likewise.
1527 (read_common_block): Likewise.
1528 (abbrev_table_read_table): Likewise.
1529 (guess_partial_die_structure_name): Likewise.
1530 (fixup_partial_die): Likewise.
1531 (add_file_name): Likewise.
1532 (dwarf2_const_value_data): Likewise.
1533 (dwarf2_const_value_attr): Likewise.
1534 (build_error_marker_type): Likewise.
1535 (guess_full_die_structure_name): Likewise.
1536 (anonymous_struct_prefix): Likewise.
1537 (typename_concat): Likewise.
1538 (dwarf2_canonicalize_name): Likewise.
1539 (dwarf2_name): Likewise.
1540 (write_constant_as_bytes): Likewise.
1541 (dwarf2_fetch_constant_bytes): Likewise.
1542 (copy_string): Likewise.
1543 (parse_macro_definition): Likewise.
1544 * elfread.c (elf_symfile_segments): Likewise.
1545 (elf_rel_plt_read): Likewise.
1546 (elf_gnu_ifunc_resolve_by_cache): Likewise.
1547 (elf_gnu_ifunc_resolve_by_got): Likewise.
1548 (elf_read_minimal_symbols): Likewise.
1549 (elf_gnu_ifunc_record_cache): Likewise.
1550 * event-top.c (top_level_prompt): Likewise.
1551 (command_line_handler): Likewise.
1552 * exec.c (resize_section_table): Likewise.
1553 * expprint.c (print_subexp_standard): Likewise.
1554 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
1555 * findcmd.c (parse_find_args): Likewise.
1556 * findvar.c (address_from_register): Likewise.
1557 * frame.c (get_prev_frame_always): Likewise.
1558 * gdb_bfd.c (gdb_bfd_ref): Likewise.
1559 (get_section_descriptor): Likewise.
1560 * gdb_obstack.c (obconcat): Likewise.
1561 (obstack_strdup): Likewise.
1562 * gdbtypes.c (lookup_function_type_with_arguments): Likewise.
1563 (create_set_type): Likewise.
1564 (lookup_unsigned_typename): Likewise.
1565 (lookup_signed_typename): Likewise.
1566 (resolve_dynamic_union): Likewise.
1567 (resolve_dynamic_struct): Likewise.
1568 (add_dyn_prop): Likewise.
1569 (copy_dynamic_prop_list): Likewise.
1570 (arch_flags_type): Likewise.
1571 (append_composite_type_field_raw): Likewise.
1572 * gdbtypes.h (INIT_FUNC_SPECIFIC): Likewise.
1573 * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
1574 * go-exp.y (string_exp): Likewise.
1575 * go-lang.c (go_demangle): Likewise.
1576 * guile/guile.c (compute_scheme_string): Likewise.
1577 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
1578 (gdbscm_canonicalize_command_name): Likewise.
1579 * guile/scm-ports.c (ioscm_init_stdio_buffers): Likewise.
1580 (ioscm_init_memory_port): Likewise.
1581 (ioscm_reinit_memory_port): Likewise.
1582 * guile/scm-utils.c (gdbscm_gc_xstrdup): Likewise.
1583 (gdbscm_gc_dup_argv): Likewise.
1584 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
1585 * hppa-tdep.c (internalize_unwinds): Likewise.
1586 (read_unwind_info): Likewise.
1587 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1588 (windows_core_xfer_shared_libraries): Likewise.
1589 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
1590 (i386_stap_parse_special_token_triplet): Likewise.
1591 (i386_stap_parse_special_token_three_arg_disp): Likewise.
1592 * i386obsd-tdep.c (i386obsd_sigtramp_p): Likewise.
1593 * inf-child.c (inf_child_fileio_readlink): Likewise.
1594 * inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
1595 (inf_ptrace_store_register): Likewise.
1596 * infrun.c (follow_exec): Likewise.
1597 (displaced_step_prepare_throw): Likewise.
1598 (save_stop_context): Likewise.
1599 (save_infcall_suspend_state): Likewise.
1600 * jit.c (jit_read_descriptor): Likewise.
1601 (jit_read_code_entry): Likewise.
1602 (jit_symtab_line_mapping_add_impl): Likewise.
1603 (finalize_symtab): Likewise.
1604 (jit_unwind_reg_get_impl): Likewise.
1605 * jv-exp.y (QualifiedName): Likewise.
1606 * jv-lang.c (get_java_utf8_name): Likewise.
1607 (type_from_class): Likewise.
1608 (java_demangle_type_signature): Likewise.
1609 (java_class_name_from_physname): Likewise.
1610 * jv-typeprint.c (java_type_print_base): Likewise.
1611 * jv-valprint.c (java_value_print): Likewise.
1612 * language.c (add_language): Likewise.
1613 * linespec.c (add_sal_to_sals_basic): Likewise.
1614 (add_sal_to_sals): Likewise.
1615 (decode_objc): Likewise.
1616 (find_linespec_symbols): Likewise.
1617 * linux-fork.c (fork_save_infrun_state): Likewise.
1618 * linux-nat.c (linux_nat_detach): Likewise.
1619 (linux_nat_fileio_readlink): Likewise.
1620 * linux-record.c (record_linux_sockaddr): Likewise.
1621 (record_linux_msghdr): Likewise.
1622 (Do): Likewise.
1623 * linux-tdep.c (linux_core_info_proc_mappings): Likewise.
1624 (linux_collect_regset_section_cb): Likewise.
1625 (linux_get_siginfo_data): Likewise.
1626 * linux-thread-db.c (try_thread_db_load_from_pdir_1): Likewise.
1627 (try_thread_db_load_from_dir): Likewise.
1628 (thread_db_load_search): Likewise.
1629 (info_auto_load_libthread_db): Likewise.
1630 * m32c-tdep.c (m32c_m16c_address_to_pointer): Likewise.
1631 (m32c_m16c_pointer_to_address): Likewise.
1632 * m68hc11-tdep.c (m68hc11_pseudo_register_write): Likewise.
1633 * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
1634 * machoread.c (macho_check_dsym): Likewise.
1635 * macroexp.c (resize_buffer): Likewise.
1636 (gather_arguments): Likewise.
1637 (maybe_expand): Likewise.
1638 * macrotab.c (new_macro_key): Likewise.
1639 (new_source_file): Likewise.
1640 (new_macro_definition): Likewise.
1641 * mdebugread.c (parse_symbol): Likewise.
1642 (parse_type): Likewise.
1643 (parse_partial_symbols): Likewise.
1644 (psymtab_to_symtab_1): Likewise.
1645 * mem-break.c (default_memory_insert_breakpoint): Likewise.
1646 * mi/mi-cmd-break.c (mi_argv_to_format): Likewise.
1647 * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
1648 (mi_cmd_data_read_memory_bytes): Likewise.
1649 (mi_cmd_data_write_memory_bytes): Likewise.
1650 (mi_cmd_trace_frame_collected): Likewise.
1651 * mi/mi-parse.c (mi_parse_argv): Likewise.
1652 (mi_parse): Likewise.
1653 * minidebug.c (lzma_open): Likewise.
1654 (lzma_pread): Likewise.
1655 * mips-tdep.c (mips_read_fp_register_single): Likewise.
1656 (mips_print_fp_register): Likewise.
1657 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Likewise.
1658 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
1659 * mt-tdep.c (mt_register_name): Likewise.
1660 (mt_registers_info): Likewise.
1661 (mt_push_dummy_call): Likewise.
1662 * namespace.c (add_using_directive): Likewise.
1663 * nat/linux-btrace.c (perf_event_read): Likewise.
1664 (linux_enable_bts): Likewise.
1665 * nat/linux-osdata.c (linux_common_core_of_thread): Likewise.
1666 * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Likewise.
1667 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1668 (nto_parse_redirection): Likewise.
1669 * objc-lang.c (objc_demangle): Likewise.
1670 (find_methods): Likewise.
1671 * objfiles.c (get_objfile_bfd_data): Likewise.
1672 (set_objfile_main_name): Likewise.
1673 (allocate_objfile): Likewise.
1674 (objfile_relocate): Likewise.
1675 (update_section_map): Likewise.
1676 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
1677 * p-exp.y (exp): Likewise.
1678 (yylex): Likewise.
1679 * p-valprint.c (pascal_object_print_value): Likewise.
1680 * parse.c (initialize_expout): Likewise.
1681 (mark_completion_tag): Likewise.
1682 (copy_name): Likewise.
1683 (parse_float): Likewise.
1684 (type_stack_reserve): Likewise.
1685 * ppc-linux-tdep.c (ppc_stap_parse_special_token): Likewise.
1686 (ppu2spu_prev_register): Likewise.
1687 * ppc-ravenscar-thread.c (supply_register_at_address): Likewise.
1688 * printcmd.c (printf_wide_c_string): Likewise.
1689 (printf_pointer): Likewise.
1690 * probe.c (parse_probes): Likewise.
1691 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
1692 (cmdpy_init): Likewise.
1693 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Likewise.
1694 * python/py-symtab.c (set_sal): Likewise.
1695 * python/py-unwind.c (pyuw_sniffer): Likewise.
1696 * python/python.c (python_interactive_command): Likewise.
1697 (compute_python_string): Likewise.
1698 * ravenscar-thread.c (get_running_thread_id): Likewise.
1699 * record-full.c (record_full_exec_insn): Likewise.
1700 (record_full_core_open_1): Likewise.
1701 * regcache.c (regcache_raw_read_signed): Likewise.
1702 (regcache_raw_read_unsigned): Likewise.
1703 (regcache_cooked_read_signed): Likewise.
1704 (regcache_cooked_read_unsigned): Likewise.
1705 * remote-fileio.c (remote_fileio_func_open): Likewise.
1706 (remote_fileio_func_rename): Likewise.
1707 (remote_fileio_func_unlink): Likewise.
1708 (remote_fileio_func_stat): Likewise.
1709 (remote_fileio_func_system): Likewise.
1710 * remote-mips.c (mips_xfer_memory): Likewise.
1711 (mips_load_srec): Likewise.
1712 (pmon_end_download): Likewise.
1713 * remote.c (new_remote_state): Likewise.
1714 (map_regcache_remote_table): Likewise.
1715 (remote_register_number_and_offset): Likewise.
1716 (init_remote_state): Likewise.
1717 (get_memory_packet_size): Likewise.
1718 (remote_pass_signals): Likewise.
1719 (remote_program_signals): Likewise.
1720 (remote_start_remote): Likewise.
1721 (remote_check_symbols): Likewise.
1722 (remote_query_supported): Likewise.
1723 (extended_remote_attach): Likewise.
1724 (process_g_packet): Likewise.
1725 (store_registers_using_G): Likewise.
1726 (putpkt_binary): Likewise.
1727 (read_frame): Likewise.
1728 (compare_sections_command): Likewise.
1729 (remote_hostio_pread): Likewise.
1730 (remote_hostio_readlink): Likewise.
1731 (remote_file_put): Likewise.
1732 (remote_file_get): Likewise.
1733 (remote_pid_to_exec_file): Likewise.
1734 (_initialize_remote): Likewise.
1735 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1736 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
1737 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
1738 (bfd_uses_spe_extensions): Likewise.
1739 * s390-linux-tdep.c (s390_displaced_step_copy_insn): Likewise.
1740 * score-tdep.c (score7_malloc_and_get_memblock): Likewise.
1741 * solib-dsbt.c (decode_loadmap): Likewise.
1742 (fetch_loadmap): Likewise.
1743 (scan_dyntag): Likewise.
1744 (enable_break): Likewise.
1745 (dsbt_relocate_main_executable): Likewise.
1746 * solib-frv.c (fetch_loadmap): Likewise.
1747 (enable_break2): Likewise.
1748 (frv_relocate_main_executable): Likewise.
1749 * solib-spu.c (spu_relocate_main_executable): Likewise.
1750 (spu_bfd_open): Likewise.
1751 * solib-svr4.c (lm_info_read): Likewise.
1752 (read_program_header): Likewise.
1753 (find_program_interpreter): Likewise.
1754 (scan_dyntag): Likewise.
1755 (elf_locate_base): Likewise.
1756 (open_symbol_file_object): Likewise.
1757 (read_program_headers_from_bfd): Likewise.
1758 (svr4_relocate_main_executable): Likewise.
1759 * solib-target.c (solib_target_relocate_section_addresses): Likewise.
1760 * solib.c (solib_find_1): Likewise.
1761 (exec_file_find): Likewise.
1762 (solib_find): Likewise.
1763 * source.c (openp): Likewise.
1764 (print_source_lines_base): Likewise.
1765 (forward_search_command): Likewise.
1766 * sparc-ravenscar-thread.c (supply_register_at_address): Likewise.
1767 * spu-tdep.c (spu2ppu_prev_register): Likewise.
1768 (spu_get_overlay_table): Likewise.
1769 * stabsread.c (patch_block_stabs): Likewise.
1770 (define_symbol): Likewise.
1771 (again:): Likewise.
1772 (read_member_functions): Likewise.
1773 (read_one_struct_field): Likewise.
1774 (read_enum_type): Likewise.
1775 (common_block_start): Likewise.
1776 * stack.c (read_frame_arg): Likewise.
1777 (backtrace_command): Likewise.
1778 * stap-probe.c (stap_parse_register_operand): Likewise.
1779 * symfile.c (syms_from_objfile_1): Likewise.
1780 (find_separate_debug_file): Likewise.
1781 (load_command): Likewise.
1782 (load_progress): Likewise.
1783 (load_section_callback): Likewise.
1784 (reread_symbols): Likewise.
1785 (add_filename_language): Likewise.
1786 (allocate_compunit_symtab): Likewise.
1787 (read_target_long_array): Likewise.
1788 (simple_read_overlay_table): Likewise.
1789 * symtab.c (symbol_set_names): Likewise.
1790 (resize_symbol_cache): Likewise.
1791 (rbreak_command): Likewise.
1792 (completion_list_add_name): Likewise.
1793 (completion_list_objc_symbol): Likewise.
1794 (add_filename_to_list): Likewise.
1795 * target-descriptions.c (maint_print_c_tdesc_cmd): Likewise.
1796 * target-memory.c (target_write_memory_blocks): Likewise.
1797 * target.c (target_read_string): Likewise.
1798 (read_whatever_is_readable): Likewise.
1799 (target_read_alloc_1): Likewise.
1800 (simple_search_memory): Likewise.
1801 (target_fileio_read_alloc_1): Likewise.
1802 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
1803 * top.c (command_line_input): Likewise.
1804 * tracefile-tfile.c (tfile_fetch_registers): Likewise.
1805 * tracefile.c (tracefile_fetch_registers): Likewise.
1806 * tracepoint.c (add_memrange): Likewise.
1807 (init_collection_list): Likewise.
1808 (add_aexpr): Likewise.
1809 (trace_dump_actions): Likewise.
1810 (parse_trace_status): Likewise.
1811 (parse_tracepoint_definition): Likewise.
1812 (parse_tsv_definition): Likewise.
1813 (parse_static_tracepoint_marker_definition): Likewise.
1814 * tui/tui-file.c (tui_sfileopen): Likewise.
1815 (tui_file_adjust_strbuf): Likewise.
1816 * tui/tui-io.c (tui_expand_tabs): Likewise.
1817 * tui/tui-source.c (tui_set_source_content): Likewise.
1818 * typeprint.c (find_global_typedef): Likewise.
1819 * ui-file.c (do_ui_file_xstrdup): Likewise.
1820 (ui_file_obsavestring): Likewise.
1821 (mem_file_write): Likewise.
1822 * utils.c (make_hex_string): Likewise.
1823 (get_regcomp_error): Likewise.
1824 (puts_filtered_tabular): Likewise.
1825 (gdb_realpath_keepfile): Likewise.
1826 (ldirname): Likewise.
1827 (gdb_bfd_errmsg): Likewise.
1828 (substitute_path_component): Likewise.
1829 * valops.c (search_struct_method): Likewise.
1830 (find_oload_champ_namespace_loop): Likewise.
1831 * valprint.c (print_decimal_chars): Likewise.
1832 (read_string): Likewise.
1833 (generic_emit_char): Likewise.
1834 * varobj.c (varobj_delete): Likewise.
1835 (varobj_value_get_print_value): Likewise.
1836 * vaxobsd-tdep.c (vaxobsd_sigtramp_sniffer): Likewise.
1837 * windows-tdep.c (display_one_tib): Likewise.
1838 * xcoffread.c (read_xcoff_symtab): Likewise.
1839 (process_xcoff_symbol): Likewise.
1840 (swap_sym): Likewise.
1841 (scan_xcoff_symtab): Likewise.
1842 (xcoff_initial_scan): Likewise.
1843 * xml-support.c (gdb_xml_end_element): Likewise.
1844 (xml_process_xincludes): Likewise.
1845 (xml_fetch_content_from_file): Likewise.
1846 * xml-syscall.c (xml_list_of_syscalls): Likewise.
1847 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
1848
1849 2015-09-23 James Bowman <james.bowman@ftdichip.com>
1850
1851 * ft32-tdep.c (ft32_register_type): Return gdbarch_tdep (gdbarch)->pc_type
1852 instead of builtin_func_ptr.
1853 (ft32_pointer_to_address): New function.
1854 (ft32_address_class_type_flags): New function.
1855 (ft32_address_class_type_flags_to_name): New function.
1856 (ft32_address_class_name_to_type_flags): New function.
1857 (ft32_gdbarch_init): Set tdep->pc_type. Call
1858 set_gdbarch_pointer_to_address,
1859 set_gdbarch_address_class_type_flags
1860 set_gdbarch_address_class_name_to_type_flags,
1861 and set_gdbarch_address_class_type_flags_to_name.
1862 * ft32-tdep.h (struct gdbarch_tdep) <pc_type>: New field.
1863
1864 2015-09-23 Pierre-Marie de Rodat <derodat@adacore.com>
1865
1866 * ada-lang.c (ada_evaluate_subexp) <OP_FUNCALL>: When the input
1867 value is a reference, actually dereference it in order to get
1868 the underlying value.
1869
1870 2015-09-22 Simon Marchi <simon.marchi@ericsson.com>
1871
1872 * stap-probe.c (handle_stap_probe): Remove unnecessary cast.
1873
1874 2015-09-21 Simon Marchi <simon.marchi@ericsson.com>
1875
1876 * cli/cli-setshow.c (cmd_show_list): Constify a variable.
1877 * linespec.c (linespec_lexer_lex_string): Same.
1878
1879 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
1880
1881 * NEWS: Mention support for fast tracepoints on aarch64-linux.
1882
1883 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
1884
1885 * aarch64-tdep.c (aarch64_analyze_prologue): New is_adrp
1886 variable. Call aarch64_decode_adr instead of
1887 aarch64_decode_adrp.
1888 * arch/aarch64-insn.h (aarch64_decode_adrp): Delete.
1889 (aarch64_decode_adr): New function declaration.
1890 * arch/aarch64-insn.c (aarch64_decode_adrp): Delete.
1891 (aarch64_decode_adr): New function, factored out from
1892 aarch64_decode_adrp to decode both adr and adrp instructions.
1893
1894 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
1895
1896 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-insn.o.
1897 (HFILES_NO_SRCDIR): Add arch/aarch64-insn.h.
1898 (aarch64-insn.o): New rule.
1899 * configure.tgt (aarch64*-*-elf): Add aarch64-insn.o.
1900 (aarch64*-*-linux*): Likewise.
1901 * arch/aarch64-insn.c: New file.
1902 * arch/aarch64-insn.h: New file.
1903 * aarch64-tdep.c: Include arch/aarch64-insn.h.
1904 (aarch64_debug): Move to arch/aarch64-insn.c. Declare in
1905 arch/aarch64-insn.h.
1906 (decode_add_sub_imm): Rename to ...
1907 (aarch64_decode_add_sub_imm): ... this.
1908 (decode_adrp): Rename to ...
1909 (aarch64_decode_adrp): ... this. Move to arch/aarch64-insn.c.
1910 Declare in arch/aarch64-insn.h.
1911 (decode_b): Rename to ...
1912 (aarch64_decode_b): ... this. Move to arch/aarch64-insn.c.
1913 Declare in arch/aarch64-insn.h.
1914 (decode_bcond): Rename to ...
1915 (aarch64_decode_bcond): ... this. Move to arch/aarch64-insn.c.
1916 Declare in arch/aarch64-insn.h.
1917 (decode_br): Rename to ...
1918 (aarch64_decode_br): ... this.
1919 (decode_cb): Rename to ...
1920 (aarch64_decode_cb): ... this. Move to arch/aarch64-insn.c.
1921 Declare in arch/aarch64-insn.h.
1922 (decode_eret): Rename to ...
1923 (aarch64_decode_eret): ... this.
1924 (decode_movz): Rename to ...
1925 (aarch64_decode_movz): ... this.
1926 (decode_orr_shifted_register_x): Rename to ...
1927 (aarch64_decode_orr_shifted_register_x): ... this.
1928 (decode_ret): Rename to ...
1929 (aarch64_decode_ret): ... this.
1930 (decode_stp_offset): Rename to ...
1931 (aarch64_decode_stp_offset): ... this.
1932 (decode_stp_offset_wb): Rename to ...
1933 (aarch64_decode_stp_offset_wb): ... this.
1934 (decode_stur): Rename to ...
1935 (aarch64_decode_stur): ... this.
1936 (decode_tb): Rename to ...
1937 (aarch64_decode_tb): ... this. Move to arch/aarch64-insn.c.
1938 Declare in arch/aarch64-insn.h.
1939 (aarch64_analyze_prologue): Adjust calls to renamed functions.
1940
1941 2015-09-20 Doug Evans <xdje42@gmail.com>
1942
1943 * dwarf2read.c (add_partial_symbol): Remove outdated comments.
1944
1945 2015-09-20 Doug Evans <xdje42@gmail.com>
1946
1947 * dwarf2read.c (dwarf2_compute_name): Add FIXME. Don't use a local
1948 variable name that collides with a parameter.
1949
1950 2015-09-20 Joel Brobecker <brobecker@adacore.com>
1951
1952 * dwarf2loc.c (locexpr_get_frame_base): Renames
1953 block_op_get_frame_base.
1954 (dwarf2_block_frame_base_locexpr_funcs): Replace reference to
1955 block_op_get_frame_base by reference to locexpr_get_frame_base.
1956 (loclist_get_frame_base): New function, near identical copy of
1957 locexpr_get_frame_base.
1958 (dwarf2_block_frame_base_loclist_funcs): Replace reference to
1959 block_op_get_frame_base by reference to loclist_get_frame_base.
1960
1961 2015-09-19 Doug Evans <xdje42@gmail.com>
1962
1963 * ravenscar-thread.c (ravenscar_inferior_created): Replace
1964 current_inferior ()->gdbarch with its wrapper target_gdbarch.
1965
1966 2015-09-18 Doug Evans <xdje42@gmail.com>
1967
1968 * linux-thread-db.c (record_thread): Return the created thread.
1969 (thread_from_lwp): Likewise.
1970 (thread_db_get_thread_local_address): Update.
1971
1972 2015-09-18 Doug Evans <xdje42@gmail.com>
1973
1974 * symtab.h (general_symbol_info) <mangled_lang>: Delete struct,
1975 move only member demangled_name up. All uses updated.
1976
1977 2015-09-18 Doug Evans <xdje42@gmail.com>
1978
1979 * findvar.c (default_read_var_value) <LOC_UNRESOLVED>: Include the
1980 kind of minimal symbol in the error message.
1981 * objfiles.c (objfile_flavour_name): New function.
1982 * objfiles.h (objfile_flavour_name): Declare.
1983
1984 2015-09-18 Yao Qi <yao.qi@linaro.org>
1985
1986 * nat/aarch64-linux.c: Include elf/common.h,
1987 nat/gdb_ptrace.h, asm/ptrace.h and sys/uio.h.
1988 (aarch64_ps_get_thread_area): New function.
1989 * nat/aarch64-linux.h: Include gdb_proc_service.h.
1990 (aarch64_ps_get_thread_area): Declare.
1991 * aarch64-linux-nat.c (ps_get_thread_area): Call
1992 aarch64_ps_get_thread_area.
1993
1994 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
1995
1996 * record-btrace.c (record_btrace_resume): Honour scheduler-locking.
1997
1998 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
1999
2000 * NEWS: Announce new scheduler-locking mode.
2001 * infrun.c (schedlock_replay): New.
2002 (scheduler_enums): Add schedlock_replay.
2003 (scheduler_mode): Change default to schedlock_replay.
2004 (user_visible_resume_ptid): Handle schedlock_replay.
2005 (clear_proceed_status_thread): Stop replaying if resumed thread is
2006 not replaying.
2007 (schedlock_applies): Handle schedlock_replay.
2008 (_initialize_infrun): Document new scheduler-locking mode.
2009 * record-btrace.c (record_btrace_resume): Remove code to stop other
2010 threads when not replaying the resumed thread.
2011
2012 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2013
2014 * record-btrace.c ((record_btrace_will_replay): New.
2015 (init_record_btrace_ops): Initialize to_record_will_replay.
2016 * record-full.c ((record_full_will_replay): New.
2017 (init_record_full_ops): Initialize to_record_will_replay.
2018 * target-delegates.c: Regenerated.
2019 * target.c (target_record_will_replay): New.
2020 * target.h (struct target_ops) <to_record_will_replay>: New.
2021 (target_record_will_replay): New.
2022
2023 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2024
2025 * record-btrace.c (record_btrace_resume): Call
2026 target_record_stop_replaying.
2027 (record_btrace_stop_replaying_all): New.
2028 (init_record_btrace_ops): Initialize to_record_stop_replaying.
2029 * record-full.c (record_full_stop_replaying): New.
2030 (init_record_full_ops ): Initialize to_record_stop_replaying.
2031 * target-delegates.c: Regenerated.
2032 * target.c (target_record_stop_replaying): New.
2033 * target.h (struct target_ops) <to_record_stop_replaying>: New.
2034 (target_record_stop_replaying): New.
2035
2036 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2037
2038 * record-btrace.c (record_btrace_xfer_partial)
2039 (record_btrace_store_registers, record_btrace_prepare_to_store):
2040 Call record_btrace_is_replaying with inferior_ptid instead of
2041 minus_one_ptid.
2042 (record_btrace_store_registers): Change error message.
2043
2044 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2045
2046 * record-btrace.c (record_btrace_is_replaying): Add ptid argument.
2047 Update users to pass minus_one_ptid.
2048 * record-full.c (record_full_is_replaying): Add ptid argument (ignored).
2049 * record.c (cmd_record_delete): Pass inferior_ptid to
2050 target_record_is_replaying.
2051 * target-delegates.c: Regenerated.
2052 * target.c (target_record_is_replaying): Add ptid argument.
2053 * target.h (struct target_ops) <to_record_is_replaying>: Add ptid
2054 argument.
2055 (target_record_is_replaying): Add ptid argument.
2056
2057 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2058
2059 * record-btrace.c (record_btrace_open): Remove non_stop check.
2060 * NEWS: Announce that record btrace supports non-stop mode.
2061
2062 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2063
2064 * infrun.c (handle_inferior_event_1): Switch to the eventing thread
2065 in the TARKET_WAITKIND_NO_HISTORY case.
2066
2067 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2068
2069 * record-btrace.c (record_btrace_maybe_mark_async_event): New.
2070 (record_btrace_wait): Call record_btrace_maybe_mark_async_event.
2071
2072 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2073
2074 * record-btrace.c (get_thread_current_frame): New.
2075 (record_btrace_start_replaying): Call get_thread_current_frame.
2076
2077 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2078
2079 * record-btrace.c (record_btrace_resume_thread): A move request
2080 overwrites a previous move request.
2081 (record_btrace_find_resume_thread): Removed.
2082 (record_btrace_resume): Resume all requested threads.
2083
2084 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2085
2086 * record-btrace.c: Include vec.h.
2087 (record_btrace_find_thread_to_move): Removed.
2088 (btrace_step_no_resumed, btrace_step_again)
2089 (record_btrace_stop_replaying_at_end): New.
2090 (record_btrace_cancel_resume): Call record_btrace_stop_replaying_at_end.
2091 (record_btrace_single_step_forward): Remove calls to
2092 record_btrace_stop_replaying.
2093 (record_btrace_step_thread): Do only one step for BTHR_CONT and
2094 BTHR_RCONT. Keep threads at the end of their history moving.
2095 (record_btrace_wait): Call record_btrace_step_thread for all threads
2096 until one reports an event. Call record_btrace_stop_replaying_at_end
2097 for the eventing thread.
2098
2099 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2100
2101 * record-btrace.c (record_btrace_single_step_forward): Return
2102 NO_HISTORY if a step brings us to the end of the execution history.
2103
2104 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2105
2106 * record-btrace.c (record_btrace_step_thread): Move breakpoint check
2107 to ...
2108 (record_btrace_single_step_forward): ... here and
2109 (record_btrace_single_step_backward): ... here.
2110
2111 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2112
2113 * record-btrace.c (btrace_step_spurious)
2114 (record_btrace_single_step_forward)
2115 (record_btrace_single_step_backward): New.
2116 (record_btrace_step_thread): Call record_btrace_single_step_forward
2117 and record_btrace_single_step_backward.
2118
2119 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2120
2121 * record-btrace.c (record_btrace_replay_at_breakpoint): New.
2122 (record_btrace_step_thread): Call record_btrace_replay_at_breakpoint.
2123
2124 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2125
2126 * record-btrace.c (btrace_thread_flag_to_str)
2127 (record_btrace_cancel_resume): New.
2128 (record_btrace_step_thread): Call btrace_thread_flag_to_str.
2129 (record_btrace_resume): Print execution direction.
2130 (record_btrace_resume_thread): Call btrace_thread_flag_to_str.
2131 (record_btrace_wait): Call record_btrace_cancel_resume.
2132
2133 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2134
2135 * btrace.h (enum btrace_thread_flag) <BTHR_STOP>: New.
2136 * record-btrace (record_btrace_resume_thread): Clear BTHR_STOP.
2137 (record_btrace_find_thread_to_move): Also accept threads that have
2138 BTHR_STOP set.
2139 (btrace_step_stopped_on_request, record_btrace_stop): New.
2140 (record_btrace_step_thread): Support BTHR_STOP.
2141 (record_btrace_wait): Also clear BTHR_STOP when stopping other threads.
2142 (init_record_btrace_ops): Initialize to_stop.
2143
2144 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2145
2146 * record-btrace.c (record_btrace_wait): Replace non_stop check with
2147 target_is_non_stop_p ().
2148
2149 2015-09-15 Pierre-Marie de Rodat <derodat@adacore.com>
2150
2151 * ada-typeprint.c (print_array_type): Do not describe arrays as
2152 packed when they embed dynamic elements.
2153
2154 2015-09-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2155
2156 * symtab.h (address_class): Document that TLS variables
2157 are handled by LOC_UNRESOLVED.
2158 * findvar.c (default_read_var_value): Don't relocate TLS variables.
2159 * printcmd.c (address_info): Don't relocate TLS variables.
2160
2161 2015-09-15 Pierre Langlois <pierre.langlois@arm.com>
2162
2163 * aarch64-tdep.c (decode_add_sub_imm): Use debug_printf.
2164 (decode_adrp): Likewise.
2165 (decode_b): Likewise.
2166 (decode_bcond): Likewise.
2167 (decode_br): Likewise.
2168 (decode_cb): Likewise.
2169 (decode_eret): Likewise.
2170 (decode_movz): Likewise.
2171 (decode_orr_shifted_register_x): Likewise.
2172 (decode_ret): Likewise.
2173 (decode_stp_offset): Likewise.
2174 (decode_stp_offset_wb): Likewise.
2175 (decode_stur): Likewise.
2176 (decode_tb): Likewise.
2177 (aarch64_analyze_prologue): Likewise.
2178 (pass_in_x): Likewise.
2179 (pass_in_v): Likewise.
2180 (pass_on_stack): Likewise.
2181 (aarch64_push_dummy_call): Likewise.
2182 (aarch64_extract_return_value): Likewise.
2183 (aarch64_store_return_value): Likewise.
2184 (aarch64_return_value): Likewise.
2185 (aarch64_record_asimd_load_store): Likewise.
2186 (aarch64_record_load_store): Likewise.
2187 (aarch64_record_data_proc_simd_fp): Likewise.
2188
2189 2015-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2190
2191 * linespec.c (minsym_found): Call gdbarch_skip_entrypoint.
2192 * ppc64-tdep.c (ppc64_skip_trampoline_code): Rename to ...
2193 (ppc64_skip_trampoline_code_1): ... here.
2194 (ppc64_skip_trampoline_code): New wrapper function.
2195 * symtab.c (find_function_start_sal): Call gdbarch_skip_entrypoint.
2196
2197 2015-09-15 Yao Qi <yao.qi@linaro.org>
2198
2199 * aarch64-linux-nat.c (aarch64_linux_can_do_single_step): New
2200 function.
2201 (_initialize_aarch64_linux_nat): Install it to to_can_do_single_step.
2202 * arm-linux-tdep.c (arm_linux_software_single_step): Return 0
2203 if target_can_do_single_step returns 1.
2204 * remote.c (struct vCont_action_support) <s, S>: New fields.
2205 (PACKET_vContSupported): New enum.
2206 (remote_protocol_features): New element for vContSupported.
2207 (remote_query_supported): Append "vContSupported+".
2208 (remote_vcont_probe): Remove support_s and support_S, use
2209 rs->supports_vCont.s and rs->supports_vCont.S instead. Disable
2210 vCont packet if c and C actions are not supported.
2211 (remote_can_do_single_step): New function.
2212 (init_remote_ops): Install it to to_can_do_single_step.
2213 (_initialize_remote): Call add_packet_config_cmd.
2214 * target.h (struct target_ops) <to_can_do_single_step>: New field.
2215 (target_can_do_single_step): New macro.
2216 * target-delegates.c: Re-generated.
2217
2218 2015-09-15 Yao Qi <yao.qi@linaro.org>
2219
2220 * aarch64-linux-nat.c (aarch64_linux_siginfo_fixup): New function.
2221 (_initialize_aarch64_linux_nat): Call linux_nat_set_siginfo_fixup.
2222 * nat/aarch64-linux.c (aarch64_compat_siginfo_from_siginfo):
2223 New function.
2224 (aarch64_siginfo_from_compat_siginfo): New function.
2225 * nat/aarch64-linux.h: Include signal.h.
2226 (compat_int_t, compat_uptr_t, compat_time_t): Typedef.
2227 (compat_timer_t, compat_clock_t): Likewise.
2228 (struct compat_timeval): New.
2229 (union compat_sigval): New.
2230 (struct compat_siginfo): New.
2231 (cpt_si_pid, cpt_si_uid, cpt_si_timerid): New macros.
2232 (cpt_si_overrun, cpt_si_status, cpt_si_utime): Likewise.
2233 (cpt_si_stime, cpt_si_ptr, cpt_si_addr): Likewise.
2234 (cpt_si_band, cpt_si_fd): Likewise.
2235
2236 2015-09-14 Pedro Alves <palves@redhat.com>
2237
2238 * infrun.c (current_stop_id): New global.
2239 (get_stop_id, new_stop_id): New functions.
2240 (fetch_inferior_event): Handle normal_stop proceeding the target.
2241 (struct stop_context): New.
2242 (save_stop_context, release_stop_context_cleanup)
2243 (stop_context_changed): New functions.
2244 (normal_stop): Return true if the hook-stop changes the stop
2245 context.
2246 * infrun.h (get_stop_id): Declare.
2247 (normal_stop): Now returns int. Add documentation.
2248
2249 2015-09-14 Pierre-Marie de Rodat <derodat@adacore.com>
2250
2251 * ada-lang.c (ada_value_ptr_subscript): Update the heading
2252 comment. Handle packed arrays.
2253
2254 2015-09-14 Pedro Alves <palves@redhat.com>
2255
2256 * NEWS (Changes in GDB 7.10, New commands>: Remove duplicate
2257 mention of maint set/show target-non-stop.
2258
2259 2015-09-11 Don Breazeal <donb@codesourcery.com>
2260
2261 * NEWS: Announce new remote packets for the exec-events
2262 feature and the exec-events feature and associated commands.
2263
2264 2015-09-11 Don Breazeal <donb@codesourcery.com>
2265
2266 * remote.c (remote_exec_event_p): New function.
2267 (remote_insert_exec_catchpoint): New function.
2268 (remote_remove_exec_catchpoint): New function.
2269 (init_extended_remote_ops): Initialize extended_remote_ops
2270 members to_insert_exec_catchpoint and
2271 to_remove_exec_catchpoint.
2272
2273 2015-09-11 Don Breazeal <donb@codesourcery.com>
2274 Luis Machado <lgustavo@codesourcery.com>
2275
2276 * infrun.c (follow_exec): Use process-style ptid for
2277 exec message. Call add_inferior_with_spaces and
2278 target_follow_exec.
2279 * nat/linux-ptrace.c (linux_supports_traceexec): New function.
2280 * nat/linux-ptrace.h (linux_supports_traceexec): Declare.
2281 * remote.c (remote_pspace_data): New static variable.
2282 (remote_pspace_data_cleanup): New function.
2283 (get_remote_exec_file): New function.
2284 (set_remote_exec_file_1): New function.
2285 (set_remote_exec_file): New function.
2286 (show_remote_exec_file): New function.
2287 (remote_exec_file): Delete static variable.
2288 (anonymous enum) <PACKET_exec_event_feature>: New
2289 enumeration constant.
2290 (remote_protocol_features): Add entry for exec-events feature.
2291 (remote_query_supported): Add client side of qSupported query
2292 for exec-events feature.
2293 (remote_follow_exec): New function.
2294 (remote_parse_stop_reply): Handle 'exec' stop reason.
2295 (extended_remote_run, extended_remote_create_inferior): Call
2296 get_remote_exec_file and set_remote_exec_file_1.
2297 (init_extended_remote_ops) <to_follow_exec>: Initialize new
2298 member.
2299 (_initialize_remote): Call
2300 register_program_space_data_with_cleanup. Call
2301 add_packet_config_cmd for remote exec-events feature.
2302 Modify call to add_setshow_string_noescape_cmd for exec-file
2303 to use new functions set_remote_exec_file and
2304 show_remote_exec_file.
2305 * target-debug.h, target-delegates.c: Regenerated.
2306 * target.c (target_follow_exec): New function.
2307 * target.h (struct target_ops) <to_follow_exec>: New member.
2308 (target_follow_exec): Declare new function.
2309
2310 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2311
2312 * aarch64-tdep.c (decode_cb): Move up comment describing the
2313 encoding.
2314 (decode_tb): Fix a typo in comment above the function. Move up
2315 comment describing the encoding.
2316
2317 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2318
2319 * aarch64-tdep.c (decode_bcond): Fix incorrect mask.
2320
2321 2015-09-11 Mihail-Marian Nistor <mihail.nistor@freescale.com>
2322
2323 PR gdb/18947
2324 * aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
2325 glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.
2326
2327 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2328
2329 * ada-lang.c (scan_discrim_bound): Factor out arithmetic
2330 operations.
2331
2332 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2333
2334 * ada-lang.c (ada_search_struct_field): Constify parameters
2335 and/or variables..
2336 (xget_renaming_scope): Likewise.
2337 (ada_is_redundant_range_encoding): Likewise.
2338 (scan_discrim_bound): Likewise.
2339 (to_fixed_range_type): Likewise.
2340
2341 2015-09-10 Yao Qi <yao.qi@linaro.org>
2342
2343 * breakpoint.c (download_tracepoint_locations): New local
2344 can_download_tracepoint. Check the result of
2345 target_can_download_tracepoint and save it in
2346 can_download_tracepoint if there are tracepoints to download.
2347 * linux-nat.h (enum tribool): Move it to ...
2348 * common/common-types.h: ... here.
2349
2350 2015-09-09 Pedro Alves <palves@redhat.com>
2351
2352 * inf-loop.c (inferior_event_handler): Delete INF_TIMER case.
2353 * target.h (enum inferior_event_type) <INF_TIMER>: Delete.
2354
2355 2015-09-09 Pedro Alves <palves@redhat.com>
2356
2357 * continuations.c (add_continuation, restore_thread_cleanup)
2358 (do_all_continuations_ptid, do_all_continuations_thread_callback)
2359 (do_all_continuations_thread, do_all_continuations)
2360 (discard_all_continuations_thread_callback)
2361 (discard_all_continuations_thread, discard_all_continuations)
2362 (add_intermediate_continuation)
2363 (do_all_intermediate_continuations_thread_callback)
2364 (do_all_intermediate_continuations_thread)
2365 (do_all_intermediate_continuations)
2366 (discard_all_intermediate_continuations_thread_callback)
2367 (discard_all_intermediate_continuations_thread)
2368 (discard_all_intermediate_continuations): Delete.
2369 * continuations.h (add_continuation, do_all_continuations)
2370 (do_all_continuations_thread, discard_all_continuations)
2371 (discard_all_continuations_thread, add_intermediate_continuation)
2372 (do_all_intermediate_continuations)
2373 (do_all_intermediate_continuations_thread)
2374 (discard_all_intermediate_continuations)
2375 (discard_all_intermediate_continuations_thread): Delete
2376 declarations.
2377 * event-top.c (stdin_event_handler): Delete references to
2378 continuations.
2379 * gdbthread.h (struct thread_info): Delete continuations and
2380 intermediate_continuations fields.
2381 * inf-loop.c (inferior_event_handler): Remove references to
2382 continuations.
2383 * infrun.c (infrun_thread_stop_requested_callback): Remove
2384 references to continuations.
2385 * target.h (enum inferior_event_type) <INF_EXEC_CONTINUE>: Delete.
2386 * thread.c: Don't include "continuations.h".
2387 (clear_thread_inferior_resources): Remove references to
2388 continuations.
2389
2390 2015-09-09 Pedro Alves <palves@redhat.com>
2391
2392 * infcall.c (struct dummy_frame_context_saver): Delete.
2393 (dummy_frame_context_saver_free, dummy_frame_context_saver_dtor)
2394 (dummy_frame_context_saver_drop)
2395 (dummy_frame_context_saver_cleanup)
2396 (dummy_frame_context_saver_get_regs)
2397 (dummy_frame_context_saver_setup): Delete.
2398 * infcall.h (dummy_frame_context_saver_drop)
2399 (dummy_frame_context_saver_cleanup)
2400 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver):
2401 Delete.
2402 (get_return_value): Remove 'ctx_saver' paremeter. Adjust.
2403 * inferior.h (get_return_value): Remove 'ctx_saver' paremeter.
2404 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Adjust.
2405
2406 2015-09-09 Pedro Alves <palves@redhat.com>
2407
2408 * breakpoint.c: Include "thread-fsm.h".
2409 (struct until_break_command_continuation_args): Delete.
2410 (struct until_break_fsm): New.
2411 (until_break_fsm_ops): New global.
2412 (new_until_break_fsm, until_break_fsm_should_stop): New functions.
2413 (until_break_command_continuation): Delete.
2414 (until_break_fsm_clean_up): New function.
2415 (until_break_fsm_async_reply_reason): New function.
2416 (until_break_command): Adjust to create an until_break_fsm instead
2417 of a continuation.
2418 (momentary_bkpt_print_it): No longer print MI's async-stop-reason
2419 here.
2420 * infcmd.c (struct until_next_fsm): New.
2421 (until_next_fsm_ops): New global.
2422 (new_until_next_fsm, until_next_fsm_should_stop): New function.
2423 (until_next_continuation): Delete.
2424 (until_next_fsm_clean_up, until_next_fsm_async_reply_reason): New
2425 functions.
2426 (until_next_command): Adjust to create a new until_next_fsm
2427 instead of a continuation.
2428
2429 2015-09-09 Pedro Alves <palves@redhat.com>
2430
2431 * infcall.c: Include thread_fsm.h.
2432 (struct call_return_meta_info): New.
2433 (get_call_return_value): New function, factored out from
2434 call_function_by_hand_dummy.
2435 (struct call_thread_fsm): New.
2436 (call_thread_fsm_ops): New global.
2437 (new_call_thread_fsm, call_thread_fsm_should_stop)
2438 (call_thread_fsm_should_notify_stop): New functions.
2439 (run_inferior_call): Add 'sm' parameter. Associate the FSM with
2440 the thread.
2441 (call_function_by_hand_dummy): Create a new call_thread_fsm
2442 instance, associate it with the thread, and wait for the FSM to
2443 finish. If finished successfully, fetch the function's result
2444 value out of the FSM.
2445 * infrun.c (fetch_inferior_event): If the FSM says the stop
2446 shouldn't be notified, don't call normal_stop.
2447 (maybe_remove_breakpoints): New function, factored out from ...
2448 (normal_stop): ... here. Simplify.
2449 * infrun.h (maybe_remove_breakpoints): Declare.
2450 * thread-fsm.c (thread_fsm_should_notify_stop): New function.
2451 (thread-fsm.h) <struct thread_fsm_ops>: New field.
2452 (thread_fsm_should_notify_stop): Declare.
2453
2454 2015-09-09 Pedro Alves <palves@redhat.com>
2455
2456 * Makefile.in (COMMON_OBS): Add thread-fsm.o.
2457 * breakpoint.c (handle_jit_event): Print debug output.
2458 (bpstat_what): Split event callback handling to ...
2459 (bpstat_run_callbacks): ... this new function.
2460 (momentary_bkpt_print_it): No longer handle bp_finish here.
2461 * breakpoint.h (bpstat_run_callbacks): Declare.
2462 * gdbthread.h (struct thread_info) <step_multi>: Delete field.
2463 <thread_fsm>: New field.
2464 (thread_cancel_execution_command): Declare.
2465 * infcmd.c: Include thread-fsm.h.
2466 (struct step_command_fsm): New.
2467 (step_command_fsm_ops): New global.
2468 (new_step_command_fsm, step_command_fsm_prepare): New functions.
2469 (step_1): Adjust to use step_command_fsm_prepare and
2470 prepare_one_step.
2471 (struct step_1_continuation_args): Delete.
2472 (step_1_continuation): Delete.
2473 (step_command_fsm_should_stop): New function.
2474 (step_once): Delete.
2475 (step_command_fsm_clean_up, step_command_fsm_async_reply_reason)
2476 (prepare_one_step): New function, based on step_once.
2477 (until_next_command): Remove step_multi reference.
2478 (struct return_value_info): New.
2479 (print_return_value): Rename to ...
2480 (print_return_value_1): ... this. New struct return_value_info
2481 parameter. Adjust.
2482 (print_return_value): Reimplement as wrapper around
2483 print_return_value_1.
2484 (struct finish_command_fsm): New.
2485 (finish_command_continuation): Delete.
2486 (finish_command_fsm_ops): New global.
2487 (new_finish_command_fsm, finish_command_fsm_should_stop): New
2488 functions.
2489 (finish_command_fsm_clean_up, finish_command_fsm_return_value):
2490 New.
2491 (finish_command_continuation_free_arg): Delete.
2492 (finish_command_fsm_async_reply_reason): New.
2493 (finish_backward, finish_forward): Change symbol parameter to a
2494 finish_command_fsm. Adjust.
2495 (finish_command): Create a finish_command_fsm. Adjust.
2496 * infrun.c: Include "thread-fsm.h".
2497 (clear_proceed_status_thread): Delete the thread's FSM.
2498 (infrun_thread_stop_requested_callback): Cancel the thread's
2499 execution command.
2500 (clean_up_just_stopped_threads_fsms): New function.
2501 (fetch_inferior_event): Handle the event_thread's should_stop
2502 method saying the command isn't done yet.
2503 (process_event_stop_test): Run breakpoint callbacks here.
2504 (print_stop_event): Rename to ...
2505 (print_stop_location): ... this.
2506 (restore_current_uiout_cleanup): New function.
2507 (print_stop_event): Reimplement.
2508 (normal_stop): No longer notify the end_stepping_range observers
2509 here handle "step N" nor "finish" here. No longer call
2510 print_stop_event here.
2511 * infrun.h (struct return_value_info): Forward declare.
2512 (print_return_value): Declare.
2513 (print_stop_event): Change prototype.
2514 * thread-fsm.c: New file.
2515 * thread-fsm.h: New file.
2516 * thread.c: Include "thread-fsm.h".
2517 (thread_cancel_execution_command): New function.
2518 (clear_thread_inferior_resources): Call it.
2519 * cli/cli-interp.c (cli_on_normal_stop): New function.
2520 (cli_interpreter_init): Install cli_on_normal_stop as normal_stop
2521 observer.
2522 * mi/mi-interp.c: Include "thread-fsm.h".
2523 (restore_current_uiout_cleanup): Delete.
2524 (mi_on_normal_stop): If the thread has an FSM associated, and it
2525 finished, ask it for the async-reply-reason to print. Always call
2526 print_stop_event here, regardless of the top-level interpreter.
2527 Check bpstat_what to tell whether an asynchronous breakpoint hit
2528 triggered.
2529 * tui/tui-interp.c (tui_on_normal_stop): New function.
2530 (tui_init): Install tui_on_normal_stop as normal_stop observer.
2531
2532 2015-09-09 Pedro Alves <palves@redhat.com>
2533
2534 * breakpoint.c (bpstat_do_actions_1, until_break_command): Don't
2535 check whether the target can async.
2536 * inf-loop.c (inferior_event_handler): Only call target_async if
2537 the target can async.
2538 * infcall.c: Include top.h and interps.h.
2539 (run_inferior_call): For the interpreter to sync mode while
2540 running the infcall. Call wait_sync_command_done instead of
2541 wait_for_inferior plus normal_stop.
2542 * infcmd.c (prepare_execution_command): Don't check whether the
2543 target can async when running in the foreground.
2544 (step_1): Delete synchronous case handling.
2545 (step_once): Always install a continuation, even in sync mode.
2546 (until_next_command, finish_forward): Don't check whether the
2547 target can async.
2548 (attach_command_post_wait, notice_new_inferior): Always install a
2549 continuation, even in sync mode.
2550 * infrun.c (mark_infrun_async_event_handler): New function.
2551 (proceed): In sync mode, mark infrun's event source instead of
2552 waiting for events here.
2553 (fetch_inferior_event): If the target can't async, do a blocking
2554 wait.
2555 (prepare_to_wait): In sync mode, mark infrun's event source.
2556 (infrun_async_inferior_event_handler): No longer bail out if the
2557 target can't async.
2558 * infrun.h (mark_infrun_async_event_handler): New declaration.
2559 * linux-nat.c (linux_nat_wait_1): Remove calls to
2560 set_sigint_trap/clear_sigint_trap.
2561 (linux_nat_terminal_inferior): No longer check whether the target
2562 can async.
2563 * mi/mi-interp.c (mi_on_sync_execution_done): Update and simplify
2564 comment.
2565 (mi_execute_command_input_handler): No longer check whether the
2566 target is async. Update and simplify comment.
2567 * target.c (default_target_wait): New function.
2568 * target.h (struct target_ops) <to_wait>: Now defaults to
2569 default_target_wait.
2570 (default_target_wait): Declare.
2571 * top.c (wait_sync_command_done): New function, factored out from
2572 ...
2573 (maybe_wait_sync_command_done): ... this.
2574 * top.h (wait_sync_command_done): Declare.
2575 * target-delegates.c: Regenerate.
2576
2577 2015-09-09 Markus Metzger <markus.t.metzger@intel.com>
2578
2579 * nat/linux-btrace.h (struct btrace_target_info) <ptr_bits>: Remove.
2580 * nat/linux-btrace.c: Include filestuff.h and inttypes.h.
2581 Remove include of sys/utsname.h.
2582 (linux_determine_kernel_ptr_bits): Remove.
2583 (linux_determine_kernel_start): New.
2584 (perf_event_is_kernel_addr): Remove tinfo argument. Update users.
2585 Update check.
2586 (perf_event_skip_bts_record): Remove tinfo argument. Update users.
2587 (linux_enable_bts, linux_enable_pt): Remove tinfo->ptr_bits
2588 initialization.
2589 * x86-linux-nat.c (x86_linux_enable_btrace): Remove ptr_bits
2590 assignment.
2591
2592 2015-09-07 Pedro Alves <palves@redhat.com>
2593
2594 * guile/guile-internal.h (as_a_scm_t_subr): New.
2595 * guile/guile.c (misc_guile_functions): Use it.
2596 * guile/scm-arch.c (arch_functions): Use it.
2597 * guile/scm-block.c (block_functions, gdbscm_initialize_blocks):
2598 Use it.
2599 * guile/scm-breakpoint.c (breakpoint_functions): Use it.
2600 * guile/scm-cmd.c (command_functions): Use it.
2601 * guile/scm-disasm.c (disasm_functions): Use it.
2602 * guile/scm-exception.c (exception_functions)
2603 (private_exception_functions): Use it.
2604 * guile/scm-frame.c (frame_functions)
2605 * guile/scm-gsmob.c (gsmob_functions): Use it.
2606 * guile/scm-iterator.c (iterator_functions): Use it.
2607 * guile/scm-lazy-string.c (lazy_string_functions): Use it.
2608 * guile/scm-math.c (math_functions): Use it.
2609 * guile/scm-objfile.c (objfile_functions): Use it.
2610 * guile/scm-param.c (parameter_functions): Use it.
2611 * guile/scm-ports.c (port_functions, private_port_functions): Use
2612 it.
2613 * guile/scm-pretty-print.c (pretty_printer_functions): Use it.
2614 * guile/scm-progspace.c (pspace_functions): Use it.
2615 * guile/scm-string.c (string_functions): Use it.
2616 * guile/scm-symbol.c (symbol_functions): Use it.
2617 * guile/scm-symtab.c (symtab_functions): Use it.
2618 * guile/scm-type.c (type_functions, gdbscm_initialize_types): Use
2619 it.
2620 * guile/scm-value.c (value_functions): Use it.
2621
2622 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2623
2624 * tui/tui-data.c (win_with_focus): Remove cast of NULL pointer.
2625 (tui_next_win): Likewise.
2626 (tui_prev_win): Likewise.
2627 (tui_partial_win_by_name): Likewise.
2628 (tui_init_generic_part): Likewise.
2629 (init_content_element): Likewise.
2630 (tui_del_window): Likewise.
2631 (tui_free_window): Likewise.
2632 (tui_del_data_windows): Likewise.
2633 (tui_free_data_content): Likewise.
2634 * tui/tui-layout.c (make_source_or_disasm_window): Likewise.
2635 * tui/tui-regs.c (tui_show_register_group): Likewise.
2636 * tui/tui-win.c (tui_resize_all): Likewise.
2637 (tui_set_focus): Likewise.
2638 (tui_set_win_height): Likewise.
2639 (make_invisible_and_set_new_height): Likewise.
2640 * tui/tui-windata.c (tui_delete_data_content_windows): Likewise.
2641 * tui/tui-wingeneral.c (make_visible): Likewise.
2642
2643 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2644
2645 * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
2646
2647 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2648
2649 * c-valprint.c (print_unpacked_pointer): Remove cast of NULL
2650 pointer.
2651 * dbxread.c (dbx_end_psymtab): Likewise.
2652 * gnu-nat.c (gnu_write_inferior): Likewise.
2653 * mdebugread.c (cross_ref): Likewise.
2654 * p-valprint.c (pascal_val_print): Likewise.
2655 * xcoffread.c (xcoff_end_psymtab): Likewise.
2656
2657 2015-09-04 Yao Qi <yao.qi@linaro.org>
2658
2659 * NEWS: Mention the aarch64 multi-arch debugging support.
2660
2661 2015-09-03 Pierre-Marie de Rodat <derodat@adacore.com>
2662
2663 * ada-lang.c (ada_language_arch_info): Create a TYPE_CODE_CHAR
2664 type instead of a TYPE_CODE_INT one for the string_char_type
2665 and the ada_primitive_type_char types.
2666
2667 2015-09-03 Yao Qi <yao.qi@linaro.org>
2668
2669 * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
2670 Move code to aarch64_linux_region_ok_for_watchpoint. Call
2671 aarch64_linux_region_ok_for_watchpoint.
2672 * nat/aarch64-linux-hw-point.c (aarch64_linux_region_ok_for_watchpoint):
2673 New function.
2674 * nat/aarch64-linux-hw-point.h (aarch64_linux_region_ok_for_watchpoint):
2675 Declare it.
2676
2677 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
2678
2679 * gdb_obstack.h (obstack_strdup): Declare.
2680 * gdb_obstack.c (obstack_strdup): Define.
2681 * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
2682 * gdbarch.c: Regenerate.
2683 * gdbarch.h: Regenerate.
2684 * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
2685
2686 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
2687
2688 * gdbtypes.c (copy_type_recursive): Update documentation.
2689
2690 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2691
2692 * solib-svr4.c (solib_event_probe_action): Initialize 'probe_argc'
2693 as zero.
2694
2695 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2696
2697 * solib-svr4.c (svr4_handle_solib_event): Initialize 'val' as NULL
2698
2699 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2700
2701 * solib-svr4.c (solib_event_probe_action): Call
2702 get_probe_argument_count using TRY...CATCH.
2703 (svr4_handle_solib_event): Likewise, for evaluate_probe_argument.
2704
2705 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2706
2707 * probe.h (struct probe_ops) <get_probe_argument_count,
2708 evaluate_probe_argument, enable_probe, disable_probe>: Mention in
2709 the comment that the function can throw an exception.
2710 (get_probe_argument_count): Likewise.
2711 (evaluate_probe_argument): Likewise.
2712 * stap-probe.c (stap_get_opcode): Call error instead of
2713 internal_error.
2714 (stap_get_expected_argument_type): Likewise. Add argument
2715 'probe'. Improve error message by mentioning the probe's name.
2716 (stap_parse_probe_arguments): Adjust call to
2717 stap_get_expected_argument_type.
2718 (stap_get_arg): Add comment. Assert that 'probe->args_parsed' is
2719 not zero. Call internal_error if GDB requests an argument but the
2720 probe has no arguments.
2721
2722 2015-09-01 Pierre-Marie de Rodat <derodat@adacore.com>
2723
2724 * ada-lang.c (ada_resolve_function): Do not ask the user what
2725 match to use when in completion mode.
2726
2727 2015-08-31 Andrew Burgess <andrew.burgess@embecosm.com>
2728
2729 * tui/tui-data.c (tui_win_name): Make local variable const, remove
2730 cast of NULL.
2731
2732 2015-08-31 Max Filippov <jcmvbkbc@gmail.com>
2733
2734 * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Initialize
2735 call_abi using XSHAL_ABI macro.
2736
2737 2015-08-29 Doug Evans <xdje42@gmail.com>
2738
2739 * symtab.h (struct symbol): Tweak comment.
2740
2741 2015-08-29 Patrick Palka <patrick@parcs.ath.cx>
2742
2743 * gdbtypes.c (alloc_type_arch): Allocate the type on the given
2744 gdbarch obstack instead of on the heap. Update commentary
2745 accordingly.
2746
2747 2015-08-28 Joel Brobecker <brobecker@adacore.com>
2748
2749 GDB 7.10 released.
2750
2751 2015-08-28 Simon Marchi <simon.marchi@ericsson.com>
2752
2753 * NEWS: Update entry about non-8-bits addressable memory.
2754
2755 2015-08-28 Ulrich Weigand <uweigand@de.ibm.com>
2756
2757 Revert:
2758 2014-11-06 Doug Evans <xdje42@gmail.com>
2759 * solib.c (solib_global_lookup): Fetch arch from objfile,
2760 not target_gdbarch.
2761
2762 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2763
2764 * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Do not
2765 attempt to relocate a TLS variable offset.
2766
2767 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2768
2769 * spu-multiarch.c (parse_spufs_run): Bail out if inferior is not
2770 registered yet. Set inferior_ptid while calling target_read_memory.
2771
2772 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2773
2774 * nat/linux-ptrace.h (GDB_ARCH_TRAP_BRKPT): Replace by ...
2775 (GDB_ARCH_IS_TRAP_BRKPT): ... this. Add __powerpc__ case.
2776 * linux-nat.c (check_stopped_by_breakpoint): Use
2777 GDB_ARCH_IS_TRAP_BRKPT instead of GDB_ARCH_TRAP_BRKPT.
2778
2779 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2780
2781 * linux-thread-db.c (thread_db_get_thread_local_address): If the
2782 thread was not yet discovered, use thread_from_lwp instead of
2783 calling thread_db_find_new_threads_1.
2784
2785 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
2786
2787 * m88k-tdep.c (m88k_analyze_prologue): Fix inverted allocation
2788 statements.
2789
2790 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
2791
2792 * NEWS: Document support for non-8-bits addressable memory.
2793
2794 2015-08-27 Pedro Alves <palves@redhat.com>
2795
2796 * configure.ac: Remove AC_TYPE_SIGNAL call.
2797 * configure, config.in: Regenerate.
2798
2799 2015-08-27 Pedro Alves <palves@redhat.com>
2800
2801 * cp-support.c (gdb_demangle): Use sighandler_t. Remove cast.
2802 * extension-priv.h: Include signal.h.
2803 (struct signal_handler) <handler>: Change type to sighandler_t.
2804 * extension.c (install_gdb_sigint_handler): Use sighandler_t.
2805 * inflow.c (sigint_ours, sigquit_ours): Change type to
2806 sighandler_t.
2807 (child_terminal_inferior): Remove casts.
2808 (child_terminal_ours_1, new_tty): Use sighandler_t. Remove casts.
2809 (osig): Change type to sighandler_t.
2810 * nto-procfs.c (ofunc): Change type to sighandler_t.
2811 (procfs_wait): Remove casts.
2812 * remote-m32r-sdi.c (m32r_wait, m32r_load): Use sighandler_t.
2813 * remote-sim.c (gdbsim_wait): Use sighandler_t.
2814 * utils.c (wait_to_die_with_timeout): Use sighandler_t.
2815
2816 2015-08-27 Pedro Alves <palves@redhat.com>
2817
2818 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add signal-h.
2819 * gnulib/aclocal.m4: Renegerate.
2820 * gnulib/config.in: Renegerate.
2821 * gnulib/configure: Renegerate.
2822 * gnulib/import/Makefile.am: Update.
2823 * gnulib/import/Makefile.in: Regenerate.
2824 * gnulib/import/m4/gnulib-cache.m4: Update.
2825 * gnulib/import/m4/gnulib-comp.m4: Update.
2826 * gnulib/import/m4/signal_h.m4: New file.
2827 * gnulib/import/signal.in.h: New file.
2828
2829 2015-08-27 Pedro Alves <palves@redhat.com>
2830
2831 * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE)
2832 (MIN_MEMORY_PACKET_SIZE): New.
2833 (MAX_REMOTE_PACKET_SIZE, MIN_REMOTE_PACKET_SIZE): Delete.
2834 (get_memory_packet_size): Adjust. No longer limit the max packet
2835 size.
2836 (set_memory_packet_size): Adjust, and remove dead code.
2837 (remote_check_symbols): Use xmalloc and a cleanup instead of
2838 alloca.
2839 (remote_packet_size): No longer cap the packet size.
2840 (putpkt_binary): Use xmalloc and a cleanup instead of alloca.
2841
2842 2015-08-26 Luis Machado <lgustavo@codesourcery.com>
2843
2844 * compile/compile.c (compile_to_object): Mention language in
2845 error message.
2846
2847 2015-08-26 Patrick Palka <patrick@parcs.ath.cx>
2848
2849 * target.c (target_pre_inferior): Unset attach_flag.
2850
2851 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
2852
2853 * gdbarch.sh (append_name): Fix type in XRESIZEVEC.
2854 * gdbarch.c: Re-generate.
2855
2856 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
2857
2858 * aarch64-linux-nat.c (aarch64_add_process): Replace xmalloc-family
2859 function with the XNEW-family equivalent.
2860 * aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
2861 * ada-exp.y (write_ambiguous_var): Likewise.
2862 * ada-lang.c (resolve_subexp): Likewise.
2863 (user_select_syms): Likewise.
2864 (assign_aggregate): Likewise.
2865 (ada_evaluate_subexp): Likewise.
2866 (cache_symbol): Likewise.
2867 * addrmap.c (allocate_key): Likewise.
2868 (addrmap_create_mutable): Likewise.
2869 * aix-thread.c (sync_threadlists): Likewise.
2870 * alpha-tdep.c (alpha_push_dummy_call): Likewise.
2871 (alpha_gdbarch_init): Likewise.
2872 * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
2873 * arm-linux-nat.c (arm_linux_add_process): Likewise.
2874 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
2875 * arm-tdep.c (push_stack_item): Likewise.
2876 (arm_displaced_step_copy_insn): Likewise.
2877 (arm_gdbarch_init): Likewise.
2878 (_initialize_arm_tdep): Likewise.
2879 * avr-tdep.c (push_stack_item): Likewise.
2880 * ax-general.c (new_agent_expr): Likewise.
2881 * block.c (block_initialize_namespace): Likewise.
2882 * breakpoint.c (alloc_counted_command_line): Likewise.
2883 (update_dprintf_command_list): Likewise.
2884 (parse_breakpoint_sals): Likewise.
2885 (decode_static_tracepoint_spec): Likewise.
2886 (until_break_command): Likewise.
2887 (clear_command): Likewise.
2888 (update_global_location_list): Likewise.
2889 (get_breakpoint_objfile_data) Likewise.
2890 * btrace.c (ftrace_new_function): Likewise.
2891 (btrace_set_insn_history): Likewise.
2892 (btrace_set_call_history): Likewise.
2893 * buildsym.c (add_symbol_to_list): Likewise.
2894 (record_pending_block): Likewise.
2895 (start_subfile): Likewise.
2896 (start_buildsym_compunit): Likewise.
2897 (push_subfile): Likewise.
2898 (end_symtab_get_static_block): Likewise.
2899 (buildsym_init): Likewise.
2900 * cli/cli-cmds.c (source_command): Likewise.
2901 * cli/cli-decode.c (add_cmd): Likewise.
2902 * cli/cli-script.c (build_command_line): Likewise.
2903 (setup_user_args): Likewise.
2904 (realloc_body_list): Likewise.
2905 (process_next_line): Likewise.
2906 (copy_command_lines): Likewise.
2907 * cli/cli-setshow.c (do_set_command): Likewise.
2908 * coff-pe-read.c (read_pe_exported_syms): Likewise.
2909 * coffread.c (coff_locate_sections): Likewise.
2910 (coff_symtab_read): Likewise.
2911 (coff_read_struct_type): Likewise.
2912 * common/cleanups.c (make_my_cleanup2): Likewise.
2913 * common/common-exceptions.c (throw_it): Likewise.
2914 * common/filestuff.c (make_cleanup_close): Likewise.
2915 * common/format.c (parse_format_string): Likewise.
2916 * common/queue.h (DEFINE_QUEUE_P): Likewise.
2917 * compile/compile-object-load.c (munmap_list_add): Likewise.
2918 (compile_object_load): Likewise.
2919 * compile/compile-object-run.c (compile_object_run): Likewise.
2920 * compile/compile.c (append_args): Likewise.
2921 * corefile.c (specify_exec_file_hook): Likewise.
2922 * cp-support.c (make_symbol_overload_list): Likewise.
2923 * cris-tdep.c (push_stack_item): Likewise.
2924 (cris_gdbarch_init): Likewise.
2925 * ctf.c (ctf_trace_file_writer_new): Likewise.
2926 * dbxread.c (init_header_files): Likewise.
2927 (add_new_header_file): Likewise.
2928 (init_bincl_list): Likewise.
2929 (dbx_end_psymtab): Likewise.
2930 (start_psymtab): Likewise.
2931 (dbx_end_psymtab): Likewise.
2932 * dcache.c (dcache_init): Likewise.
2933 * dictionary.c (dict_create_hashed): Likewise.
2934 (dict_create_hashed_expandable): Likewise.
2935 (dict_create_linear): Likewise.
2936 (dict_create_linear_expandable): Likewise.
2937 * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
2938 * dummy-frame.c (register_dummy_frame_dtor): Likewise.
2939 * dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
2940 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2941 (decode_frame_entry_1): Likewise.
2942 * dwarf2expr.c (new_dwarf_expr_context): Likewise.
2943 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
2944 * dwarf2read.c (dwarf2_has_info): Likewise.
2945 (create_signatured_type_table_from_index): Likewise.
2946 (dwarf2_read_index): Likewise.
2947 (dw2_get_file_names_reader): Likewise.
2948 (create_all_type_units): Likewise.
2949 (read_cutu_die_from_dwo): Likewise.
2950 (init_tu_and_read_dwo_dies): Likewise.
2951 (init_cutu_and_read_dies): Likewise.
2952 (create_all_comp_units): Likewise.
2953 (queue_comp_unit): Likewise.
2954 (inherit_abstract_dies): Likewise.
2955 (read_call_site_scope): Likewise.
2956 (dwarf2_add_field): Likewise.
2957 (dwarf2_add_typedef): Likewise.
2958 (dwarf2_add_member_fn): Likewise.
2959 (attr_to_dynamic_prop): Likewise.
2960 (abbrev_table_alloc_abbrev): Likewise.
2961 (abbrev_table_read_table): Likewise.
2962 (add_include_dir): Likewise.
2963 (add_file_name): Likewise.
2964 (dwarf_decode_line_header): Likewise.
2965 (dwarf2_const_value_attr): Likewise.
2966 (dwarf_alloc_block): Likewise.
2967 (parse_macro_definition): Likewise.
2968 (set_die_type): Likewise.
2969 (write_psymtabs_to_index): Likewise.
2970 (create_cus_from_index): Likewise.
2971 (dwarf2_create_include_psymtab): Likewise.
2972 (process_psymtab_comp_unit_reader): Likewise.
2973 (build_type_psymtab_dependencies): Likewise.
2974 (read_comp_units_from_section): Likewise.
2975 (compute_compunit_symtab_includes): Likewise.
2976 (create_dwo_unit_in_dwp_v1): Likewise.
2977 (create_dwo_unit_in_dwp_v2): Likewise.
2978 (read_func_scope): Likewise.
2979 (process_structure_scope): Likewise.
2980 (mark_common_block_symbol_computed): Likewise.
2981 (load_partial_dies): Likewise.
2982 (dwarf2_symbol_mark_computed): Likewise.
2983 * elfread.c (elf_symfile_segments): Likewise.
2984 (elf_read_minimal_symbols): Likewise.
2985 * environ.c (make_environ): Likewise.
2986 * eval.c (evaluate_subexp_standard): Likewise.
2987 * event-loop.c (create_file_handler): Likewise.
2988 (create_async_signal_handler): Likewise.
2989 (create_async_event_handler): Likewise.
2990 (create_timer): Likewise.
2991 * exec.c (build_section_table): Likewise.
2992 * fbsd-nat.c (fbsd_remember_child): Likewise.
2993 * fork-child.c (fork_inferior): Likewise.
2994 * frv-tdep.c (new_variant): Likewise.
2995 * gdbarch.sh (gdbarch_alloc): Likewise.
2996 (append_name): Likewise.
2997 * gdbtypes.c (rank_function): Likewise.
2998 (copy_type_recursive): Likewise.
2999 (add_dyn_prop): Likewise.
3000 * gnu-nat.c (make_proc): Likewise.
3001 (make_inf): Likewise.
3002 (gnu_write_inferior): Likewise.
3003 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
3004 (build_std_type_info_type): Likewise.
3005 * guile/scm-param.c (compute_enum_list): Likewise.
3006 * guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
3007 * guile/scm-value.c (gdbscm_value_call): Likewise.
3008 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
3009 * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
3010 (read_unwind_info): Likewise.
3011 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
3012 * infcall.c (dummy_frame_context_saver_setup): Likewise.
3013 (call_function_by_hand_dummy): Likewise.
3014 * infcmd.c (step_once): Likewise.
3015 (finish_forward): Likewise.
3016 (attach_command): Likewise.
3017 (notice_new_inferior): Likewise.
3018 * inferior.c (add_inferior_silent): Likewise.
3019 * infrun.c (add_displaced_stepping_state): Likewise.
3020 (save_infcall_control_state): Likewise.
3021 (save_inferior_ptid): Likewise.
3022 (_initialize_infrun): Likewise.
3023 * jit.c (bfd_open_from_target_memory): Likewise.
3024 (jit_gdbarch_data_init): Likewise.
3025 * language.c (add_language): Likewise.
3026 * linespec.c (decode_line_2): Likewise.
3027 * linux-nat.c (add_to_pid_list): Likewise.
3028 (add_initial_lwp): Likewise.
3029 * linux-thread-db.c (add_thread_db_info): Likewise.
3030 (record_thread): Likewise.
3031 (info_auto_load_libthread_db): Likewise.
3032 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
3033 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
3034 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
3035 * m88k-tdep.c (m88k_analyze_prologue): Likewise.
3036 * macrocmd.c (macro_define_command): Likewise.
3037 * macroexp.c (gather_arguments): Likewise.
3038 * macroscope.c (sal_macro_scope): Likewise.
3039 * macrotab.c (new_macro_table): Likewise.
3040 * mdebugread.c (push_parse_stack): Likewise.
3041 (parse_partial_symbols): Likewise.
3042 (parse_symbol): Likewise.
3043 (psymtab_to_symtab_1): Likewise.
3044 (new_block): Likewise.
3045 (new_psymtab): Likewise.
3046 (mdebug_build_psymtabs): Likewise.
3047 (add_pending): Likewise.
3048 (elfmdebug_build_psymtabs): Likewise.
3049 * mep-tdep.c (mep_gdbarch_init): Likewise.
3050 * mi/mi-main.c (mi_execute_command): Likewise.
3051 * mi/mi-parse.c (mi_parse_argv): Likewise.
3052 * minidebug.c (lzma_open): Likewise.
3053 * minsyms.c (terminate_minimal_symbol_table): Likewise.
3054 * mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
3055 * mips-tdep.c (mips_gdbarch_init): Likewise.
3056 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
3057 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
3058 * mt-tdep.c (mt_registers_info): Likewise.
3059 * nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
3060 * nat/linux-btrace.c (linux_enable_bts): Likewise.
3061 (linux_enable_pt): Likewise.
3062 * nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
3063 (linux_xfer_osdata_processgroups): Likewise.
3064 * nios2-tdep.c (nios2_gdbarch_init): Likewise.
3065 * nto-procfs.c (procfs_meminfo): Likewise.
3066 * objc-lang.c (start_msglist): Likewise.
3067 (selectors_info): Likewise.
3068 (classes_info): Likewise.
3069 (find_methods): Likewise.
3070 * objfiles.c (allocate_objfile): Likewise.
3071 (update_section_map): Likewise.
3072 * osabi.c (gdbarch_register_osabi): Likewise.
3073 (gdbarch_register_osabi_sniffer): Likewise.
3074 * parse.c (start_arglist): Likewise.
3075 * ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
3076 (hwdebug_insert_point): Likewise.
3077 * printcmd.c (display_command): Likewise.
3078 (ui_printf): Likewise.
3079 * procfs.c (create_procinfo): Likewise.
3080 (load_syscalls): Likewise.
3081 (proc_get_LDT_entry): Likewise.
3082 (proc_update_threads): Likewise.
3083 * prologue-value.c (make_pv_area): Likewise.
3084 (pv_area_store): Likewise.
3085 * psymtab.c (extend_psymbol_list): Likewise.
3086 (init_psymbol_list): Likewise.
3087 (allocate_psymtab): Likewise.
3088 * python/py-inferior.c (add_thread_object): Likewise.
3089 * python/py-param.c (compute_enum_values): Likewise.
3090 * python/py-value.c (valpy_call): Likewise.
3091 * python/py-varobj.c (py_varobj_iter_next): Likewise.
3092 * python/python.c (ensure_python_env): Likewise.
3093 * record-btrace.c (record_btrace_start_replaying): Likewise.
3094 * record-full.c (record_full_reg_alloc): Likewise.
3095 (record_full_mem_alloc): Likewise.
3096 (record_full_end_alloc): Likewise.
3097 (record_full_core_xfer_partial): Likewise.
3098 * regcache.c (get_thread_arch_aspace_regcache): Likewise.
3099 * remote-fileio.c (remote_fileio_init_fd_map): Likewise.
3100 * remote-notif.c (remote_notif_state_allocate): Likewise.
3101 * remote.c (demand_private_info): Likewise.
3102 (remote_notif_stop_alloc_reply): Likewise.
3103 (remote_enable_btrace): Likewise.
3104 * reverse.c (save_bookmark_command): Likewise.
3105 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
3106 * rx-tdep.c (rx_gdbarch_init): Likewise.
3107 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
3108 * ser-go32.c (dos_get_tty_state): Likewise.
3109 (dos_copy_tty_state): Likewise.
3110 * ser-mingw.c (ser_windows_open): Likewise.
3111 (ser_console_wait_handle): Likewise.
3112 (ser_console_get_tty_state): Likewise.
3113 (make_pipe_state): Likewise.
3114 (net_windows_open): Likewise.
3115 * ser-unix.c (hardwire_get_tty_state): Likewise.
3116 (hardwire_copy_tty_state): Likewise.
3117 * solib-aix.c (solib_aix_new_lm_info): Likewise.
3118 * solib-dsbt.c (dsbt_current_sos): Likewise.
3119 (dsbt_relocate_main_executable): Likewise.
3120 * solib-frv.c (frv_current_sos): Likewise.
3121 (frv_relocate_main_executable): Likewise.
3122 * solib-spu.c (spu_bfd_fopen): Likewise.
3123 * solib-svr4.c (lm_info_read): Likewise.
3124 (svr4_copy_library_list): Likewise.
3125 (svr4_default_sos): Likewise.
3126 * source.c (find_source_lines): Likewise.
3127 (line_info): Likewise.
3128 (add_substitute_path_rule): Likewise.
3129 * spu-linux-nat.c (spu_bfd_open): Likewise.
3130 * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
3131 * stabsread.c (dbx_lookup_type): Likewise.
3132 (read_type): Likewise.
3133 (read_member_functions): Likewise.
3134 (read_struct_fields): Likewise.
3135 (read_baseclasses): Likewise.
3136 (read_args): Likewise.
3137 (_initialize_stabsread): Likewise.
3138 * stack.c (func_command): Likewise.
3139 * stap-probe.c (handle_stap_probe): Likewise.
3140 * symfile.c (addrs_section_sort): Likewise.
3141 (addr_info_make_relative): Likewise.
3142 (load_section_callback): Likewise.
3143 (add_symbol_file_command): Likewise.
3144 (init_filename_language_table): Likewise.
3145 * symtab.c (create_filename_seen_cache): Likewise.
3146 (sort_search_symbols_remove_dups): Likewise.
3147 (search_symbols): Likewise.
3148 * target.c (make_cleanup_restore_target_terminal): Likewise.
3149 * thread.c (new_thread): Likewise.
3150 (enable_thread_stack_temporaries): Likewise.
3151 (make_cleanup_restore_current_thread): Likewise.
3152 (thread_apply_all_command): Likewise.
3153 * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
3154 * top.c (gdb_readline_wrapper): Likewise.
3155 * tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
3156 * tracepoint.c (trace_find_line_command): Likewise.
3157 (all_tracepoint_actions_and_cleanup): Likewise.
3158 (make_cleanup_restore_current_traceframe): Likewise.
3159 (get_uploaded_tp): Likewise.
3160 (get_uploaded_tsv): Likewise.
3161 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
3162 (tui_alloc_win_info): Likewise.
3163 (tui_alloc_content): Likewise.
3164 (tui_add_content_elements): Likewise.
3165 * tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
3166 (tui_set_disassem_content): Likewise.
3167 * ui-file.c (ui_file_new): Likewise.
3168 (stdio_file_new): Likewise.
3169 (tee_file_new): Likewise.
3170 * utils.c (make_cleanup_restore_integer): Likewise.
3171 (add_internal_problem_command): Likewise.
3172 * v850-tdep.c (v850_gdbarch_init): Likewise.
3173 * valops.c (find_oload_champ): Likewise.
3174 * value.c (allocate_value_lazy): Likewise.
3175 (record_latest_value): Likewise.
3176 (create_internalvar): Likewise.
3177 * varobj.c (install_variable): Likewise.
3178 (new_variable): Likewise.
3179 (new_root_variable): Likewise.
3180 (cppush): Likewise.
3181 (_initialize_varobj): Likewise.
3182 * windows-nat.c (windows_make_so): Likewise.
3183 * x86-nat.c (x86_add_process): Likewise.
3184 * xcoffread.c (arrange_linetable): Likewise.
3185 (allocate_include_entry): Likewise.
3186 (process_linenos): Likewise.
3187 (SYMBOL_DUP): Likewise.
3188 (xcoff_start_psymtab): Likewise.
3189 (xcoff_end_psymtab): Likewise.
3190 * xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
3191 * xtensa-tdep.c (xtensa_register_type): Likewise.
3192 * gdbarch.c: Regenerate.
3193 * gdbarch.h: Regenerate.
3194
3195 2015-08-25 Don Breazeal <donb@codesourcery.com>
3196
3197 * infrun.c (follow_exec): Re-order operations for
3198 handling follow-exec-mode "new".
3199 (handle_inferior_event_1): Assign ecs->event_thread
3200 to the current thread.
3201 * remote.c (get_remote_arch_state): Add an assertion.
3202
3203 2015-08-26 Pedro Alves <palves@redhat.com>
3204
3205 * MAINTAINERS: Add Markus Metzger as btrace maintainer.
3206
3207 2015-08-25 Pedro Alves <palves@redhat.com>
3208
3209 PR gdb/18804
3210 * defs.h (maybe_quit): Declare.
3211 (QUIT): Now calls maybe_quit.
3212 * event-loop.c (clear_async_signal_handler)
3213 (async_signal_handler_is_marked): New functions.
3214 * event-loop.h (async_signal_handler_is_marked)
3215 (clear_async_signal_handler): New declarations.
3216 * remote.c (remote_check_pending_interrupt): New function.
3217 (interrupt_query): Use make_cleanup_restore_target_terminal. No
3218 longer check whether the target is async. If waiting for a stop
3219 reply, and a Ctrl-C as been sent to the target, offer to
3220 disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
3221 Otherwise do not disconnect and throw a quit.
3222 (_initialize_remote): Install remote_check_pending_interrupt as
3223 to_check_pending_interrupt.
3224 * target.c (target_check_pending_interrupt): New function.
3225 * target.h (struct target_ops) <to_check_pending_interrupt>: New
3226 field.
3227 (target_check_pending_interrupt): New declaration.
3228 * utils.c (maybe_quit): New function.
3229 * target-delegates.c: Regenerate.
3230
3231 2015-08-25 Yao Qi <yao.qi@linaro.org>
3232
3233 * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
3234 Rename local variable pid to tid, and get lwpid of lwp. Update
3235 debug output.
3236
3237 2015-08-25 Pierre-Marie de Rodat <derodat@adacore.com>
3238
3239 * ada-lang.c (ada_read_var_value): Add a var_block argument
3240 and pass it to default_read_var_value.
3241 * block.c (block_static_link): New accessor.
3242 * block.h (block_static_link): Declare it.
3243 * buildsym.c (finish_block_internal): Add a static_link
3244 argument. If there is a static link, associate it to the new
3245 block.
3246 (finish_block): Add a static link argument and pass it to
3247 finish_block_internal.
3248 (end_symtab_get_static_block): Update calls to finish_block and
3249 to finish_block_internal.
3250 (end_symtab_with_blockvector): Update call to
3251 finish_block_internal.
3252 * buildsym.h: Forward-declare struct dynamic_prop.
3253 (struct context_stack): Add a static_link field.
3254 (finish_block): Add a static link argument.
3255 * c-exp.y: Remove an obsolete comment (evaluation of variables
3256 already start from the selected frame, and now they climb *up*
3257 the call stack) and propagate the block information to the
3258 produced expression.
3259 * d-exp.y: Likewise.
3260 * f-exp.y: Likewise.
3261 * go-exp.y: Likewise.
3262 * jv-exp.y: Likewise.
3263 * m2-exp.y: Likewise.
3264 * p-exp.y: Likewise.
3265 * coffread.c (coff_symtab_read): Update calls to finish_block.
3266 * dbxread.c (process_one_symbol): Likewise.
3267 * xcoffread.c (read_xcoff_symtab): Likewise.
3268 * compile/compile-c-symbols.c (convert_one_symbol): Promote the
3269 "sym" parameter to struct block_symbol, update its uses and pass
3270 its block to calls to read_var_value.
3271 (convert_symbol_sym): Update the calls to convert_one_symbol.
3272 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
3273 call to read_var_value.
3274 * dwarf2loc.c (block_op_get_frame_base): New.
3275 (dwarf2_block_frame_base_locexpr_funcs): Implement the
3276 get_frame_base method.
3277 (dwarf2_block_frame_base_loclist_funcs): Likewise.
3278 (dwarf2locexpr_baton_eval): Add a frame argument and use it
3279 instead of the selected frame in order to evaluate the
3280 expression.
3281 (dwarf2_evaluate_property): Add a frame argument. Update call
3282 to dwarf2_locexpr_baton_eval to provide a frame in available and
3283 to handle the absence of address stack.
3284 * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
3285 * dwarf2read.c (attr_to_dynamic_prop): Add a forward
3286 declaration.
3287 (read_func_scope): Record any available static link description.
3288 Update call to finish_block.
3289 (read_lexical_block_scope): Update call to finish_block.
3290 * findvar.c (follow_static_link): New.
3291 (get_hosting_frame): New.
3292 (default_read_var_value): Add a var_block argument. Use
3293 get_hosting_frame to handle non-local references.
3294 (read_var_value): Add a var_block argument and pass it to the
3295 LA_READ_VAR_VALUE method.
3296 * gdbtypes.c (resolve_dynamic_range): Update calls to
3297 dwarf2_evaluate_property.
3298 (resolve_dynamic_type_internal): Likewise.
3299 * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
3300 read_var_value, passing it the block coming from symbol lookup.
3301 * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
3302 read_var_value (TODO).
3303 * infcmd.c (finish_command_continuation): Update call to
3304 read_var_value, passing it the block coming from symbol lookup.
3305 * infrun.c (insert_exception_resume_breakpoint): Likewise.
3306 * language.h (struct language_defn): Add a var_block argument to
3307 the LA_READ_VAR_VALUE method.
3308 * objfiles.c (struct static_link_htab_entry): New.
3309 (static_link_htab_entry_hash): New.
3310 (static_link_htab_entry_eq): New.
3311 (objfile_register_static_link): New.
3312 (objfile_lookup_static_link): New.
3313 (free_objfile): Free the STATIC_LINKS hashed map if needed.
3314 * objfiles.h: Include hashtab.h.
3315 (struct objfile): Add a static_links field.
3316 (objfile_register_static_link): New.
3317 (objfile_lookup_static_link): New.
3318 * printcmd.c (print_variable_and_value): Update call to
3319 read_var_value.
3320 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
3321 * python/py-frame.c (frapy_read_var): Update call to
3322 read_var_value, passing it the block coming from symbol lookup.
3323 * python/py-framefilter.c (extract_sym): Add a sym_block
3324 parameter and set the pointed value to NULL (TODO).
3325 (enumerate_args): Update call to extract_sym.
3326 (enumerate_locals): Update calls to extract_sym and to
3327 read_var_value.
3328 * python/py-symbol.c (sympy_value): Update call to
3329 read_var_value (TODO).
3330 * stack.c (read_frame_local): Update call to read_var_value.
3331 (read_frame_arg): Likewise.
3332 (return_command): Likewise.
3333 * symtab.h (struct symbol_block_ops): Add a get_frame_base
3334 method.
3335 (struct symbol): Add a block field.
3336 (SYMBOL_BLOCK): New accessor.
3337 * valops.c (value_of_variable): Remove frame/block handling and
3338 pass the block argument to read_var_value, which does this job
3339 now.
3340 (value_struct_elt_for_reference): Update calls to
3341 read_var_value.
3342 (value_of_this): Pass the block found to read_var_value.
3343 * value.h (read_var_value): Add a var_block argument.
3344 (default_read_var_value): Likewise.
3345
3346 2015-08-25 Yao Qi <yao.qi@linaro.org>
3347
3348 * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
3349 * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
3350 * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
3351
3352 2015-08-25 Yao Qi <yao.qi@linaro.org>
3353
3354 * Makefile.in (aarch64-liunx.o): New rule.
3355 (HFILES_NO_SRCDIR): Add aarch64-linux.h.
3356 * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
3357 * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
3358 * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
3359 extern.
3360 (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
3361 * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
3362 * nat/aarch64-linux.c: New file.
3363 * nat/aarch64-linux.h: New file.
3364
3365 2015-08-25 Yao Qi <yao.qi@linaro.org>
3366
3367 * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
3368 lwp_arch_private_info and ptid_of_lwp.
3369
3370 2015-08-25 Yao Qi <yao.qi@linaro.org>
3371
3372 * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
3373 Move it to nat/aarch64-linux-hw-point.c.
3374 (debug_reg_change_callback): Likewise.
3375 (aarch64_notify_debug_reg_change): :Likewise.
3376 * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
3377 (aarch64_dr_update_callback_param): New.
3378 (debug_reg_change_callback): New function.
3379 (aarch64_notify_debug_reg_change): Likewise.
3380 * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
3381 Remove the declaration.
3382
3383 2015-08-25 Yao Qi <yao.qi@linaro.org>
3384
3385 * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
3386 Call current_lwp_ptid.
3387
3388 2015-08-25 Yao Qi <yao.qi@linaro.org>
3389
3390 * aarch64-linux-nat.c (debug_reg_change_callback): Use
3391 debug_printf.
3392
3393 2015-08-25 Yao Qi <yao.qi@linaro.org>
3394
3395 * aarch64-linux-nat.c (debug_reg_change_callback): Call
3396 ptid_get_pid rather than ptid_get_lwp.
3397
3398 2015-08-24 Pedro Alves <palves@redhat.com>
3399
3400 * NEWS (New commands): Mention set/show remote
3401 multiprocess-extensions-packet.
3402 * remote.c (remote_query_supported): Only tell the server to use
3403 the multiprocess extensions if the user hasn't force-disabled them
3404 with "set remote multiprocess-extensions-packet off".
3405
3406 2015-08-24 Pedro Alves <palves@redhat.com>
3407
3408 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
3409 1029a8112290f6eee9d7878a391c49db42c999bd.
3410 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
3411 Regenerate.
3412 * gnulib/import/Makefile.am: Update.
3413 * gnulib/import/Makefile.in: Update.
3414 * gnulib/import/alloca.in.h: Update.
3415 * gnulib/import/basename-lgpl.c: Update.
3416 * gnulib/import/canonicalize-lgpl.c: Update.
3417 * gnulib/import/config.charset: Update.
3418 * gnulib/import/dirent.in.h: Update.
3419 * gnulib/import/dirfd.c: Update.
3420 * gnulib/import/dirname-lgpl.c: Update.
3421 * gnulib/import/dirname.h: Update.
3422 * gnulib/import/dosname.h: Update.
3423 * gnulib/import/errno.in.h: Update.
3424 * gnulib/import/extra/snippet/arg-nonnull.h: Update.
3425 * gnulib/import/extra/snippet/c++defs.h: Update.
3426 * gnulib/import/extra/snippet/warn-on-use.h: Update.
3427 * gnulib/import/extra/update-copyright: Update.
3428 * gnulib/import/float+.h: Update.
3429 * gnulib/import/float.c: Update.
3430 * gnulib/import/float.in.h: Update.
3431 * gnulib/import/fnmatch.c: Update.
3432 * gnulib/import/fnmatch.in.h: Update.
3433 * gnulib/import/fnmatch_loop.c: Update.
3434 * gnulib/import/fpucw.h: Update.
3435 * gnulib/import/frexp.c: Update.
3436 * gnulib/import/frexpl.c: Update.
3437 * gnulib/import/gettimeofday.c: Update.
3438 * gnulib/import/inttypes.in.h: Update.
3439 * gnulib/import/isnan.c: Update.
3440 * gnulib/import/isnand-nolibm.h: Update.
3441 * gnulib/import/isnand.c: Update.
3442 * gnulib/import/isnanl-nolibm.h: Update.
3443 * gnulib/import/isnanl.c: Update.
3444 * gnulib/import/itold.c: Update.
3445 * gnulib/import/localcharset.c: Update.
3446 * gnulib/import/localcharset.h: Update.
3447 * gnulib/import/lstat.c: Update.
3448 * gnulib/import/m4/00gnulib.m4: Update.
3449 * gnulib/import/m4/absolute-header.m4: Update.
3450 * gnulib/import/m4/alloca.m4: Update.
3451 * gnulib/import/m4/canonicalize.m4: Update.
3452 * gnulib/import/m4/codeset.m4: Update.
3453 * gnulib/import/m4/configmake.m4: Update.
3454 * gnulib/import/m4/dirent_h.m4: Update.
3455 * gnulib/import/m4/dirfd.m4: Update.
3456 * gnulib/import/m4/dirname.m4: Update.
3457 * gnulib/import/m4/double-slash-root.m4: Update.
3458 * gnulib/import/m4/eealloc.m4: Update.
3459 * gnulib/import/m4/errno_h.m4: Update.
3460 * gnulib/import/m4/exponentd.m4: Update.
3461 * gnulib/import/m4/exponentl.m4: Update.
3462 * gnulib/import/m4/extensions.m4: Update.
3463 * gnulib/import/m4/extern-inline.m4: Update.
3464 * gnulib/import/m4/fcntl-o.m4: Update.
3465 * gnulib/import/m4/float_h.m4: Update.
3466 * gnulib/import/m4/fnmatch.m4: Update.
3467 * gnulib/import/m4/fpieee.m4: Update.
3468 * gnulib/import/m4/frexp.m4: Update.
3469 * gnulib/import/m4/frexpl.m4: Update.
3470 * gnulib/import/m4/gettimeofday.m4: Update.
3471 * gnulib/import/m4/glibc21.m4: Update.
3472 * gnulib/import/m4/gnulib-cache.m4: Update.
3473 * gnulib/import/m4/gnulib-common.m4: Update.
3474 * gnulib/import/m4/gnulib-comp.m4: Update.
3475 * gnulib/import/m4/gnulib-tool.m4: Update.
3476 * gnulib/import/m4/include_next.m4: Update.
3477 * gnulib/import/m4/inttypes-pri.m4: Update.
3478 * gnulib/import/m4/inttypes.m4: Update.
3479 * gnulib/import/m4/isnand.m4: Update.
3480 * gnulib/import/m4/isnanl.m4: Update.
3481 * gnulib/import/m4/largefile.m4: Update.
3482 * gnulib/import/m4/localcharset.m4: Update.
3483 * gnulib/import/m4/locale-fr.m4: Update.
3484 * gnulib/import/m4/locale-ja.m4: Update.
3485 * gnulib/import/m4/locale-zh.m4: Update.
3486 * gnulib/import/m4/longlong.m4: Update.
3487 * gnulib/import/m4/lstat.m4: Update.
3488 * gnulib/import/m4/malloc.m4: Update.
3489 * gnulib/import/m4/malloca.m4: Update.
3490 * gnulib/import/m4/math_h.m4: Update.
3491 * gnulib/import/m4/mbrtowc.m4: Update.
3492 * gnulib/import/m4/mbsinit.m4: Update.
3493 * gnulib/import/m4/mbsrtowcs.m4: Update.
3494 * gnulib/import/m4/mbstate_t.m4: Update.
3495 * gnulib/import/m4/memchr.m4: Update.
3496 * gnulib/import/m4/memmem.m4: Update.
3497 * gnulib/import/m4/mmap-anon.m4: Update.
3498 * gnulib/import/m4/multiarch.m4: Update.
3499 * gnulib/import/m4/nocrash.m4: Update.
3500 * gnulib/import/m4/off_t.m4: Update.
3501 * gnulib/import/m4/pathmax.m4: Update.
3502 * gnulib/import/m4/readlink.m4: Update.
3503 * gnulib/import/m4/rename.m4: Update.
3504 * gnulib/import/m4/rmdir.m4: Update.
3505 * gnulib/import/m4/ssize_t.m4: Update.
3506 * gnulib/import/m4/stat.m4: Update.
3507 * gnulib/import/m4/stdbool.m4: Update.
3508 * gnulib/import/m4/stddef_h.m4: Update.
3509 * gnulib/import/m4/stdint.m4: Update.
3510 * gnulib/import/m4/stdio_h.m4: Update.
3511 * gnulib/import/m4/stdlib_h.m4: Update.
3512 * gnulib/import/m4/string_h.m4: Update.
3513 * gnulib/import/m4/strstr.m4: Update.
3514 * gnulib/import/m4/strtok_r.m4: Update.
3515 * gnulib/import/m4/sys_socket_h.m4: Update.
3516 * gnulib/import/m4/sys_stat_h.m4: Update.
3517 * gnulib/import/m4/sys_time_h.m4: Update.
3518 * gnulib/import/m4/sys_types_h.m4: Update.
3519 * gnulib/import/m4/time_h.m4: Update.
3520 * gnulib/import/m4/unistd_h.m4: Update.
3521 * gnulib/import/m4/warn-on-use.m4: Update.
3522 * gnulib/import/m4/wchar_h.m4: Update.
3523 * gnulib/import/m4/wchar_t.m4: Update.
3524 * gnulib/import/m4/wctype_h.m4: Update.
3525 * gnulib/import/m4/wint_t.m4: Update.
3526 * gnulib/import/malloc.c: Update.
3527 * gnulib/import/malloca.c: Update.
3528 * gnulib/import/malloca.h: Update.
3529 * gnulib/import/math.in.h: Update.
3530 * gnulib/import/mbrtowc.c: Update.
3531 * gnulib/import/mbsinit.c: Update.
3532 * gnulib/import/mbsrtowcs-impl.h: Update.
3533 * gnulib/import/mbsrtowcs-state.c: Update.
3534 * gnulib/import/mbsrtowcs.c: Update.
3535 * gnulib/import/memchr.c: Update.
3536 * gnulib/import/memmem.c: Update.
3537 * gnulib/import/pathmax.h: Update.
3538 * gnulib/import/readlink.c: Update.
3539 * gnulib/import/ref-add.sin: Update.
3540 * gnulib/import/ref-del.sin: Update.
3541 * gnulib/import/rename.c: Update.
3542 * gnulib/import/rmdir.c: Update.
3543 * gnulib/import/same-inode.h: Update.
3544 * gnulib/import/stat.c: Update.
3545 * gnulib/import/stdbool.in.h: Update.
3546 * gnulib/import/stddef.in.h: Update.
3547 * gnulib/import/stdint.in.h: Update.
3548 * gnulib/import/stdio.c: Update.
3549 * gnulib/import/stdio.in.h: Update.
3550 * gnulib/import/stdlib.in.h: Update.
3551 * gnulib/import/str-two-way.h: Update.
3552 * gnulib/import/streq.h: Update.
3553 * gnulib/import/string.in.h: Update.
3554 * gnulib/import/stripslash.c: Update.
3555 * gnulib/import/strnlen1.c: Update.
3556 * gnulib/import/strnlen1.h: Update.
3557 * gnulib/import/strstr.c: Update.
3558 * gnulib/import/strtok_r.c: Update.
3559 * gnulib/import/sys_stat.in.h: Update.
3560 * gnulib/import/sys_time.in.h: Update.
3561 * gnulib/import/sys_types.in.h: Update.
3562 * gnulib/import/time.in.h: Update.
3563 * gnulib/import/unistd.in.h: Update.
3564 * gnulib/import/verify.h: Update.
3565 * gnulib/import/wchar.in.h: Update.
3566 * gnulib/import/wctype.in.h: Update.
3567 * gnulib/import/gettimeofday.c: New file.
3568 * gnulib/import/m4/absolute-header.m4: New file.
3569 * gnulib/import/m4/gettimeofday.m4: New file.
3570 * gnulib/import/m4/sys_socket_h.m4: New file.
3571 * gnulib/import/m4/sys_time_h.m4: New file.
3572 * gnulib/import/stdio.c: Delete file.
3573 * gnulib/import/sys_time.in.h: New file.
3574
3575 2015-08-24 Pedro Alves <palves@redhat.com>
3576
3577 * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
3578 * common/gdb_sys_time.h: New file.
3579 * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
3580 * gdb_select.h: Likewise.
3581 * gdb_usleep.c: Likewise.
3582 * maint.c: Likewise.
3583 * mi/mi-main.c: Likewise.
3584 * mi/mi-parse.h: Likewise.
3585 * remote-fileio.c: Likewise.
3586 * remote-m32r-sdi.c: Likewise.
3587 * remote.c: Likewise.
3588 * ser-base.c: Likewise.
3589 * ser-pipe.c: Likewise.
3590 * ser-tcp.c: Likewise.
3591 * ser-unix.c: Likewise.
3592 * symfile.c: Likewise.
3593 * symfile.c: Likewise. Rename OSIZE to SIZE throughout.
3594 * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
3595 * utils.c: Likewise.
3596
3597 2015-08-24 Pedro Alves <palves@redhat.com>
3598
3599 * NEWS: Mention removed support for the various ROM monitors.
3600 * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
3601 ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
3602 * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
3603 gdb_target_obs.
3604 (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
3605 gdb_target_obs.
3606 (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
3607 dsrec.o from gdb_target_obs.
3608 (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
3609 from gdb_target_obs.
3610 (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
3611 gdb_target_obs.
3612 (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
3613 dink32-rom.o from gdb_target_obs.
3614 (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
3615 (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
3616 * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
3617 monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
3618
3619 2015-08-21 Pedro Alves <palves@redhat.com>
3620
3621 * frame.c (null_frame_id): Explicitly zero-initialize.
3622
3623 2015-08-21 Tom Tromey <tromey@redhat.com>
3624
3625 * dwarf2read.c (struct dwarf2_section_info): Rename field
3626 'asection' to 'section'.
3627 (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
3628 (dwarf2_locate_sections, dwarf2_locate_sections)
3629 (locate_dwz_sections, locate_v1_virtual_dwo_sections)
3630 (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
3631 (dwarf2_locate_v2_dwp_sections): Adjust.
3632
3633 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3634
3635 * top.h (gdb_in_secondary_prompt_p): Declare.
3636 * top.c (gdb_secondary_prompt_depth): Define.
3637 (gdb_in_secondary_prompt_p): Define.
3638 (gdb_readline_wrapper_cleanup): Decrement
3639 gdb_secondary_prompt_depth.
3640 (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
3641 * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
3642 are in a secondary prompt.
3643
3644 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3645
3646 * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
3647 emit the newline.
3648
3649 2015-08-21 Gary Benson <gbenson@redhat.com>
3650
3651 * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
3652
3653 2015-08-21 Gary Benson <gbenson@redhat.com>
3654
3655 * target.h (struct target_ops) <to_fileio_open>: New argument
3656 warn_if_slow. Update comment. All implementations updated.
3657 (target_fileio_open_warn_if_slow): New declaration.
3658 * target.c (target_fileio_open): Renamed as...
3659 (target_fileio_open_1): ...this. New argument warn_if_slow.
3660 Pass warn_if_slow to implementation. Update debug printing.
3661 (target_fileio_open): New function.
3662 (target_fileio_open_warn_if_slow): Likewise.
3663 * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
3664 target_fileio_open_warn_if_slow.
3665
3666 2015-08-21 Gary Benson <gbenson@redhat.com>
3667
3668 * nat/linux-namespaces.c (linux_mntns_access_fs):
3669 Do not overwrite old_chain.
3670
3671 2015-08-20 Max Filippov <jcmvbkbc@gmail.com>
3672
3673 * arch/xtensa.h: New file.
3674 * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
3675 (ps_get_thread_area): New function.
3676 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
3677 set_gdbarch_fetch_tls_load_module_address to enable TLS support.
3678 * xtensa-tdep.c (osabi.h): New #include.
3679 (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
3680 xtensa-specific hooks.
3681 * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
3682 member and move the structure to arch/xtensa.h.
3683
3684 2015-08-21 Pedro Alves <palves@redhat.com>
3685
3686 * remote.c (struct readahead_cache): New.
3687 (struct remote_state) <readahead_cache>: New field.
3688 (remote_open_1): Invalidate the cache.
3689 (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
3690 functions.
3691 (remote_hostio_pwrite): Invalidate the readahead cache.
3692 (remote_hostio_pread): Rename to ...
3693 (remote_hostio_pread_vFile): ... this.
3694 (remote_hostio_pread_from_cache): New function.
3695 (remote_hostio_pread): Reimplement.
3696 (remote_hostio_close): Invalidate the readahead cache.
3697
3698 2015-08-21 Marcin Cieślak <saper@saper.info> (tiny patch)
3699
3700 PR build/18843
3701 * procfs.c: Include "filestuff.h".
3702
3703 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3704
3705 * tui/tui-data.h (tui_command_info): Remove fields cur_line and
3706 curch.
3707 * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
3708 cur_line or curch, instead call wmove().
3709 (init_win_info) [CMD_WIN]: Likewise.
3710 * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
3711 instead call getcury().
3712 (tui_redisplay_readline): Don't set cur_line or curch.
3713 (tui_mld_erase_entire_line): Don't read cur_line, instead call
3714 getcury().
3715 (tui_cont_sig): Remove call to wmove.
3716 (tui_getc): Don't read cur_line or curch, instead call getcury()
3717 or getyx(). Don't set curch.
3718 * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
3719 set cur_line or curch. Always move cursor to (0,0).
3720
3721 2015-08-20 Pedro Alves <palves@redhat.com>
3722
3723 * infrun.c (print_target_wait_results): Make extern.
3724 * infrun.h (print_target_wait_results): Declare.
3725 * remote.c (set_stop_requested_callback): Delete.
3726 (process_initial_stop_replies): New function.
3727 (remote_start_remote): Use it.
3728 (stop_reply_queue_length): New function.
3729
3730 2015-08-20 Pedro Alves <palves@redhat.com>
3731
3732 * dwarf2read.c (process_full_comp_unit): To tell whether
3733 start_subfile managed to deduce a language, test for
3734 language_unknown instead of language_c.
3735
3736 2015-08-20 Pierre-Marie de Rodat <derodat@adacore.com>
3737
3738 * ada-lex.l: Reset the start condition to INITIAL in the rule that
3739 matches attributes.
3740
3741 2015-08-19 Kevin Buettner <kevinb@redhat.com>
3742
3743 * dwarf2read.c (dwarf2_string_attr): New function.
3744 (lookup_dwo_unit, process_psymtab_comp_unit_reader)
3745 (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
3746 (read_call_site_scope, namespace_name, guess_full_die_structure_name)
3747 (anonymous_struct_prefix, prepare_one_comp_unit): Use
3748 dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
3749
3750 2015-08-18 Doug Evans <dje@google.com>
3751 Adrian Sendroiu <adrian.sendroiu@freescale.com>
3752
3753 PR mi/18833
3754 * cli/cli-logging.c (pop_output_files): Don't restore redirection
3755 if MI-like.
3756 * mi/mi-out.c: #include "vec.h".
3757 (ui_filep): New type.
3758 (DEV_VEC_P (ui_filep)): New type.
3759 (struct ui_out_data) <buffer, original_buffer>: Delete.
3760 (struct ui_out_data) <streams>: New member.
3761 (mi_ui_out_impl): Add data_destroy field.
3762 (mi_field_string, mi_field_fmt): Update.
3763 (mi_flush, mi_redirect, field_separator): Update.
3764 (mi_open, mi_close): Update.
3765 (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
3766 (mi_out_data_ctor, mi_out_data_dtor): New functions.
3767 (mi_out_new): Call mi_out_data_ctor.
3768
3769 2015-08-18 Sandra Loosemore <sandra@codesourcery.com>
3770
3771 * remote.c (strprefix): New.
3772 (remote_parse_stop_reply): Use strprefix instead of strncmp
3773 to ensure exact match of keyword.
3774
3775 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
3776
3777 * gdb_bfd.c (debug_bfd_cache): New variable.
3778 (show_bfd_cache_debug): New function.
3779 (gdb_bfd_open): Add debug logging.
3780 (gdb_bfd_ref): Likewise.
3781 (gdb_bfd_unref): Likewise.
3782 (_initialize_gdb_bfd): Add new set/show command.
3783 * NEWS: Mention new command.
3784
3785 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
3786
3787 * gdb_bfd.c (bfd_sharing): New variable.
3788 (show_bfd_sharing): New function.
3789 (gdb_bfd_open): Check bfd_sharing variable.
3790 (_initialize_gdb_bfd): Add new set/show command.
3791 * NEWS: Mention new command.
3792
3793 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
3794
3795 * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
3796 field.
3797 (struct gdb_bfd_cache_search): Likewise.
3798 (eq_bfd): Compare the size, inode, and device id fields.
3799 (gdb_bfd_open): Initialise the size, inode, and device id fields.
3800 (gdb_bfd_ref): Likewise.
3801 (gdb_bfd_unref): Likewise.
3802
3803 2015-08-18 Pedro Alves <palves@redhat.com>
3804
3805 * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
3806 target implements to_always_non_stop_p, call it.
3807 * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
3808 (x86_linux_create_target): Install it as to_always_non_stop_p
3809 method.
3810
3811 2015-08-17 Doug Evans <dje@google.com>
3812
3813 * ui-out.c (default_ui_out_impl): Add comment.
3814
3815 2015-08-17 Iain Buclaw <ibuclaw@gdcproject.org>
3816
3817 * d-exp.y (type_aggregate_p): New function.
3818 (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
3819 (classify_inner_name): Likewise.
3820 * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
3821
3822 2015-08-15 Doug Evans <xdje42@gmail.com>
3823
3824 * psymtab.c (add_psymbol_to_bcache): Remove "val" arg. All callers
3825 updated.
3826 (add_psymbol_to_list): Ditto.
3827
3828 2015-08-15 Doug Evans <xdje42@gmail.com>
3829
3830 * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab. All callers
3831 updated. Call end_psymtab_common.
3832 * dwarf2read.c (process_psymtab_comp_unit_reader): Call
3833 end_psymtab_common.
3834 (build_type_psymtabs_reader): Ditto.
3835 * psympriv.h (sort_pst_symbols): Delete.
3836 (end_psymtab_common): Declare.
3837 * psymtab.c (sort_pst_symbols): Make static.
3838 (end_psymtab_common): New function.
3839 * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
3840
3841 2015-08-15 Doug Evans <xdje42@gmail.com>
3842
3843 * defs.h (LANGUAGE_BITS): Define.
3844 * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
3845 (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
3846 * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
3847 (minimal_symbol_type): Add nr_minsym_types.
3848 (MINSYM_TYPE_BITS): Define.
3849 (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
3850 (domain_enum_tag): Add NR_DOMAINS.
3851 (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
3852 (SYMBOL_ACLASS_BITS): Define from 6 to 5.
3853
3854 2015-08-15 Doug Evans <xdje42@gmail.com>
3855
3856 * objfiles.h: Whitespace cleanup.
3857 * psympriv.h: Whitespace cleanup.
3858 * psymtab.c: Whitespace/coding convention cleanup.
3859
3860 2015-08-15 Patrick Palka <patrick@parcs.ath.cx>
3861
3862 * inferior.c (detach_inferior_command): Don't call
3863 any_thread_of_process when pid is 0.
3864 (kill_inferior_command): Likewise.
3865
3866 2015-08-14 Doug Evans <xdje42@gmail.com>
3867
3868 PR gdb/11833
3869 * NEWS: Document new /s modifier for the disassemble command.
3870 * cli/cli-cmds.c (disassemble_command): Add support for /s.
3871 (_initialize_cli_cmds): Update online docs of disassemble command.
3872 * disasm.c: #include "source.h".
3873 (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
3874 All uses updated.
3875 (dis_line_entry): New struct.
3876 (hash_dis_line_entry, eq_dis_line_entry): New functions.
3877 (allocate_dis_line_table): New functions.
3878 (maybe_add_dis_line_entry, line_has_code_p): New functions.
3879 (dump_insns): New arg end_pc. All callers updated.
3880 (do_mixed_source_and_assembly_deprecated): Renamed from
3881 do_mixed_source_and_assembly. All callers updated.
3882 (do_mixed_source_and_assembly): New function.
3883 (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
3884 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
3885 DISASSEMBLY_SOURCE. All uses updated.
3886 (DISASSEMBLY_SOURCE): New macro.
3887 * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
3888
3889 2015-08-14 Keith Seitz <keiths@redhat.com>
3890
3891 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
3892 `typename' to `type_name' to avoid C++ reserved word.
3893
3894 2015-08-14 Keith Seitz <keiths@redhat.com>
3895
3896 * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
3897 (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
3898 silence ARI errors.
3899
3900 2015-08-14 Iain Buclaw <ibuclaw@gdcproject.org>
3901
3902 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
3903 xstrprintf instead of malloc and sprintf.
3904 (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
3905 (lex_one_token): Likewise.
3906
3907 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
3908
3909 * solib-svr4.c (read_program_header): Add base_addr argument to
3910 report the runtime address of the segment.
3911 (find_program_interpreter): Update read_program_header call to pass
3912 a NULL pointer for the new argument.
3913 (scan_dyntag): Add ptr_addr argument to report the runtime address
3914 of the tag payload.
3915 (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
3916 read_program_header to get the base address of the dynamic segment.
3917 (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
3918 read_program_header.
3919 (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
3920
3921 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
3922
3923 * MAINTAINERS (Write After Approval): Add Matthew Fortune.
3924
3925 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
3926
3927 * d-exp.y (%union): Add voidval.
3928 (%token): Add UNKNOWN_NAME as a token to represent an unclassified
3929 name in the lexing stage.
3930 (PostfixExpression): Move symbol completion handling in grammar here
3931 from PrimaryExpression.
3932 (PrimaryExpression): Move routines to handle resolving identifier
3933 tokens in the grammar here from push_expression_name.
3934 (IdentifierExp): Remove the handling of alternating '.' and identifier
3935 tokens.
3936 (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
3937 (BasicType): Remove C-style typename rules.
3938 (d_type_from_name, d_module_from_name, push_variable)
3939 (push_fieldnames, push_type_name, push_module_name)
3940 (push_expression_name): Remove.
3941 (lex_one_token): Rename from yylex. Replace pstate with par_state.
3942 (token_and_value): New type.
3943 (token_fifo, popping, name_obstack): New globals.
3944 (classify_name): New function.
3945 (classify_inner_name): Likewise.
3946 (yylex): Likewise.
3947 (d_parse): Initialize token_fifo, popping and name_obstack.
3948
3949 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
3950
3951 * Makefile.in (SFILES): Add d-namespace.c.
3952 (COMMON_OBS): Add d-namespace.o.
3953 * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
3954 la_lookup_symbol_nonlocal callback function pointer.
3955 * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
3956 (d_lookup_nested_symbol): New declaration.
3957 * d-namespace.c: New file.
3958
3959 2015-08-13 Pedro Alves <palves@redhat.com>
3960
3961 * python/py-unwind.c (pyuw_sniffer): Install the invalidate
3962 cleanup after the decref cleanup, not before.
3963
3964 2015-08-13 Pierre-Marie de Rodat <derodat@adacore.com>
3965
3966 * ada-lang.c: Include namespace.h
3967 (aux_add_nonlocal_symbols): Fix a function name in comment.
3968 (ada_add_block_renamings): New.
3969 (add_nonlocal_symbols): Add global renamings handling.
3970 (ada_lookup_symbol_list_worker): Move the symbol lookup part
3971 to...
3972 (ada_add_all_symbols): ... this new function.
3973 (ada_add_block_symbols): Try to match the input name against the
3974 "using directives list", perform a recursive symbol lookup on
3975 the matched declarations.
3976 * block.h (struct block): Move the_namespace to top-level as
3977 namespace_info. Remove the language_specific field.
3978 (BLOCK_NAMESPACE): Update access to the namespace_info field.
3979 * buildsym.h (using_directives): Rename into...
3980 (local_using_directives): ... this.
3981 (global_using_directives): New.
3982 (struct context_stack): Rename the using_directives field into
3983 local_using_directives.
3984 * buildsym.c (finish_block_internal): Deal with the proper
3985 using directives repository (local or global).
3986 (prepare_for_building): Reset local_using_directives. Assert
3987 that there is no pending global using directive.
3988 (reset_symtab_globals): Reset global_using_directives and
3989 local_using_directives.
3990 (end_symtab_get_static_block): Don't ignore symtabs that have
3991 only using directives.
3992 (push_context): Update references to local_using_directives.
3993 (buildsym_init): Do not reset using_directives.
3994 * cp-support.c: Include namespace.h.
3995 * cp-support.h (struct using_direct): Move to namespace.h.
3996 (cp_add_using_directives): Move to namespace.h.
3997 * cp-namespace.c: Include namespace.h
3998 (cp_add_using_directive): Move to namespace.c, rename it to
3999 add_using_directive, add a "using_directives" argument and use
4000 it as the pending using directives repository. All callers
4001 updated.
4002 * dwarf2read.c (using_directives): New.
4003 (read_import_statement): Call using_directives.
4004 (read_func_scope): Update references to local_using_directives.
4005 (read_lexical_block_scope): Likewise.
4006 (read_namespace): Update the heading comment, call
4007 using_directives.
4008 * namespace.h: New file.
4009 * namespace.c: New file.
4010 * Makefile.in (SFILES): Add namespace.c.
4011 (COMMON_OBS): Add namespace.o
4012
4013 2015-08-12 Joel Brobecker <brobecker@adacore.com>
4014
4015 * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
4016 compute RETADDR.
4017
4018 2015-08-12 Keith Seitz <keiths@redhat.com>
4019
4020 * break-catch-throw.c (re_set_exception_catchpoint) Rename
4021 reserved C++ keyword "explicit" to "explicit_loc".
4022 * breakpoint.c (create_overlay_event_breakpoint)
4023 (create_longjmp_master_breakpoint)
4024 (create_std_terminate_master_breakpoint)
4025 (create_exception_master_breakpoint, update_static_tracepoint):
4026 Rename reserved C++ keyword "explicit" to "explicit_loc".
4027 * completer.c (collect_explicit_location_matches)
4028 (explicit_location_completer): Rename reserved C++ keyword
4029 "explicit" to "explicit_loc".
4030 * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
4031 (canonicalize_linespec, create_sals_line_offset)
4032 (convert_linespec_to_sals, convert_explicit_location_to_sals)
4033 (event_location_to_sals, decode_objc): Rename reserved C++ keyword
4034 "explicit" to "explicit_loc".
4035 * location.c (struct event_location) <explicit>: Rename to
4036 "explicit_loc".
4037 (initialize_explicit_location, new_explicit_location)
4038 (explicit_location_to_string_internal, explicit_location_to_linespec):
4039 Rename reserved C++ keyword "explicit" to "explicit_loc".
4040 * location.h (explicit_location_to_string)
4041 (explicit_location_to_linespec, initialize_explicit_location)
4042 (new_explicit_location): Rename reserved C++ keyword "explicit"
4043 to "explicit_loc".
4044 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
4045 keyword "explicit" to "explicit_loc".
4046
4047 2015-08-12 Keith Seitz <keiths@redhat.com>
4048
4049 * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
4050 and only call decode_line_1 when it is non-NULL.
4051
4052 2015-08-12 Luis Machado <lgustavo@codesourcery.com>
4053
4054 * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
4055 location address is not meaningful.
4056 (breakpoint_address_is_meaningful): Update comment.
4057
4058 2015-08-11 Keith Seitz <keiths@redhat.com>
4059
4060 * NEWS: Mention explicit locations.
4061 * breakpoint.c [LOCATION_HELP_STRING]: New macro.
4062 [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
4063 (_initialize_breakpoint): Update documentation for
4064 "clear", "break", "trace", "strace", "ftrace", and "dprintf".
4065
4066 2015-08-11 Keith Seitz <keiths@redhat.com>
4067
4068 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
4069 explicit locations, options "--source", "--function",
4070 "--label", and "--line".
4071
4072 2015-08-11 Keith Seitz <keiths@redhat.com>
4073
4074 * completer.c: Include location.h.
4075 (enum match_type): New enum.
4076 (location_completer): Rename to ...
4077 (linespec_completer): ... this.
4078 (collect_explicit_location_matches, backup_text_ptr)
4079 (explicit_location_completer): New functions.
4080 (location_completer): "New" function; handle linespec
4081 and explicit location completions.
4082 (complete_line_internal): Remove all location completer-specific
4083 handling.
4084 * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
4085 (find_toplevel_char): Export.
4086 (linespec_parse_line_offset): Export.
4087 Issue error if STRING is not numerical.
4088 (gdb_get_linespec_parser_quote_characters): New function.
4089 * linespec.h (linespec_parse_line_offset): Declare.
4090 (get_gdb_linespec_parser_quote_characters): Declare.
4091 (is_ada_operator): Declare.
4092 (find_toplevel_char): Declare.
4093 (linespec_lexer_lex_keyword): Declare.
4094 * location.c (explicit_to_event_location): New function.
4095 (explicit_location_lex_one): New function.
4096 (string_to_explicit_location): New function.
4097 (string_to_event_location): Handle explicit locations.
4098 * location.h (explicit_to_event_location): Declare.
4099 (string_to_explicit_location): Declare.
4100
4101 2015-08-11 Keith Seitz <keiths@redhat.com>
4102
4103 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4104 linespec into explicit location.
4105 * breakpoint.c (create_overlay_breakpoint)
4106 (create_longjmp_master_breakpoint)
4107 (create_std_terminate_master_breakpoint)
4108 (create_exception_master_breakpoint): Convert linespec into explicit
4109 location.
4110 (update_static_tracepoint): Convert linespec into explicit location.
4111 * linespec.c (enum offset_relative_sign, struct line_offset): Move
4112 location.h.
4113 (struct linespec) <expression, expr_pc, source_filename>
4114 <function_name, label_name, line_offset>: Replace with ...
4115 <explicit>: ... this.
4116 <is_linespec>: New member.
4117 (PARSER_EXPLICIT): New accessor macro.
4118 (undefined_label_error): New function.
4119 (source_file_not_found_error): New function.
4120 (linespec_parse_basic): The parser result is now an explicit location.
4121 Use PARSER_EXPLICIT to access it.
4122 Use undefined_label_error.
4123 (canonicalize_linespec): Convert canonical linespec into explicit
4124 location.
4125 Move string representation of location to explicit_location_to_linespec
4126 and use it and explicit_location_to_string to save string
4127 representations of the canonical location.
4128 (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
4129 explicit location. Update all references.
4130 (convert_explicit_location_to_sals): New function.
4131 (parse_linespec): Use PARSER_EXPLICIT to access the parser
4132 result's explicit location.
4133 (linespec_state_constructor): Initialize is_linespec.
4134 Use PARSER_EXPLICIT.
4135 (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
4136 result.
4137 (event_location_to_sals): For linespec locations, set is_linespec.
4138 Handle explicit locations.
4139 (decode_objc): 'ls' contains an explicit location now. Update all
4140 references.
4141 (symtabs_from_filename): Use source_file_not_found_error.
4142 * location.c (struct event_location.u) <explicit>: New member.
4143 (initialize_explicit_location): New function.
4144 (initialize_event_location): Initialize explicit locations.
4145 (new_explicit_location, get_explicit_location)
4146 (get_explicit_location_const): New functions.
4147 (explicit_to_string_internal): New function; most of contents moved
4148 from canonicalize_linespec.
4149 (explicit_location_to_string): New function.
4150 (explicit_location_to_linespec): New function.
4151 (copy_event_location, delete_event_location)
4152 (event_location_to_string_const, event_location_empty_p): Handle
4153 explicit locations.
4154 * location.h (enum offset_relative_sign, struct line_offset): Move
4155 here from linespec.h.
4156 (enum event_location_type): Add EXPLICIT_LOCATION.
4157 (struct explicit_location): New structure.
4158 (explicit_location_to_string): Declare.
4159 (explicit_location_to_linespec): Declare.
4160 (new_explicit_location, get_explicit_locationp
4161 (get_explicit_location_const, initialize_explicit_location): Declare.
4162
4163 2015-08-11 Keith Seitz <keiths@redhat.com>
4164
4165 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4166 linespec for stap probe to probe location.
4167 * breakpoint.c (create_longjmp_master_breakpoint)
4168 (create_exception_master_breakpoint): Likewise.
4169 (break_command_1): Remove local variable `arg_cp'.
4170 Check location type to set appropriate breakpoint ops methods.
4171 (trace_command): Likewise.
4172 * linespec.c (event_location_to_sals): Assert on probe locations.
4173 * location.c (EL_PROBE): Add macro definition.
4174 (new_probe_location, get_probe_location): New functions.
4175 (copy_event_location, delete_event_location, event_location_to_string)
4176 (string_to_event_location, event_location_empty_p): Handle probe
4177 locations.
4178 * location.h (enum event_location_type): Add PROBE_LOCATION.
4179 (new_probe_location, get_probe_location): Declare.
4180 * probe.c (parse_probes): Assert that LOCATION is a probe location.
4181 Convert linespec into probe location.
4182
4183 2015-08-11 Keith Seitz <keiths@redhat.com>
4184
4185 * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
4186 Convert linespec to address location.
4187 * linespec.c (canonicalize_linespec): Do not handle address
4188 locations here.
4189 (convert_address_location_to_sals): New function; contents moved
4190 from ...
4191 (convert_linespc_to_sals): ... here.
4192 (parse_linespec): Remove address locations from linespec grammar.
4193 Remove handling of address locations.
4194 (linespec_lex_to_end): Remove handling of address linespecs.
4195 (event_location_to_sals): Handle ADDRESS_LOCATION.
4196 (linespec_expression_to_pc): Export.
4197 * linespec.h (linespec_expression_to_pc): Add declaration.
4198 * location.c (struct event_location.u) <address>: New member.
4199 (new_address_location, get_address_location): New functions.
4200 (copy_event_location, delete_event_location, event_location_to_string)
4201 (string_to_event_location, event_location_empty_p): Handle address
4202 locations.
4203 * location.h (enum event_location_type): Add ADDRESS_LOCATION.
4204 (new_address_location, get_address_location): Declare.
4205 * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
4206 to address location.
4207 * spu-tdep.c (spu_catch_start): Likewise.
4208
4209 2015-08-11 Keith Seitz <keiths@redhat.com>
4210
4211 * ax-gdb.c: Include location.h.
4212 (agent_command_1) Use linespec location instead of address
4213 string.
4214 * break-catch-throw.c: Include location.h.
4215 (re_set_exception_catchpoint): Use linespec locations instead
4216 of address strings.
4217 * breakpoint.c: Include location.h.
4218 (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
4219 (create_std_terminate_master_breakpoint)
4220 (create_exception_master_breakpoint, update_breakpoints_after_exec):
4221 Use linespec location instead of address string.
4222 (print_breakpoint_location): Use locations and
4223 event_location_to_string.
4224 Print extra_string for pending locations for non-MI streams.
4225 (print_one_breakpoint_location): Use locations and
4226 event_location_to_string.
4227 (init_raw_breakpoint_without_location): Initialize b->location.
4228 (create_thread_event_breakpoint): Use linespec location instead of
4229 address string.
4230 (init_breakpoint_sal): Likewise.
4231 Only save extra_string if it is non-NULL and not the empty string.
4232 Use event_location_to_string instead of `addr_string'.
4233 Constify `p' and `endp'.
4234 Use skip_spaces_const/skip_space_const instead of non-const versions.
4235 Copy the location into the breakpoint.
4236 If LOCATION is NULL, save the breakpoint address as a linespec location
4237 instead of an address string.
4238 (create_breakpoint_sal): Change `addr_string' parameter to a struct
4239 event_location. All uses updated.
4240 (create_breakpoints_sal): Likewise for local variable `addr_string'.
4241 (parse_breakpoint_sals): Use locations instead of address strings.
4242 Remove check for empty linespec with conditional.
4243 Refactor.
4244 (decode_static_tracepoint_spec): Make argument const and update
4245 function.
4246 (create_breakpoint): Change `arg' to a struct event_location and
4247 rename.
4248 Remove `copy_arg' and `addr_start'.
4249 If EXTRA_STRING is empty, set it to NULL.
4250 Don't populate `canonical' for pending breakpoints.
4251 Pass `extra_string' to find_condition_and_thread.
4252 Clear `extra_string' if `rest' was NULL.
4253 Do not error with "garbage after location" if setting a dprintf
4254 breakpoint.
4255 Copy the location into the breakpoint instead of an address string.
4256 (break_command_1): Use string_to_event_location and pass this to
4257 create_breakpoint instead of an address string.
4258 Check against `arg_cp' for a probe linespec.
4259 (dprintf_command): Use string_to_event_location and pass this to
4260 create_breakpoint instead of an address string.
4261 Throw an exception if no format string was specified.
4262 (print_recreate_ranged_breakpoint): Use event_location_to_string
4263 instead of address strings.
4264 (break_range_command, until_break_command)
4265 (init_ada_exception_breakpoint): Use locations instead
4266 of address strings.
4267 (say_where): Print out extra_string for pending locations.
4268 (base_breakpoint_dtor): Delete `location' and `location_range_end' of
4269 the breakpoint.
4270 (base_breakpoint_create_sals_from_location): Use struct event_location
4271 instead of address string.
4272 Remove `addr_start' and `copy_arg' parameters.
4273 (base_breakpoint_decode_location): Use struct event_location instead of
4274 address string.
4275 (bkpt_re_set): Use locations instead of address strings.
4276 Use event_location_empty_p to check for unset location.
4277 (bkpt_print_recreate): Use event_location_to_string instead of
4278 an address string.
4279 Print out extra_string for pending locations.
4280 (bkpt_create_sals_from_location, bkpt_decode_location)
4281 (bkpt_probe_create_sals_from_location): Use struct event_location
4282 instead of address string.
4283 (bkpt_probe_decode_location): Use struct event_location instead of
4284 address string.
4285 (tracepoint_print_recreate): Use event_location_to_string to
4286 recreate the tracepoint.
4287 (tracepoint_create_sals_from_location, tracepoint_decode_location)
4288 (tracepoint_probe_create_sals_from_location)
4289 (tracepoint_probe_decode_location): Use struct event_location
4290 instead of address string.
4291 (dprintf_print_recreate): Use event_location_to_string to recreate
4292 the dprintf.
4293 (dprintf_re_set): Remove check for valid/missing format string.
4294 (strace_marker_create_sals_from_location)
4295 (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
4296 (update_static_tracepoint): Use struct event_location instead of
4297 address string.
4298 (location_to_sals): Likewise.
4299 Pass `extra_string' to find_condition_and_thread.
4300 For newly resolved pending breakpoint locations, clear the location's
4301 string representation.
4302 Assert that the breakpoint's condition string is NULL when
4303 condition_not_parsed.
4304 (breakpoint_re_set_default, create_sals_from_location_default)
4305 (decode_location_default, trace_command, ftrace_command)
4306 (strace_command, create_tracepoint_from_upload): Use locations
4307 instead of address strings.
4308 * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
4309 Use struct event_location instead of address string.
4310 Update all uses.
4311 <decode_location>: Likewise.
4312 (struct breakpoint) <addr_string>: Change to struct event_location
4313 and rename `location'.
4314 <addr_string_range_end>: Change to struct event_location and rename
4315 `location_range_end'.
4316 (create_breakpoint): Use struct event_location instead of address
4317 string.
4318 * cli/cli-cmds.c: Include location.h.
4319 (edit_command, list_command): Use locations instead of address strings.
4320 * elfread.c: Include location.h.
4321 (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
4322 * guile/scm-breakpoint.c: Include location.h.
4323 (bpscm_print_breakpoint_smob): Use event_location_to_string.
4324 (gdbscm_register_breakpoint): Use locations instead of address
4325 strings.
4326 * linespec.c: Include location.h.
4327 (struct ls_parser) <stream>: Change to const char *.
4328 (PARSER_STREAM): Update.
4329 (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
4330 keywords must be followed by whitespace.
4331 (canonicalize_linespec): Save a linespec location into `canonical'.
4332 Save a canonical linespec into `canonical'.
4333 (parse_linespec): Change `argptr' to const char * and rename `arg'.
4334 All uses updated.
4335 Update function description.
4336 (linespec_parser_new): Initialize `parser'.
4337 Update initialization of parsing stream.
4338 (event_location_to_sals): New function.
4339 (decode_line_full): Change `argptr' to a struct event_location and
4340 rename it `location'.
4341 Use locations instead of address strings.
4342 Call event_location_to_sals instead of parse_linespec.
4343 (decode_line_1): Likewise.
4344 (decode_line_with_current_source, decode_line_with_last_displayed)
4345 Use locations instead of address strings.
4346 (decode_objc): Likewise.
4347 Change `argptr' to const char * and rename `arg'.
4348 (destroy_linespec_result): Delete the linespec result's location
4349 instead of freeing the address string.
4350 * linespec.h (struct linespec_result) <addr_string>: Change to
4351 struct event_location and rename to ...
4352 <location>: ... this.
4353 (decode_line_1, decode_line_full): Change `argptr' to struct
4354 event_location. All callers updated.
4355 * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
4356 (mi_cmd_break_insert_1): Use locations instead of address strings.
4357 Throw an error if there was "garbage" at the end of the specified
4358 linespec.
4359 * probe.c: Include location.h.
4360 (parse_probes): Change `argptr' to struct event_location.
4361 Use event locations instead of address strings.
4362 * probe.h (parse_probes): Change `argptr' to struct event_location.
4363 * python/py-breakpoint.c: Include location.h.
4364 (bppy_get_location): Constify local variable `str'.
4365 Use event_location_to_string.
4366 (bppy_init): Use locations instead of address strings.
4367 * python/py-finishbreakpoint.c: Include location.h.
4368 (bpfinishpy_init): Remove local variable `addr_str'.
4369 Use locations instead of address strings.
4370 * python/python.c: Include location.h.
4371 (gdbpy_decode_line): Use locations instead of address strings.
4372 * remote.c: Include location.h.
4373 (remote_download_tracepoint): Use locations instead of address
4374 strings.
4375 * spu-tdep.c: Include location.h.
4376 (spu_catch_start): Remove local variable `buf'.
4377 Use locations instead of address strings.
4378 * tracepoint.c: Include location.h.
4379 (scope_info): Use locations instead of address strings.
4380 (encode_source_string): Constify parameter `src'.
4381 * tracepoint.h (encode_source_string): Likewise.
4382
4383 2015-08-11 Keith Seitz <keiths@redhat.com>
4384
4385 * Makefile.in (SFILES): Add location.c.
4386 (HFILES_NO_SRCDIR): Add location.h.
4387 (COMMON_OBS): Add location.o.
4388 * linespec.c (linespec_lex_to_end): New function.
4389 * linespec.h (linespec_lex_to_end): Declare.
4390 * location.c: New file.
4391 * location.h: New file.
4392
4393 2015-08-11 Keith Seitz <keiths@redhat.com>
4394
4395 * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
4396 Renamed to create_sals_from_location.
4397 <decode_linespec>: Renamed to decode_location.
4398 Update all callers.
4399 * breakpoint.c (create_sals_from_address_default): Renamed to ...
4400 (create_sals_from_location_default): ... this.
4401 (addr_string_to_sals): Renamed to ...
4402 (location_to_sals): ... this.
4403 (decode_linespec_default): Renamed to ...
4404 (decode_location_default): ... this.
4405 (base_breakpoint_create_sals_from_address): Renamed to ...
4406 (base_breakpoint_create_sals_from_location): ... this.
4407 (bkpt_create_sals_from_address): Renamed to ...
4408 (bkpt_create_sals_from_location): ... this.
4409 (bkpt_decode_linespec): Renamed to ...
4410 (bkpt_decode_location): ... this.
4411 (bkpt_probe_create_sals_from_address): Renamed to ...
4412 (bkpt_probe_create_sals_from_location): ... this.
4413 (tracepoint_create_sals_from_address): Renamed to ...
4414 (tracepoint_create_sals_from_location): ... this.
4415 (tracepoint_decode_linespec): Renamed to ...
4416 (tracepoint_decode_location): ... this.
4417 (tracepoint_probe_create_sals_from_address): Renamed to ...
4418 (tracepoint_probe_create_sals_from_location): ... this.
4419 (tracepoint_probe_decode_linespec): Renamed to ...
4420 (tracepoint_probe_decode_location): ... this.
4421 (strace_marker_create_sals_from_address): Renamed to ...
4422 (strace_marker_create_sals_from_location): ... this.
4423 (decode_linespec_default): Renamed to ...
4424 (decode_location_default): ... this.
4425
4426 2015-08-10 Doug Evans <dje@google.com>
4427 Keith Seitz <keiths@redhat.com>
4428
4429 PR gdb/17960
4430 * symtab.c (make_file_symbol_completion_list_1): Renamed from
4431 make_file_symbol_completion_list and made static.
4432 (make_file_symbol_completion_list): New function.
4433
4434 2015-08-10 Joel Brobecker <brobecker@adacore.com>
4435
4436 * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
4437 trailing new-line at end of warning message.
4438 (proceed): Add i18n marker to error messages.
4439
4440 2015-08-07 Pedro Alves <palves@redhat.com>
4441
4442 * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
4443
4444 2015-08-07 Pedro Alves <palves@redhat.com>
4445
4446 * s390-linux-tdep.c (is_non_branch_ril)
4447 (s390_displaced_step_copy_insn): New functions.
4448 (s390_displaced_step_fixup): Update comment.
4449 (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
4450 gdbarch_displaced_step_copy_insn hook.
4451
4452 2015-08-07 Pedro Alves <palves@redhat.com>
4453
4454 * infrun.c (displaced_step_prepare_throw): Return -1 if
4455 gdbarch_displaced_step_copy_insn returns NULL. Update intro
4456 comment.
4457 * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
4458 (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
4459 in file.
4460 (ppc_displaced_step_copy_insn): New function.
4461 (ppc_displaced_step_fixup): Update comment.
4462 (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
4463 gdbarch_displaced_step_copy_insn hook.
4464 * gdbarch.sh (displaced_step_copy_insn): Document what happens on
4465 NULL return.
4466 * gdbarch.h: Regenerate.
4467
4468 2015-08-07 Pedro Alves <palves@redhat.com>
4469
4470 * inferior.h (struct inferior) <displaced_stepping_failed>: New
4471 field.
4472 * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
4473 Return false if dispaced stepping failed before.
4474 (resume): Pass the current inferior to
4475 use_displaced_stepping_now_p. Wrap displaced_step_prepare in
4476 TRY/CATCH. If we get a MEMORY_ERROR, set the inferior's
4477 displaced_stepping_failed flag, and fall back to an in-line
4478 step-over.
4479
4480 2015-08-07 Pedro Alves <palves@redhat.com>
4481
4482 * darwin-nat.c (darwin_stop): Rename to ...
4483 (darwin_interrupt): ... this.
4484 (_initialize_darwin_inferior): Adjust.
4485 * gnu-nat.c (gnu_stop): Delete.
4486 (gnu_target): Don't install gnu_stop.
4487 * inf-ptrace.c (inf_ptrace_stop): Rename to ...
4488 (inf_ptrace_interrupt): ... this.
4489 (inf_ptrace_target): Adjust.
4490 * infcmd.c (interrupt_target_1): Use target_interrupt instead of
4491 target_stop.
4492 * linux-nat (linux_nat_stop): Rename to ...
4493 (linux_nat_interrupt): ... this.
4494 (linux_nat_stop): Reimplement.
4495 (linux_nat_add_target): Install linux_nat_interrupt.
4496 * nto-procfs.c (nto_interrupt_twice): Rename to ...
4497 (nto_handle_sigint_twice): ... this.
4498 (nto_interrupt): Rename to ...
4499 (nto_handle_sigint): ... this. Call target_interrupt instead of
4500 target_stop.
4501 (procfs_wait): Adjust.
4502 (procfs_stop): Rename to ...
4503 (procfs_interrupt): ... this.
4504 (init_procfs_targets): Adjust.
4505 * procfs.c (procfs_stop): Rename to ...
4506 (procfs_interrupt): ... this.
4507 (procfs_target): Adjust.
4508 * remote-m32r-sdi.c (m32r_stop): Rename to ...
4509 (m32r_interrupt): ... this.
4510 (init_m32r_ops): Adjust.
4511 * remote-sim.c (gdbsim_stop_inferior): Rename to ...
4512 (gdbsim_interrupt_inferior): ... this.
4513 (gdbsim_stop): Rename to ...
4514 (gdbsim_interrupt): ... this.
4515 (gdbsim_cntrl_c): Adjust.
4516 (init_gdbsim_ops): Adjust.
4517 * remote.c (sync_remote_interrupt): Adjust comments.
4518 (remote_stop_as): Rename to ...
4519 (remote_interrupt_as): ... this.
4520 (remote_stop): Adjust comment.
4521 (remote_interrupt): New function.
4522 (init_remote_ops): Install remote_interrupt.
4523 * target.c (target_interrupt): New function.
4524 * target.h (struct target_ops) <to_interrupt>: New field.
4525 (target_interrupt): New declaration.
4526 * windows-nat.c (windows_stop): Rename to ...
4527 (windows_interrupt): ... this.
4528 * target-delegates.c: Regenerate.
4529
4530 2015-08-07 Pedro Alves <palves@redhat.com>
4531
4532 * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
4533 threads" as alternative to "switching back to stepped thread".
4534
4535 2015-08-07 Pedro Alves <palves@redhat.com>
4536
4537 * NEWS: Mention "maint set/show target-non-stop".
4538 * breakpoint.c (update_global_location_list): Check
4539 target_is_non_stop_p instead of non_stop.
4540 * infcmd.c (attach_command_post_wait, attach_command): Likewise.
4541 * infrun.c (show_can_use_displaced_stepping)
4542 (can_use_displaced_stepping_p, start_step_over_inferior):
4543 Likewise.
4544 (internal_resume_ptid): New function.
4545 (resume): Use it.
4546 (proceed): Check target_is_non_stop_p instead of non_stop. If in
4547 all-stop mode but the target is always in non-stop mode, start all
4548 the other threads that are implicitly resumed too.
4549 (for_each_just_stopped_thread, fetch_inferior_event)
4550 (adjust_pc_after_break, stop_all_threads): Check
4551 target_is_non_stop_p instead of non_stop.
4552 (handle_inferior_event): Likewise. Handle detach-fork in all-stop
4553 with the target always in non-stop mode.
4554 (handle_signal_stop) <random signal>: Check target_is_non_stop_p
4555 instead of non_stop.
4556 (switch_back_to_stepped_thread): Check target_is_non_stop_p
4557 instead of non_stop.
4558 (keep_going_stepped_thread): Use internal_resume_ptid.
4559 (stop_waiting): If in all-stop mode, and the target is in non-stop
4560 mode, stop all threads.
4561 (keep_going_pass): Likewise, when starting a new in-line step-over
4562 sequence.
4563 * linux-nat.c (get_pending_status, select_event_lwp)
4564 (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
4565 target_is_non_stop_p instead of non_stop.
4566 (linux_nat_always_non_stop_p): New function.
4567 (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
4568 (linux_nat_add_target): Install linux_nat_always_non_stop_p.
4569 * target-delegates.c: Regenerate.
4570 * target.c (target_is_non_stop_p): New function.
4571 (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
4572 (maint_set_target_non_stop_command)
4573 (maint_show_target_non_stop_command): New functions.
4574 (_initilize_target): Install "maint set/show target-non-stop"
4575 commands.
4576 * target.h (struct target_ops) <to_always_non_stop_p>: New field.
4577 (target_non_stop_enabled): New declaration.
4578 (target_is_non_stop_p): New declaration.
4579
4580 2015-08-07 Pedro Alves <pedro@codesourcery.com>
4581
4582 * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
4583 has a pending status, return true.
4584 * gdbthread.h: Include target/waitstatus.h.
4585 (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
4586 stop_pc>: New fields.
4587 (struct thread_info) <resumed>: New field.
4588 (set_resumed): Declare.
4589 * infrun.c: Include "event-loop.h".
4590 (infrun_async_inferior_event_token, infrun_is_async): New globals.
4591 (infrun_async): New function.
4592 (clear_step_over_info): Add debug output.
4593 (displaced_step_in_progress_any_inferior): New function.
4594 (displaced_step_fixup): New returns int.
4595 (start_step_over): Handle in-line step-overs too. Assert the
4596 thread is marked resumed.
4597 (resume_cleanups): Clear the thread's resumed flag.
4598 (resume): Set the thread's resumed flag. Return early if the
4599 thread has a pending status. Allow stepping a breakpoint with no
4600 signal.
4601 (proceed): Adjust to check 'resumed' instead of 'executing'.
4602 (clear_proceed_status_thread): If the thread has a pending status,
4603 and that status is a finished step, discard the pending status.
4604 (clear_proceed_status): Don't clear step_over_info here.
4605 (random_pending_event_thread, do_target_wait): New functions.
4606 (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
4607 do_target_wait.
4608 (wait_one): New function.
4609 (THREAD_STOPPED_BY): New macro.
4610 (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
4611 (thread_stopped_by_hw_breakpoint): New functions.
4612 (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
4613 functions.
4614 (handle_inferior_event): Also call set_resumed(false) on all
4615 threads implicitly stopped by the event.
4616 (restart_threads, resumed_thread_with_pending_status): New
4617 functions.
4618 (finish_step_over): If we were doing an in-line step-over before,
4619 and no longer are after trying to start a new step-over, restart
4620 all threads. If we have multiple threads with pending events,
4621 save the current event and go through the event loop again.
4622 (handle_signal_stop): Return early if finish_step_over returns
4623 false.
4624 <random signal>: If we get a signal while stepping over a
4625 breakpoint in-line in non-stop mode, restart all threads. Clear
4626 step_over_info before delivering the signal.
4627 (keep_going_stepped_thread): Use internal_error instead of
4628 gdb_assert. Mark the thread as resumed.
4629 (keep_going_pass_signal): Assert the thread isn't already resumed.
4630 If some other thread is doing an in-line step-over, defer the
4631 resume. If we just started a new in-line step-over, stop all
4632 threads. Don't clear step_over_info.
4633 (infrun_async_inferior_event_handler): New function.
4634 (_initialize_infrun): Create async event handler with
4635 infrun_async_inferior_event_handler as callback.
4636 (infrun_async): New declaration.
4637 * target.c (target_async): New function.
4638 * target.h (target_async): Declare macro and readd as function
4639 declaration.
4640 * target/waitstatus.h (enum target_stop_reason)
4641 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
4642 * thread.c (new_thread): Clear the new waitstatus field.
4643 (set_resumed): New function.
4644
4645 2015-08-07 Pedro Alves <palves@redhat.com>
4646
4647 * infrun.c (keep_going_stepped_thread): New function, factored out
4648 from ...
4649 (switch_back_to_stepped_thread): ... here.
4650
4651 2015-08-07 Pedro Alves <palves@redhat.com>
4652
4653 * infrun.c (currently_stepping): Extend intro comment.
4654 * target.h (target_resume): Extend intro comment.
4655
4656 2015-08-07 Pedro Alves <palves@redhat.com>
4657
4658 * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
4659 of inferior_ptid. If the stepped thread vanished, return 0
4660 instead of resuming here. Use reset_ecs. Print the prev_pc and
4661 the current stop_pc in log message. Clear trap_expected if the
4662 thread advanced. Don't pass currently_stepping to
4663 do_target_resume.
4664
4665 2015-08-07 Pedro Alves <palves@redhat.com>
4666
4667 * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
4668 * infrun.c (struct execution_control_state): Move higher up in the
4669 file.
4670 (reset_ecs): New function.
4671 (start_step_over): Now returns int. Rewrite to use
4672 keep_going_pass_signal instead of manually starting a displaced step.
4673 (resume): Don't call set_running here. If displaced stepping
4674 can't start now, clear trap_expected.
4675 (find_thread_needs_step_over): Delete function.
4676 (proceed): Set up finish_thread_state_cleanup. Call set_running.
4677 If the current thread needs a step over, push it in the step-over
4678 chain. Don't set insert breakpoints nor call resume directly
4679 here. Instead rewrite to use start_step_over and
4680 keep_going_pass_signal.
4681 (finish_step_over): New function.
4682 (handle_signal_stop): Call finish_step_over instead of
4683 start_step_over.
4684 (switch_back_to_stepped_thread): If the event thread needs another
4685 step-over do that first. Use start_step_over.
4686 (keep_going_pass_signal): New function, factored out from ...
4687 (keep_going): ... here.
4688 (_initialize_infrun): Comment moved here.
4689 * thread.c (set_running_thread): New function.
4690 (set_running, finish_thread_state): Use set_running_thread.
4691
4692 2015-08-07 Pedro Alves <palves@redhat.com>
4693
4694 * gdbthread.h (struct thread_info) <step_over_prev,
4695 step_over_next>: New fields.
4696 (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
4697 (thread_step_over_chain_next, thread_is_in_step_over_chain): New
4698 declarations.
4699 * infrun.c (struct displaced_step_request): Delete.
4700 (struct displaced_step_inferior_state) <step_request_queue>:
4701 Delete field.
4702 (displaced_step_prepare): Assert that trap_expected is set. Use
4703 thread_step_over_chain_enqueue. Split starting a new displaced
4704 step to ...
4705 (start_step_over): ... this new function.
4706 (resume): Assert the thread isn't waiting for a step over already.
4707 (proceed): Assert the thread isn't waiting for a step over
4708 already.
4709 (infrun_thread_stop_requested): Adjust to remove threads from the
4710 embedded step-over chain.
4711 (handle_inferior_event) <fork/vfork>: Call start_step_over after
4712 displaced_step_fixup.
4713 (handle_signal_stop): Call start_step_over after
4714 displaced_step_fixup.
4715 * infrun.h (step_over_queue_head): New declaration.
4716 * thread.c (step_over_chain_enqueue, step_over_chain_remove)
4717 (thread_step_over_chain_next, thread_is_in_step_over_chain)
4718 (thread_step_over_chain_enqueue)
4719 (thread_step_over_chain_remove): New functions.
4720 (delete_thread_1): Remove thread from the step-over chain.
4721
4722 2015-08-07 Pedro Alves <palves@redhat.com>
4723
4724 * infrun.c (thread_still_needs_step_over): Rename to ...
4725 (thread_still_needs_step_over_bp): ... this.
4726 (enum step_over_what): New.
4727 (thread_still_needs_step_over): Reimplement.
4728
4729 2015-08-07 Pedro Alves <palves@redhat.com>
4730
4731 * remote.c (remote_wait_as): If not waiting for a stop reply,
4732 return TARGET_WAITKIND_NO_RESUMED. If TARGET_WNOHANG is
4733 requested, don't block waiting forever.
4734
4735 2015-08-07 Pedro Alves <pedro@codesourcery.com>
4736
4737 * infrun.c (adjust_pc_after_break): Now takes thread_info and
4738 waitstatus pointers instead of an ecs. Adjust.
4739 (handle_inferior_event): Adjust caller.
4740
4741 2015-08-07 Pedro Alves <palves@redhat.com>
4742
4743 * infrun.c (handle_inferior_event): If we get
4744 TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
4745 mode, mark all threads of the exiting process as not-executing.
4746 (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
4747 TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
4748 exiting process, if inferior_ptid still points at a process.
4749 * thread.c (struct current_thread_cleanup) <next>: New field.
4750 (current_thread_cleanup_chain): New global.
4751 (restore_current_thread_ptid_changed): New function.
4752 (restore_current_thread_cleanup_dtor): Remove the cleanup from the
4753 current_thread_cleanup_chain list.
4754 (make_cleanup_restore_current_thread): Add the cleanup data to the
4755 current_thread_cleanup_chain list.
4756 (_initialize_thread): Install restore_current_thread_ptid_changed
4757 as thread_ptid_changed observer.
4758
4759 2015-08-07 Joel Brobecker <brobecker@adacore.com>
4760
4761 * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
4762 data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
4763 smaller than expected.
4764
4765 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
4766
4767 * stack.c (get_frame_language): Moved ...
4768 * frame.c (get_frame_language): ... to here.
4769 * language.h (get_frame_language): Declaration moved to frame.h.
4770 * frame.h: Add language.h include, for language enum.
4771 (get_frame_language): Declaration moved from language.h.
4772 * language.c: Add frame.h include.
4773 * top.c: Add frame.h include.
4774 * symtab.h (struct obj_section): Declare.
4775 (struct cmd_list_element): Declare.
4776
4777 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
4778
4779 * language.c (show_language_command): Find selected frame before
4780 asking for the language of that frame.
4781 (set_language_command): Likewise.
4782 * language.h (get_frame_language): Add frame parameter.
4783 * stack.c (get_frame_language): Add frame parameter, assert
4784 parameter is not NULL, update comment and reindent.
4785 * top.c (check_frame_language_change): Pass the selected frame
4786 into get_frame_language.
4787
4788 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
4789
4790 * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
4791 (pt_btrace_insn_flags): New.
4792 (ftrace_add_pt): Call pt_btrace_insn_flags.
4793 * btrace.h (btrace_insn_flag): New.
4794 (btrace_insn) <flags>: New.
4795 * record-btrace.c (btrace_insn_history): Print insn prefix.
4796 * NEWS: Announce it.
4797
4798 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
4799
4800 * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
4801 * configure: Regenerate.
4802
4803 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
4804
4805 * Makefile.in (LIBICONV): Define.
4806 (CLIBS): Add LIBICONV.
4807 * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
4808 * configure: Regenerate.
4809
4810 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
4811 Pedro Alves <palves@redhat.com>
4812
4813 * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
4814 (arm_set_abi): Likewise.
4815 * ax-general.c (ax_print): Likewise.
4816 * c-exp.y (exp : string_exp): Likewise.
4817 * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
4818 (do_compile_dwarf_expr_to_c): Likewise.
4819 * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
4820 Likewise.
4821 * dwarf2expr.c (execute_stack_op): Likewise.
4822 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
4823 (disassemble_dwarf_expression): Likewise.
4824 * dwarf2read.c (dwarf2_add_member_fn): Likewise.
4825 (read_array_order): Likewise.
4826 (abbrev_table_read_table): Likewise.
4827 (read_attribute_value): Likewise.
4828 (skip_unknown_opcode): Likewise.
4829 (dwarf_decode_macro_bytes): Likewise.
4830 (dwarf_decode_macros): Likewise.
4831 * eval.c (value_f90_subarray): Likewise.
4832 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
4833 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
4834 * infrun.c (handle_command): Likewise.
4835 * memory-map.c (memory_map_start_memory): Likewise.
4836 * osabi.c (set_osabi): Likewise.
4837 * parse.c (operator_length_standard): Likewise.
4838 * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
4839 single return point.
4840 * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
4841 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
4842 (gdbpy_lookup_global_symbol): Likewise.
4843 * record-full.c (record_full_restore): Likewise.
4844 * regcache.c (regcache_register_status): Likewise.
4845 (regcache_raw_read): Likewise.
4846 (regcache_cooked_read): Likewise.
4847 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
4848 * symtab.c (initialize_ordinary_address_classes): Likewise.
4849 * target-debug.h (target_debug_print_signals): Likewise.
4850 * utils.c (do_restore_current_language): Likewise.
4851
4852 2015-08-06 Clem Dickey <clemd@acm.org>
4853
4854 PR python/17136
4855 * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
4856
4857 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
4858
4859 * complaints.c (enum complaint_series): Add newlines and remove
4860 out of date comment.
4861 (struct complaints) <series>: Change type to enum
4862 complaint_series and remove out of date comment.
4863 (symfile_complaint_hook): Use equivalent enum value
4864 ISOLATED_MESSAGE instead of 0.
4865
4866 2015-08-06 Pedro Alves <palves@redhat.com>
4867
4868 * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
4869 returned > 0.
4870
4871 2015-08-06 Pierre Langlois <pierre.langlois@arm.com>
4872
4873 * common/agent.c (symbol_list) <required>: Remove.
4874
4875 2015-08-06 Pedro Alves <palves@redhat.com>
4876
4877 * target/waitstatus.h (enum target_stop_reason)
4878 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
4879
4880 2015-08-05 Pedro Alves <palves@redhat.com>
4881 Joel Brobecker <brobecker@adacore.com>
4882
4883 * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
4884 <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
4885 case where BS->STOP is not set.
4886
4887 2015-08-05 Ulrich Weigand <uweigand@de.ibm.com>
4888
4889 * nat/gdb_thread_db.h: Add copyright header.
4890 Protect against multiple inclusion.
4891
4892 2015-08-05 Yao Qi <yao.qi@linaro.org>
4893
4894 * aarch64-linux-nat.c (get_thread_id): Remove.
4895 (debug_reg_change_callback): Call ptid_get_lwp instead of
4896 get_thread_id.
4897 (fetch_gregs_from_thread): Likewise.
4898 (store_gregs_to_thread): Likewise.
4899 (fetch_fpregs_from_thread): Likewise.
4900 (store_fpregs_to_thread): Likewise.
4901 (aarch64_linux_get_debug_reg_capacity): Likewise.
4902 * arm-linux-nat.c (get_thread_id): Remove.
4903 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
4904 * xtensa-linux-nat.c (get_thread_id): Remove.
4905 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
4906 * arm-linux-nat.c (get_thread_id): Remove.
4907 (GET_THREAD_ID): Remove.
4908 (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
4909 (store_fpregs, fetch_regs, store_regs): Likewise.
4910 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
4911 (fetch_vfp_regs, store_vfp_regs): Likewise.
4912 (arm_linux_read_description): Likewise.
4913 (arm_linux_get_hwbp_cap): Likewise.
4914 * xtensa-linux-nat.c (get_thread_id): Remove.
4915 (GET_THREAD_ID): Remove.
4916 (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
4917 GET_THREAD_ID.
4918
4919 2015-08-04 Ciro Santilli <ciro.santilli@gmail.com> (obvious patch)
4920
4921 * python/py-linetable.c: Fix case of Linetable to LineTable
4922 in docstrings and code comments.
4923 * python/py-symtab.c: Same.
4924
4925 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4926
4927 * infcmd.c (signal_command): Call do_cleanups for args_chain.
4928
4929 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4930
4931 PR gdb/18767
4932 * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
4933 use.
4934
4935 2015-08-04 Pedro Alves <palves@redhat.com>
4936
4937 * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
4938 (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
4939 (td_ta_event_addr_ftype, td_ta_set_event_ftype)
4940 (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
4941 (td_thr_validate_ftype, td_thr_get_info_ftype)
4942 (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
4943 (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
4944 New typedefs.
4945 * linux-thread-db.c (struct thread_db_info): Use new typedefs.
4946 (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
4947 local macros and use them instead of verbose_dlsym and dlsym
4948 calls.
4949
4950 2015-08-03 Sandra Loosemore <sandra@codesourcery.com>
4951
4952 * nios2-tdep.h: Include opcode/nios2.h here.
4953 (NIOS2_CDX_OPCODE_SIZE): New.
4954 (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
4955 * nios2-tdep.c: Don't include opcode/nios2.h here.
4956 (nios2_fetch_insn): For R2, try reading 2-byte instruction if
4957 4-byte read fails.
4958 (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
4959 (nios2_match_addi, nios2_match_orhi): Likewise.
4960 (nios2_match_stw, nios2_match_ldw): Likewise.
4961 (nios2_match_rdctl): Likewise.
4962 (nios2_match_stwm, nios2_match_ldwm): New.
4963 (nios2_match_branch): Add cases for R2 encodings.
4964 (nios2_match_jmpi, nios2_match_calli): Likewise.
4965 (nios2_match_jmpr, nios2_match_callr): Likewise.
4966 (nios2_match_break, nios2_match_trap): Likewise.
4967 (nios2_in_epilogue_p): Add R2 support.
4968 (nios2_analyze_prologue): Update comments. Recognize R2 CDX
4969 prologues.
4970 (nios2_breakpoint_from_pc): Handle R2 instructions.
4971 (nios2_get_next_pc): Likewise. Adjust call to
4972 tdep->syscall_next_pc.
4973 * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
4974 Renamed from nios2_linux_rt_sigreturn_tramp_frame. Use
4975 instruction field macros instead of literal hex values.
4976 (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
4977 (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
4978 Use size field from OP instead of assuming all instructions
4979 are the same size.
4980 (nios2_linux_init_abi): Register appropriate unwinder for mach.
4981
4982 2015-08-03 Ulrich Weigand <uweigand@de.ibm.com>
4983
4984 * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
4985 variable warning with some compilers.
4986
4987 2015-08-03 Yao Qi <yao.qi@linaro.org>
4988
4989 * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
4990 in comment. Replace "rw" with "type".
4991 (arm_linux_remove_watchpoint): Change type of "rw" to
4992 "enum target_hw_bp_type".
4993
4994 2015-08-02 Pierre-Marie de Rodat <derodat@adacore.com>
4995
4996 * alpha-mdebug-tdep.c (find_proc_desc): Update call to
4997 lookup_symbol.
4998 * ft32-tdep.c (ft32_skip_prologue): Likewise.
4999 * moxie-tdep.c (moxie_skip_prologue): Likewise.
5000 * mt-tdep.c (mt_skip_prologue): Likewise.
5001 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
5002
5003 2015-08-01 Pierre-Marie de Rodat <derodat@adacore.com>
5004
5005 * ada-exp.y (write_object_renaming): Replace struct
5006 ada_symbol_info with struct block_symbol. Update field
5007 references accordingly.
5008 (block_lookup, select_possible_type_sym): Likewise.
5009 (find_primitive_type): Likewise. Also update call to
5010 ada_lookup_symbol to extract the symbol itself.
5011 (write_var_or_type, write_name_assoc): Likewise.
5012 * ada-lang.h (struct ada_symbol_info): Remove.
5013 (ada_lookup_symbol_list): Replace struct ada_symbol_info with
5014 struct block_symbol.
5015 (ada_lookup_encoded_symbol, user_select_syms): Likewise.
5016 (ada_lookup_symbol): Return struct block_symbol instead of a
5017 mere symbol.
5018 * ada-lang.c (defns_collected): Replace struct ada_symbol_info
5019 with struct block_symbol.
5020 (resolve_subexp, ada_resolve_function, sort_choices,
5021 user_select_syms, is_nonfunction, add_defn_to_vec,
5022 num_defns_collected, defns_collected,
5023 symbols_are_identical_enums, remove_extra_symbols,
5024 remove_irrelevant_renamings, add_lookup_symbol_list_worker,
5025 ada_lookup_symbol_list, ada_iterate_over_symbols,
5026 ada_lookup_encoded_symbol, get_var_value): Likewise.
5027 (ada_lookup_symbol): Return a block_symbol instead of a mere
5028 symbol. Replace struct ada_symbol_info with struct
5029 block_symbol.
5030 (ada_lookup_symbol_nonlocal): Likewise.
5031 (standard_lookup): Make block passing explicit through
5032 lookup_symbol_in_language.
5033 * ada-tasks.c (get_tcb_types_info): Update the calls to
5034 lookup_symbol_in_language to extract the mere symbol out of the
5035 returned value.
5036 (ada_tasks_inferior_data_sniffer): Likewise.
5037 * ax-gdb.c (gen_static_field): Likewise for the call to
5038 lookup_symbol.
5039 (gen_maybe_namespace_elt): Deal with struct block_symbol from
5040 lookup functions.
5041 (gen_expr): Likewise.
5042 * c-exp.y: Likewise. Remove uses of block_found.
5043 (lex_one_token, classify_inner_name, c_print_token): Likewise.
5044 (classify_name): Likewise. Rename the "sym" local variable to
5045 "bsym".
5046 * c-valprint.c (print_unpacked_pointer): Likewise.
5047 * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
5048 "sym" parameter from struct symbol * to struct block_symbol.
5049 Use it to remove uses of block_found. Deal with struct
5050 block_symbol from lookup functions.
5051 (gcc_convert_symbol): Likewise. Update the call to
5052 convert_symbol_sym.
5053 * compile/compile-object-load.c (compile_object_load): Deal with
5054 struct block_symbol from lookup functions.
5055 * cp-namespace.c (cp_lookup_nested_symbol_1,
5056 cp_lookup_nested_symbol, cp_lookup_bare_symbol,
5057 cp_search_static_and_baseclasses,
5058 cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
5059 cp_lookup_symbol_imports_or_template,
5060 cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
5061 lookup_namespace_scope, cp_lookup_nonlocal,
5062 find_symbol_in_baseclass): Return struct block_symbol instead of
5063 mere symbols and deal with struct block_symbol from lookup
5064 functions.
5065 * cp-support.c (inspect_type, replace_typedefs,
5066 cp_lookup_rtti_type): Deal with struct block_symbol from
5067 lookup functions.
5068 * cp-support.h (cp_lookup_symbol_nonlocal,
5069 cp_lookup_symbol_from_namespace,
5070 cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
5071 Return struct block_symbol instead of mere symbols.
5072 * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
5073 push_module_name):
5074 Deal with struct block_symbol from lookup functions. Remove
5075 uses of block_found.
5076 * eval.c (evaluate_subexp_standard): Update call to
5077 cp_lookup_symbol_namespace.
5078 * f-exp.y: Deal with struct block_symbol from lookup functions.
5079 Remove uses of block_found.
5080 (yylex): Likewise.
5081 * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
5082 lookup_enum, lookup_template_type, check_typedef): Deal with
5083 struct block_symbol from lookup functions.
5084 * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
5085 * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
5086 (gdbscm_lookup_global_symbol): Likewise.
5087 * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
5088 * go-exp.y: Likewise. Remove uses of block_found.
5089 (package_name_p, classify_packaged_name, classify_name):
5090 Likewise.
5091 * infrun.c (insert_exception_resume_breakpoint): Likewise.
5092 * jv-exp.y (push_variable): Likewise.
5093 * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
5094 * language.c (language_bool_type): Likewise.
5095 * language.h (struct language_defn): Update
5096 la_lookup_symbol_nonlocal to return a struct block_symbol rather
5097 than a mere symbol.
5098 * linespec.c (find_label_symbols): Deal with struct block_symbol
5099 from lookup functions.
5100 * m2-exp.y: Likewise. Remove uses of block_found.
5101 (yylex): Likewise.
5102 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
5103 * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
5104 * p-exp.y: Likewise. Remove uses of block_found.
5105 (yylex): Likewise.
5106 * p-valprint.c (pascal_val_print): Likewise.
5107 * parse.c (write_dollar_variable): Likewise. Remove uses of
5108 block_found.
5109 * parser-defs.h (struct symtoken): Turn the SYM field into a
5110 struct block_symbol.
5111 * printcmd.c (address_info): Deal with struct block_symbol from
5112 lookup functions.
5113 * python/py-frame.c (frapy_read_var): Likewise.
5114 * python/py-symbol.c (gdbpy_lookup_symbol,
5115 gdbpy_lookup_global_symbol): Likewise.
5116 * skip.c (skip_function_command): Likewise.
5117 * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
5118 block_symbol instead of a mere symbol.
5119 * solib-spu.c (spu_lookup_lib_symbol): Likewise.
5120 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
5121 * solib.c (solib_global_lookup): Likewise.
5122 * solist.h (solib_global_lookup): Likewise.
5123 (struct target_so_ops): Update lookup_lib_global_symbol to
5124 return a struct block_symbol rather than a mere symbol.
5125 * source.c (select_source_symtab): Deal with struct block_symbol
5126 from lookup functions.
5127 * stack.c (print_frame_args, iterate_over_block_arg_vars):
5128 Likewise.
5129 * symfile.c (set_initial_language): Likewise.
5130 * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
5131 block_symbol.
5132 (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
5133 (struct symbol_cache_slot): Turn the FOUND field into a struct
5134 block_symbol.
5135 (block_found): Remove.
5136 (eq_symbol_entry): Update to deal with struct block_symbol in
5137 cache slots.
5138 (symbol_cache_lookup): Return a struct block_symbol rather than
5139 a mere symbol.
5140 (symbol_cache_mark_found): Add a BLOCK parameter to fill
5141 appropriately the cache slots. Update callers.
5142 (symbol_cache_dump): Update cache slots handling to the type
5143 change.
5144 (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
5145 lookup_symbol_aux, lookup_local_symbol,
5146 lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
5147 lookup_symbol_in_objfile_symtabs,
5148 lookup_symbol_in_objfile_from_linkage_name,
5149 lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
5150 lookup_symbol_in_static_block, lookup_static_symbol,
5151 lookup_global_symbol):
5152 Return a struct block_symbol rather than a mere symbol. Deal
5153 with struct block_symbol from other lookup functions. Remove
5154 uses of block_found.
5155 (lookup_symbol_in_block): Remove uses of block_found.
5156 (struct global_sym_lookup_data): Turn the RESULT field into a
5157 struct block_symbol.
5158 (lookup_symbol_global_iterator_cb): Update references to the
5159 RESULT field.
5160 (search_symbols): Deal with struct block_symbol from lookup
5161 functions.
5162 * symtab.h (struct block_symbol): New structure.
5163 (block_found): Remove.
5164 (lookup_symbol_in_language, lookup_symbol,
5165 basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
5166 lookup_static_symbol, lookup_global_symbol, lookup_language_this,
5167 lookup_global_symbol_from_objfile): Return a struct block_symbol
5168 rather than just a mere symbol. Update comments to remove
5169 mentions of block_found.
5170 * valops.c (find_function_in_inferior,
5171 value_struct_elt_for_reference, value_maybe_namespace_elt,
5172 value_of_this): Deal with struct block_symbol from lookup
5173 functions.
5174 * value.c (value_static_field, value_fn_field): Likewise.
5175
5176 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5177
5178 * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
5179 instead of integer.
5180
5181 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5182 Pedro Alves <palves@redhat.com>
5183
5184 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
5185 type or value instead of integer.
5186 (aarch64_linux_insert_watchpoint): Likewise.
5187 (aarch64_linux_remove_watchpoint): Likewise.
5188 * ada-lang.c (ada_op_print_tab): Likewise.
5189 * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
5190 (amd64_linux_syscall_record_common): Likewise.
5191 * arch-utils.c (target_byte_order_user): Likewise.
5192 (default_byte_order): Likewise.
5193 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
5194 (arm_linux_get_hwbp_type): Likewise.
5195 (arm_linux_hw_watchpoint_initialize): Likewise.
5196 (arm_linux_insert_watchpoint): Likewise.
5197 * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
5198 (arm_linux_syscall_record): Likewise.
5199 * breakpoint.c (update_watchpoint): Likewise.
5200 (breakpoint_here_p): Likewise.
5201 (bpstat_print): Likewise.
5202 (enable_breakpoint_disp): Likewise.
5203 * c-lang.c (c_op_print_tab): Likewise.
5204 * cli/cli-decode.c (add_info_alias): Likewise.
5205 * d-lang.c (d_op_print_tab): Likewise.
5206 * eval.c (evaluate_subexp_standard): Likewise.
5207 * f-exp.y (dot_ops): Likewise.
5208 (f77_keywords): Likewise.
5209 * f-lang.c (f_op_print_tab): Likewise.
5210 * go-lang.c (go_op_print_tab): Likewise.
5211 * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
5212 * guile/scm-cmd.c (gdbscm_make_command): Likewise.
5213 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5214 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
5215 * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
5216 (struct scm_from_stringn_data): Likewise.
5217 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5218 * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
5219 (ia64_linux_remove_watchpoint): Likewise.
5220 (ia64_linux_can_use_hw_breakpoint): Likewise.
5221 * infrun.c (print_stop_event): Likewise.
5222 * jv-lang.c (java_op_print_tab): Likewise.
5223 * linux-nat.c (linux_proc_xfer_partial): Likewise.
5224 * linux-nat.h (struct lwp_info): Likewise.
5225 * linux-thread-db.c (enable_thread_event): Likewise.
5226 * m2-lang.c (m2_op_print_tab): Likewise.
5227 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
5228 (mi_cmd_stack_list_variables): Likewise.
5229 * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
5230 * mi/mi-out.c (mi_table_begin): Likewise.
5231 (mi_table_header): Likewise.
5232 * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
5233 (mips_linux_insert_watchpoint): Likewise.
5234 (mips_linux_remove_watchpoint): Likewise.
5235 * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
5236 * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
5237 (mips_linux_watch_type_to_irw): Likewise.
5238 * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5239 (procfs_insert_hw_watchpoint): Likewise.
5240 (procfs_remove_hw_watchpoint): Likewise.
5241 (procfs_hw_watchpoint): Likewise.
5242 (procfs_can_use_hw_breakpoint): Likewise.
5243 (procfs_remove_hw_watchpoint): Likewise.
5244 (procfs_insert_hw_watchpoint): Likewise.
5245 * p-lang.c (pascal_op_print_tab): Likewise.
5246 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
5247 * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
5248 * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
5249 * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5250 (procfs_insert_watchpoint): Likewise.
5251 (procfs_remove_watchpoint): Likewise.
5252 * psymtab.c (recursively_search_psymtabs): Likewise.
5253 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
5254 (m32r_insert_watchpoint): Likewise.
5255 * remote-mips.c (mips_can_use_watchpoint): Likewise.
5256 (mips_insert_watchpoint): Likewise.
5257 (mips_remove_watchpoint): Likewise.
5258 * remote.c (watchpoint_to_Z_packet): Likewise.
5259 (remote_insert_watchpoint): Likewise.
5260 (remote_remove_watchpoint): Likewise.
5261 (remote_check_watch_resources): Likewise.
5262 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
5263 (s390_remove_watchpoint): Likewise.
5264 (s390_can_use_hw_breakpoint): Likewise.
5265 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
5266 * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
5267 * target.h (struct target_ops): Likewise.
5268 * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
5269 * ui-out.c (struct ui_out_hdr): Likewise.
5270 (append_header_to_list): Likewise.
5271 (get_next_header): Likewise.
5272 (verify_field): Likewise.
5273 (ui_out_begin): Likewise.
5274 (ui_out_field_int): Likewise.
5275 (ui_out_field_fmt_int): Likewise.
5276 (ui_out_field_skip): Likewise.
5277 (ui_out_field_string): Likewise.
5278 (ui_out_field_fmt): Likewise.
5279 * varobj.c (new_variable): Likewise.
5280 * x86-nat.c (x86_insert_watchpoint): Likewise.
5281 (x86_remove_watchpoint): Likewise.
5282 (x86_can_use_hw_breakpoint): Likewise.
5283 * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
5284 * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
5285 previously anonymous enumeration type..
5286 * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
5287 value.
5288 * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
5289 (target_debug_print_enum_bptype): New.
5290 * target-delegates.c: Regenerate.
5291
5292 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5293
5294 * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
5295 already says and disallow non-stack memory writes in the prologue.
5296
5297 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5298
5299 * nios2-tdep.c (nios2_analyze_prologue): Update comments to
5300 reflect how current GCC emits stack overflow checks. Match
5301 both trap and break instructions for backward compatbility.
5302 Disallow other trap and break instructions in the prologue.
5303
5304 2015-07-30 Pedro Alves <palves@redhat.com>
5305
5306 PR threads/18600
5307 * linux-nat.c (wait_lwp): Report to the core when thread group
5308 leader exits.
5309
5310 2015-07-30 Pedro Alves <palves@redhat.com>
5311 Simon Marchi <simon.marchi@ericsson.com>
5312
5313 PR threads/18600
5314 * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
5315 mark the new thread as resumed. Remove STOPPING parameter.
5316 (wait_lwp): Adjust call to linux_handle_extended_wait.
5317 (linux_nat_filter_event): Adjust call to
5318 linux_handle_extended_wait.
5319 (resume_stopped_resumed_lwps): Add debug output.
5320
5321 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5322
5323 * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
5324 isize argument.
5325 * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
5326 * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
5327 gdbarch_fast_tracepoint_valid_at.
5328 * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
5329 * gdbarch.h: Regenerate.
5330 * gdbarch.c: Regenerate.
5331 * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
5332 argument. Do not set it.
5333 * remote.c (remote_download_tracepoint): Adjust call to
5334 gdbarch_fast_tracepoint_valid_at. Call gdb_insn_length to get
5335 the instruction length.
5336
5337 2015-07-30 Yao Qi <yao.qi@linaro.org>
5338
5339 * arm-tdep.h (enum gdb_regnum): Move it to ...
5340 * arch/arm.h: ... here. New file.
5341 * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
5342
5343 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5344
5345 * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
5346 Change its type to int *.
5347 (decode_br): Rename link argument to is_blr. Change its type to
5348 int *.
5349 (decode_cb): Rename op argument to is_cbnz. Change its type to
5350 int *.
5351 (decode_tb): Rename op argument to is_tbnz. Change its type to
5352 int *. Set is_tbnz to either 1 or 0.
5353 (aarch64_analyze_prologue): Change type of is_link to int. Add
5354 new variables is_cbnz and is_tbnz. Adjust call to
5355 aarch64_decode_cb and aarch64_decode_tb.
5356
5357 2015-07-29 Simon Marchi <simon.marchi@ericsson.com>
5358
5359 * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
5360 parameter.
5361 (mips_linux_new_thread): Likewise.
5362 * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
5363
5364 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5365
5366 * top.c: Include "tui/tui.h".
5367 (undo_terminal_modifications_before_exit): New static function.
5368 (quit_force): Use it.
5369
5370 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5371
5372 * target.c (terminal_state): Initialize to terminal_is_ours.
5373
5374 2015-07-29 Yao Qi <yao.qi@linaro.org>
5375
5376 PR record/18691
5377 * dcache.c (dcache_read_memory_partial): Call
5378 raw_memory_xfer_partial.
5379 * target.c (raw_memory_xfer_partial): Make it non-static.
5380 * target.h (raw_memory_xfer_partial): Declare.
5381
5382 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5383
5384 * c-valprint.c (c_val_print_array): Consider addressable memory
5385 unit size.
5386 (c_val_print_ptr): Likewise.
5387 (c_val_print_int): Likewise.
5388 * findvar.c (read_frame_register_value): Likewise.
5389 * valarith.c (find_size_for_pointer_math): Likewise.
5390 (value_ptrdiff): Likewise.
5391 (value_subscripted_rvalue): Likewise.
5392 * valops.c (read_value_memory): Likewise (and rename variables).
5393 (value_assign): Likewise.
5394 (value_repeat): Likewise.
5395 (value_array): Likewise.
5396 (value_slice): Likewise.
5397 * valprint.c (generic_val_print_ptr): Likewise.
5398 (generic_val_print_enum): Likewise.
5399 (generic_val_print_bool): Likewise.
5400 (generic_val_print_int): Likewise.
5401 (generic_val_print_char): Likewise.
5402 (generic_val_print_float): Likewise.
5403 (generic_val_print_decfloat): Likewise.
5404 (generic_val_print_complex): Likewise.
5405 (val_print_scalar_formatted): Likewise.
5406 (val_print_array_elements): Likewise.
5407 * value.c (set_value_parent): Likewise.
5408 (value_contents_copy_raw): Likewise.
5409 (set_internalvar_component): Likewise.
5410 (value_primitive_field): Likewise.
5411 (value_fetch_lazy): Likewise.
5412 * value.h (read_value_memory): Update comment.
5413
5414 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5415
5416 * value.c (get_value_arch): New function.
5417 * value.h (get_value_arch): New declaration.
5418
5419 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5420
5421 * value.c (struct value): Update comments.
5422
5423 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5424
5425 * gdbtypes.c (type_length_units): New function.
5426 * gdbtypes.h (type_length_units): New declaration.
5427 (struct type) <length>: Update comment.
5428
5429 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5430
5431 * valprint.c (generic_val_print): Factor out complex
5432 printing code to ...
5433 (generic_val_print_complex): ... this new function.
5434
5435 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5436
5437 * valprint.c (generic_val_print): Factor out decfloat
5438 printing code to ...
5439 (generic_val_print_decfloat): ... this new function.
5440
5441 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5442
5443 * valprint.c (generic_val_print): Factor out float
5444 printing code to ...
5445 (generic_val_print_float): ... this new function.
5446
5447 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5448
5449 * valprint.c (generic_val_print): Factor out char
5450 printing code to ...
5451 (generic_val_print_char): ... this new function.
5452
5453 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5454
5455 * valprint.c (generic_val_print): Factor out integer
5456 printing code to ...
5457 (generic_val_print_int): ... this new function.
5458
5459 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5460
5461 * valprint.c (generic_val_print): Factor out bool
5462 printing code to ...
5463 (generic_val_print_bool): ... this new function.
5464
5465 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5466
5467 * valprint.c (generic_val_print): Factor out function/method
5468 printing code to ...
5469 (generic_val_print_func): ... this new function.
5470
5471 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5472
5473 * valprint.c (generic_val_print): Factor out flags
5474 printing code to ...
5475 (generic_val_print_flags): ... this new function.
5476
5477 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5478
5479 * valprint.c (generic_val_print): Factor out enum
5480 printing code to ...
5481 (generic_val_print_enum): ... this new function.
5482
5483 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5484
5485 * valprint.c (generic_val_print): Factor out reference
5486 printing code to ...
5487 (generic_val_print_ref): ... this new function.
5488
5489 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5490
5491 * valprint.c (generic_val_print): Factor out memberptr
5492 printing code to ...
5493 (generic_val_print_memberptr): ... this new function.
5494
5495 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5496
5497 * valprint.c (generic_val_print): Factor out pointer
5498 printing code to ...
5499 (generic_val_print_ptr): ... this new function.
5500
5501 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5502
5503 * valprint.c (generic_val_print): Factor out array
5504 printing code to ...
5505 (generic_val_print_array): ... this new function.
5506
5507 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5508
5509 * valprint.c (generic_val_print): Factor out
5510 print_unpacked_pointer code to ...
5511 (print_unpacked_pointer): ... this new function.
5512
5513 2015-07-27 Patrick Palka <patrick@parcs.ath.cx>
5514
5515 * event-top.c (handle_sigterm): Don't inspect
5516 target_can_async_p. Always set the quit flag and always mark
5517 the async signal handler.
5518
5519 2015-07-27 Yao Qi <yao.qi@linaro.org>
5520
5521 * Makefile.in (REMOTE_EXAMPLES): Remove it.
5522
5523 2015-07-25 Kevin Buettner <kevinb@redhat.com>
5524
5525 * remote.c (read_ptid): Return null_ptid when no thread id
5526 is found.
5527 (remote_current_thread): Add log warning for malformed
5528 qC reply.
5529 (remote_start_remote): Add log warning when current thread
5530 not found.
5531
5532 2015-07-24 Pedro Alves <palves@redhat.com>
5533
5534 * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
5535 (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
5536 forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
5537
5538 2015-07-24 Pedro Alves <palves@redhat.com>
5539
5540 PR gdb/18717
5541 * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
5542 is resumed, and extend the debug log.
5543
5544 2015-07-24 Pedro Alves <palves@redhat.com>
5545
5546 * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
5547
5548 2015-07-24 Pedro Alves <palves@redhat.com>
5549
5550 * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
5551 sys/ptrace.h.
5552 * alpha-linux-nat.c: Likewise.
5553 * amd64-linux-nat.c: Likewise.
5554 * arm-linux-nat.c: Likewise.
5555 * hppa-linux-nat.c: Likewise.
5556 * i386-linux-nat.c: Likewise.
5557 * ia64-linux-nat.c: Likewise.
5558 * linux-fork.c: Likewise.
5559 * linux-nat.c: Likewise.
5560 * m32r-linux-nat.c: Likewise.
5561 * m68klinux-nat.c: Likewise.
5562 * mips-linux-nat.c: Likewise.
5563 * nat/linux-btrace.c: Likewise.
5564 * nat/linux-ptrace.c: Likewise.
5565 * nat/linux-ptrace.h
5566 * nat/mips-linux-watch.c: Likewise.
5567 * nat/x86-linux-dregs.c: Likewise.
5568 * ppc-linux-nat.c: Likewise.
5569 * s390-linux-nat.c: Likewise.
5570 * spu-linux-nat.c: Likewise.
5571 * tilegx-linux-nat.c: Likewise.
5572 * x86-linux-nat.c: Likewise.
5573 * xtensa-linux-nat.c: Likewise.
5574
5575 2015-07-24 Pedro Alves <palves@redhat.com>
5576
5577 * ptrace.m4 (ptrace tests): Test in C++ mode. Try with 'enum
5578 __ptrace_request as first parameter type instead of int.
5579 (PTRACE_TYPE_ARG1): Define.
5580 * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
5581 that casts first argument to PTRACE_TYPE_ARG1.
5582 * config.in: Regenerate.
5583 * configure: Regenerate.
5584
5585 2015-07-24 Pedro Alves <palves@redhat.com>
5586
5587 * gdb_ptrace.h: Move ...
5588 * nat/gdb_ptrace.h: ... here.
5589 * inf-ptrace.c: Adjust.
5590
5591 2015-07-24 Pedro Alves <palves@redhat.com>
5592
5593 * acinclude.m4: Include ptrace.m4.
5594 * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
5595 * ptrace.m4: ... to this new file.
5596
5597 2015-07-23 Doug Evans <dje@google.com>
5598
5599 * dwarf2read.c (dwarf2_per_cu_data): Add comment.
5600 (load_cu): Handle dummy CUs.
5601 (dw2_do_instantiate_symtab, process_queuef): Ditto.
5602 (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
5603
5604 2015-07-23 Ciro Santilli <ciro.santilli@gmail.com> (tiny patch)
5605
5606 * py-linetable.c (ltpy_get_all_source_lines): Adjust function
5607 documentation to say that it returns a list rather than
5608 a FrozenSet.
5609 (linetable_object_methods): Update the docstring of the
5610 "source_line" entry.
5611
5612 2015-07-23 Pierre-Marie de Rodat <derodat@adacore.com>
5613
5614 * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
5615 type to the recursive call instead of the original (maybe
5616 TYPE_CODE_TYPEDEF) type.
5617
5618 2015-07-23 Yao Qi <yao.qi@linaro.org>
5619
5620 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
5621 TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
5622 If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
5623
5624 2015-07-21 Yao Qi <yao.qi@linaro.org>
5625
5626 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
5627 Move it to nat/aarch64-linux-hw-point.c.
5628 (aarch64_linux_child_post_startup_inferior): Update.
5629 * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
5630 New function.
5631 * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
5632 Declare it.
5633
5634 2015-07-21 Markus Metzger <markus.t.metzger@intel.com>
5635
5636 * common/btrace-common.c (btrace_data_append): Change case label.
5637
5638 2015-07-20 Yao Qi <yao.qi@linaro.org>
5639
5640 * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
5641 Re-indent the code.
5642 * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
5643 "unsigned long long".
5644
5645 2015-07-18 Kevin Buettner <kevinb@redhat.com>
5646
5647 * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
5648 to be set for SEC_ALLOC sections too.
5649
5650 2015-07-17 Yao Qi <yao.qi@linaro.org>
5651
5652 * Makefile.in (HFILES_NO_SRCDIR): Add
5653 nat/aarch64-linux-hw-point.h.
5654 (aarch64-linux-hw-point.o): New rule.
5655 * nat/aarch64-linux-hw-point.h: New file.
5656 * nat/aarch64-linux-hw-point.c: New file.
5657 * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
5658 (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
5659 (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
5660 (AARCH64_HWP_ALIGNMENT): Likewise.
5661 (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
5662 (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
5663 (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
5664 (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
5665 (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
5666 (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
5667 (struct aarch64_debug_reg_state): Likewise.
5668 (struct arch_lwp_info): Likewise.
5669 (aarch64_linux_set_debug_regs): Likewise.
5670 (aarch64_notify_debug_reg_change): Remove static.
5671 (aarch64_align_watchpoint): Likewise.
5672 (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
5673 (aarch64_watchpoint_length): Likewise.
5674 (aarch64_point_encode_ctrl_reg): Likewise
5675 (aarch64_point_is_aligned): Likewise.
5676 (aarch64_dr_state_insert_one_point): Likewise.
5677 (aarch64_dr_state_remove_one_point): Likewise.
5678 (aarch64_handle_breakpoint): Likewise.
5679 (aarch64_handle_aligned_watchpoint): Likewise.
5680 (aarch64_handle_unaligned_watchpoint): Likewise.
5681 (aarch64_handle_watchpoint): Likewise.
5682 * config/aarch64/linux.mh (NAT_FILE): Add
5683 aarch64-linux-hw-point.o.
5684
5685 2015-07-17 Yao Qi <yao.qi@linaro.org>
5686
5687 * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
5688 state and don't call aarch64_get_debug_reg_state. All callers
5689 update.
5690 (aarch64_linux_insert_hw_breakpoint): Call
5691 aarch64_get_debug_reg_state earlier.
5692 (aarch64_linux_remove_hw_breakpoint): Likewise.
5693 (aarch64_handle_aligned_watchpoint): Add argument state and
5694 don't call aarch64_get_debug_reg_state. All callers update.
5695 (aarch64_handle_unaligned_watchpoint): Likewise.
5696 (aarch64_handle_watchpoint): Add argument state.
5697 (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
5698 earlier.
5699 (aarch64_linux_remove_watchpoint): Likewise.
5700
5701 2015-07-17 Yao Qi <yao.qi@linaro.org>
5702
5703 * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
5704 debug_printf.
5705 (aarch64_handle_unaligned_watchpoint): Likewise.
5706
5707 2015-07-17 Yao Qi <yao.qi@linaro.org>
5708
5709 * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
5710 argument type's type to 'enum target_hw_bp_type'.
5711 (aarch64_dr_state_remove_one_point): Likewise.
5712 (aarch64_handle_breakpoint): Likewise.
5713 (aarch64_linux_insert_hw_breakpoint): Likewise.
5714 (aarch64_linux_remove_hw_breakpoint): Likewise.
5715 (aarch64_handle_aligned_watchpoint): Likewise.
5716
5717 2015-07-17 Yao Qi <yao.qi@linaro.org>
5718
5719 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
5720 ptid_get_pid instead of get_thread_id.
5721
5722 2015-07-17 Yao Qi <yao.qi@linaro.org>
5723
5724 * remote.c (get_current_thread): Initialise ptid to null_ptid.
5725 (add_current_inferior_and_thread): Don't initialise ptid.
5726
5727 2015-07-16 Pierre Langlois <pierre.langlois@arm.com>
5728
5729 * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
5730 unavailable if invalid.
5731
5732 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5733
5734 Revert the previous 6 commits:
5735 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
5736 Move gdb_regex* to common/
5737 Prepare linux_find_memory_regions_full & co. for move
5738 Move linux_find_memory_regions_full & co.
5739 gdbserver build-id attribute generator
5740 Validate symbol file using build-id
5741
5742 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5743 Jan Kratochvil <jan.kratochvil@redhat.com>
5744
5745 Validate symbol file using build-id.
5746 * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
5747 and 'show validate-build-id'. Add build-id attribute.
5748 * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
5749 * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
5750 * solib-frv.c (_initialize_frv_solib): Ditto.
5751 * solib-spu.c (set_spu_solib_ops): Ditto.
5752 * solib-svr4.c: Include rsp-low.h.
5753 (NOTE_GNU_BUILD_ID_NAME): New define.
5754 (svr4_validate): New function.
5755 (svr4_copy_library_list): Duplicate field build_id.
5756 (library_list_start_library): Parse 'build-id' attribute.
5757 (svr4_library_attributes): Add 'build-id' attribute.
5758 (_initialize_svr4_solib): Assign validate value.
5759 * solib-target.c (solib.h): Include.
5760 (_initialize_solib_target): Assign validate value.
5761 * solib.c (validate_build_id, show_validate_build_id): New.
5762 (solib_map_sections): Use ops->validate.
5763 (clear_so): Free build_id.
5764 (default_solib_validate): New function.
5765 (_initialize_solib): Add "validate-build-id".
5766 * solib.h (default_solib_validate): New declaration.
5767 * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
5768 (target_so_ops): New field 'validate'.
5769
5770 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5771 Jan Kratochvil <jan.kratochvil@redhat.com>
5772
5773 gdbserver build-id attribute generator.
5774 * features/library-list-svr4.dtd (library-list-svr4): New
5775 'build-id' attribute.
5776
5777 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5778 Jan Kratochvil <jan.kratochvil@redhat.com>
5779
5780 Move linux_find_memory_regions_full & co.
5781 * linux-tdep.c (nat/linux-maps.h): Include.
5782 (gdb_regex.h): Remove the include.
5783 (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
5784 (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
5785 (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
5786 (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
5787 * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
5788 and target/target.h.
5789 (struct smaps_vmflags, read_mapping, decode_vmflags)
5790 (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
5791 (linux_find_memory_regions_full): Move from linux-tdep.c.
5792 * nat/linux-maps.h (read_mapping): New declaration.
5793 (linux_find_memory_region_ftype, enum filterflags): Moved from
5794 linux-tdep.c.
5795 (linux_find_memory_regions_full): New declaration.
5796 * target.c (target/target-utils.h): Include.
5797 (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
5798 (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
5799 definitions to target/target-utils.c.
5800 * target.h (target_fileio_read_stralloc): Move it to target/target.h.
5801 * target/target-utils.c (read_alloc, read_stralloc): Move definitions
5802 from target.c.
5803 * target/target-utils.h (read_alloc_pread_ftype): New typedef.
5804 (read_alloc): New declaration.
5805 (read_stralloc_func_ftype): New typedef.
5806 (read_stralloc): New declaration.
5807 * target/target.h (target_fileio_read_stralloc): Move it from target.h.
5808
5809 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5810 Jan Kratochvil <jan.kratochvil@redhat.com>
5811
5812 Prepare linux_find_memory_regions_full & co. for move.
5813 * linux-tdep.c (linux_find_memory_region_ftype): Comment.
5814 (linux_find_memory_regions_full): Change signature and prepare
5815 for moving to linux-maps.
5816 (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
5817 (linux_find_memory_regions_thunk): New.
5818 (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
5819 (linux_find_memory_regions_gdb): New.
5820 (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
5821 (linux_make_mappings_corefile_notes): Use
5822 linux_find_memory_regions_gdb.
5823 * target.c (read_alloc_pread_ftype): New typedef.
5824 (target_fileio_read_alloc_1_pread): New function.
5825 (read_alloc): Refactor from target_fileio_read_alloc_1.
5826 (read_stralloc_func_ftype): New typedef.
5827 (target_fileio_read_alloc_1): New implementation. Use read_alloc.
5828 (read_stralloc): Refactored from target_fileio_read_stralloc.
5829 (target_fileio_read_stralloc): New implementation, use read_stralloc.
5830
5831 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5832
5833 * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
5834 common/gdb_regex.h.
5835 (COMMON_OBS): Add gdb_regex.o.
5836 (gdb_regex.o): New.
5837 * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
5838 --without-included-regex and USE_INCLUDED_REGEX.
5839 * common/gdb_regex.c: New file from utils.c functions.
5840 * common/gdb_regex.h: Move it here from gdb_regex.h, update include
5841 file wrapping define name.
5842 * configure: Rebuilt.
5843 * configure.ac (gdb_use_included_regex, --without-included-regex)
5844 (USE_INCLUDED_REGEX): Move them to common/common.m4.
5845 * gdb_regex.h: Move it to common/gdb_regex.h.
5846 * utils.c: Remove include gdb_regex.h.
5847 (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
5848 (compile_rx_or_error): Move them to common/gdb_regex.c.
5849
5850 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5851 Jan Kratochvil <jan.kratochvil@redhat.com>
5852
5853 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
5854 * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
5855 common/target-utils.h.
5856 (COMMON_OBS): Add target-utils.o.
5857 (linux-maps.o, target-utils.o): New.
5858 * target/target-utils.c: New file.
5859 * target/target-utils.h: New file.
5860 * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
5861 * config/i386/linux64.mh (NATDEPFILES): Ditto.
5862 * nat/linux-maps.c: New file.
5863 * nat/linux-maps.h: New file.
5864
5865 2015-07-15 Markus Metzger <markus.t.metzger@intel.com>
5866 Pedro Alves <palves@redhat.com>
5867
5868 * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
5869 (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
5870 (perf_event_read_bts): Change the type of SIZE and READ.
5871 (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
5872 and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size
5873 to UINT_MAX. Check for overflows when using DATA_HEAD from the perf
5874 mmap page.
5875 (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the
5876 buffer size to UINT_MAX.
5877 (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
5878 DATA_TAIL.
5879 * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
5880 <last_head>: Change type.
5881 * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
5882 * common/btrace-common.c (btrace_data_append): Change the type of
5883 SIZE.
5884 * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness
5885 check.
5886
5887 2015-07-14 Simon Marchi <simon.marchi@ericsson.com>
5888
5889 * gdbtypes.h (CHECK_TYPEDEF): Remove.
5890 * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
5891 with check_typedef.
5892 * ada-lang.c (decode_constrained_packed_array_type): Likewise.
5893 (ada_array_length): Likewise.
5894 (find_parallel_type_by_descriptive_type): Likewise.
5895 (ada_check_typedef): Likewise.
5896 * arm-tdep.c (arm_return_in_memory): Likewise.
5897 * ax-gdb.c (gen_trace_static_fields): Likewise.
5898 (gen_struct_ref_recursive): Likewise.
5899 * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
5900 (variable: block COLONCOLON name): Likewise.
5901 (qualified_name: TYPENAME COLONCOLON name): Likewise.
5902 * c-lang.c (classify_type): Likewise.
5903 * c-typeprint.c (c_print_type): Likewise.
5904 (c_print_typedef): Likewise.
5905 (c_type_print_base): Likewise.
5906 * c-valprint.c (c_val_print): Likewise.
5907 * compile/compile-c-types.c (convert_type): Likewise.
5908 * compile/compile-object-load.c (get_out_value_type): Likewise.
5909 * completer.c (add_struct_fields): Likewise.
5910 (expression_completer): Likewise.
5911 * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
5912 (cp_lookup_nested_symbol_1): Likewise.
5913 (cp_lookup_nested_symbol): Likewise.
5914 * cp-valprint.c (cp_print_value_fields): Likewise.
5915 (cp_print_static_field): Likewise.
5916 * d-valprint.c (d_val_print): Likewise.
5917 * eval.c (evaluate_subexp_standard): Likewise.
5918 (evaluate_subexp_for_sizeof): Likewise.
5919 * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
5920 * f-typeprint.c (f_type_print_base): Likewise.
5921 * f-valprint.c (f_val_print): Likewise.
5922 * gdbtypes.c (get_discrete_bounds): Likewise.
5923 (create_array_type_with_stride): Likewise.
5924 (type_name_no_tag_or_error): Likewise.
5925 (lookup_struct_elt_type): Likewise.
5926 (get_unsigned_type_max): Likewise.
5927 (internal_type_vptr_fieldno): Likewise.
5928 (set_type_vptr_fieldno): Likewise.
5929 (internal_type_vptr_basetype): Likewise.
5930 (set_type_vptr_basetype): Likewise.
5931 (get_vptr_fieldno): Likewise.
5932 (is_integral_type): Likewise.
5933 (is_scalar_type): Likewise.
5934 (is_scalar_type_recursive): Likewise.
5935 (distance_to_ancestor): Likewise.
5936 (is_unique_ancestor_worker): Likewise.
5937 (check_types_equal): Likewise.
5938 * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
5939
5940 2015-07-14 Iain Buclaw <ibuclaw@gdcproject.org>
5941
5942 * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
5943 also test for language_d.
5944 (dwarf2_compute_name): Likewise.
5945 (read_func_scope): Likewise.
5946 (read_structure_type): Likewise.
5947 (new_symbol_full): Likewise.
5948 (determine_prefix): Likewise.
5949 (read_import_statement): Use dot as the separator for language_d.
5950 (typename_concat): Likewise, but don't prefix the D main function.
5951
5952 2015-07-14 Peter Bergner <bergner@vnet.ibm.com>
5953
5954 * nat/linux-namespaces.c (setns): Rename from this ...
5955 (do_setns): ... to this. Support calling setns if it exists.
5956 (mnsh_handle_setns): Call do_setns.
5957
5958 2015-07-13 Yao Qi <yao.qi@linaro.org>
5959
5960 * exec.c (exec_file_attach): Add period at the end of error
5961 message.
5962
5963 2015-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
5964
5965 * tui/tui-win.c (window_name_completer): New function.
5966 (focus_completer): Call window_name_completer. All old content
5967 moved into window_name_completer.
5968 (winheight_completer): New function.
5969 (_initialize_tui_win): Rename variable. Add completer to
5970 winheight command. Update doc string on winheight.
5971
5972 2015-07-12 Sandra Loosemore <sandra@codesourcery.com>
5973
5974 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
5975 all nios2 mach variants.
5976
5977 2015-07-10 Kevin Buettner <kevinb@redhat.com>
5978
5979 * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
5980 of target_read_memory.
5981
5982 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
5983
5984 * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
5985 string copy.
5986 (parse_scrolling_args): Likewise.
5987
5988 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
5989
5990 * tui/tui-win.c (focus_completer): Don't duplicate the tui window
5991 names in this function.
5992
5993 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
5994
5995 * tui/tui-data.h (SRC_NAME): Convert to lower case.
5996 (CMD_NAME): Likewise.
5997 (DATA_NAME): Likewise.
5998 (DISASSEM_NAME): Likewise.
5999 * tui/tui-win.c (tui_set_focus): Window names are now lower case.
6000 (tui_set_win_height): Likewise.
6001 (parse_scrolling_args): Likewise.
6002
6003 2015-07-10 Markus Metzger <markus.t.metzger@intel.com>
6004
6005 * record-btrace.c (record_btrace_goto_begin)
6006 (record_btrace_goto_end, record_btrace_goto): Move call to
6007 print_stack_frame ...
6008 (record_btrace_set_replay): ... here. Set stop_pc.
6009 * record-full.c (record_full_goto_entry): Set stop_pc.
6010
6011 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6012
6013 * NEWS: Mention support for tracepoints on aarch64-linux.
6014
6015 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6016
6017 * linux-aarch64-low.c (aarch64_supports_tracepoints): New
6018 function. Return 1.
6019 (the_low_target): Install it.
6020
6021 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6022
6023 * gdb.trace/backtrace.exp: Set registers for aarch64 target.
6024 * gdb.trace/collection.exp: Likewise.
6025 * gdb.trace/mi-trace-frame-collected.exp: Likewise.
6026 * gdb.trace/mi-trace-unavailable.exp: Likewise.
6027 * gdb.trace/report.exp: Likewise.
6028 * gdb.trace/trace-break.exp: Likewise.
6029 * gdb.trace/unavailable.exp: Likewise.
6030 * gdb.trace/while-dyn.exp: Likewise.
6031
6032 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6033
6034 * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
6035 (aarch64_gen_return_address): New function.
6036 (aarch64_gdbarch_init): Hook it.
6037
6038 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6039
6040 * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
6041 swallow NOT_AVAILABLE_ERROR.
6042 (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
6043 available_p is not set.
6044 (aarch64_stub_frame_unwind_stop_reason): New function.
6045 (aarch64_stub_unwind): Install it.
6046
6047 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6048
6049 * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
6050 field.
6051 (aarch64_make_prologue_cache_1): New function, factored out from
6052 aarch64_make_prologue_cache. Do not allocate cache. Set
6053 available_p.
6054 (aarch64_make_prologue_cache): Reimplement wrapping
6055 aarch64_make_prologue_cache_1, and swallowing
6056 NOT_AVAILABLE_ERROR.
6057 (aarch64_prologue_frame_unwind_stop_reason): New function.
6058 Return UNWIND_UNAVAILABLE if available_p is not set.
6059 (aarch64_prologue_unwind): Install it.
6060 (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
6061 checks into aarch64_prologue_frame_unwind_stop_reason. Call
6062 frame_id_build_unavailable_stack if available_p is not set.
6063
6064 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6065
6066 * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
6067 fields.
6068 (aarch64_scan_prologue): Set prev_pc.
6069 (aarch64_make_prologue_cache): Set func.
6070 (aarch64_make_stub_cache): Set prev_pc.
6071 (aarch64_prologue_this_id): Remove local variables id, pc and
6072 func. Read prev_pc and func from cache.
6073 (aarch64_stub_this_id): Read prev_pc from cache.
6074
6075 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6076
6077 * aarch64-tdep.c (aarch64_make_stub_cache): Update comment. New
6078 argument this_cache. Remove unused local variables reg and
6079 unwound_fp. Return early if this_cache is already set. Set
6080 this_cache.
6081 (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
6082
6083 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6084
6085 * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
6086 New argument this_cache. Return early if this_cache is already
6087 set. Set this_cache.
6088 (aarch64_prologue_this_id): Update call to
6089 aarch64_make_prologue_cache.
6090 (aarch64_prologue_prev_register): Likewise.
6091 (aarch64_normal_frame_base): Likewise.
6092
6093 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6094
6095 * c-valprint.c (c_val_print): Factor out memberptr printing code
6096 from c_val_print to ...
6097 (c_val_print_memberptr): ... this new function.
6098
6099 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6100
6101 * c-valprint.c (c_val_print): Factor out int printing code to ...
6102 (c_val_print_int): ... this new function.
6103
6104 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6105
6106 * c-valprint.c (c_val_print): Factor out struct and union
6107 printing code to ...
6108 (c_val_print_struct): ... this new function ...
6109 (c_val_print_union): ... and this new function.
6110
6111 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6112
6113 * c-valprint.c (c_val_print): Factor out pointer printing code
6114 to ...
6115 (c_val_print_ptr): ... this new function.
6116
6117 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6118
6119 * c-valprint.c (c_valprint): Factor our array printing code from
6120 c_val_print to ...
6121 (c_val_print_array): ... this new function.
6122
6123 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6124
6125 * c-valprint.c (c_val_print): Factor out pointer printing code
6126 to ...
6127 (print_unpacked_pointer): ... this new function.
6128
6129 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6130
6131 * c-valprint.c (c_val_print): Remove an assignment to i and move
6132 its declaration.
6133
6134 2015-07-09 Yao Qi <yao.qi@linaro.org>
6135
6136 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
6137 argument ptid. Update comments. Caller update.
6138
6139 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6140
6141 * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
6142 mnt packets.
6143
6144 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6145
6146 * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
6147
6148 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6149
6150 * progspace.c (delete_program_space): Add missing spaces.
6151
6152 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6153
6154 * inferior.c (delete_inferior_1): Rename to ...
6155 (delete_inferior): ..., remove 'silent' parameter, delete
6156 program space when unused and remove call to prune_program_spaces.
6157 Remove the old, unused, delete_inferior.
6158 (delete_inferior_silent): Remove.
6159 (prune_inferiors): Change call from delete_inferior_1 to
6160 delete_inferior and remove 'silent' parameter. Remove call to
6161 prune_program_spaces.
6162 (remove_inferior_command): Idem.
6163 * inferior.h (delete_inferior_1): Rename to...
6164 (delete_inferior): ..., remove 'silent' parameter and remove the
6165 original delete_inferior.
6166 (delete_inferior_silent): Remove.
6167 * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
6168 delete_inferior_1 to delete_inferior and remove 'silent'
6169 parameter.
6170 * progspace.c (prune_program_spaces): Remove.
6171 (pspace_empty_p): Rename to...
6172 (program_space_empty_p): ... and make non-static.
6173 (delete_program_space): New.
6174 * progspace.h (prune_program_spaces): Remove declaration.
6175 (program_space_empty_p): New declaration.
6176 (delete_program_space): New declaration.
6177 * monitor.c (monitor_close): Replace call to
6178 delete_thread_silent and delete_inferior_silent with
6179 discard_all_inferiors.
6180
6181 2015-07-08 Patrick Palka <patrick@parcs.ath.cx>
6182
6183 * defs.h (deprecated_register_changed_hook): Remove prototype.
6184 * interps.c (clear_iterpreter_hooks): Remove reference to
6185 deprecated_register_changed_hook.
6186 * top.c (deprecated_register_changed_hook): Remove prototype.
6187 * valops.c (value_assign): Remove reference to
6188 deprecated_register_changed_hook.
6189 * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
6190 Add comment documenting the function.
6191 (tui_register_changed_observer): Define.
6192 (tui_install_hooks): Remove reference to
6193 deprecated_register_changed_hook. Set
6194 tui_register_changed_observer.
6195 (tui_remove_hooks): Remove reference to
6196 deprecated_register_changed_hook. Unset
6197 tui_register_changed_observer.
6198
6199 2015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6200
6201 PR compile/18484
6202 * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
6203
6204 2015-07-08 Robert O'Callahan <robert@ocallahan.org>
6205
6206 PR exp/18617
6207 * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
6208
6209 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6210
6211 * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
6212
6213 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6214
6215 * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
6216 Use safe_strerror() instead of strerror().
6217
6218 2015-07-07 Yao Qi <yao.qi@linaro.org>
6219
6220 * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
6221 * features/arm-with-m-fpa-layout.c: Regenerated.
6222 * features/arm-with-m-vfp-d16.xml: Likewise.
6223 * features/arm-with-m-vfp-d16.c: Regenerated.
6224 * features/arm-with-m.xml: Likewise.
6225 * features/arm-with-m.c: Regenerated.
6226 * features/arm-with-neon.xml: Likewise.
6227 * features/arm-with-neon.c: Regenerated.
6228 * features/arm-with-vfpv2.xml: Likewise.
6229 * features/arm-with-vfpv2.c: Regenerated.
6230 * features/arm-with-vfpv3.xml: Likewise.
6231 * features/arm-with-vfpv3.c: Regenerated.
6232
6233 2015-07-07 Yao Qi <yao.qi@linaro.org>
6234
6235 * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
6236 arm-linux-nat.c.
6237 * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
6238 elf/external.h.
6239 (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
6240 if target is 32-bit.
6241 (store_gregs_to_thread): Call aarch32_gp_regcache_collect
6242 if target is 32-bit.
6243 (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
6244 if target is 32-bit.
6245 (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
6246 if target is 32-bit.
6247 (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
6248 (aarch64_linux_read_description): Return the right target
6249 description.
6250 * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
6251 * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6252 * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
6253 arm-linux-tdep.o.
6254
6255 2015-07-07 Yao Qi <yao.qi@linaro.org>
6256
6257 * aarch32-linux-nat.c: New file.
6258 * aarch32-linux-nat.h: New file.
6259 * arm-linux-nat.c: Include aarch32-linux-nat.h.
6260 (fetch_regs): Move code to aarch32-linux-nat.c. Call
6261 aarch32_gp_regcache_supply.
6262 (store_regs): Move code to aarch32-linux-nat.c. Call
6263 aarch32_gp_regcache_collect.
6264 (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call
6265 aarch32_vfp_regcache_supply.
6266 (store_vfp_regs): Move code to aarch32-linux-nat.c. Call
6267 aarch32_vfp_regcache_collect.
6268 * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6269
6270 2015-07-07 Yao Qi <yao.qi@linaro.org>
6271
6272 * arm-linux-nat.c (store_fpregister): Remove.
6273 (store_register): Likewise.
6274 (fetch_fpregister): Likewise.
6275 (fetch_register): Likewise.
6276 (arm_linux_store_inferior_registers): Call store_regs and
6277 store_fpregs instead.
6278 (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
6279 fetch_regs instead.
6280
6281 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6282
6283 * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
6284 and focus commands.
6285
6286 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6287
6288 * NEWS: Create a new section for the next release branch.
6289 Rename the section of the current branch, now that it has
6290 been cut.
6291
6292 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6293
6294 GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
6295 * version.in: Bump version to 7.10.50.DATE-cvs.
6296
6297 2015-07-06 Luis Machado <lgustavo@codesourcery.com>
6298
6299 * breakpoint.c (remove_breakpoint_1): Don't handle permanent
6300 breakpoints in a special way.
6301 (remove_breakpoint): Likewise.
6302 (mark_breakpoints_out): Likewise.
6303
6304 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6305
6306 * doc/gdb.texinfo (TUI): Add comma after @xref.
6307
6308 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6309
6310 * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
6311 instead of casting the structure type.
6312
6313 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6314
6315 * valops.c (search_struct_field): Remove OFFSET parameter.
6316 (value_cast_structs): Adjust calls to search_struct_field.
6317 (value_struct_elt): Same.
6318 (find_overload_match): Same.
6319
6320 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6321
6322 * value.c (value_fetch_lazy): Update comment, change return
6323 value to void.
6324 * value.h (value_fetch_lazy): Change return value to void.
6325
6326 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6327
6328 * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
6329 (tui_win_name): Make parameter and result const.
6330 * tui/tui-data.h (tui_win_name): Make parameter and result const.
6331
6332 2015-07-06 Patrick Palka <patrick@parcs.ath.cx>
6333
6334 * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
6335 use printf_unfiltered.
6336 (set_mpx_cmd): Add missing trailing space to command string
6337 literal.
6338 (_initialize_i386_tdep): Give the "mpx" prefix command its
6339 correct name.
6340
6341 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6342
6343 * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
6344 (enum rx_frame_type): New.
6345 (struct rx_prologue): Add new field `frame_type'.
6346 (rx_analyze_prologue): Add `frame_type' parameter. Cache this
6347 parameter in the prologue struct. Add code for recording
6348 locations of PC and PSW for fast interrupt and exception frames.
6349 (rx_skip_prologue): Adjust call to rx_analyze_prologue.
6350 (rx_analyze_frame_prologue): Add `frame_type' parameter.
6351 (rx_frame_type): New function.
6352 (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
6353 (rx_frame_this_id): Rename parameter `this_prologue_cache' to
6354 `this_cache'.
6355 (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
6356 `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and
6357 RX_FRAME_TYPE_FAST_INTERRUPT.
6358 (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
6359 (rx_frame_sniffer, rx_exception_sniffer): New functions.
6360 (rx_frame_unwind): Use rx_frame_sniffer instead of
6361 default_frame_sniffer.
6362 (rx_frame_unwind): New unwinder.
6363 (rx_gdbarch_init): Register new unwinder.
6364
6365 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6366
6367 * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
6368 (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
6369 (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
6370 and RX_FPSW_REGNUM.
6371 (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
6372
6373 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6374
6375 Fix GCC false warning.
6376 * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
6377
6378 2015-07-02 Yao Qi <yao.qi@linaro.org>
6379
6380 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
6381 typo in the debugging message.
6382
6383 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6384
6385 * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
6386 (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
6387 (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
6388 (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
6389 (btrace_maint_clear): New.
6390 (btrace_fetch, btrace_clear): Call btrace_maint_clear.
6391 (pt_print_packet, btrace_maint_decode_pt)
6392 (btrace_maint_update_pt_packets, btrace_maint_update_packets)
6393 (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
6394 (maint_btrace_packet_history_cmd)
6395 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
6396 (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
6397 (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
6398 (maint_info_btrace_cmd, _initialize_btrace): New.
6399 * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
6400 (btrace_maint_packet_history, btrace_maint_info): New.
6401 (btrace_thread_info) <maint>: New.
6402 * NEWS: Announce it.
6403
6404 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6405
6406 * btrace.c (btrace_fetch): Append the new trace data.
6407 (btrace_clear): Clear the stored trace data.
6408 * btrace.h (btrace_thread_info) <data>: New.
6409 * common/btrace-common.h (btrace_data_clear)
6410 (btrace_data_append): New.
6411 * common/btrace-common.c (btrace_data_clear)
6412 (btrace_data_append): New.
6413
6414 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6415
6416 * nat/linux-btrace.c (linux_enable_bts): Check for
6417 PERF_ATTR_SIZE_VER5.
6418 Check for data_offset and data_size fields. Use them.
6419
6420 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6421
6422 * NEWS: Announce new commands "record btrace pt" and "record pt".
6423 Announce new options "set|show record btrace pt buffer-size".
6424 * btrace.c: Include "rsp-low.h".
6425 Include "inttypes.h".
6426 (btrace_add_pc): Add forward declaration.
6427 (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
6428 (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
6429 (btrace_compute_ftrace_pt): New.
6430 (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
6431 (check_xml_btrace_version): Update version check.
6432 (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
6433 (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
6434 (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
6435 (btrace_pt_children): New.
6436 (btrace_children): Add support for "pt".
6437 (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
6438 (btrace_conf_children): Add support for "pt".
6439 * btrace.h: Include "intel-pt.h".
6440 (btrace_pt_error): New.
6441 * common/btrace-common.c (btrace_format_string, btrace_data_fini)
6442 (btrace_data_empty): Support BTRACE_FORMAT_PT.
6443 * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
6444 (struct btrace_config_pt): New.
6445 (struct btrace_config)<pt>: New.
6446 (struct btrace_data_pt_config, struct btrace_data_pt): New.
6447 (struct btrace_data)<pt>: New.
6448 * features/btrace-conf.dtd (btrace-conf)<pt>: New.
6449 (pt): New.
6450 * features/btrace.dtd (btrace)<pt>: New.
6451 (pt, pt-config, cpu): New.
6452 * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
6453 (perf_event_pt_event_type, kernel_supports_pt)
6454 (linux_supports_pt): New.
6455 (linux_supports_btrace): Support BTRACE_FORMAT_PT.
6456 (linux_enable_bts): Free tinfo on error.
6457 (linux_enable_pt): New.
6458 (linux_enable_btrace): Support BTRACE_FORMAT_PT.
6459 (linux_disable_pt): New.
6460 (linux_disable_btrace): Support BTRACE_FORMAT_PT.
6461 (linux_fill_btrace_pt_config, linux_read_pt): New.
6462 (linux_read_btrace): Support BTRACE_FORMAT_PT.
6463 * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
6464 (struct btrace_target_info)<pt>: New.
6465 * record-btrace.c (set_record_btrace_pt_cmdlist)
6466 (show_record_btrace_pt_cmdlist): New.
6467 (record_btrace_print_pt_conf): New.
6468 (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
6469 (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
6470 (cmd_record_btrace_pt_start): New.
6471 (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
6472 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
6473 (_initialize_record_btrace): Add new commands.
6474 * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
6475 (remote_protocol_features): Add "Qbtrace:pt".
6476 Add "Qbtrace-conf:pt:size".
6477 (remote_supports_btrace): Support BTRACE_FORMAT_PT.
6478 (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
6479 (remote_enable_btrace): Support BTRACE_FORMAT_PT.
6480 (_initialize_remote): Add new commands.
6481
6482 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6483
6484 * configure.ac: check for libipt
6485 * configure: Regenerate.
6486 * config.in: Regenerate.
6487 * Makefile.in (LIBIPT): New.
6488 (CLIBS): Add $LIBIPT.
6489 * NEWS: document new configure options
6490
6491 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6492
6493 * compile/compile-object-load.c (compile_object_load): Replace debug
6494 message "lookup undefined ELF symbol" by 3 more specific messages.
6495
6496 2015-07-01 Kevin Buettner <kevinb@redhat.com>
6497
6498 * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
6499 (rl78_register_type): Add case for RL78_PSW_REGNUM.
6500 (rl78_gdbarch_init): Initialize rl78_psw_type.
6501
6502 2015-07-01 Patrick Palka <patrick@parcs.ath.cx>
6503
6504 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
6505 Update commentary. Always refresh the registers when frame
6506 information has changed.
6507 * tui/tui-stack.c (tui_show_frame_info): Update commentary.
6508 Change return type to int. Return 1 if frame information has
6509 changed, 0 otherwise.
6510 (tui_before_prompt): Update commentary.
6511 * tui/tui-stack.h (tui_show_frame_info): Change return type to
6512 int.
6513
6514 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6515
6516 PR tui/13378
6517 * frame.c (select_frame): Remove reference to
6518 deprecated_selected_frame_level_changed_hook.
6519 * frame.h (deprecated_selected_frame_level_changed_hook): Remove
6520 declaration.
6521 * stack.c (deprecated_selected_frame_level_changed_hook):
6522 Likewise.
6523 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
6524 Rename to ...
6525 (tui_refresh_frame_and_register_information): ... this. Bail
6526 out if there is no stack. Don't update register information
6527 unless registers_too_p is true.
6528 (tui_print_frame_info_listing_hook): Rename to ...
6529 (tui_dummy_print_frame_info_listing_hook): ... this.
6530 (tui_before_prompt): New function.
6531 (tui_normal_stop): New function.
6532 (tui_before_prompt_observer): New observer.
6533 (tui_normal_stop_observer): New observer.
6534 (tui_install_hooks): Set
6535 deprecated_print_frame_info_listing_hook to
6536 tui_dummy_print_frame_info_listing_hook. Register
6537 tui_before_prompt_observer to call tui_before_prompt and
6538 tui_normal_stop_observer to call tui_normal_stop. Remove
6539 reference to deprecated_selected_frame_level_changed_hook.
6540 (tui_remove_hooks): Detach and unset tui_before_prompt_observer
6541 and tui_normal_stop_observer. Remove reference to
6542 deprecated_selected_frame_level_changed_hook.
6543
6544 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6545
6546 PR tui/13378
6547 * tui/tui-stack.c (tui_set_locator_info): Change prototype to
6548 return an int instead of void. Return whether the locator
6549 window has changed.
6550 (tui_show_frame_info): If the locator info has not changed, then
6551 bail out early to avoid refreshing the windows.
6552
6553 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6554
6555 * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
6556 LOCATOR_WIN to tui_alloc_content.
6557
6558 2015-06-30 Yao Qi <yao.qi@linaro.org>
6559
6560 PR tdep/18605
6561 * arm-tdep.c (arm_get_next_pc_raw): Break for media
6562 instructions.
6563
6564 2015-06-29 Kevin Buettner <kevinb@redhat.com>
6565
6566 * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
6567 (rx_dwarf_reg_to_regnum): New function.
6568 (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2
6569 unwinding.
6570
6571 2015-06-29 Pedro Alves <palves@redhat.com>
6572
6573 PR threads/18127
6574 * infcall.c (run_inferior_call): On infcall success, if the thread
6575 was marked stopped before, reset it back to stopped.
6576 * infrun.c (resume): Don't suppress the set_running calls when
6577 doing an infcall.
6578 (normal_stop): Only discard the finish_thread_state cleanup if the
6579 infcall succeeded.
6580
6581 2015-06-29 Pierre Langlois <pierre.langlois@arm.com>
6582
6583 * MAINTAINERS (Write After Approval): Update my email address.
6584
6585 2015-06-26 Keith Seitz <keiths@redhat.com>
6586 Doug Evans <dje@google.com>
6587
6588 PR 16253
6589 * block.c (block_lookup_symbol): For non-function blocks,
6590 continue to search for a symbol with an exact domain match
6591 Otherwise, return any previously found "best domain" symbol.
6592 (block_lookup_symbol_primary): Likewise.
6593
6594 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
6595
6596 * NEWS: Mention the new option "history remove-duplicates".
6597 * top.c (history_remove_duplicates): New static variable.
6598 (show_history_remove_duplicates): New static function.
6599 (gdb_add_history): Conditionally remove duplicate history
6600 entries.
6601 (init_main): Add "history remove-duplicates" option.
6602
6603 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
6604
6605 * tui/tui-win.c (focus_completer): New static function.
6606 (_initialize_tui_win): Set the completion function of the
6607 "focus" command to focus_completer.
6608
6609 2015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6610
6611 * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
6612 and language_asm..
6613 * symtab.c (find_function_start_sal): Likewise.
6614
6615 2015-06-25 Gary Benson <gbenson@redhat.com>
6616
6617 * solib.c (solib_find_1): Set local variable sysroot to NULL if
6618 it is the empty string after trailing slashes have been stripped.
6619
6620 2015-06-25 Gary Benson <gbenson@redhat.com>
6621
6622 * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
6623 * infrun.c (follow_exec): Likewise.
6624 * remote.c (remote_filesystem_is_local): Likewise.
6625 * solib.c (solib_find_1): Likewise.
6626
6627 2015-06-24 Keith Seitz <keiths@redhat.com>
6628
6629 * build-id.c (build_id_to_debug_bfd): Add cleanup to free
6630 return value from lrealpath.
6631
6632 2015-06-24 Mike Frysinger <vapier@gentoo.org>
6633
6634 * remote-sim.c (gdbsim_open): Move sysroot update to the top.
6635
6636 2015-06-24 Mike Frysinger <vapier@gentoo.org>
6637
6638 * remote-sim.c: Include gdb_bfd.h.
6639 (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
6640 Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
6641
6642 2015-06-24 Yao Qi <yao.qi@linaro.org>
6643
6644 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
6645 set_gdbarch_get_siginfo_type.
6646 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
6647 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
6648 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
6649 * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
6650 * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
6651 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
6652 * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
6653 * linux-tdep.c (linux_get_siginfo_type): Change it to static.
6654 (linux_init_abi): Call set_gdbarch_get_siginfo_type.
6655 * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
6656
6657 2015-06-24 Gary Benson <gbenson@redhat.com>
6658
6659 * common/buffer.c (stdint.h): Do not include.
6660 * common/print-utils.c (stdint.h): Likewise.
6661 * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
6662 * compile/compile-c-types.c (gdb_assert.h): Likewise.
6663 * ft32-tdep.c (gdb_assert.h): Likewise.
6664 * guile/scm-utils.c (stdint.h): Likewise.
6665 * i386-linux-tdep.c (stdint.h): Likewise.
6666 * i386-tdep.c (stdint.h): Likewise.
6667 * nat/linux-btrace.c (stdint.h): Likewise.
6668 * nat/linux-btrace.h (stdint.h): Likewise.
6669 * nat/linux-ptrace.c (stdint.h): Likewise.
6670 * nat/mips-linux-watch.h (stdint.h): Likewise.
6671 * ppc-linux-nat.c (stdint.h): Likewise.
6672 * python/python-internal.h (stdint.h): Likewise.
6673 * stub-termcap.c (stdlib.h): Likewise.
6674 * target/target.h (stdint.h): Likewise.
6675 * xtensa-linux-nat.c (stdint.h): Likewise.
6676
6677 2015-06-23 Patrick Palka <patrick@parcs.ath.cx>
6678
6679 * top.c (init_history): Look at errno after calling strtol to
6680 properly map large GDBHISTSIZE values to infinity.
6681
6682 2015-06-23 Doug Evans <dje@google.com>
6683
6684 * inferior.h (struct inferior_suspend_state): Delete, unused.
6685 All references deleted.
6686
6687 2015-06-23 Mike Frysinger <vapier@gentoo.org>
6688
6689 * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
6690 (microblaze_push_dummy_call): Likewise.
6691 (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
6692 and set_gdbarch_push_dummy_call.
6693
6694 2015-06-23 Yao Qi <yao.qi@linaro.org>
6695
6696 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
6697 Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
6698 (amd64_linux_store_inferior_registers): Likewise.
6699 * arm-linux-nat.c (fetch_fpregister): Likewise.
6700 (fetch_fpregs, store_fpregister): Likewise.
6701 (store_fpregister, store_fpregs): Likewise.
6702 (fetch_register, fetch_regs): Likewise.
6703 (store_register, store_regs): Likewise.
6704 (fetch_vfp_regs, store_vfp_regs): Likewise.
6705 (arm_linux_read_description): Check have_ptrace_getregset is
6706 TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE
6707 or TRIBOOL_FALSE.
6708 * i386-linux-nat.c (fetch_xstateregs): Check
6709 have_ptrace_getregset is not TRIBOOL_TRUE.
6710 (store_xstateregs): Likewise.
6711 * linux-nat.c (have_ptrace_getregset): Change its type to
6712 enum tribool.
6713 * linux-nat.h (tribool): New enum.
6714 * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
6715 Check whether have_ptrace_getregset is TRIBOOL_TRUE.
6716
6717 2015-06-19 Doug Evans <dje@google.com>
6718
6719 * NEWS: Mention Sun's version of stabs is no longer supported.
6720 * elfread.c (free_elfinfo): Delete. All uses updated.
6721 (elfstab_offset_sections): Delete. All uses updated.
6722 * gdb-stabs.h (stab_section_info): Delete. All uses updated.
6723 * psympriv.h (partial_symtab) <section_offsets>: Delete.
6724 All uses updated.
6725 * psymtab.c (start_psymtab_common): Delete arg section_offsets.
6726 All callers updated.
6727
6728 2015-06-18 Simon Marchi <simon.marchi@ericsson.com>
6729
6730 * common/rsp-low.c (needs_escaping): New.
6731 (remote_escape_output): Add unit_size parameter. Refactor to
6732 support multi-byte addressable units. Rename parameters.
6733 * common/rsp-low.h (remote_escape_output): Add unit_size
6734 parameter and rename others. Update doc.
6735 * remote.c (align_for_efficient_write): New.
6736 (remote_write_bytes_aux): Add unit_size parameter and use it.
6737 Rename some variables. Update doc.
6738 (remote_xfer_partial): Get unit size and use it.
6739 (remote_read_bytes_1): Add unit_size parameter and use it.
6740 Rename some variables. Update doc.
6741 (remote_write_bytes): Same.
6742 (remote_xfer_live_readonly_partial): Same.
6743 (remote_read_bytes): Same.
6744 (remote_flash_write): Update call to remote_write_bytes_aux.
6745 (remote_write_qxfer): Update call to remote_escape_output.
6746 (remote_search_memory): Same.
6747 (remote_hostio_pwrite): Same.
6748
6749 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
6750
6751 * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
6752 locations as inserted.
6753 Update and expand comment about permanent locations.
6754 (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
6755 Move comment to add_location_to_breakpoint.
6756 (update_global_location_list): Don't error out if a permanent
6757 breakpoint is not marked inserted.
6758 Don't error out if a non-permanent breakpoint location is inserted on
6759 top of a permanent breakpoint.
6760
6761 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
6762
6763 * breakpoint.c (make_breakpoint_permanent): Remove unused
6764 function.
6765 * breakpoint.h (make_breakpoint_permanent): Remove declaration.
6766
6767 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
6768
6769 PR gdb/16999
6770 * NEWS: Mention new GDBHISTSIZE behavior.
6771 * top.c (init_history): For null or out-of-range GDBHISTSIZE,
6772 set history size to unlimited. Ignore non-numeric GDBHISTSIZE.
6773
6774 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
6775
6776 * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
6777 * top.c (init_history): Read from GDBHISTSIZE instead of
6778 HISTSIZE.
6779 (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
6780
6781 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
6782
6783 * top.c (gdb_safe_append_history): Do not call
6784 history_truncate_file if the history is not stifled.
6785
6786 2015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
6787
6788 * syscalls/s390-linux.xml: Add syscalls 344 through 354.
6789 * syscalls/s390x-linux.xml: Likewise.
6790
6791 2015-06-16 Michael Eager <eager@eagercon.com>
6792
6793 * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
6794
6795 2015-06-16 Patrick Palka <patrick@parcs.ath.cx>
6796
6797 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
6798 target_terminal_ours_for_output() before calling
6799 tui_show_frame_info(), and restore the original terminal
6800 settings afterwards.
6801
6802 2015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch)
6803
6804 * arm-linux-nat.c: Include nat/linux-ptrace.h.
6805
6806 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
6807
6808 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
6809 memory unit size.
6810 (mi_cmd_data_write_memory_bytes): Same.
6811
6812 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
6813
6814 * corefile.c (write_memory): Update doc.
6815 * gdbcore.h (write_memory): Same.
6816
6817 2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6818
6819 * linux-tdep.c (enum filterflags): Make it from anonymous enum.
6820 (dump_mapping_p): Use it for parameter filterflags.
6821 (linux_find_memory_regions_full): Use it for variable filterflags.
6822
6823 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
6824 Jan Kratochvil <jan.kratochvil@redhat.com>
6825
6826 Merge multiple hex conversions.
6827 * monitor.c: Include rsp-low.h.
6828 (fromhex): Remove definition.
6829
6830 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
6831 Jan Kratochvil <jan.kratochvil@redhat.com>
6832
6833 Move utility functions to common/.
6834 * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
6835 Move defs to common/common-utils.c.
6836 * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
6837 (skip_to_space_const): Move decls to common/common-utils.h.
6838 * common/common-defs.h: Move include of common-types.h before
6839 common-utils.h.
6840 * common/common-utils.c: Include host-defs.h and ctype.h.
6841 (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
6842 from utils.c.
6843 (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
6844 cli/cli-utils.c.
6845 * common/common-utils.h (strtoulst): Move decl from utils.h.
6846 (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
6847 Move from cli/cli-utils.h.
6848 * common/host-defs.h: Include limits.h.
6849 (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
6850 (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
6851 * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
6852 common/common-utils.h.
6853 * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
6854 (strtoulst): Move to common/common-utils.c.
6855 * utils.h (strtoulst): Moved decl to common/common-utils.h.
6856
6857 2015-06-15 Yao Qi <yao.qi@linaro.org>
6858
6859 * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
6860
6861 2015-06-10 Jon Turney <jon.turney@dronecode.org.uk>
6862
6863 * build-id.c: Don't include elf-bfd.h.
6864 (build_id_bfd_get): Use bfd_build_id.
6865 (build_id_verify): Ditto.
6866 * build-id.h: Ditto.
6867 (find_separate_debug_file_by_buildid): Ditto.
6868 * python/py-objfile.c: Don't include elf-bfd.h.
6869 (objfpy_get_build_id) Use bfd_build_id.
6870 (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
6871 * coffread.c: Include build-id.h.
6872 (coff_symfile_read): Try find_separate_debug_file_by_buildid.
6873
6874 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
6875
6876 * windows-nat.c (do_windows_fetch_inferior_registers)
6877 (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
6878 conditional with __CYGWIN__.
6879
6880 2015-06-13 Andrew Burgess <andrew.burgess@embecosm.com>
6881
6882 * completer.c: Add arch-utils.h include.
6883 (enum reg_completer_targets): New enum.
6884 (reg_or_group_completer_1): New function containing old
6885 reg_or_group_completer, add and use new parameter to control what
6886 is completed on. Use get_current_arch rather than architecture of
6887 currently selected frame.
6888 (reg_or_group_completer): Call new reg_or_group_completer_1.
6889 (reggroup_completer): Call new reg_or_group_completer_1.
6890 * completer.h (reggroup_completer): Add declaration.
6891 * tui/tui-regs.c: Add 'completer.h' include.
6892 (tui_reg_next_command): Renamed to...
6893 (tui_reg_next): ...this. Adjust parameters and return rather than
6894 display new group.
6895 (tui_reg_prev_command): Renamed to...
6896 (tui_reg_prev): ...this. Adjust parameters and return rather than
6897 display new group.
6898 (tui_reg_float_command): Delete.
6899 (tui_reg_general_command): Delete.
6900 (tui_reg_system_command): Delete.
6901 (tui_reg_command): Rewrite to perform switching of register group.
6902 Add header comment.
6903 (tuireglist): Remove.
6904 (tui_reggroup_completer): New function.
6905 (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
6906 creation of 'tui reg' command.
6907 * NEWS: Add comment about 'tui reg' changes.
6908
6909 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
6910
6911 * target.c (target_read): Consider addressable unit size when
6912 reading from a memory object.
6913 (read_memory_robust): Same.
6914 (read_whatever_is_readable): Same.
6915 (target_write_with_progress): Consider addressable unit size
6916 when writing to a memory object.
6917 * target.h (target_read): Update documentation.
6918 (target_write): Add documentation.
6919
6920 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
6921
6922 * arch-utils.h (default_addressable_memory_unit_size): New.
6923 * arch-utils.c (default_addressable_memory_unit_size): New.
6924 * gdbarch.sh (addressable_memory_unit_size): New.
6925 * gdbarch.h: Re-generate.
6926 * gdbarch.c: Re-generate.
6927
6928 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
6929
6930 * target.c (target_read): Rename variables and use
6931 TARGET_XFER_E_IO.
6932 (target_read_with_progress): Same.
6933 (read_memory_robust): Constify parameters and rename
6934 variables.
6935 (read_whatever_is_readable): Constify parameters,
6936 rename variables, adjust formatting.
6937 * target.h (read_memory_robust): Constify parameters.
6938
6939 2015-06-12 Ulrich Weigand <uweigand@de.ibm.com>
6940
6941 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
6942 synthetic (non-AltiVec) vector types.
6943 (ppc64_sysv_abi_return_value): Likewise.
6944
6945 2015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com>
6946
6947 PR breakpoints/16465
6948 * breakpoint.c (create_breakpoint): Save extra_string for
6949 pending breakpoints.
6950
6951 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
6952
6953 * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
6954 and bt_mask to CORE_ADDR.
6955
6956 2015-06-11 Gary Benson <gbenson@redhat.com>
6957
6958 * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
6959 (mnsh_recv_message): Likewise.
6960
6961 2015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com>
6962
6963 * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
6964 long long int and plongest instead of %ll.
6965
6966 2015-06-11 Gary Benson <gbenson@redhat.com>
6967
6968 * nat/linux-namespaces.c (gdb_wait.h): New include.
6969 (sys/wait.h): Do not include.
6970
6971 2015-06-10 Simon Marchi <simon.marchi@ericsson.com>
6972
6973 * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
6974 end_sequence is true.
6975
6976 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
6977
6978 Code cleanup.
6979 * solib-target.c (library_list_start_list): Use explicit NULL
6980 comparison.
6981
6982 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
6983
6984 * solib-target.c (library_list_start_list): Do not dereference
6985 variable version in its initialization. Make the VERSION check handle
6986 NULL.
6987 (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
6988
6989 2015-06-10 Gary Benson <gbenson@redhat.com>
6990
6991 * NEWS: Announce support for direct access of executable and
6992 shared library files when attaching to inferiors in containers
6993 on GNU/Linux systems.
6994
6995 2015-06-10 Gary Benson <gbenson@redhat.com>
6996
6997 * remote.c (struct remote_state) <fs_pid>: New field.
6998 (new_remote_state): Initialize the above.
6999 (PACKET_vFile_setfs): New enum value.
7000 (remote_hostio_set_filesystem): New function.
7001 (remote_hostio_open): Call the above.
7002 (remote_hostio_unlink): Likewise.
7003 (remote_hostio_readlink): Likewise.
7004 (_initialize_remote): Register new "set/show remote
7005 hostio-setfs-packet" command.
7006 * NEWS: Announce new vFile:setfs packet.
7007
7008 2015-06-10 Gary Benson <gbenson@redhat.com>
7009
7010 * linux-nat.c (nat/linux-namespaces.h): New include.
7011 (fileio.h): Likewise.
7012 (linux_nat_filesystem_is_local): New function.
7013 (linux_nat_fileio_pid_of): Likewise.
7014 (linux_nat_fileio_open): Likewise.
7015 (linux_nat_fileio_readlink): Likewise.
7016 (linux_nat_fileio_unlink): Likewise.
7017 (linux_nat_add_target): Initialize to_filesystem_is_local,
7018 to_fileio_open, to_fileio_readlink and to_fileio_unlink.
7019 (_initialize_linux_nat): New "set/show debug linux-namespaces"
7020 commands.
7021 * NEWS: Mention new "set/show debug linux-namespaces" commands.
7022
7023 2015-06-10 Gary Benson <gbenson@redhat.com>
7024
7025 * target.h (struct inferior): New forward declaration.
7026 (struct target_ops) <to_filesystem_is_local>: Update comment.
7027 (struct target_ops) <to_fileio_open>: New argument inf.
7028 Update comment. All implementations updated.
7029 (struct target_ops) <to_fileio_unlink>: Likewise.
7030 (struct target_ops) <to_fileio_readlink>: Likewise.
7031 (target_filesystem_is_local): Update comment.
7032 (target_fileio_open): New argument inf. Update comment.
7033 (target_fileio_unlink): Likewise.
7034 (target_fileio_readlink): Likewise.
7035 (target_fileio_read_alloc): Likewise.
7036 (target_fileio_read_stralloc): Likewise.
7037 * target.c (target_fileio_open): New argument inf.
7038 Pass inf to implementation. Update debug printing.
7039 (target_fileio_unlink): Likewise.
7040 (target_fileio_readlink): Likewise.
7041 (target_fileio_read_alloc_1): New argument inf. Pass inf
7042 to target_fileio_open.
7043 (target_fileio_read_alloc): New argument inf. Pass inf to
7044 target_fileio_read_alloc_1.
7045 (target_fileio_read_stralloc): Likewise.
7046 * gdb_bfd.c (inferior.h): New include.
7047 (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
7048 argument with new argument "inferior". Pass inferior to
7049 target_fileio_open.
7050 (gdb_bfd_open): Supply inferior argument to
7051 gdb_bfd_iovec_fileio_open.
7052 * linux-tdep.c (linux_info_proc): Supply inf argument to
7053 relevant target_fileio calls.
7054 (linux_find_memory_regions_full): Likewise.
7055 (linux_fill_prpsinfo): Likewise.
7056 * remote.c (remote_filesystem_is_local): Supply inf
7057 argument to remote_hostio_open.
7058 (remote_file_put): Likewise.
7059 (remote_file_get): Likewise.
7060 (remote_file_delete): Supply inf argument to
7061 remote_hostio_unlink.
7062
7063 2015-06-10 Gary Benson <gbenson@redhat.com>
7064
7065 * inf-child.c (inf_child_fileio_open): Replace comment.
7066 (inf_child_fileio_pwrite): Likewise.
7067 (inf_child_fileio_pread): Likewise.
7068 (inf_child_fileio_fstat): Insert blank line before comment.
7069 (inf_child_fileio_close): Replace comment.
7070 (inf_child_fileio_unlink): Likewise.
7071 (inf_child_fileio_readlink): Likewise.
7072 * remote.c (remote_hostio_open): Likewise.
7073 (remote_hostio_pread): Likewise.
7074 (remote_hostio_pwrite): Likewise.
7075 (remote_hostio_close): Likewise.
7076 (remote_hostio_unlink): Likewise.
7077 (remote_hostio_readlink): Likewise.
7078 (remote_hostio_fstat): Likewise.
7079 (remote_filesystem_is_local): Likewise.
7080 * target.c (target_fileio_open): Likewise.
7081 (target_fileio_pwrite): Likewise.
7082 (target_fileio_pread): Likewise.
7083 (target_fileio_fstat): Insert blank line before comment.
7084 (target_fileio_close): Replace comment.
7085 (target_fileio_unlink): Likewise.
7086 (target_fileio_readlink): Likewise.
7087 (target_fileio_read_alloc): Likewise.
7088 (target_fileio_read_stralloc): Likewise.
7089
7090 2015-06-10 Gary Benson <gbenson@redhat.com>
7091
7092 * linux-thread-db.c (nat/linux-namespaces.h): New include.
7093 (check_pid_namespace_match): Use linux_ns_same rather than
7094 linux_proc_pid_get_ns to spot PID namespace mismatches.
7095 * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
7096 * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
7097
7098 2015-06-10 Gary Benson <gbenson@redhat.com>
7099
7100 * configure.ac (AC_CHECK_FUNCS): Add setns.
7101 * config.in: Regenerate.
7102 * configure: Likewise.
7103 * nat/linux-namespaces.h: New file.
7104 * nat/linux-namespaces.c: Likewise.
7105 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
7106 (linux-namespaces.o): New rule.
7107 * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
7108 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
7109 * config/arm/linux.mh (NATDEPFILES): Likewise.
7110 * config/i386/linux.mh (NATDEPFILES): Likewise.
7111 * config/i386/linux64.mh (NATDEPFILES): Likewise.
7112 * config/ia64/linux.mh (NATDEPFILES): Likewise.
7113 * config/m32r/linux.mh (NATDEPFILES): Likewise.
7114 * config/m68k/linux.mh (NATDEPFILES): Likewise.
7115 * config/mips/linux.mh (NATDEPFILES): Likewise.
7116 * config/pa/linux.mh (NATDEPFILES): Likewise.
7117 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
7118 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
7119 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
7120 * config/s390/linux.mh (NATDEPFILES): Likewise.
7121 * config/sparc/linux.mh (NATDEPFILES): Likewise.
7122 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
7123 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
7124 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
7125
7126 2015-06-10 Gary Benson <gbenson@redhat.com>
7127
7128 * utils.h (make_cleanup_close): Moved to common/filestuff.h.
7129 * utils.c (do_close_cleanup): Moved to common/filestuff.c.
7130 (make_cleanup_close): Likewise.
7131 * common/filestuff.h (make_cleanup_close): Moved from utils.h.
7132 * common/filestuff.c (do_close_cleanup): Moved from utils.c.
7133 (make_cleanup_close): Likewise.
7134
7135 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7136
7137 * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
7138 from SuspendThread().
7139
7140 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7141
7142 * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
7143 from OutputDebugString.
7144
7145 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
7146 Mircea Gherzan <mircea.gherzan@intel.com>
7147
7148 * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
7149 MPX_BT_MASK_32): New macros.
7150 (i386_mpx_set_bounds): New function that implements
7151 the command "set-mpx-bound".
7152 (i386_mpx_enabled): Helper function to test MPX availability.
7153 (i386_mpx_bd_base): Helper function to calculate the base directory
7154 address.
7155 (i386_mpx_get_bt_entry): Helper function to access a bound
7156 table entry.
7157 (i386_mpx_print_bounds): Effectively display bound information.
7158 (_initialize_i386_tdep): Add new commands to commands "set mpx" and
7159 "show mpx".
7160 (_initialize_i386_tdep):
7161 Add "bound" to the commands "show mpx" and "set mpx" commands.
7162 (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
7163 and "show mpx" commands.
7164 * NEWS: List new commands for MPX support.
7165
7166 2015-06-09 Gary Benson <gbenson@redhat.com>
7167
7168 * common/fileio.h (fileio_to_host_mode): New declaration.
7169 * common/fileio.c (fileio_to_host_mode): New Function.
7170 * inf-child.c (inf_child_fileio_open): Process mode argument
7171 with fileio_to_host_mode.
7172
7173 2015-06-09 Gary Benson <gbenson@redhat.com>
7174
7175 * common/fileio.c (fileio_mode_pack): Fix preprocessor
7176 conditional.
7177
7178 2015-06-05 Gary Benson <gbenson@redhat.com>
7179
7180 * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
7181 * remote.c (remote_filesystem_is_local): ...here.
7182
7183 2015-06-04 Yao Qi <yao.qi@linaro.org>
7184
7185 * gdbarch.c: Regenerate it.
7186
7187 2015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7188
7189 * arch-utils.c (default_infcall_munmap): New.
7190 * arch-utils.h (default_infcall_munmap): New declaration.
7191 * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
7192 (munmap_list_free, munmap_listp_free_cleanup): New.
7193 (struct setup_sections_data): Add field munmap_list_headp.
7194 (setup_sections): Call munmap_list_add.
7195 (compile_object_load): New variable munmap_list_head, initialize
7196 setup_sections_data.munmap_list_headp, return munmap_list_head.
7197 * compile/compile-object-load.h (struct munmap_list): New declaration.
7198 (struct compile_module): Add field munmap_list_head.
7199 (munmap_list_free): New declaration.
7200 * compile/compile-object-run.c (struct do_module_cleanup): Add field
7201 munmap_list_head.
7202 (do_module_cleanup): Call munmap_list_free.
7203 (compile_object_run): Pass munmap_list_head to do_module_cleanup.
7204 * gdbarch.c: Regenerate.
7205 * gdbarch.h: Regenerate.
7206 * gdbarch.sh (infcall_munmap): New.
7207 * linux-tdep.c (linux_infcall_munmap): New.
7208 (linux_init_abi): Install it.
7209
7210 2015-06-02 Simon Marchi <simon.marchi@ericsson.com>
7211
7212 PR gdb/15564
7213 * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
7214
7215 2015-06-02 Yao Qi <yao.qi@linaro.org>
7216
7217 * i386-linux-nat.c: Include linux-nat.h.
7218
7219 2015-06-01 Andreas Schwab <schwab@linux-m68k.org>
7220 Jan Kratochvil <jan.kratochvil@redhat.com>
7221
7222 PR symtab/18392
7223 * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
7224 assertion.
7225 * dwarf2loc.c (chain_candidate): Likewise.
7226
7227 2015-06-01 Yao Qi <yao.qi@linaro.org>
7228
7229 * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
7230 (store_vfp_regs): Use PTRACE_SETREGSET.
7231
7232 2015-06-01 Yao Qi <yao.qi@linaro.org>
7233
7234 * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
7235 (fetch_fpregs): Likewise.
7236 * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
7237 (store_fpregs): Likewise.
7238
7239 2015-06-01 Yao Qi <yao.qi@linaro.org>
7240
7241 * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
7242 (fetch_regs): Likewise.
7243 (store_regs): Use PTRACE_SETREGSET.
7244 (store_register): Likewise.
7245
7246 2015-06-01 Yao Qi <yao.qi@linaro.org>
7247
7248 * arm-linux-nat.c (arm_linux_read_description): Check whether
7249 kernel supports PTRACE_GETREGSET.
7250
7251 2015-06-01 Yao Qi <yao.qi@linaro.org>
7252
7253 * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
7254 * linux-nat.c: ... here.
7255 * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
7256 to ...
7257 * linux-nat.h: ... here.
7258
7259 2015-06-01 Yao Qi <yao.qi@linaro.org>
7260
7261 * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
7262 * i386-linux-nat.c: Likewise.
7263 * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
7264 * s390-linux-nat.c: Include "nat/linux-ptrace.h".
7265 (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7266 * x86-linux-nat.c: Include "nat/linux-ptrace.h".
7267 * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7268
7269 2015-05-30 Eli Zaretskii <eliz@gnu.org>
7270
7271 * go32-nat.c (go32_xfer_memory): Fix the return value to be
7272 compatible to what read_child and write_child return. This
7273 unbreaks that DJGPP build of GDB which was broken since v7.7.
7274
7275 2015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com>
7276
7277 * MAINTAINERS (Write After Approval): Add Martin Galvan.
7278
7279 2015-05-29 Roland McGrath <mcgrathr@google.com>
7280
7281 PR gdb/18464
7282 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
7283 rather than internal_error for an unrecognized value.
7284
7285 2015-05-29 Max Filippov <jcmvbkbc@gmail.com>
7286
7287 * xtensa-tdep.c (xtensa_pseudo_register_read)
7288 (xtensa_pseudo_register_write): Don't alias last pseudo register
7289 to a1.
7290
7291 2015-05-28 Don Breazeal <donb@codesourcery.com>
7292
7293 * infrun.c (follow_fork_inferior): Ensure the use of
7294 process-style ptids (pid,0,0) in verbose/debug "Detaching"
7295 messages.
7296
7297 2015-05-28 Doug Evans <dje@google.com>
7298
7299 * dwarf2read.c (record_line_ftype): Remove, duplicate.
7300
7301 2015-05-28 Yao Qi <yao.qi@linaro.org>
7302
7303 * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
7304 (arm_linux_fetch_inferior_registers): Use
7305 tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
7306 (arm_linux_store_inferior_registers): Likewise.
7307 (arm_linux_read_description): Don't set
7308 arm_linux_has_wmmx_registers.
7309 * arm-tdep.c (arm_gdbarch_init): Set
7310 tdep->have_wmmx_registers according target descriptions.
7311 * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
7312 field.
7313
7314 2015-05-28 Yao Qi <yao.qi@linaro.org>
7315
7316 * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
7317 (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
7318 instead of arm_linux_vfp_register_count.
7319 (store_vfp_regs): Likewise.
7320 (arm_linux_fetch_inferior_registers): Likewise.
7321 (arm_linux_store_inferior_registers): Likewise.
7322 (arm_linux_read_description): Don't set
7323 arm_linux_vfp_register_count.
7324 * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
7325 Adjust.
7326 * arm-tdep.c (arm_gdbarch_init): Add assert on
7327 vfp_register_count.
7328 * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
7329 field to vfp_register_count. All users updated.
7330
7331 2015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch)
7332
7333 * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
7334 ELFOSABI_GNU binaries.
7335
7336 2015-05-27 Doug Evans <dje@google.com>
7337
7338 * dwarf2read.c (lnp_state_machine): New typedef.
7339 (lnp_reader_state): New typedef.
7340 (dwarf_record_line_1): Renamed from dwarf_record_line.
7341 All callers updated.
7342 (dwarf_record_line): New function.
7343 (init_lnp_state_machine): New function.
7344 (check_line_address): Replace p_record_line parameter with state.
7345 All callers updated.
7346 (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
7347 Update to record state in lnp_state_machine.
7348
7349 2015-05-27 Doug Evans <dje@google.com>
7350
7351 * dwarf2read.c (record_line_ftype): New typedef.
7352 (check_line_address): New function.
7353 (dwarf_decode_lines_1): Call it.
7354
7355 2015-05-27 Doug Evans <dje@google.com>
7356
7357 * NEWS: Mention "set debug dwarf-line".
7358 * dwarf2read.c (dwarf_line_debug): New static global.
7359 (add_include_dir): Add debug dwarf-line support.
7360 (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
7361 (_initialize_dwarf2_read): New parameter "debug dwarf-line".
7362
7363 2015-05-27 Doug Evans <dje@google.com>
7364
7365 * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
7366 All callers updated.
7367 (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
7368 * cp-support.h (cp_lookup_nested_symbol): Update.
7369
7370 2015-05-27 Doug Evans <dje@google.com>
7371
7372 PR symtab/18258
7373 * block.c (block_find_symbol): New function.
7374 (block_find_non_opaque_type): Ditto.
7375 (block_find_non_opaque_type_preferred): Ditto.
7376 * block.h (block_symbol_matcher_ftype): New typedef.
7377 (block_find_symbol): Declare.
7378 (block_find_non_opaque_type): Ditto.
7379 (block_find_non_opaque_type_preferred): Ditto.
7380 * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
7381 * psymtab.c (psym_lookup_symbol): Ditto.
7382 * symtab.c (basic_lookup_transparent_type_1): New function.
7383 (basic_lookup_transparent_type): Call it.
7384
7385 2015-05-27 Yao Qi <yao.qi@linaro.org>
7386
7387 * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
7388 AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
7389
7390 2015-05-27 Yao Qi <yao.qi@linaro.org>
7391
7392 * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
7393 before operator &&.
7394 (aarch64_record_load_store): Likewise.
7395
7396 2015-05-26 Doug Evans <dje@google.com>
7397
7398 PR c++/18141, c++/18417.
7399 * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
7400 a typedef.
7401
7402 2015-05-26 Doug Evans <dje@google.com>
7403
7404 * NEWS: Add entries for command renamings.
7405 * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
7406 All uses updated.
7407 (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated.
7408 (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
7409 All uses updated.
7410 (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
7411 All callers updated. Fix spelling of DWARF in help text.
7412 (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
7413 All uses updated.
7414 (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
7415 All uses updated.
7416 (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated.
7417 (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated.
7418 (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
7419 All uses updated.
7420 (show_dwarf_always_disassemble): Renamed from
7421 show_dwarf2_always_disassemble. All callers updated.
7422 (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
7423 "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to
7424 "set/show dwarf max-cache-age". Rename
7425 "set/show dwarf2 always-disassemble" to
7426 "set/show dwarf always-disassemble". Rename
7427 "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename
7428 "set/show debug dwarf2-die" to "set/show debug dwarf-die".
7429
7430 2015-05-26 Doug Evans <dje@google.com>
7431
7432 PR python/18438
7433 * python/py-lazy-string.c (stpy_convert_to_value): Use
7434 gdbpy_gdb_memory_error not PyExc_MemoryError.
7435 (gdbpy_create_lazy_string_object): Ditto.
7436
7437 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
7438
7439 * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
7440
7441 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
7442
7443 * tui/tui-regs.c (tui_reg_prev_command): New function.
7444 (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
7445 * reggroups.c (reggroup_prev): New function.
7446 * reggroups.h (reggroup_prev): Add declaration. Update comment.
7447
7448 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
7449 Yao Qi <yao.qi@linaro.org>
7450
7451 * aarch64-linux-tdep.c: Include linux-record.h and
7452 record-full.h.
7453 (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
7454 (aarch64_syscall): New enum.
7455 (aarch64_canonicalize_syscall): New function.
7456 (aarch64_all_but_pc_registers_record): New function.
7457 (aarch64_linux_syscall_record): New function.
7458 (aarch64_linux_init_abi): Install AArch64 process record
7459 handler. Update to handle syscall recording.
7460 * aarch64-tdep.c: Include record.h and record-full.h.
7461 (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
7462 (struct aarch64_mem_r): Define.
7463 (aarch64_record_result): New enum.
7464 (struct insn_decode_record): Define.
7465 (insn_decode_record): New typedef.
7466 (aarch64_record_data_proc_reg): New function.
7467 (aarch64_record_data_proc_imm): New function.
7468 (aarch64_record_branch_except_sys): New function.
7469 (aarch64_record_load_store): New function.
7470 (aarch64_record_data_proc_simd_fp): New function.
7471 (aarch64_record_asimd_load_store): New function.
7472 (aarch64_record_decode_insn_handler): New function.
7473 (deallocate_reg_mem): New function.
7474 (aarch64_process_record): New function.
7475 * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
7476 New field.
7477 (aarch64_process_record): New extern declaration.
7478 * configure.tgt: Add linux-record.o to gdb_target_obs.
7479 * linux-record.h (struct linux_record_tdep) <arg7>: New field.
7480
7481 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
7482
7483 * NEWS: Add a note on process record-replay support on aarch64*-linux*
7484 targets.
7485
7486 2015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com>
7487
7488 * amd64-tdep.c: Replace in_function_epilogue_p with
7489 stack_frame_destroyed_p throughout.
7490 * arch-utils.c: Ditto.
7491 * arch-utils.h: Ditto.
7492 * arm-tdep.c: Ditto.
7493 * breakpoint.c: Ditto.
7494 * gdbarch.sh: Ditto.
7495 * hppa-tdep.c: Ditto.
7496 * i386-tdep.c: Ditto.
7497 * mips-tdep.c: Ditto.
7498 * nios2-tdep.c: Ditto.
7499 * rs6000-tdep.c: Ditto.
7500 * s390-linux-tdep.c: Ditto.
7501 * score-tdep.c: Ditto.
7502 * sh-tdep.c: Ditto.
7503 * sparc-tdep.c: Ditto.
7504 * sparc-tdep.h: Ditto.
7505 * sparc64-tdep.c: Ditto.
7506 * spu-tdep.c: Ditto.
7507 * tic6x-tdep.c: Ditto.
7508 * tilegx-tdep.c: Ditto.
7509 * xstormy16-tdep.c: Ditto.
7510 * gdbarch.c, gdbarch.h: Re-generated.
7511
7512 2015-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
7513
7514 * NEWS: Mention 'tui enable' and 'tui disable'.
7515 * tui/tui.c (tui_enable_command): New function.
7516 (tui_disable_command): New function.
7517 (_initialize_tui): New function.
7518
7519 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7520
7521 * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
7522
7523 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7524
7525 * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
7526 buf_ptr is freed.
7527
7528 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7529
7530 * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
7531 into ...
7532 (tui_set_layout_for_display_command): ...here, before calling
7533 tui_set_layout. Only set the layout if gdb has not already
7534 entered the TUI_FAILURE state.
7535
7536 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7537
7538 * tui/tui-layout.c (layout_completer): New function.
7539 (_initialize_tui_layout): Set completer on layout command.
7540
7541 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7542
7543 * tui/tui-layout.c (tui_set_layout): Remove
7544 tui_register_display_type parameter. Remove all checking of this
7545 parameter, and reindent function. Update header comment.
7546 (tui_set_layout_for_display_command): Rename to...
7547 (tui_set_layout_by_name): ...this, and don't check for different
7548 register class types, don't pass a tui_register_display_type to
7549 tui_set_layout. Update header comment.
7550 (layout_names): Remove register set specific names.
7551 * tui/tui-layout.h (tui_set_layout): Remove
7552 tui_register_display_type parameter.
7553 * tui/tui.c (tui_rl_change_windows): Don't pass a
7554 tui_register_display_type to tui_set_layout.
7555 (tui_rl_delete_other_windows): Likewise.
7556 (tui_enable): Likewise.
7557 * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
7558 (TUI_FLOAT_REGS_NAME_LOWER): Remove.
7559 (TUI_GENERAL_REGS_NAME): Remove.
7560 (TUI_GENERAL_REGS_NAME_LOWER): Remove.
7561 (TUI_SPECIAL_REGS_NAME): Remove.
7562 (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
7563 (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
7564 (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
7565 (enum tui_register_display_type): Remove.
7566 (struct tui_layout_def): Remove regs_display_type and
7567 float_regs_display_type fields.
7568 (struct tui_data_info): Remove regs_display_type field.
7569 (tui_layout_command): Use new name for
7570 tui_set_layout_for_display_command.
7571 * tui/tui-data.c (layout_def): Don't initialise removed fields.
7572 (tui_clear_win_detail): Don't initialise removed fields of
7573 win_info.
7574 * tui/tui-regs.c (tui_show_registers): Use new name for
7575 tui_set_layout_for_display_command.
7576 * tui/tui.h (tui_set_layout_for_display_command): Rename
7577 declaration to...
7578 (tui_set_layout_by_name): ...this.
7579 * printcmd.c (display_command): Remove tui related layout call,
7580 and reindent.
7581
7582 2015-05-20 Joel Brobecker <brobecker@adacore.com>
7583
7584 * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
7585 (handle_inferior_event): New function.
7586
7587 2015-05-20 Joel Brobecker <brobecker@adacore.com>
7588
7589 * ada-lang.c (to_fixed_array_type): Rename local variable
7590 typename into type_name.
7591
7592 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7593
7594 Fix ASAN crash for gdb.compile/compile.exp.
7595 * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
7596
7597 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7598
7599 * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
7600 (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
7601 * compile/compile-object-load.c (setup_sections, compile_object_load):
7602 Likewise.
7603 * compile/compile.c (compile_to_object): Likewise.
7604
7605 2015-05-16 Doug Evans <xdje42@gmail.com>
7606
7607 * NEWS: Mention support for unbuffered Guile memory ports.
7608 * scm-ports.c (ioscm_memory_port): Update comments on end, size.
7609 (ioscm_lseek_address): Improve overflow calculation.
7610 (gdbscm_memory_port_fill_input): Add assert.
7611 (gdbscm_memory_port_write): Handle unbuffered ports.
7612 Handle large writes identical to Guile's fport_write.
7613 (gdbscm_memory_port_seek): Fix seeking past end check.
7614 (gdbscm_memory_port_close): Handle closing unbuffered port.
7615 (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
7616 (ioscm_init_memory_port): Handle unbuffered ports.
7617 (ioscm_reinit_memory_port): Ditto.
7618 (ioscm_init_memory_port): Update size calculation.
7619 (gdbscm_open_memory): Support zero sized ports.
7620
7621 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7622
7623 * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
7624 variable compiler warnings.
7625
7626 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7627
7628 * compile/compile-object-load.c (get_out_value_type): Fix returned type.
7629
7630 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7631 Phil Muldoon <pmuldoon@redhat.com>
7632
7633 * NEWS (Changes since GDB 7.9): Add compile print.
7634 * compile/compile-c-support.c (add_code_header, add_code_footer)
7635 (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
7636 COMPILE_I_PRINT_VALUE_SCOPE.
7637 * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
7638 (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
7639 New.
7640 * compile/compile-object-load.c: Include block.h.
7641 (get_out_value_type): New function.
7642 (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
7643 COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and
7644 OUT_VALUE_TYPE.
7645 * compile/compile-object-load.h (struct compile_module): Add fields
7646 out_value_addr and out_value_type.
7647 * compile/compile-object-run.c: Include valprint.h and compile.h.
7648 (struct do_module_cleanup): Add fields out_value_addr and
7649 out_value_type.
7650 (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
7651 COMPILE_I_PRINT_VALUE_SCOPE.
7652 (compile_object_run): Propagate out_value_addr and out_value_type.
7653 Pass OUT_VALUE_ADDR.
7654 * compile/compile.c: Include valprint.h.
7655 (compile_print_value, compile_print_command): New functions.
7656 (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
7657 (_initialize_compile): Update compile code help text. Install
7658 compile_print_command.
7659 * compile/compile.h (compile_print_value): New prototype.
7660 * defs.h (enum compile_i_scope_types): Add
7661 COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
7662
7663 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7664
7665 * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
7666 Rely on its parameter count.
7667 (compile_object_load): Replace lookup_minimal_symbol_text by
7668 lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the
7669 return value.
7670 * compile/compile-object-load.h (struct compile_module): Replace
7671 func_addr by func_sym.
7672 * compile/compile-object-run.c: Include block.h.
7673 (compile_object_run): Reset module variable after it is freed. Use
7674 FUNC_SYM instead of FUNC_ADDR. Rely on it.
7675
7676 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7677
7678 * compile/compile-c-support.c (print_one_macro): Use #ifndef.
7679 (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
7680 (c_compute_program): Call generate_register_struct after typedefs.
7681 * compile/compile-loc2c.c (push, pushf_register_address)
7682 (pushf_register): Cast to GCC_UINTPTR.
7683 (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after
7684 type. Use GCC_UINTPTR instead of void *. Remove excessive cast.
7685 (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
7686 * compile/compile.c (_initialize_compile): Enable warnings for
7687 COMPILE_ARGS.
7688
7689 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7690
7691 * cli/cli-script.c (execute_control_command): Update
7692 eval_compile_command caller.
7693 * compile/compile-object-load.c (compile_object_load): Add parameters
7694 scope and scope_data. Set them.
7695 * compile/compile-object-load.h (struct compile_module): Add fields
7696 scope and scope_data.
7697 (compile_object_load): Add parameters scope and scope_data.
7698 * compile/compile-object-run.c (struct do_module_cleanup): Add fields
7699 scope and scope_data.
7700 (compile_object_run): Propagate the fields scope and scope_data.
7701 * compile/compile.c (compile_file_command, compile_code_command):
7702 Update eval_compile_command callers.
7703 (eval_compile_command): Add parameter scope_data. Pass it plus scope.
7704 * compile/compile.h (eval_compile_command): Add parameter scope_data.
7705 * defs.h (struct command_line): Add field scope_data.
7706
7707 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7708
7709 * printcmd.c (struct format_data): Move it to valprint.h.
7710 (print_command_parse_format, print_value): New functions from ...
7711 (print_command_1): ... here. Call them.
7712 * valprint.h (struct format_data): Move it here from printcmd.c.
7713 (print_command_parse_format, print_value): New declarations.
7714
7715 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7716
7717 * compile/compile-object-load.c (compile_object_load): Add
7718 COMPILE_DEBUG message.
7719
7720 2015-05-15 Jerome Guitton <guitton@adacore.com>
7721
7722 * ada-lang.c (ada_value_ptr_subscript): Use enum position of
7723 index to get element instead of enum value.
7724 (ada_value_slice_from_ptr, ada_value_slice): Use enum position
7725 of index to compute length, but enum values to compute bounds.
7726 (ada_array_length): Use enum position of index instead of enum value.
7727 (pos_atr): Move position computation to...
7728 (ada_evaluate_subexp): Use enum values to compute bounds.
7729 * gdbtypes.c (discrete_position): ...this new function.
7730 * gdbtypes.h (discrete_position): New function declaration.
7731 * valprint.c (val_print_array_elements): Call discrete_position
7732 to handle array indexed by non-contiguous enumeration types.
7733
7734 2015-05-15 Jerome Guitton <guitton@adacore.com>
7735
7736 * ada-lang.c (find_parallel_type_by_descriptive_type):
7737 Go through typedefs during lookup.
7738 (to_fixed_array_type): Add support for non-bit packed arrays
7739 as variable-length fields.
7740
7741 2015-05-15 Pedro Alves <palves@redhat.com>
7742 Simon Marchi <simon.marchi@ericsson.com>
7743
7744 * event-loop.c (gdb_notifier) <next_file_handler,
7745 next_poll_fds_index>: New fields.
7746 (get_next_file_handler_to_handle_and_advance): New function.
7747 (delete_file_handler): If deleting the next file handler to
7748 handle, advance to the next file handler.
7749 (gdb_wait_for_event): Bail early if no event fired. Poll file
7750 handlers in round-robin fashion.
7751
7752 2015-05-15 Pedro Alves <palves@redhat.com>
7753
7754 * linux-tdep.c (linux_find_memory_regions_full): Rename local
7755 'private' to 'priv'.
7756
7757 2015-05-15 Pedro Alves <palves@redhat.com>
7758
7759 * nat/linux-nat.h: Include "target/waitstatus.h".
7760
7761 2015-05-15 Yuanhui Zhang <asmwarrior@gmail.com>
7762
7763 * python/py-unwind.c (struct reg_info): Move out of ...
7764 (struct cached_frame_info): ... this scope.
7765 (pending_frame_object_type, unwind_info_object_type): Make extern.
7766
7767 2015-05-15 Joel Brobecker <brobecker@adacore.com>
7768
7769 * ada-lang.c (ada_value_primitive_packed_val): Make sure
7770 accumSize is never negative.
7771
7772 2015-05-14 Patrick Palka <patrick@parcs.ath.cx>
7773
7774 * tui/tui-command.c: Remove include of <ctype.h>.
7775 (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
7776
7777 2015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com>
7778
7779 * dwarf2read.c (die_needs_namespace): Return 1 for
7780 DW_TAG_inlined_subroutine.
7781
7782 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7783
7784 * regcache.c (regcache_cpy_no_passthrough): New declaration.
7785 (regcache_cpy_no_passthrough): Make it static, add function comment.
7786 * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
7787 (regcache_cpy_no_passthrough): Remove declaration.
7788
7789 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7790
7791 * gdbthread.h (struct thread_control_state): Update comment for
7792 proceed_to_finish.
7793 * infcall.c (run_inferior_call): Update comment about
7794 proceed_to_finish.
7795 * infcmd.c (get_return_value): Update comment about stop_registers.
7796 (finish_forward): Update comment about proceed_to_finish.
7797 * infrun.c (stop_registers): Remove.
7798 (clear_proceed_status, normal_stop): Remove stop_registers handling.
7799 * infrun.h (stop_registers): Remove.
7800
7801 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7802
7803 * infcall.c (struct dummy_frame_context_saver)
7804 (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
7805 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
7806 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
7807 New.
7808 (call_function_by_hand_dummy): Move discard_cleanups of
7809 inf_status_cleanup before dummy_frame_push. Call
7810 dummy_frame_context_saver_setup and prepare context_saver_cleanup.
7811 Use dummy_frame_context_saver_get_regs instead of stop_registers.
7812 * infcall.h (struct dummy_frame_context_saver)
7813 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
7814 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
7815 New declarations.
7816 * infcmd.c: Include infcall.h.
7817 (get_return_value): Add parameter ctx_saver, use it instead of
7818 stop_registers.
7819 (print_return_value): Add parameter ctx_saver, pass it.
7820 (struct finish_command_continuation_args): Add field ctx_saver.
7821 (finish_command_continuation): Update print_return_value caller.
7822 (finish_command_continuation_free_arg): Free also ctx_saver.
7823 (finish_forward): Call dummy_frame_context_saver_setup.
7824 * inferior.h (struct dummy_frame_context_saver): New declaration.
7825 (get_return_value): Add parameter ctx_saver.
7826 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
7827 get_return_value caller.
7828
7829 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7830
7831 * dummy-frame.c (struct dummy_frame_dtor_list): New.
7832 (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
7833 (remove_dummy_frame): Process dtor_list.
7834 (pop_dummy_frame): Process dtor_list.
7835 (register_dummy_frame_dtor): Maintain dtor_list.
7836 (find_dummy_frame_dtor): Handle dtor_list.
7837 * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
7838 Update comments.
7839
7840 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7841
7842 * compile/compile-object-run.c (do_module_cleanup): Add parameter
7843 registers_valid.
7844 (compile_object_run): Update do_module_cleanup caller.
7845 * dummy-frame.c: Include infcall.h.
7846 (struct dummy_frame): Update dtor comment.
7847 (remove_dummy_frame): Call dtor.
7848 (pop_dummy_frame): Update dtor caller.
7849 * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
7850 registers_valid.
7851
7852 2015-05-13 Joel Brobecker <brobecker@adacore.com>
7853
7854 GDB 7.9.1 released.
7855
7856 2015-05-13 Joel Brobecker <brobecker@adacore.com>
7857
7858 * NEWS: Create "Changes in GDB 7.9.1" section. Move news about
7859 Xmethods now being able to specify a result type to that new
7860 sectioin.
7861
7862 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
7863
7864 * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
7865 first before resizing the window.
7866 * tui/tui.c (tui_enable): Likewise.
7867
7868 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7869
7870 * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
7871 * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
7872 * infcall.c (call_function_by_hand_dummy): Use proper typedef for
7873 dummy_dtor parameter.
7874 * infcall.h: Include dummy-frame.h.
7875 (call_function_by_hand_dummy_dtor_ftype): Remove.
7876 (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
7877 parameter.
7878
7879 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
7880
7881 PR gdb/17820
7882 * top.c (history_size_setshow_var): Change type to signed.
7883 Initialize to -2. Update documentation.
7884 (set_readline_history_size): Define.
7885 (set_history_size_command): Use it. Remove logic for handling
7886 out-of-range sizes.
7887 (init_history): Use set_readline_history_size(). Test for a
7888 value of -2 instead of 0 when determining whether to set a
7889 default history size.
7890 (init_main): Decode the argument of the "size" command as a
7891 zuinteger_unlimited.
7892
7893 2015-05-12 Doug Evans <dje@google.com>
7894
7895 * dwarf2read.c (struct file_entry): Tweak comments.
7896 (get_debug_line_section): Tweak comments.
7897
7898 2015-05-12 Don Breazeal <donb@codesourcery.com>
7899
7900 * NEWS: Announce fork support in the RSP and support
7901 for fork debugging in extended mode.
7902
7903 2015-05-12 Don Breazeal <donb@codesourcery.com>
7904
7905 * remote.c (remote_insert_fork_catchpoint): New function.
7906 (remote_remove_fork_catchpoint): New function.
7907 (remote_insert_vfork_catchpoint): New function.
7908 (remote_remove_vfork_catchpoint): New function.
7909 (pending_fork_parent_callback): New function.
7910 (remove_new_fork_child): New function.
7911 (remote_update_thread_list): Call remote_notif_get_pending_events
7912 and remove_new_fork_child.
7913 (extended_remote_kill): Kill fork child when killing the
7914 parent before follow_fork completes.
7915 (init_extended_remote_ops): Initialize target vector with
7916 new fork catchpoint functions.
7917
7918 2015-05-12 Don Breazeal <donb@codesourcery.com>
7919
7920 * remote.c (remove_vfork_event_p): New function.
7921 (remote_follow_fork): Add vfork event type to event checking.
7922 (remote_parse_stop_reply): New stop reasons "vfork" and
7923 "vforkdone" for RSP 'T' Stop Reply Packet.
7924
7925 2015-05-12 Don Breazeal <donb@codesourcery.com>
7926
7927 * linux-nat.c (linux_nat_ptrace_options): New function.
7928 (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
7929 Call linux_nat_ptrace_options and use different argument to
7930 linux_enable_event_reporting.
7931 (_initialize_linux_nat): Delete call to
7932 linux_ptrace_set_additional_flags.
7933 * nat/linux-ptrace.c (current_ptrace_options): Rename to
7934 supported_ptrace_options.
7935 (additional_flags): Delete variable.
7936 (linux_check_ptrace_features): Use supported_ptrace_options.
7937 (linux_test_for_tracesysgood, linux_test_for_tracefork):
7938 Likewise, and remove additional_flags check.
7939 (linux_enable_event_reporting): Change 'attached' argument to
7940 'options'. Use supported_ptrace_options.
7941 (ptrace_supports_feature): Change comment. Use
7942 supported_ptrace_options.
7943 (linux_ptrace_set_additional_flags): Delete function.
7944 * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
7945 Delete function prototype.
7946 * remote.c (remote_fork_event_p): New function.
7947 (remote_detach_pid): New function.
7948 (remote_detach_1): Call remote_detach_pid, don't mourn inferior
7949 if doing detach-on-fork.
7950 (remote_follow_fork): New function.
7951 (remote_parse_stop_reply): Handle new "T" stop reason "fork".
7952 (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
7953 (init_extended_remote_ops): Initialize to_follow_fork.
7954
7955 2015-05-12 Don Breazeal <donb@codesourcery.com>
7956
7957 * nat/linux-ptrace.c (linux_check_ptrace_features): Change
7958 from static to extern.
7959 * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
7960 * remote.c (anonymous enum): <PACKET_fork_event_feature,
7961 * PACKET_vfork_event_feature>: New enumeration constants.
7962 (remote_protocol_features): Add table entries for new packets.
7963 (remote_query_supported): Add new feature queries to qSupported
7964 packet.
7965
7966 2015-05-12 Gary Benson <gbenson@redhat.com>
7967
7968 * remote.c (remote_add_inferior): Call exec_file_locate_attach
7969 for fake PIDs as well as real ones.
7970 (remote_pid_to_exec_file): Send empty annex if PID is fake.
7971
7972 2015-05-09 Siva Chandra Reddy <sivachandra@google.com>
7973
7974 * NEWS (Python Scripting): Mention the new gdb.Value methods.
7975 * python/py-value.c (valpy_reference_value): New function.
7976 (valpy_const_value): Likewise.
7977 (value_object_methods): Add new methods.
7978 * value.c (make_cv_value): New function.
7979 * value.h (make_cv_value): Declare.
7980
7981 2015-05-08 Yao Qi <yao@codesourcery.com>
7982 Sandra Loosemore <sandra@codesourcery.com>
7983
7984 * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
7985 to 'lh->include_dirs' before accessing to it.
7986 (psymtab_include_file_name): Likewise.
7987 (dwarf_decode_lines_1): Likewise.
7988 (dwarf_decode_lines): Likewise.
7989 (file_file_name): Likewise.
7990
7991 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
7992
7993 * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
7994 (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
7995 (nios2_linux_rt_sigreturn_init): Adjust base address of
7996 register save area.
7997
7998 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
7999
8000 * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
8001 "trap 31" as the breakpoint instruction on all targets.
8002
8003 2015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8004
8005 * infcmd.c (print_return_value): Remove unused declaration.
8006
8007 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8008
8009 * dwarf2read.c (attr_to_dynamic_prop)
8010 <DW_AT_data_member_location>: Use read_type_die isntead of
8011 get_die_type.
8012
8013 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8014
8015 * ada-lang.c (ada_convert_actual): Add handling of formals
8016 passed inside an aligner type.
8017
8018 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8019
8020 * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
8021
8022 2015-05-08 Siva Chandra Reddy <sivachandra@google.com>
8023
8024 PR python/18291
8025 * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
8026 Print xmethod matcher status.
8027
8028 2015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com>
8029
8030 * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
8031 register in the regcache when treating the PSWM register, and vice
8032 versa.
8033
8034 2015-05-07 Gary Benson <gbenson@redhat.com>
8035
8036 * linux-thread-db.c (struct thread_db_info)
8037 <td_ta_map_id2thr_p>: Remove field.
8038 (try_thread_db_load_1): Remove initialization for the above.
8039
8040 2015-05-07 Gary Benson <gbenson@redhat.com>
8041
8042 * linux-thread-db.c (struct thread_db_info)
8043 <td_thr_validate_p>: Remove field.
8044 (try_thread_db_load_1): Remove initialization for the above.
8045
8046 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8047
8048 * compile/compile-object-load.c (compile_object_load): Support
8049 mst_text_gnu_ifunc.
8050
8051 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8052
8053 * compile/compile.c (compile_to_object): Make the cmd_string parameter
8054 const. Use new variables for the const compatibility.
8055 (eval_compile_command): Make the cmd_string parameter const.
8056 * compile/compile.h (eval_compile_command): Make the cmd_string
8057 parameter const.
8058
8059 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8060
8061 * defs.h (deprecated_init_ui_hook): Delete. Remove associated
8062 comment.
8063 * top.c (deprecated_init_ui_hook): Delete.
8064 (gdb_init): Remove handling of deprecated_init_ui_hook.
8065 * interps.c (clear_interpreter_hooks): Remove handling of
8066 deprecated_init_ui_hook.
8067 * main.c (captured_main): Update comment.
8068
8069 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8070
8071 * solib.c (_initialize_solib): Add "info dll" alias creation.
8072 * windows-nat.c (set_windows_aliases): Delete.
8073 (_initialize_windows_nat): Remove deprecated_init_ui_hook
8074 assignment.
8075 * NEWS: Add news entry about "info dll" now being available
8076 on all platforms.
8077
8078 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8079
8080 * ada-lang.c (value_assign_to_component): Reformat and improve
8081 documentation. Remove all trailing spaces.
8082
8083 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8084
8085 * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
8086 Stop counting inlined frames as soon as an out-of-line function
8087 is found.
8088
8089 2014-05-05 Pierre-Marie de Rodat <derodat@adacore.com>
8090
8091 * dwarf2read.c (inherit_abstract_dies): Skip
8092 DW_TAG_GNU_call_site dies while inheriting children of an
8093 abstract DIE into a scope.
8094 (read_lexical_block_scope): Inherit abstract DIE's for
8095 lexical scopes.
8096
8097 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8098
8099 * ada-valprint.c (val_print_packed_array_elements): Delete
8100 variable "len". Add a type-length check when comparing two
8101 consecutive elements of the array. Use the element's actual
8102 length in call to value_contents_eq.
8103 * ada-lang.c (ada_value_primitive_packed_val): Always return
8104 a value whose type has been resolved.
8105
8106 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8107
8108 * ada-lang.c (ada_value_primitive_packed_val): Recompute
8109 BIT_SIZE and LEN if the size of the resolved type is smaller
8110 than BIT_SIZE * HOST_CHAR_BIT.
8111
8112 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8113
8114 * ada-lang.c (ada_value_primitive_packed_val): Use a more
8115 correct address in call to value_at. Adjust call to
8116 value_address accordingly.
8117
8118 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8119
8120 * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
8121 to print it.
8122
8123 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8124
8125 * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
8126 * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
8127 pinfo->valaddr.
8128 * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
8129 * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
8130 (resolve_dynamic_type_internal): Set pinfo.valaddr.
8131 Add handling of addr_stack->valaddr.
8132 (resolve_dynamic_type): Add "valaddr" parameter.
8133 Set pinfo.valaddr field.
8134 * ada-lang.c (ada_discrete_type_high_bound): Update call to
8135 resolve_dynamic_type.
8136 (ada_discrete_type_low_bound): Likewise.
8137 * findvar.c (default_read_var_value): Likewise.
8138 * value.c (value_from_contents_and_address): Likewise.
8139
8140 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8141
8142 * gdbtypes.c (resolve_dynamic_array): Use
8143 create_array_type_with_stride instead of create_array_type.
8144
8145 2015-04-30 DJ Delorie <dj@redhat.com>
8146
8147 * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
8148 rl78_decode_opcode
8149
8150 2015-04-29 Doug Evans <dje@google.com>
8151
8152 PR python/18285
8153 * NEWS: Document new gdb.XMethodWorker.get_result_type method.
8154 * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
8155 EVAL_AVOID_SIDE_EFFECTS for xmethods.
8156 * extension-priv.h (struct extension_language_ops)
8157 <get_xmethod_result_type>: New member.
8158 * extension.c (get_xmethod_result_type): New function.
8159 * extension.h (get_xmethod_result_type): Declare.
8160 * python/py-xmethods.c (get_result_type_method_name): New static
8161 global.
8162 (py_get_result_type_method_name): Ditto.
8163 (gdbpy_get_xmethod_result_type): New function.
8164 (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
8165 * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
8166 * python/python.c (python_extension_ops): Add
8167 gdbpy_get_xmethod_result_type.
8168 * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
8169 * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
8170 xmethods.
8171 (value_x_unop): Ditto.
8172 * value.c (result_type_of_xmethod): New function.
8173 * value.h (result_type_of_xmethod): Declare.
8174
8175 2015-04-29 Gary Benson <gbenson@redhat.com>
8176
8177 * solib.c (solib_find_1): Allow fd argument to be NULL.
8178 (exec_file_find): Update comment.
8179 (solib_find): Likewise.
8180 * exec.c (exec_file_locate_attach): Use NULL as fd
8181 argument to exec_file_find to avoid having to close
8182 the opened file.
8183 * infrun.c (follow_exec): Likewise.
8184
8185 2015-04-28 Doug Evans <dje@google.com>
8186
8187 PR python/18299
8188 * python/lib/gdb/printing.py (register_pretty_printer): Handle
8189 name or __name__ attributes. Handle gdb module as first argument.
8190
8191 2015-04-28 Doug Evans <dje@google.com>
8192
8193 PR python/18089
8194 * python/py-prettyprint.c (print_children): Verify result of children
8195 iterator. Provide better error message.
8196 * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
8197 * python/python.c (gdbpy_print_python_errors_p): New function.
8198
8199 2015-04-28 Doug Evans <dje@google.com>
8200
8201 * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
8202
8203 2015-04-28 Sasha Smundak <asmundak@google.com>
8204
8205 * NEWS: Mention gdb.Type.optimized_out method.
8206 * python/py-type.c (typy_optimized_out): New function.
8207
8208 2015-04-28 John Baldwin <jhb@FreeBSD.org>
8209
8210 * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
8211
8212 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8213
8214 * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
8215 (initialize_utils): Move call of init_page_info() to ...
8216 * top.c (gdb_init): ... here.
8217
8218 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8219
8220 * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
8221 (tui_sigwinch_handler): Still update our idea of
8222 the terminal's width and height even when TUI is not active.
8223
8224 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8225
8226 * utils.h (set_screen_width_and_height): Declare.
8227 * utils.c (set_screen_width_and_height): Define.
8228 * tui/tui-win.c (tui_update_gdb_sizes): Use it.
8229
8230 2015-04-28 Gary Benson <gbenson@redhat.com>
8231
8232 * infrun.c (solist.h): New include.
8233 (follow_exec): Use exec_file_find to prefix execd_pathname
8234 with gdb_sysroot.
8235
8236 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8237
8238 * tui/tui-source.c (tui_set_source_content): Avoid calling
8239 strcpy() when offset is 0.
8240
8241 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8242
8243 PR gdb/18155
8244 * tui/tui-data.c (tui_free_window): Don't free the locator
8245 window when passed an SRC_WIN or a DISASSEM_WIN.
8246
8247 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8248
8249 * tui/tui-data.h (struct tui_win_element): Forward-declare.
8250 (tui_win_content): Move declaration.
8251 (struct tui_gen_win_info): Give 'content' field the
8252 type tui_win_content.
8253 * tui/tui-data.c (init_content_element): Remove redundant and
8254 erroneous casts.
8255 (tui_add_content_elements): Remove erroneous cast.
8256 * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
8257 casts.
8258 (tui_get_begin_asm_address): Likewise.
8259 * tui/tui-regs.c (tui_show_registers): Likewise.
8260 (tui_show_register_group): Likewise.
8261 (tui_display_registers_from): Likewise.
8262 (tui_check_register_values): Likewise.
8263 * tui/tui-source.c (tui_set_source_content): Likewise.
8264 (tui_set_source_content_nil): Likewise.
8265 (tui_source_is_displayed): Likewise.
8266 * tui/tui-stack.c (tui_show_locator_content): Likewise.
8267 (tui_set_locator_fullname): Likewise.
8268 (tui_set_locator_info): Likewise.
8269 (tui_show_frame_info): Likewise.
8270 * tui/tui-winsource.c (tui_clear_source_content): Likewise.
8271 (tui_show_source_line): Likewise.
8272 (tui_horizontal_source_scroll): Likewise.
8273 (tui_update_breakpoint_info): Likewise.
8274 (tui_set_exec_info_content): Likewise.
8275 (tui_show_exec_info_content): Likewise.
8276 (tui_alloc_source_buffer): Likewise.
8277 (tui_line_is_displayed): Likewise.
8278 (tui_addr_is_displayed): Likewise.
8279
8280 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8281
8282 * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
8283 event if PL_FLAG_EXEC is set.
8284 [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
8285 [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
8286 (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
8287 "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
8288 Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
8289
8290 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8291
8292 * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
8293 [TDP_RFPPWAIT] New variable fbsd_pending_children.
8294 [TDP_RFPPWAIT] (fbsd_remember_child): New function.
8295 [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
8296 [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
8297 [PT_LWPINFO] (fbsd_wait): New function.
8298 [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
8299 [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
8300 [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
8301 [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
8302 [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
8303 [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
8304 [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
8305 [TDP_RFPPWAIT] (fbsd_post_attach): New function.
8306 (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
8307 "fbsd_wait".
8308 [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
8309 Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
8310 Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
8311 Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
8312 Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
8313 Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
8314 Set "to_post_attach" to "fbsd_post_attach".
8315
8316 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8317
8318 * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
8319 (fbsd_find_memory_regions): Mark static.
8320 (fbsd_nat_add_target): New function.
8321 * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
8322 fbsd_pid_to_exec_file and fbsd_find_memory_regions.
8323 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
8324 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
8325 * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
8326 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
8327
8328 2015-04-27 Gary Benson <gbenson@redhat.com>
8329
8330 * objfiles.c (allocate_objfile): Do not attempt to expand name
8331 if name is a "target:" filename.
8332 * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
8333 to load auto-load scripts for objfiles with "target:" filenames.
8334
8335 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8336
8337 * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
8338 (enum s390_vector_abi_kind): New enum.
8339 (struct gdbarch_tdep)<vector_abi>: New field.
8340 (s390_effective_inner_type): Add parameter min_size. Stop
8341 unwrapping if the inner type is smaller than min_size.
8342 (s390_function_arg_float): Adjust call to
8343 s390_effective_inner_type.
8344 (s390_function_arg_vector): New function.
8345 (s390_function_arg_integer): Adjust comment.
8346 (struct s390_arg_state)<vr>: New field.
8347 (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector
8348 arguments according to vector ABI when appropriate.
8349 (s390_push_dummy_call): Initialize the argument state's field
8350 'vr'. Adjust calls to s390_handle_arg.
8351 (s390_register_return_value): Handle vector return values.
8352 (s390_return_value): Apply the "register" return value convention
8353 to a vector when appropriate.
8354 (s390_gdbarch_init): Initialize tdep->vector_abi.
8355 * NEWS: Announce S390 vector ABI support.
8356
8357 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8358
8359 * s390-linux-tdep.c (s390_return_value_convention): Remove
8360 function. Inline its logic...
8361 (s390_return_value): ...here. Instead, move the handling of the
8362 "register" return value convention...
8363 (s390_register_return_value): ...here. New function.
8364
8365 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8366
8367 * s390-linux-tdep.c
8368 (is_float_singleton): Remove function. Move the "singleton" part
8369 of the logic...
8370 (s390_effective_inner_type): ...here. New function.
8371 (is_float_like): Remove function. Inline its logic...
8372 (s390_function_arg_float): ...here.
8373 (is_pointer_like, is_integer_like, is_struct_like): Remove
8374 functions. Inline their logic...
8375 (s390_function_arg_integer): ...here.
8376 (s390_function_arg_pass_by_reference): Remove function.
8377 (extend_simple_arg): Remove function.
8378 (alignment_of): Remove function.
8379 (struct s390_arg_state): New structure.
8380 (s390_handle_arg): New function.
8381 (s390_push_dummy_call): Move parameter placement logic to the new
8382 function s390_handle_arg. Call it for calculating the stack area
8383 sizes first, and again for actually writing the parameters.
8384
8385 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8386
8387 * s390-linux-tdep.c (is_power_of_two): Add comment. Return
8388 false if the argument is zero.
8389
8390 2015-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
8391
8392 * ada-lang.c (template_to_static_fixed_type): Return input type
8393 when it is already fixed. Cache the input type itself when not
8394 creating a static fixed copy. Make it explicit that we never
8395 molestate the input type.
8396 * gdbtypes.c (resolve_dynamic_struct): Reset the
8397 TYPE_TARGET_TYPE field for resolved copies.
8398
8399 2015-04-27 Joel Brobecker <brobecker@adacore.com>
8400
8401 * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
8402 (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
8403 (template_to_static_fixed_type): Call ada_check_typedef only
8404 when necessary.
8405
8406 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
8407
8408 * cli/cli-dump.c (srec_dump_command): Add internationalization
8409 mark ups.
8410 (ihex_dump_command): Likewise.
8411 (tekhex_dump_command): Likewise.
8412 (binary_dump_command): Likewise.
8413 (binary_append_command): Likewise.
8414
8415 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
8416
8417 * cli/cli-dump.c (verilog_cmdlist): New variable.
8418 (dump_verilog_memory): New function.
8419 (dump_verilog_value): New function.
8420 (verilog_dump_command): New function.
8421 (_initialize_cli_dump): Add new commands to support verilog dump
8422 format.
8423 * NEWS: Add entry for "dump verilog".
8424
8425 2015-04-24 Pierre-Marie de Rodat <derodat@adacore.com>
8426
8427 * gdbtypes.c (print_gnat_stuff): Do not recurse on the
8428 descriptive type when there is none.
8429
8430 2015-04-23 Patrick Palka <patrick@parcs.ath.cx>
8431
8432 * tui/tui-win.c (tui_async_resize_screen): Call
8433 rl_resize_terminal().
8434
8435 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
8436
8437 * windows-nat.c (handle_output_debug_string): Don't change
8438 current_event.dwThreadId.
8439 (get_windows_debug_event): Use thread_id, rather than relying on
8440 current_event.dwThreadId being changed.
8441
8442 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
8443
8444 * windows-nat.c (windows_continue): Report an error if
8445 ContinueDebugEvent() fails.
8446
8447 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8448
8449 * windows-nat.c (windows_resume): Fix misspelling in debug output.
8450
8451 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8452
8453 * windows-nat.c (get_windows_debug_event): Replace retval with
8454 thread_id throughout. Update stale comment.
8455
8456 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8457
8458 * windows-nat.c (get_windows_debug_event): Don't use ternary
8459 conditional operator.
8460
8461 2015-04-21 Pierre Muller <muller@sourceware.org>
8462
8463 PR pascal/17815
8464 p-exp.y (yylex): Reorganize code to return the matched pattern
8465 for a field of this.
8466
8467 2015-04-21 Gary Benson <gbenson@redhat.com>
8468
8469 * common/fileio.h (fileio_to_host_openflags): New declaration.
8470 * common/fileio.c (fcntl.h): New include.
8471 (fileio_to_host_openflags): New function, factored out from...
8472 * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
8473 Single use updated.
8474
8475 2015-04-21 Kevin Buettner <kevinb@redhat.com>
8476
8477 * rl78-tdep.c (RL78_SP_ADDR): Define.
8478 (opc_reg_to_gdb_regnum): New static function.
8479 (rl78_analyze_prologue): Recognize instructions forming slightly
8480 more interesting prologues.
8481
8482 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
8483
8484 Revert:
8485 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8486 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
8487 TYPE_CODE_REF types so that they are not considered as dynamic
8488 depending on the referenced type.
8489 (resolve_dynamic_type_internal): Likewise.
8490
8491 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
8492
8493 Revert:
8494 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8495 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
8496 "top_level" parameter.
8497 (resolve_dynamic_type_internal): Remove the unused "top_level"
8498 parameter. Update call to is_dynamic_type_internal.
8499 (is_dynamic_type): Update call to is_dynamic_type_internal.
8500 (resolve_dynamic_range): Update call to
8501 resolve_dynamic_type_internal.
8502 (resolve_dynamic_union): Likewise.
8503 (resolve_dynamic_struct): Likewise.
8504 (resolve_dynamic_type): Likewise.
8505
8506 2015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be>
8507
8508 * breakpoint.c (update_dprintf_command_list): Remove duplicated
8509 xmalloc.
8510
8511 2015-04-20 Thomas Schwinge <thomas@codesourcery.com>
8512
8513 * reply_mig_hack.awk: Robustify parsing.
8514
8515 * reply_mig_hack.awk: Don't bother to declare an intermediate
8516 function pointer variable.
8517
8518 2015-04-17 Doug Evans <dje@google.com>
8519
8520 * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
8521 to "exec_displacement" to avoid confusion with inner use of the name.
8522
8523 2015-04-17 Pedro Alves <palves@redhat.com>
8524
8525 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
8526 if HW point of TYPE isn't supported.
8527
8528 2015-04-17 Yao Qi <yao.qi@linaro.org>
8529 Pedro Alves <palves@redhat.com>
8530
8531 * target.h (target_can_use_hardware_watchpoint): Update comments.
8532 Remove trailing ";".
8533
8534 2015-04-17 Gary Benson <gbenson@redhat.com>
8535
8536 * remote.c (remote_add_inferior): New argument try_open_exec.
8537 If nonzero, attempt to open the inferior's executable file as
8538 the main executable if no main executable is open already.
8539 All callers updated.
8540 * NEWS: Mention that GDB now supports automatic location and
8541 retrieval of executable + files from remote targets.
8542
8543 2015-04-17 Gary Benson <gbenson@redhat.com>
8544
8545 * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
8546 * remote.c (PACKET_qXfer_exec_file): Likewise.
8547 (remote_protocol_features): Register the
8548 "qXfer:exec-file:read" feature.
8549 (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
8550 (remote_pid_to_exec_file): New function.
8551 (init_remote_ops): Initialize to_pid_to_exec_file.
8552 (_initialize_remote): Register new "set/show remote
8553 pid-to-exec-file-packet" command.
8554 * NEWS: Announce new qXfer:exec-file:read packet.
8555
8556 2015-04-17 Gary Benson <gbenson@redhat.com>
8557
8558 * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
8559 New declaration.
8560 * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
8561 New function, factored out from...
8562 * linux-nat.c (linux_child_pid_to_exec_file): ...here.
8563
8564 2015-04-17 Gary Benson <gbenson@redhat.com>
8565
8566 * exec.c (solist.h): New include.
8567 (exec_file_locate_attach): Prefix absolute executable
8568 paths with gdb_sysroot if set.
8569 * NEWS: Mention that executable paths may be prepended
8570 with sysroot.
8571
8572 2015-04-17 Gary Benson <gbenson@redhat.com>
8573
8574 * solist.h (exec_file_find): New declaration.
8575 * solib.c (solib_find_1): New function, factored out from...
8576 (solib_find): ...here.
8577 (exec_file_find): New function.
8578
8579 2015-04-17 Gary Benson <gbenson@redhat.com>
8580
8581 * gdbcore.h (exec_file_locate_attach): New declaration.
8582 * exec.c (exec_file_locate_attach): New function, factored
8583 out from...
8584 * infcmd.c (attach_command_post_wait): ...here.
8585
8586 2015-04-17 Mike Frysinger <vapier@gentoo.org>
8587
8588 * MAINTAINERS: Add myself for Blackfin/write-after-approval.
8589
8590 2015-04-16 Yao Qi <yao.qi@linaro.org>
8591
8592 * infrun.c (maybe_software_singlestep): Declare.
8593 (displaced_step_fixup): Call maybe_software_singlestep.
8594
8595 2015-04-15 Doug Evans <dje@google.com>
8596
8597 * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
8598
8599 2015-04-15 Doug Evans <dje@google.com>
8600
8601 * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
8602
8603 2015-04-15 Simon Marchi <simon.marchi@ericsson.com>
8604
8605 * python/lib/gdb/command/unwinders.py: Add parentheses.
8606
8607 2015-04-15 Yao Qi <yao.qi@linaro.org>
8608
8609 * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
8610
8611 2015-04-15 Yao Qi <yao.qi@linaro.org>
8612
8613 * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
8614
8615 2015-04-15 Yao Qi <yao.qi@linaro.org>
8616
8617 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
8618 dsc->insn_size instead of 4.
8619
8620 2015-04-14 Gary Benson <gbenson@redhat.com>
8621
8622 * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
8623 * minidebug.c (lzma_stat): Likewise.
8624 * solib-spu.c (spu_bfd_iovec_stat): Likewise.
8625 * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
8626
8627 2015-04-13 Stan Shebs <stanshebs@google.com>
8628
8629 * MAINTAINERS: Update my email address.
8630
8631 2015-04-13 John Baldwin <jhb@FreeBSD.org>
8632
8633 * amd64-tdep.c (amd64_target_description): New function.
8634 * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
8635 * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
8636 (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
8637 x86 extended save area.
8638 (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
8639 * amd64bsd-nat.h: Export amd64bsd_xsave_len.
8640 * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
8641 (_initialize_amd64fbsd_nat): Set "to_read_description" to
8642 "amd64fbsd_read_description".
8643 * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
8644 (amd64fbsd_supply_xstateregset): New function.
8645 (amd64fbsd_collect_xstateregset): New function.
8646 Add "amd64fbsd_xstateregset".
8647 (amd64fbsd_iterate_over_regset_sections): New function.
8648 (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
8649 "I386_FBSD_XSAVE_XCR0_OFFSET".
8650 Add "iterate_over_regset_sections" gdbarch method.
8651 Add "core_read_description" gdbarch method.
8652 * i386-tdep.c (i386_target_description): New function.
8653 * i386-tdep.h: Export i386_target_description and tdesc_i386.
8654 * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
8655 (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
8656 x86 extended save area.
8657 (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
8658 * i386bsd-nat.h: Export i386bsd_xsave_len.
8659 * i386fbsd-nat.c (i386fbsd_read_description): New function.
8660 (_initialize_i386fbsd_nat): Set "to_read_description" to
8661 "i386fbsd_read_description".
8662 * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
8663 (i386fbsd_core_read_description): New function.
8664 (i386fbsd_supply_xstateregset): New function.
8665 (i386fbsd_collect_xstateregset): New function.
8666 Add "i386fbsd_xstateregset".
8667 (i386fbsd_iterate_over_regset_sections): New function.
8668 (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
8669 "I386_FBSD_XSAVE_XCR0_OFFSET".
8670 Add "iterate_over_regset_sections" gdbarch method.
8671 Add "core_read_description" gdbarch method.
8672 * i386fbsd-tdep.h: New file.
8673
8674 2015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8675
8676 * NEWS (Changes since GDB 7.9): Add removed -xdb.
8677 * breakpoint.c (command_line_is_silent): Remove xdb_commands
8678 conditional.
8679 (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
8680 and lb.
8681 * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
8682 va.
8683 * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
8684 conditional.
8685 * defs.h (xdb_commands): Remove declaration.
8686 * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
8687 * guile/scm-cmd.c (command_classes): Remove xdb from comment.
8688 * infcmd.c (run_no_args_command, go_command): Remove.
8689 (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
8690 * infrun.c (xdb_handle_command): Remove.
8691 (_initialize_infrun): Remove xdb_commands for lz and z.
8692 * main.c (xdb_commands): Remove variable.
8693 (captured_main): Remove "xdb" from long_options.
8694 (print_gdb_help): Remove --xdb from help.
8695 * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
8696 * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
8697 * stack.c (backtrace_full_command, args_plus_locals_info)
8698 (current_frame_command): Remove.
8699 (_initialize_stack): Remove xdb_commands for t, T and l.
8700 * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
8701 * thread.c (_initialize_thread): Remove xdb_commands condition.
8702 * tui/tui-layout.c (tui_toggle_layout_command)
8703 (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
8704 (_initialize_tui_layout): Remove xdb_commands for td and ts.
8705 * tui/tui-regs.c (tui_scroll_regs_forward_command)
8706 (tui_scroll_regs_backward_command): Remove.
8707 (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
8708 * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
8709 (_initialize_tui_win): Remove xdb_commands for U and w.
8710 * utils.c (pagination_on_command, pagination_off_command): Remove.
8711 (initialize_utils): Remove xdb_commands for am and sm.
8712
8713 2015-04-10 Pedro Alves <palves@redhat.com>
8714
8715 * infrun.c (displaced_step_fixup): Switch to the event ptid
8716 earlier. If the thread stopped for a watchpoint and the
8717 target/arch has non-continuable watchpoints, cancel the displaced
8718 step.
8719 (resume): Don't start a displaced step if in-line step-over info
8720 is valid.
8721
8722 2015-04-10 Pedro Alves <palves@redhat.com>
8723
8724 * infrun.c (displaced_step_in_progress): New function.
8725 (do_target_resume): Advise target to report all signals if
8726 displaced stepping.
8727
8728 2015-04-10 Pedro Alves <palves@redhat.com>
8729
8730 PR gdb/18216
8731 * infrun.c (process_event_stop_test): Don't assume a step-resume
8732 is set if tp->stepped_breakpoint is true.
8733
8734 2015-04-10 Yao Qi <yao.qi@linaro.org>
8735
8736 * arm-tdep.c (install_alu_reg): Update comment.
8737 (thumb_copy_alu_reg): Remove local variable rn. Update
8738 debugging message. Use r2 instead of r1 in the modified
8739 instruction.
8740
8741 2015-04-10 Pedro Alves <palves@redhat.com>
8742
8743 PR gdb/13858
8744 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
8745 linux_displaced_step_location as gdbarch_displaced_step_location
8746 hook.
8747 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
8748 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
8749 * linux-tdep.c (linux_displaced_step_location): New function,
8750 based on ppc_linux_displaced_step_location.
8751 * linux-tdep.h (linux_displaced_step_location): New declaration.
8752 * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
8753 (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
8754 Delete.
8755 (ppc_linux_init_abi): Install linux_displaced_step_location as
8756 gdbarch_displaced_step_location hook, even without Cell/B.E..
8757 (_initialize_ppc_linux_tdep): Don't install
8758 ppc_linux_inferior_created as inferior_created observer.
8759 * s390-linux-tdep.c (s390_gdbarch_init): Install
8760 linux_displaced_step_location as gdbarch_displaced_step_location
8761 hook.
8762
8763 2015-04-09 Gary Benson <gbenson@redhat.com>
8764
8765 * common/common-remote-fileio.h: Rename to...
8766 * common/fileio.h: ...this. Update all references.
8767 (remote_fileio_to_fio_error): Rename to...
8768 (host_to_fileio_error): ...this.
8769 (remote_fileio_to_be): Rename to...
8770 (host_to_bigendian): ...this. Update all callers.
8771 (remote_fileio_to_fio_uint): Rename to...
8772 (host_to_fileio_uint): ...this. Update all callers.
8773 (remote_fileio_to_fio_time): Rename to...
8774 (host_to_fileio_time): ...this. Update all callers.
8775 (remote_fileio_to_fio_stat): Rename to...
8776 (host_to_fileio_stat): ...this.
8777 Update all references.
8778 * common/common-remote-fileio.c: Rename to...
8779 * common/fileio.c: ...this. Update all references.
8780 (remote_fileio_to_fio_error): Rename to...
8781 (host_to_fileio_error): ...this. Update all callers.
8782 (remote_fileio_mode_to_target): Rename to...
8783 (fileio_mode_pack): ...this. Update all callers.
8784 (remote_fileio_to_fio_mode): Rename to...
8785 (host_to_fileio_mode): ...this. Update all callers.
8786 (remote_fileio_to_fio_ulong): Rename to...
8787 (host_to_fileio_ulong): ...this. Update all callers.
8788 (remote_fileio_to_fio_stat): Rename to...
8789 (host_to_fileio_stat): ...this. Update all callers.
8790
8791 2015-04-09 Andy Wingo <wingo@igalia.com>
8792
8793 * guile/scm-frame.c (gdbscm_frame_read_register): New function.
8794 (frame_functions): Bind gdbscm_frame_read_register to
8795 frame-read-register.
8796 * guile/lib/gdb.scm (frame-read-register): Export.
8797
8798 2015-04-09 Gary Benson <gbenson@redhat.com>
8799
8800 * common/common-remote-fileio.h (remote_fileio_to_fio_error):
8801 New declaration.
8802 * common/common-remote-fileio.c (remote_fileio_to_fio_error):
8803 New function, factored out the named functions below.
8804 * inf-child.c (gdb/fileio.h): Remove include.
8805 (common-remote-fileio.h): New include.
8806 (inf_child_errno_to_fileio_error): Remove function. Update
8807 all callers to use remote_fileio_to_fio_error.
8808 * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
8809
8810 2015-04-09 Andy Wingo <wingo@igalia.com>
8811
8812 * MAINTAINERS (Write After Approval): Add Andy Wingo.
8813
8814 2015-04-09 H.J. Lu <hongjiu.lu@intel.com>
8815
8816 * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
8817 Replace $zlibdir with $ZLIBDIR in LDFLAGS.
8818 * configure: Regenerated.
8819
8820 2015-04-09 Pedro Alves <palves@redhat.com>
8821
8822 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
8823 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
8824 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
8825 * gnulib/import/Makefile.am: Update.
8826 * gnulib/import/Makefile.in: Update.
8827 * gnulib/import/m4/gnulib-cache.m4: Update.
8828 * gnulib/import/m4/gnulib-comp.m4: Update.
8829 * gnulib/import/m4/strtok_r.m4: New file.
8830 * gnulib/import/strtok_r.c: New file.
8831
8832 2015-04-09 Pedro Alves <palves@redhat.com>
8833
8834 * gnulib/update-gnulib.sh (aclocal version check): Filter out
8835 "called too early to check prototype".
8836
8837 2015-04-08 Sergio Durigan Junior <sergiodj@redhat.com>
8838
8839 PR python/16699
8840 * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
8841 use a caching mechanism. Adjust comments and code to reflect
8842 that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
8843 (cmdpy_completer_handle_brkchars): Adjust call to
8844 cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'.
8845 (cmdpy_completer): Likewise.
8846
8847 2015-04-08 Yao Qi <yao.qi@linaro.org>
8848
8849 * spu-tdep.c (spu_gdbarch_init): Don't call
8850 set_gdbarch_cannot_step_breakpoint.
8851
8852 2015-04-07 Sergio Durigan Junior <sergiodj@redhat.com>
8853
8854 * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
8855
8856 2015-04-07 Pedro Alves <palves@redhat.com>
8857
8858 * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
8859 (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
8860 (delete_exited_threads): New declaration.
8861 * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
8862 * linux-nat.c (linux_nat_update_thread_list): New function.
8863 (linux_nat_add_target): Install it.
8864 * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
8865 * thread.c (prune_threads): Use ALL_THREADS_SAFE.
8866 (delete_exited_threads): New function.
8867
8868 2015-04-07 Pedro Alves <pedro@codesourcery.com>
8869
8870 * infrun.c (resume) <displaced stepping debug output>: Get the
8871 leader thread's regcache, not resume_ptid's.
8872
8873 2015-04-06 Doug Evans <xdje42@gmail.com>
8874
8875 * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
8876 VAR_DOMAIN.
8877 (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
8878 Include symbol domain in debugging output.
8879
8880 2015-04-06 Pedro Alves <palves@redhat.com>
8881 Bernd Edlinger <bernd.edlinger@hotmail.de>
8882
8883 * configure.ac: Remove the mingw32-specific stub-termcap.o
8884 fallback, and instead fallback to the stub termcap on all hosts.
8885 * configure: Regenerate.
8886 * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
8887 symbols.
8888
8889 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8890
8891 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
8892 "top_level" parameter.
8893 (resolve_dynamic_type_internal): Remove the unused "top_level"
8894 parameter. Update call to is_dynamic_type_internal.
8895 (is_dynamic_type): Update call to is_dynamic_type_internal.
8896 (resolve_dynamic_range): Update call to
8897 resolve_dynamic_type_internal.
8898 (resolve_dynamic_union): Likewise.
8899 (resolve_dynamic_struct): Likewise.
8900 (resolve_dynamic_type): Likewise.
8901
8902 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8903
8904 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
8905 TYPE_CODE_REF types so that they are not considered as dynamic
8906 depending on the referenced type.
8907 (resolve_dynamic_type_internal): Likewise.
8908
8909 2015-04-02 H.J. Lu <hongjiu.lu@intel.com>
8910
8911 * Makefile.in (top_srcdir): New.
8912 * configure: Regenerated.
8913
8914 2015-04-02 Gary Benson <gbenson@redhat.com>
8915
8916 * NEWS: Announce the new default sysroot of "target:".
8917
8918 2015-04-02 Gary Benson <gbenson@redhat.com>
8919
8920 * main.c (captured_main): Set gdb_sysroot to "target:"
8921 if not otherwise set.
8922
8923 2015-04-02 Gary Benson <gbenson@redhat.com>
8924
8925 * exec.c (exec_file_attach): Support "target:" filenames.
8926
8927 2015-04-02 Gary Benson <gbenson@redhat.com>
8928
8929 * solib.c (solib_find): Strip "target:" prefix from sysroot
8930 if accessing local files.
8931
8932 2015-04-02 Gary Benson <gbenson@redhat.com>
8933
8934 * symfile.c (symfile_bfd_open): Reorder to remove duplicated
8935 checks and error messages.
8936
8937 2015-04-02 Gary Benson <gbenson@redhat.com>
8938
8939 * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
8940 (remote_filename_p): Remove declaration.
8941 (remote_bfd_open): Likewise.
8942 * remote.c (remote_bfd_iovec_open): Remove function.
8943 (remote_bfd_iovec_close): Likewise.
8944 (remote_bfd_iovec_pread): Likewise.
8945 (remote_bfd_iovec_stat): Likewise.
8946 (remote_filename_p): Likewise.
8947 (remote_bfd_open): Likewise.
8948 * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
8949 * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
8950 (gdb_bfd_open_maybe_remote): Remove function.
8951 (symfile_bfd_open): Replace remote filename check with
8952 target filename check.
8953 (reread_symbols): Use gdb_bfd_open.
8954 * build-id.c (gdbcore.h): New include.
8955 (build_id_to_debug_bfd): Use gdb_bfd_open.
8956 * infcmd.c (attach_command_post_wait): Remove remote filename
8957 check.
8958 * solib.c (solib_find): Replace remote-specific handling with
8959 target-specific handling. Update comments where necessary.
8960 (solib_bfd_open): Replace remote-specific handling with
8961 target-specific handling.
8962 (gdb_sysroot_changed): New function.
8963 (_initialize_solib): Call the above when gdb_sysroot changes.
8964 * windows-tdep.c (gdbcore.h): New include.
8965 (windows_xfer_shared_library): Use gdb_bfd_open.
8966
8967 2015-04-02 Gary Benson <gbenson@redhat.com>
8968
8969 * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
8970 (is_target_filename): New declaration.
8971 (gdb_bfd_has_target_filename): Likewise.
8972 (gdb_bfd_open): Update documentation comment.
8973 * gdb_bfd.c (target.h): New include.
8974 (gdb/fileio.h): Likewise.
8975 (is_target_filename): New function.
8976 (gdb_bfd_has_target_filename): Likewise.
8977 (fileio_errno_to_host): Likewise.
8978 (gdb_bfd_iovec_fileio_open): Likewise.
8979 (gdb_bfd_iovec_fileio_pread): Likewise.
8980 (gdb_bfd_iovec_fileio_close): Likewise.
8981 (gdb_bfd_iovec_fileio_fstat): Likewise.
8982 (gdb_bfd_open): Use target fileio to access paths prefixed
8983 with "target:" where necessary.
8984
8985 2015-04-02 Gary Benson <gbenson@redhat.com>
8986
8987 * target.h (struct target_ops) <to_filesystem_is_local>:
8988 New field.
8989 (target_filesystem_is_local): New macro.
8990 * target-delegates.c: Regenerate.
8991 * remote.c (remote_filesystem_is_local): New function.
8992 (init_remote_ops): Initialize to_filesystem_is_local.
8993
8994 2015-04-02 Gary Benson <gbenson@redhat.com>
8995
8996 * target.h (struct target_ops) <to_fileio_fstat>: New field.
8997 (target_fileio_fstat): New declaration.
8998 * target.c (target_fileio_fstat): New function.
8999 * inf-child.c (inf_child_fileio_fstat): Likewise.
9000 (inf_child_target): Initialize to_fileio_fstat.
9001 * remote.c (init_remote_ops): Likewise.
9002
9003 2015-04-01 Sasha Smundak <asmundak@google.com>
9004
9005 * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
9006 (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
9007 (py-unwind.o): New recipe.
9008 * NEWS: mention Python frame unwinding.
9009 * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
9010 gdb/unwinder.py and gdb/command/unwinder.py
9011 * python/lib/gdb/__init__.py (packages): Add frame_unwinders
9012 list.
9013 (execute_unwinders): New function.
9014 * python/lib/gdb/command/unwinders.py: New file.
9015 * python/lib/gdb/unwinder.py: New file.
9016 * python/py-objfile.c (objfile_object): Add frame_unwinders field.
9017 (objfpy_dealloc): Decrement frame_unwinders reference count.
9018 (objfpy_initialize): Create frame_unwinders list.
9019 (objfpy_get_frame_unwinders): New function.
9020 (objfpy_set_frame_unwinders): Ditto.
9021 (objfile_getset): Add frame_unwinders attribute to Objfile.
9022 * python/py-progspace.c (pspace_object): Add frame_unwinders field.
9023 (pspy_dealloc): Decrement frame_unwinders reference count.
9024 (pspy_initialize): Create frame_unwinders list.
9025 (pspy_get_frame_unwinders): New function.
9026 (pspy_set_frame_unwinders): Ditto.
9027 (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
9028 * python/py-unwind.c: New file.
9029 * python/python-internal.h (pspy_get_name_unwinders): New prototype.
9030 (objpy_get_frame_unwinders): New prototype.
9031 (gdbpy_initialize_unwind): New prototype.
9032 * python/python.c (gdbpy_apply_type_printers): Call
9033 gdbpy_initialize_unwind.
9034
9035 2015-04-01 Pedro Alves <palves@redhat.com>
9036
9037 * infrun.c (resume): Check currently_stepping after clearing
9038 stepped_breakpoint, not before.
9039
9040 2015-04-01 Pedro Alves <palves@redhat.com>
9041
9042 * infrun.c (print_target_wait_results): Print all the ptid
9043 elements.
9044
9045 2015-04-01 Pedro Alves <palves@redhat.com>
9046
9047 * infrun.c (keep_going): Also discard cleanups if inserting
9048 breakpoints fails.
9049
9050 2015-04-01 Pedro Alves <palves@redhat.com>
9051
9052 * infrun.c (wait_for_inferior): Install the
9053 finish_thread_state_cleanup cleanup across the whole function, not
9054 just around handle_inferior_event.
9055
9056 2015-04-01 Pedro Alves <palves@redhat.com>
9057
9058 * infrun.c (resume) <step past permanent breakpoint>: Use
9059 do_target_resume.
9060
9061 2015-04-01 Pedro Alves <palves@redhat.com>
9062
9063 * linux-nat.c (linux_handle_extended_wait): Always call set_running.
9064
9065 2015-04-01 Pierre-Marie de Rodat <derodat@adacore.com>
9066
9067 * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
9068
9069 2015-04-01 Pedro Alves <palves@redhat.com>
9070
9071 * linux-thread-db.c (record_thread): Readd the thread to gdb's
9072 list if it was marked exited.
9073
9074 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
9075
9076 * configure: Regenerated.
9077
9078 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9079 Jan Kratochvil <jan.kratochvil@redhat.com>
9080 Oleg Nesterov <oleg@redhat.com>
9081
9082 PR corefiles/16092
9083 * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
9084 New enum identifying the various options of the coredump_filter
9085 file.
9086 (struct smaps_vmflags): New struct.
9087 (use_coredump_filter): New variable.
9088 (decode_vmflags): New function.
9089 (mapping_is_anonymous_p): Likewise.
9090 (dump_mapping_p): Likewise.
9091 (linux_find_memory_regions_full): New variables
9092 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
9093 Removed variable 'modified'. Read /proc/<PID>/smaps file; improve
9094 parsing of its information. Implement memory mapping filtering
9095 based on its contents.
9096 (show_use_coredump_filter): New function.
9097 (_initialize_linux_tdep): New command 'set use-coredump-filter'.
9098 * NEWS: Mention the possibility of using the
9099 '/proc/PID/coredump_filter' file when generating a corefile.
9100 Mention new command 'set use-coredump-filter'.
9101
9102 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9103
9104 * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
9105 read_memory_unsigned_integer.
9106
9107 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
9108
9109 * Makefile.in (ZLIB): New.
9110 (ZLIBINC): Likewise.
9111 (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
9112 (CLIBS): Add $(ZLIB).
9113 * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
9114 Add -lz to LIBS.
9115 * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
9116 * top.c (print_gdb_configuration): Remove --with-zlib and
9117 --without-zlib.
9118 * config.in: Regenerated.
9119 * configure: Likewise.
9120
9121 2015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com>
9122
9123 * NEWS: Mention info os cpus support.
9124 * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
9125 (struct osdata_type): Add cpus entry, reorder the entries in
9126 alphabetical order.
9127
9128 2015-03-31 Matthias Klose <doko@ubuntu.com>
9129
9130 * compile/compile.c (compile_to_object): Allow triplets with or
9131 without vendor set.
9132
9133 2015-03-30 Doug Evans <dje@google.com>
9134
9135 PR c++/18141
9136 * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
9137 klass in VAR_DOMAIN.
9138
9139 2015-03-30 Gary Benson <gbenson@redhat.com>
9140
9141 * remote.c (remote_mourn_1): Remove function. Update all callers
9142 to use remote_mourn.
9143 (extended_remote_mourn_1): Remove function. Update all callers
9144 to use extended_remote_mourn.
9145 (extended_remote_attach_1): Remove function. Update all callers
9146 to use extended_remote_attach.
9147
9148 2015-03-28 James Bowman <james.bowman@ftdichip.com>
9149
9150 * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
9151 (HFILES_NO_SRCDIR): Add ft32-tdep.h.
9152 (ALLDEPFILES): Add ft32-tdep.c.
9153 * configure.tgt: Add FT32 entry.
9154 * ft32-tdep.c: New file, FT32 target-dependent code.
9155 * ft32-tdep.h: New file, FT32 target-dependent code.
9156
9157 2015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9158
9159 Revert:
9160 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9161 Code cleanup.
9162 * printcmd.c (print_command_1): Move expr variable scope.
9163
9164 2015-03-27 Joel Brobecker <brobecker@adacore.com>
9165
9166 * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
9167
9168 2015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com>
9169
9170 * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
9171 sections.
9172
9173 2015-03-26 Joel Brobecker <brobecker@adacore.com>
9174
9175 * dtrace-probe.c (dtrace_process_dof_probe): Contain any
9176 exception raised while parsing the probe arguments.
9177 Force parsing to be done using the C language parser.
9178 * expression.h (parse_expression_with_language): Declare.
9179 * parse.c (parse_expression_with_language): New function.
9180
9181 2015-03-26 Jon Turney <jon.turney@dronecode.org.uk>
9182
9183 * MAINTAINERS (Write After Approval): Add "Jon Turney".
9184
9185 2015-03-26 Andy Wingo <wingo@igalia.com>
9186
9187 PR symtab/18148
9188 * dwarf2read.c (struct partial_die_info): Add has_const_value
9189 member.
9190 (add_partial_symbol): Don't punt on symbols that have const_value
9191 attributes.
9192 (read_partial_die): Detect DW_AT_const_value.
9193
9194 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9195
9196 Code cleanup.
9197 * printcmd.c (print_command_1): Move expr variable scope.
9198
9199 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9200
9201 Code cleanup.
9202 * printcmd.c (validate_format): Make the parameter cmdname const.
9203
9204 2015-03-26 Don Breazeal <donb@codesourcery.com>
9205
9206 * remote.c (_initialize_remote): Update comment.
9207
9208 2015-03-26 Pedro Alves <palves@redhat.com>
9209 Jon TURNEY <jon.turney@dronecode.org.uk>
9210
9211 * coffread.c (coff_symfile_read): When constructing the name of an
9212 import stub symbol from import symbol for amd64, only skip the
9213 char after _imp_ if the target is underscored (like i386) and the
9214 char is indeed the target's leading char.
9215
9216 2015-03-25 Pedro Alves <palves@redhat.com>
9217
9218 * target.h <to_async>: Replace 'callback' and 'context' parameters
9219 with boolean 'enable' parameter.
9220 (target_async): Replace CALLBACK and CONTEXT parameters with
9221 boolean ENABLE parameter.
9222 * inf-loop.c (inferior_event_handler): Adjust.
9223 * linux-nat.c (linux_nat_attach, linux_nat_resume)
9224 (linux_nat_resume): Adjust.
9225 (async_client_callback, async_client_context): Delete.
9226 (handle_target_event): Call inferior_event_handler directly.
9227 (linux_nat_async): Replace 'callback' and 'context' parameters
9228 with boolean 'enable' parameter. Adjust. Remove references to
9229 async_client_callback and async_client_context.
9230 (linux_nat_close): Adjust.
9231 * record-btrace.c (record_btrace_async): Replace 'callback' and
9232 'context' parameters with boolean 'enable' parameter. Adjust.
9233 (record_btrace_resume): Adjust.
9234 * record-full.c (record_full_async): Replace 'callback' and
9235 'context' parameters with boolean 'enable' parameter. Adjust.
9236 (record_full_resume, record_full_core_resume): Adjust.
9237 * remote.c (struct remote_state) <async_client_callback,
9238 async_client_context>: Delete fields.
9239 (remote_start_remote, extended_remote_attach_1, remote_resume)
9240 (extended_remote_create_inferior): Adjust.
9241 (remote_async_serial_handler): Call inferior_event_handler
9242 directly.
9243 (remote_async): Replace 'callback' and 'context' parameters with
9244 boolean 'enable' parameter. Adjust.
9245 * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
9246 Adjust.
9247 * target-delegates.c: Regenerate.
9248
9249 2015-03-25 Gary Benson <gbenson@redhat.com>
9250 Pedro Alves <palves@redhat.com>
9251
9252 * target.c (fileio_ft_t): New typedef, define object vector.
9253 (fileio_fhandles): New static variable.
9254 (is_closed_fileio_fh): New macro.
9255 (lowest_closed_fd): New static variable.
9256 (acquire_fileio_fd): New function.
9257 (release_fileio_fd): Likewise.
9258 (fileio_fd_to_fh): New macro.
9259 (target_fileio_open): Wrap the file descriptor on success.
9260 (target_fileio_pwrite): Updated to use wrapped file descriptor.
9261 (target_fileio_pread): Likewise.
9262 (target_fileio_close): Likewise.
9263
9264 2015-03-24 Pedro Alves <palves@redhat.com>
9265
9266 * thread.c (thread_apply_all_command): Take exited threads into
9267 account.
9268
9269 2015-03-24 Pedro Alves <palves@redhat.com>
9270
9271 * infrun.c (resume, proceed): Mention
9272 switch_back_to_stepped_thread, not switch_back_to_stepping.
9273
9274 2015-03-24 Pedro Alves <palves@redhat.com>
9275
9276 * infrun.c (user_visible_resume_ptid): Rewrite going from
9277 most-locked to unlocked instead of the opposite. Move comment ...
9278 * infrun.h (user_visible_resume_ptid): ... here.
9279
9280 2015-03-24 Pedro Alves <palves@redhat.com>
9281
9282 * linux-nat.c (linux_nat_resume): Output debug logs before trying
9283 to resume the event lwp. Use the lwp's ptid instead of the passed
9284 in (maybe wildcard) ptid.
9285 (stop_wait_callback): Tweak debug log output.
9286 (check_stopped_by_breakpoint): Tweak debug log output. Also dump
9287 TRAP_TRACE.
9288 (linux_nat_filter_event): In debug output, distinguish a
9289 resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs
9290 before trying to resume the lwp.
9291
9292 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9293
9294 * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
9295 pointer indirection.
9296 * gdbtypes.c (get_dyn_prop): Adjust, following change above.
9297 (add_dyn_prop, copy_dynamic_prop_list): Likewise.
9298
9299 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9300
9301 * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
9302 Renames DYN_ATTR_DATA_LOCATION.
9303 (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
9304 DYN_ATTR_DATA_LOCATION.
9305 * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
9306 instead of DYN_ATTR_DATA_LOCATION.
9307
9308 2015-03-24 Pedro Alves <palves@redhat.com>
9309
9310 * breakpoint.c (until_break_command): Adjust call to proceed.
9311 * gdbthread.h (struct thread_control_state) <stepping_command>:
9312 New field.
9313 * infcall.c (run_inferior_call): Adjust call to proceed.
9314 * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
9315 Adjust calls to proceed.
9316 (set_step_frame): Set the current thread's step_start_function
9317 here.
9318 (step_once): Adjust calls to proceed.
9319 (jump_command, signal_command, until_next_command)
9320 (finish_backward, finish_forward, proceed_after_attach_callback)
9321 (attach_command_post_wait): Adjust calls to proceed.
9322 * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
9323 (do_target_resume): New function, factored out from ...
9324 (resume): ... here. Remove 'step' parameter. Instead, check
9325 currently_stepping to determine whether the thread should be
9326 single-stepped.
9327 (proceed): Remove 'step' parameter and don't set the thread's
9328 step_start_function here. Adjust call to 'resume'.
9329 (handle_inferior_event): Adjust calls to 'resume'.
9330 (switch_back_to_stepped_thread): Use do_target_resume instead of
9331 'resume'.
9332 (keep_going): Adjust calls to 'resume'.
9333 * infrun.h (proceed): Remove 'step' parameter.
9334 (resume): Likewise.
9335 * windows-nat.c (do_initial_windows_stuff): Adjust call to
9336 'resume'.
9337 * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
9338
9339 2015-03-24 Pedro Alves <palves@redhat.com>
9340
9341 * gdbthread.h (struct thread_control_state) <stepping_command>:
9342 New field.
9343 * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set
9344 the thread's stepping_command field.
9345 * infrun.c (resume): Check the thread's stepping_command flag to
9346 determine which threads should be resumed. Rename 'entry_step'
9347 local to user_step.
9348 (clear_proceed_status_thread): Clear 'stepping_command'.
9349 (schedlock_applies): Change parameter type to struct thread_info
9350 pointer. Adjust.
9351 (find_thread_needs_step_over): Remove 'step' parameter. Adjust.
9352 (switch_back_to_stepped_thread): Adjust calls to
9353 'schedlock_applies'.
9354 (_initialize_infrun): Adjust "set scheduler-locking step" help.
9355
9356 2015-03-24 Pedro Alves <palves@redhat.com>
9357
9358 * infrun.c (step_start_function): Delete and ...
9359 * gdbthread.h (struct thread_control_state) <step_start_function>:
9360 ... now a field here.
9361 * infrun.c (clear_proceed_status_thread): Clear the thread's
9362 step_start_function.
9363 (proceed, process_event_stop_test, print_stop_event): Adjust.
9364
9365 2015-03-24 Pedro Alves <palves@redhat.com>
9366
9367 * infrun.c (proceed): No longer handle negative step.
9368
9369 2015-03-24 Gary Benson <gbenson@redhat.com>
9370
9371 * nat/x86-linux.h (x86_linux_new_thread): New declaration.
9372 (x86_linux_prepare_to_resume): Likewise.
9373 * x86-linux-nat.c (x86_linux_new_thread):
9374 Moved to nat/x86-linux.c.
9375 (x86_linux_prepare_to_resume): Likewise.
9376 * nat/x86-linux.c (x86_linux_new_thread): New function.
9377 (x86_linux_prepare_to_resume): Likewise.
9378
9379 2015-03-24 Gary Benson <gbenson@redhat.com>
9380
9381 * nat/x86-linux-dregs.h: New file.
9382 * nat/x86-linux-dregs.c: Likewise.
9383 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
9384 (x86-linux-dregs.o): New rule.
9385 * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
9386 * config/i386/linux64.mh (NATDEPFILES): Likewise.
9387 * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
9388 (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
9389 (x86_linux_dr_get): Likewise.
9390 (x86_linux_dr_set): Likewise.
9391 (x86_linux_dr_get_addr): Likewise.
9392 (x86_linux_dr_get_control): Likewise.
9393 (x86_linux_dr_get_status): Likewise.
9394 (update_debug_registers_callback): Likewise.
9395 (x86_linux_dr_set_control): Likewise.
9396 (x86_linux_dr_set_addr): Likewise.
9397 (x86_linux_update_debug_registers): Likewise.
9398
9399 2015-03-24 Gary Benson <gbenson@redhat.com>
9400
9401 * x86-linux-nat.c (x86_linux_update_debug_registers):
9402 New function, factored out from...
9403 (x86_linux_prepare_to_resume): ...this.
9404
9405 2015-03-24 Gary Benson <gbenson@redhat.com>
9406
9407 * x86-linux-nat.c (x86_linux_dr_get): Update comments.
9408 (x86_linux_dr_set): Likewise.
9409 (x86_linux_dr_get_addr): Likewise.
9410 (x86_linux_dr_get_control): Likewise.
9411 (x86_linux_dr_get_status): Likewise.
9412 (update_debug_registers_callback): Likewise.
9413 (x86_linux_dr_set_control): Likewise.
9414 (x86_linux_dr_set_addr): Likewise.
9415 (x86_linux_prepare_to_resume): Likewise.
9416 (x86_linux_new_thread): Likewise.
9417
9418 2015-03-24 Gary Benson <gbenson@redhat.com>
9419
9420 * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
9421 (x86_linux_new_thread): Rename argument.
9422
9423 2015-03-24 Gary Benson <gbenson@redhat.com>
9424
9425 * nat/x86-linux.h: New file.
9426 * nat/x86-linux.c: Likewise.
9427 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
9428 (x86-linux.o): New rule.
9429 * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
9430 * config/i386/linux64.mh (NATDEPFILES): Likewise.
9431 * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
9432 (lwp_set_arch_private_info): New declaration.
9433 (lwp_arch_private_info): Likewise.
9434 * linux-nat.c (lwp_set_arch_private_info): New function.
9435 (lwp_arch_private_info): Likewise.
9436 * x86-linux-nat.c: Include nat/x86-linux.h.
9437 (arch_lwp_info): Removed structure.
9438 (update_debug_registers_callback):
9439 Use lwp_set_debug_registers_changed.
9440 (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
9441 and lwp_set_debug_registers_changed.
9442 (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
9443
9444 2015-03-24 Gary Benson <gbenson@redhat.com>
9445
9446 * nat/linux-nat.h (ptid_of_lwp): New declaration.
9447 (lwp_is_stopped): Likewise.
9448 (lwp_stop_reason): Likewise.
9449 * linux-nat.c (ptid_of_lwp): New function.
9450 (lwp_is_stopped): Likewise.
9451 (lwp_is_stopped_by_watchpoint): Likewise.
9452 * x86-linux-nat.c (update_debug_registers_callback):
9453 Use lwp_is_stopped.
9454 (x86_linux_prepare_to_resume): Use ptid_of_lwp and
9455 lwp_stop_reason.
9456
9457 2015-03-24 Gary Benson <gbenson@redhat.com>
9458
9459 * linux-nat.h (linux_stop_lwp): Move declaration to...
9460 * nat/linux-nat.h (linux_stop_lwp): New declaration.
9461
9462 2015-03-24 Gary Benson <gbenson@redhat.com>
9463
9464 * linux-nat.h: Include nat/linux-nat.h.
9465 (iterate_over_lwps): Move declaration to nat/linux-nat.h.
9466 * nat/linux-nat.h (struct lwp_info): New forward declaration.
9467 (iterate_over_lwps_ftype): New typedef.
9468 (iterate_over_lwps): New declaration.
9469 * linux-nat.h (iterate_over_lwps): Update comment. Use
9470 iterate_over_lwps_ftype. Update callback return value check.
9471
9472 2015-03-24 Gary Benson <gbenson@redhat.com>
9473
9474 * x86-nat.h (x86_debug_reg_state): Move declaration to...
9475 * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
9476
9477 2015-03-24 Gary Benson <gbenson@redhat.com>
9478
9479 * nat/linux-nat.h (current_lwp_ptid): New declaration.
9480 * linux-nat.c (current_lwp_ptid): New function.
9481 * x86-linux-nat.c: Include nat/linux-nat.h.
9482 (x86_linux_dr_get_addr): Use current_lwp_ptid.
9483 (x86_linux_dr_get_control): Likewise.
9484 (x86_linux_dr_get_status): Likewise.
9485 (x86_linux_dr_set_control): Likewise.
9486 (x86_linux_dr_set_addr): Likewise.
9487
9488 2015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com>
9489
9490 PR breakpoints/16466
9491 * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
9492
9493 2015-03-23 Joel Brobecker <brobecker@adacore.com>
9494
9495 * ser-mingw.c (ser_windows_setparity): Fix indentation.
9496 * ser-unix.c (hardwire_setparity): Likewise.
9497
9498 2015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com>
9499
9500 * NEWS: Mention set/show serial parity command.
9501 * monitor.c (monitor_open): Call serial_setparity.
9502 * remote.c (remote_open_1): Likewise.
9503 * ser-base.c (ser_base_serparity): New function.
9504 * ser-base.h (ser_base_setparity): Add declaration.
9505 * ser-go32.c (dos_ops): Set "setparity" field.
9506 * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
9507 state.Parity.
9508 (ser_windows_setparity): New function.
9509 (hardwire_ops): Add ser_windows_setparity.
9510 (tty_ops): Add NULL for setparity field.
9511 (pipe_ops): Add ser_base_setparity.
9512 (tcp_ops): Likewise.
9513 * ser-pipe.c (pipe_ops): Likewise.
9514 * ser-tcp.c (tcp_ops): Likewise.
9515 * ser-unix.c (hardwire_setparity): Add declaration.
9516 (hardwire_raw): Don't reset PARENB flag.
9517 (hardwire_setparity): New function.
9518 (hardwire_ops): Add hardwire_setparity.
9519 * serial.c (serial_setparity): New function.
9520 (serial_parity): New global.
9521 (parity_none, parity_odd, parity_even, parity_enums, parity):
9522 New static globals.
9523 (set_parity): New function.
9524 (_initialize_serial): Add set/show serial parity commands.
9525 * serial.h (GDBPARITY_NONE): Define.
9526 (GDBPARITY_ODD): Define.
9527 (GDBPARITY_EVEN): Define.
9528 (serial_setparity) Add declaration.
9529 (struct serial_ops): Add setparity field.
9530 * target.h (serial_parity): Add declaration.
9531
9532 2015-03-23 Keith Seitz <keiths@redhat.com>
9533
9534 * linespec.c (linespec_lexer_lex_keyword): Update comment.
9535
9536 2015-03-23 Keith Seitz <keiths@redhat.com>
9537
9538 * breakpoint.c (parse_breakpoint_sals): Use
9539 linespec_lexer_lex_keyword to ascertain if the user specified
9540 a NULL location.
9541 * linespec.c [IF_KEYWORD_INDEX]: Define.
9542 (linespec_lexer_lex_keyword): Export.
9543 (struct ls_parser) <keyword_ok>: Remove.
9544 A keyword is only a keyword if not followed by another keyword.
9545 (linespec_lexer_lex_one): Remove keyword_ok handling.
9546 Add comment explaining why the parsing stream is not advanced
9547 when a keyword is seen.
9548 (parse_linespec): Remove parser->keyword_ok.
9549 * linespec.h (linespec_lexer_lex_keyword): Add declaration.
9550
9551 2015-03-23 Keith Seitz <keiths@redhat.com>
9552
9553 PR gdb/18021
9554 * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
9555 if we find a static method with DW_AT_vtable_elem_location.
9556
9557 2015-03-21 Eli Zaretskii <eliz@gnu.org>
9558
9559 * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
9560 before the second loop, to avoid undefined behavior. Reported by
9561 Anton Blanchard <anton@samba.org>.
9562
9563 2015-03-20 Keven Boell <keven.boell@intel.com>
9564
9565 * gdbtypes.c (resolve_dynamic_type_internal): Adapt
9566 data_location usage to linked list.
9567 (resolve_dynamic_type_internal): Adapt data_location to
9568 linked list.
9569 (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
9570 (copy_type_recursive, copy_type): Add copy of linked list.
9571 * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
9572 (struct dynamic_prop_list): New struct.
9573 * dwarf2read.c (set_die_type): Set data_location data.
9574
9575 2015-03-20 Pedro Alves <palves@redhat.com>
9576
9577 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
9578 inner block and make it const.
9579 * machoread.c (get_archive_prefix_len): Make "lparen" const.
9580
9581 2015-03-20 Pedro Alves <palves@redhat.com>
9582
9583 * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
9584 * breakpoint.h (set_breakpoint_condition): Update declaration.
9585
9586 2015-03-20 Pedro Alves <palves@redhat.com>
9587
9588 * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
9589
9590 2015-03-20 Pedro Alves <palves@redhat.com>
9591
9592 * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
9593
9594 2015-03-20 Pedro Alves <palves@redhat.com>
9595
9596 * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
9597
9598 2015-03-20 Pedro Alves <palves@redhat.com>
9599
9600 * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
9601 (nto_init_solib_absolute_prefix): Likewise.
9602
9603 2015-03-20 Pedro Alves <palves@redhat.com>
9604
9605 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
9606 * spu-tdep.c (spu_gdbarch_init): Make "name" const.
9607
9608 2015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9609
9610 * config/djgpp/README: Remove gdb.hp.
9611
9612 2015-03-20 Yao Qi <yao.qi@linaro.org>
9613
9614 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
9615 set_gdbarch_cannot_step_breakpoint.
9616
9617 2015-03-19 Pedro Alves <palves@redhat.com>
9618
9619 * linux-nat.c (linux_resume_one_lwp): Rename to ...
9620 (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here,
9621 instead call perror_with_name.
9622 (check_ptrace_stopped_lwp_gone): New function.
9623 (linux_resume_one_lwp): Reimplement as wrapper around
9624 linux_resume_one_lwp_throw that swallows errors if the LWP is
9625 gone.
9626 (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
9627 swallows errors if the LWP is gone. Use
9628 linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
9629
9630 2015-03-19 Pedro Alves <palves@redhat.com>
9631
9632 * linux-nat.c (status_callback): Return early if the LWP has no
9633 status pending.
9634
9635 2015-03-19 Pedro Alves <palves@redhat.com>
9636
9637 * linux-nat.c (select_event_lwp_callback): Update comment to no
9638 longer mention SIGTRAP.
9639
9640 2015-03-18 Tristan Gingold <gingold@adacore.com>
9641
9642 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
9643 redirection code to ...
9644 (amd64_windows_frame_decode_insns): ... Here. Fix in prologue
9645 checks. Fix SAVE_NONVOL operations. Add debug code and comments.
9646
9647 2015-03-18 Gary Benson <gbenson@redhat.com>
9648
9649 (remote_protocol_features): Remove the "vFile:fstat" feature.
9650 (remote_hostio_fstat): Probe for "vFile:fstat" support.
9651
9652 2015-03-11 Yao Qi <yao.qi@linaro.org>
9653
9654 PR tdep/18107
9655 * aarch64-linux-tdep.c: Include xml-syscall.h
9656 (aarch64_linux_get_syscall_number): New function.
9657 (aarch64_linux_init_abi): Call
9658 set_gdbarch_get_syscall_number.
9659 * syscalls/aarch64-linux.xml: New file.
9660
9661 2015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com>
9662
9663 * ser-base.h (ser_base_setstopbits): Change second argument name
9664 from "rate" to "num".
9665
9666 2015-03-17 Gary Benson <gbenson@redhat.com>
9667 Luke Allardyce <lukeallardyce@gmail.com>
9668
9669 PR gdb/18131
9670 * common/common-remote-fileio.h (sys/stat.h): New include.
9671 (stuct stat): Remove forward declaration.
9672
9673 2015-03-16 John Baldwin <jhb@FreeBSD.org>
9674
9675 * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
9676 before writing core register notes.
9677
9678 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
9679 Pedro Alves <palves@redhat.com>
9680
9681 * gdb_curses.h (tgetnum): Mark with EXTERN_C.
9682 * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
9683 (tgoto): Wrap with extern "C".
9684
9685 2015-03-16 Pedro Alves <palves@redhat.com>
9686 Yuanhui Zhang <asmwarrior@gmail.com>
9687
9688 * stub-termcap.c (tputs): Change prototype.
9689
9690 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
9691 Pedro Alves <palves@redhat.com>
9692
9693 * windows-nat.c (struct thread_info_struct): Rename to ...
9694 (struct windows_thread_info_struct): ... this.
9695 (thread_info): Rename to ...
9696 (windows_thread_info): ... this.
9697 All users updated.
9698
9699 2015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9700 Pedro Alves <palves@redhat.com>
9701
9702 * NEWS: New Removed targets and native configurations.
9703
9704 2015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9705
9706 Remove HPUX.
9707 * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
9708 (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
9709 (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
9710 ia64-hpux-tdep.h, solib-ia64-hpux.h.
9711 (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
9712 ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
9713 * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
9714 hppa-hpux-tdep.c.
9715 * config/ia64/hpux.mh: Remove file.
9716 * config/pa/hpux.mh: Remove file.
9717 * configure: Rebuilt.
9718 * configure.ac (dlgetmodinfo, somread.o): Remove.
9719 * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
9720 (ia64-*-hpux*): Remove its float format exception.
9721 * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
9722 * hppa-hpux-nat.c: Remove file.
9723 * hppa-hpux-tdep.c: Remove file.
9724 * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
9725 Move them here from hppa-tdep.h
9726 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
9727 (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
9728 * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
9729 Move them to hppa-tdep.c.
9730 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
9731 declarations.
9732 * ia64-hpux-nat.c: Remove file.
9733 * ia64-hpux-tdep.c: Remove file.
9734 * ia64-hpux-tdep.h: Remove file.
9735 * inf-ttrace.c: Remove file.
9736 * inf-ttrace.h: Remove file.
9737 * solib-ia64-hpux.c: Remove file.
9738 * solib-ia64-hpux.h: Remove file.
9739 * solib-pa64.c: Remove file.
9740 * solib-pa64.h: Remove file.
9741 * solib-som.c: Remove file.
9742 * solib-som.h: Remove file.
9743 * somread.c: Remove file.
9744
9745 2015-03-13 John Baldwin <jhb@FreeBSD.org>
9746
9747 * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
9748 * config.in: Regenerate.
9749 * configure: Regenerate.
9750 * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
9751 define.
9752 (fbsd_find_memory_regions): Use kinfo_getvmmap to
9753 enumerate memory regions if present.
9754
9755 2015-03-13 John Baldwin <jhb@FreeBSD.org>
9756
9757 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
9758 * i386fbsd-tdep.c: Fix style in various gdb_static_assert
9759 expressions.
9760 (i386fbsd_sigtramp_p): Likewise.
9761
9762 2015-03-12 John Baldwin <jhb@FreeBSD.org>
9763
9764 * MAINTAINERS (Write After Approval): Add John Baldwin.
9765
9766 2015-03-12 Gary Benson <gbenson@redhat.com>
9767
9768 * solib.c (_initialize_solib): Make "set/show sysroot" use
9769 add_setshow_optional_filename_cmd so it can be restored to
9770 empty after being set.
9771
9772 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
9773
9774 * Makefile.in (SFILES): New source break-catch-syscall.c.
9775 (COMMON_OBS): New object break-catch-syscall.o.
9776 * break-catch-syscall.c: New file.
9777 * breakpoint.c: Remove inclusion of "xml-syscall.h".
9778 (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
9779 (struct syscall_catchpoint): Likewise.
9780 (dtor_catch_syscall): Likewise.
9781 (catch_syscall_inferior_data): Likewise.
9782 (struct catch_syscall_inferior_data): Likewise.
9783 (get_catch_syscall_inferior_data): Likewise.
9784 (catch_syscall_inferior_data_cleanup): Likewise.
9785 (insert_catch_syscall): Likewise.
9786 (remove_catch_syscall): Likewise.
9787 (breakpoint_hit_catch_syscall): Likewise.
9788 (print_it_catch_syscall): Likewise.
9789 (print_one_catch_syscall): Likewise.
9790 (print_mention_catch_syscall): Likewise.
9791 (print_recreate_catch_syscall): Likewise.
9792 (catch_syscall_breakpoint_ops): Likewise.
9793 (syscall_catchpoint_p): Likewise.
9794 (create_syscall_event_catchpoint): Likewise.
9795 (catch_syscall_split_args): Likewise.
9796 (catch_syscall_command_1): Likewise.
9797 (is_syscall_catchpoint_enabled): Likewise.
9798 (catch_syscall_enabled): Likewise.
9799 (catching_syscall_number): Likewise.
9800 (catch_syscall_completer): Likewise.
9801 (clear_syscall_counts): Likewise.
9802 (initialize_breakpoint_ops): Move initialization of syscall
9803 catchpoints to break-catch-syscall.c.
9804 (_initialize_breakpoint): Move code related to syscall catchpoints
9805 to break-catch-syscall.c.
9806
9807 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
9808
9809 * breakpoint.c (breakpoint_find_if): New function.
9810 * breakpoint.h (breakpoint_find_if): New prototype.
9811
9812 2015-03-11 Gary Benson <gbenson@redhat.com>
9813
9814 * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
9815 * remote-fileio.c (remote_fileio_to_host_uint): New function.
9816 (remote_fileio_to_host_ulong): Likewise.
9817 (remote_fileio_to_host_mode): Likewise.
9818 (remote_fileio_to_host_time): Likewise.
9819 (remote_fileio_to_host_stat): Likewise.
9820 * remote.c (PACKET_vFile_fstat): New enum value.
9821 (remote_protocol_features): Register the "vFile:fstat" feature.
9822 (remote_hostio_fstat): New function.
9823 (remote_bfd_iovec_stat): Use the above.
9824 (_initialize_remote): Register new "set/show remote
9825 hostio-fstat-packet" command.
9826 * symfile.c (separate_debug_file_exists): Update comment.
9827 * NEWS: Announce new vFile:fstat packet.
9828
9829 2015-03-11 Gary Benson <gbenson@redhat.com>
9830
9831 * common/common-remote-fileio.h: New file.
9832 * common/common-remote-fileio.c: Likewise.
9833 * Makefile.in (SFILES): Add common/common-remote-fileio.c.
9834 (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
9835 (COMMON_OBS): Add common-remote-fileio.o.
9836 (common-remote-fileio.o): New rule.
9837 * remote-fileio.h (common-remote-fileio.h): New include.
9838 * remote-fileio.c (gdb/fileio.h): Do not include.
9839 (remote_fileio_to_be): Moved to common-remote-fileio.h.
9840 (remote_fileio_to_fio_uint): Likewise.
9841 (remote_fileio_to_fio_time): Likewise.
9842 (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
9843 (remote_fileio_to_fio_mode): Likewise.
9844 (remote_fileio_to_fio_ulong): Likewise.
9845 (remote_fileio_to_fio_stat): Likewise.
9846
9847 2015-03-11 Andy Wingo <wingo@igalia.com>
9848
9849 * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
9850 we were checking the cached type, not the cached dynamic type.
9851
9852 2015-03-11 Andy Wingo <wingo@igalia.com>
9853
9854 * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
9855 other strings, as these are on the GC'd heap, and will be
9856 collected along with the smob.
9857
9858 2015-03-11 Andy Wingo <wingo@igalia.com>
9859
9860 * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
9861 (objfile_functions): Bind gdbscm_objfile_progspace to
9862 objfile-progspace.
9863 * guile/lib/gdb.scm: Add objfile-progspace to exports.
9864
9865 2015-03-11 Andy Wingo <wingo@igalia.com>
9866
9867 * guile/guile.c (_initialize_guile): Disable automatic
9868 finalization, if Guile offers us that possibility.
9869 * guile/guile.c (call_initialize_gdb_module):
9870 * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
9871 finalizers in appropriate places.
9872 * configure.ac (AC_TRY_LIBGUILE): Add a check for
9873 scm_set_automatic_finalization_enabled.
9874 * configure: Regenerated.
9875
9876 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
9877
9878 * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
9879 SAL, if possible.
9880
9881 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
9882
9883 * s390-linux-nat.c (struct arch_lwp_info): New.
9884 (s390_fix_watch_points): Rename to...
9885 (s390_prepare_to_resume): ...this. Skip the PER info update
9886 unless the watch points have changed.
9887 (s390_refresh_per_info, s390_new_thread): New functions.
9888 (s390_insert_watchpoint): Call s390_refresh_per_info instead of
9889 s390_fix_watch_points.
9890 (s390_remove_watchpoint): Likewise.
9891 (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
9892 Register s390_prepare_to_resume.
9893
9894 2015-03-09 Pedro Alves <palves@redhat.com>
9895
9896 Revert:
9897 2015-03-07 Pedro Alves <palves@redhat.com>
9898 * common/gdb_socket.h: New file.
9899 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
9900 sys/socket.h.
9901 (net_open): Use union gdb_sockaddr_u.
9902
9903 2015-03-07 Pedro Alves <palves@redhat.com>
9904
9905 * configure.ac (build_warnings): Move -Wmissing-prototypes
9906 -Wdeclaration-after-statement -Wmissing-parameter-type
9907 -Wold-style-declaration -Wold-style-definition to the C-specific
9908 set.
9909 * configure: Regenerate.
9910
9911 2015-03-07 Pedro Alves <palves@redhat.com>
9912
9913 * common/gdb_socket.h: New file.
9914 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
9915 sys/socket.h.
9916 (net_open): Use union gdb_sockaddr_u.
9917
9918 2015-03-07 Pedro Alves <palves@redhat.com>
9919
9920 * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
9921 (exceptions_state_mc_action_iter)
9922 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
9923 Don't define.
9924 [__cplusplus] (try_scope_depth): New global.
9925 [__cplusplus] (exception_try_scope_entry)
9926 (exception_try_scope_exit, gdb_exception_sliced_copy)
9927 (exception_rethrow): New functions.
9928 (throw_exception): In C++ mode, throw
9929 gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
9930 gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
9931 (throw_it): In C++ mode, use try_scope_depth.
9932 * common/common-exceptions.h [!__cplusplus]
9933 (exceptions_state_mc_action_iter)
9934 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
9935 Don't declare.
9936 [__cplusplus] (exception_try_scope_entry)
9937 (exception_try_scope_exit, exception_rethrow): Declare.
9938 [__cplusplus] (struct exception_try_scope): New struct.
9939 [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
9940 C++ exceptions.
9941 (struct gdb_exception_RETURN_MASK_ALL)
9942 (struct gdb_exception_RETURN_MASK_ERROR)
9943 (struct gdb_exception_RETURN_MASK_QUIT): New types.
9944
9945 2015-03-07 Pedro Alves <palves@redhat.com>
9946
9947 * main.c (handle_command_errors): Remove volatile qualifier from
9948 parameter.
9949
9950 2015-03-07 Pedro Alves <palves@redhat.com>
9951
9952 * breakpoint.c (save_breakpoints): Adjust to avoid code between
9953 TRY and CATCH.
9954 * gdbtypes.c (safe_parse_type): Remove empty line.
9955 (types_deeply_equal):
9956 * guile/scm-frame.c (gdbscm_frame_name):
9957 * linux-thread-db.c (find_new_threads_once):
9958 * python/py-breakpoint.c (bppy_get_commands):
9959 * record-btrace.c (record_btrace_insert_breakpoint)
9960 (record_btrace_remove_breakpoint, record_btrace_start_replaying)
9961 (record_btrace_start_replaying): Adjust to avoid code between TRY
9962 and CATCH.
9963
9964 2015-03-07 Pedro Alves <palves@redhat.com>
9965
9966 * common/common-exceptions.c (struct catcher) <exception>: No
9967 longer a pointer to volatile exception. Now an exception value.
9968 <mask>: Delete field.
9969 (exceptions_state_mc_init): Remove all parameters. Adjust.
9970 (exceptions_state_mc): No longer pop the catcher here.
9971 (exceptions_state_mc_catch): New function.
9972 (throw_exception): Adjust.
9973 * common/common-exceptions.h (exceptions_state_mc_init): Remove
9974 all parameters.
9975 (exceptions_state_mc_catch): Declare.
9976 (TRY_CATCH): Rename to ...
9977 (TRY): ... this. Remove EXCEPTION and MASK parameters.
9978 (CATCH, END_CATCH): New.
9979 All callers adjusted.
9980
9981 2015-03-07 Tom Tromey <tromey@redhat.com>
9982
9983 * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
9984
9985 2015-03-07 Pedro Alves <palves@redhat.com>
9986
9987 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9988 (amd64_epilogue_frame_cache): Normal exception handling code.
9989 * break-catch-throw.c (check_status_exception_catchpoint)
9990 (re_set_exception_catchpoint): Ditto.
9991 * cli/cli-interp.c (safe_execute_command):
9992 * cli/cli-script.c (script_from_file): Ditto.
9993 * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
9994 Ditto.
9995 * compile/compile-object-run.c (compile_object_run): Ditto.
9996 * cp-abi.c (baseclass_offset): Ditto.
9997 * cp-valprint.c (cp_print_value): Ditto.
9998 * exceptions.c (catch_exceptions_with_msg):
9999 * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
10000 * frame.c (get_frame_address_in_block_if_available): Ditto.
10001 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
10002 (i386_sigtramp_frame_cache): Ditto.
10003 * infcmd.c (post_create_inferior): Ditto.
10004 * linespec.c (parse_linespec, find_linespec_symbols):
10005 * p-valprint.c (pascal_object_print_value): Ditto.
10006 * parse.c (parse_expression_for_completion): Ditto.
10007 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
10008 * remote.c (remote_get_noisy_reply): Ditto.
10009 * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
10010 * solib-svr4.c (solib_svr4_r_map): Ditto.
10011
10012 2015-03-06 Gary Benson <gbenson@redhat.com>
10013
10014 * common/common-utils.h (startswith): New inline function.
10015 All places where this logic was used updated to use the above.
10016
10017 2015-03-05 Pedro Alves <palves@redhat.com>
10018
10019 PR gdb/18002
10020 * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
10021 after reading the breakpoint's shadow memory.
10022
10023 2015-03-05 Mark Kettenis <kettenis@gnu.org>
10024
10025 * hppabsd-nat.c: Remove file.
10026 * hppaobsd-nat.c: New file.
10027 * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add
10028 hppaobsd-nat.c.
10029 * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
10030 hppaobsd-nat.o.
10031
10032 2015-03-04 Pedro Alves <palves@redhat.com>
10033
10034 * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
10035 (target_decr_pc_after_break): Delete declaration.
10036 * target.c (default_target_decr_pc_after_break)
10037 (target_decr_pc_after_break): Delete.
10038 * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
10039 gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
10040 * linux-thread-db.c (check_event): Likewise.
10041 * infrun.c (adjust_pc_after_break): Likewise.
10042 * darwin-nat.c (cancel_breakpoint): Likewise.
10043 * aix-thread.c (aix_thread_wait): Likewise.
10044 * target-delegates.c: Regenerate.
10045
10046 2015-03-04 Pedro Alves <palves@redhat.com>
10047
10048 * linux-nat.c (save_sigtrap): Check for breakpoints before
10049 checking watchpoints.
10050 (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
10051 breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
10052 (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
10053 a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
10054 (linux_nat_stopped_by_sw_breakpoint)
10055 (linux_nat_supports_stopped_by_sw_breakpoint)
10056 (linux_nat_stopped_by_hw_breakpoint)
10057 (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
10058 (linux_nat_wait_1): Don't re-increment the PC if relying on
10059 SIGTRAP's siginfo->si_code.
10060 (linux_nat_add_target): Install new target methods.
10061 * linux-thread-db.c (check_event): Don't account for breakpoint PC
10062 offset if the target already adjusted the PC.
10063 * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
10064 (GDB_ARCH_TRAP_BRKPT): New.
10065 (TRAP_HWBKPT): Define if not already defined.
10066
10067 2015-03-04 Pedro Alves <palves@redhat.com>
10068
10069 * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
10070 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
10071 Delete field.
10072 <stop_reason>: New field.
10073 (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
10074 (packet_set_cmd_state): New function.
10075 (remote_protocol_features): Register the "swbreak" and "hwbreak"
10076 features.
10077 (remote_query_supported): If not disabled with the corresponding
10078 "set remote foo-packet" command, report support for the swbreak
10079 and hwbreak features.
10080 (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
10081 field.
10082 <stop_reason>: New field.
10083 (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
10084 (remote_wait_as): Adjust.
10085 (remote_stopped_by_sw_breakpoint)
10086 (remote_supports_stopped_by_sw_breakpoint)
10087 (remote_stopped_by_hw_breakpoint)
10088 (remote_supports_stopped_by_hw_breakpoint): New functions.
10089 (remote_stopped_by_watchpoint): New function.
10090 (init_remote_ops): Install them.
10091 (_initialize_remote): Register new "set/show remote
10092 swbreak-feature-packet" and "set/show remote
10093 swbreak-feature-packet" commands.
10094
10095 2015-03-04 Pedro Alves <palves@redhat.com>
10096
10097 * btrace.h: Include target/waitstatus.h.
10098 (struct btrace_thread_info) <stop_reason>: New field.
10099 * record-btrace.c (record_btrace_step_thread): Use
10100 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10101 (record_btrace_decr_pc_after_break): Delete.
10102 (record_btrace_stopped_by_sw_breakpoint)
10103 (record_btrace_supports_stopped_by_sw_breakpoint)
10104 (record_btrace_stopped_by_hw_breakpoint)
10105 (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
10106 (init_record_btrace_ops): Install them.
10107 * record-full.c (record_full_hw_watchpoint): Delete and replace
10108 with ...
10109 (record_full_stop_reason): ... this throughout.
10110 (record_full_exec_insn): Adjust.
10111 (record_full_wait_1): Adjust. No longer re-increment the PC.
10112 (record_full_wait_1): Adjust. Use
10113 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10114 (record_full_stopped_by_watchpoint): Adjust.
10115 (record_full_stopped_by_sw_breakpoint)
10116 (record_full_supports_stopped_by_sw_breakpoint)
10117 (record_full_supports_stopped_by_sw_breakpoint)
10118 (record_full_stopped_by_hw_breakpoint)
10119 (record_full_supports_stopped_by_hw_breakpoint): New functions.
10120 (init_record_full_ops, init_record_full_core_ops): Install them.
10121 * record.c (record_check_stopped_by_breakpoint): New function.
10122 * record.h: Include target/waitstatus.h.
10123 (record_check_stopped_by_breakpoint): New declaration.
10124
10125 2015-03-04 Pedro Alves <palves@redhat.com>
10126
10127 enum lwp_stop_reason -> enum target_stop_reason
10128 * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
10129 (linux_nat_stopped_by_watchpoint, status_callback)
10130 (linux_nat_wait_1): Adjust.
10131 * linux-nat.h (enum lwp_stop_reason): Delete.
10132 (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
10133 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
10134 * target/waitstatus.h (enum target_stop_reason): New.
10135
10136 2015-03-04 Pedro Alves <palves@redhat.com>
10137
10138 * breakpoint.c (need_moribund_for_location_type): New function.
10139 (bpstat_stop_status): Don't skipping checking moribund locations
10140 of breakpoint types which the target tell caused a stop.
10141 (program_breakpoint_here_p): New function, factored out from ...
10142 (bp_loc_is_permanent): ... this.
10143 (update_global_location_list): Don't create a moribund location if
10144 the target supports reporting stops of the type of the removed
10145 breakpoint.
10146 * breakpoint.h (program_breakpoint_here_p): New declaration.
10147 * infrun.c (adjust_pc_after_break): Return early if the target has
10148 already adjusted the PC. Add comments.
10149 (handle_signal_stop): If nothing explains a signal, and the target
10150 tells us the stop was caused by a software breakpoint, check if
10151 there's a breakpoint instruction in the memory. If so, adjust the
10152 PC before presenting the stop to the user. Otherwise, ignore the
10153 trap. If nothing explains a signal, and the target tells us the
10154 stop was caused by a hardware breakpoint, ignore the trap.
10155 * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
10156 to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
10157 to_supports_stopped_by_hw_breakpoint>: New fields.
10158 (target_stopped_by_sw_breakpoint)
10159 (target_supports_stopped_by_sw_breakpoint)
10160 (target_stopped_by_hw_breakpoint)
10161 (target_supports_stopped_by_hw_breakpoint): Define.
10162 * target-delegates.c: Regenerate.
10163
10164 2015-03-04 Pedro Alves <palves@redhat.com>
10165
10166 * infrun.c (follow_fork_inferior): Use the whole of the
10167 inferior_ptid and pending_follow.related_pid ptids instead of
10168 building ptids from the process components. Adjust verbose output
10169 to use target_pid_to_str.
10170 * linux-nat.c (linux_child_follow_fork): Use the whole of the
10171 inferior_ptid and pending_follow.related_pid ptids instead of
10172 building ptids from the process components.
10173
10174 2015-03-04 Mark Kettenis <kettenis@gnu.org>
10175
10176 * inf-ptrace.c [PT_GET_PROCESS_STATE]
10177 (inf_ptrace_insert_fork_catchpoint): New function.
10178 (inf_ptrace_remove_fork_catchpoint): New function.
10179 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
10180
10181 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10182
10183 * s390-linux-tdep.c (s390_register_name): Return empty string
10184 instead of NULL for registers that shouldn't be visible.
10185
10186 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10187
10188 * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
10189 XML file for 64-bit targets.
10190
10191 2015-03-03 Simon Marchi <simon.marchi@ericsson.com>
10192
10193 * target.h (find_default_create_inferior): Remove declaration.
10194 (find_default_attach): Likewise.
10195
10196 2015-03-03 Pedro Alves <palves@redhat.com>
10197
10198 * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
10199 Use ptid_get_pid to get the overall process id when resuming all
10200 threads.
10201
10202 2015-03-03 Pedro Alves <palves@redhat.com>
10203
10204 * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
10205 the lwp field of ptid. Pass the full ptid to get_thread_regcache.
10206 * inf-ptrace.c (get_ptrace_pid): New function.
10207 (inf_ptrace_resume): Use it.
10208 * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
10209 to the lower layer.
10210
10211 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10212
10213 * nat/linux-btrace.c: Include sys/utsname.h.
10214 (linux_determine_kernel_ptr_bits): New.
10215 (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
10216 * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
10217 ptr_bits.
10218
10219 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10220
10221 * btrace.c (ftrace_update_function): Treat return as tailcall for
10222 "_dl_runtime_resolve".
10223
10224 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10225
10226 * btrace.h (btrace_function) <lbegin, lend>: Remove.
10227 * btrace.c (ftrace_debug): Do not print the line range.
10228 (ftrace_skip_file, ftrace_update_lines): Remove.
10229 (ftrace_new_function): Remove lbegin and lend initialization.
10230 (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
10231 * record-btrace.c (btrace_compute_src_line_range): New.
10232 (btrace_call_history_src_line): Call btrace_compute_src_line_range.
10233
10234 2015-03-02 Pedro Alves <palves@redhat.com>
10235
10236 * infrun.c (follow_exec): Delete all threads of the process except
10237 the event thread. Extended comments.
10238
10239 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10240
10241 * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
10242
10243 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10244
10245 * utils.h: Remove <stdbool.h> #include.
10246 (producer_is_gcc): Change return type to "int".
10247 * utils.c (producer_is_gcc): Change return type to int.
10248 Return 1 instead of true, and 0 instead of false.
10249 Adjust function documentation accordingly.
10250
10251 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10252
10253 * s390-linux-nat.c (have_regset_vxrs): New static variable.
10254 (s390_linux_fetch_inferior_registers): Handle vector registers, if
10255 present.
10256 (s390_linux_store_inferior_registers): Likewise.
10257 (s390_get_hwcap): Remove function. Embed its logic...
10258 (s390_read_description): ...here. Yield a target description with
10259 vector registers if applicable.
10260 * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
10261 "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
10262 "features/s390x-tevx-linux64.c".
10263 (struct gdbarch_tdep) <v0_full_regnum>: New field.
10264 (s390_dwarf_regmap): Add vector registers. Remove bogus entries
10265 for "GNU/Linux-specific registers".
10266 (s390_dwarf_reg_r0l): New enum value.
10267 (s390_dwarf_reg_to_regnum): Support vector registers.
10268 (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
10269 of GPR lower halves.
10270 (regnum_is_vxr_full): New function.
10271 (s390_register_name): New function.
10272 (s390_pseudo_register_name): Handle v0-v15, which are composed of
10273 f0-f15 and v0l-v15l.
10274 (s390_pseudo_register_type): Likewise.
10275 (s390_pseudo_register_read): Likewise.
10276 (s390_pseudo_register_write): Likewise.
10277 (s390_value_from_register): Account for the fact that values are
10278 placed left-justified in vector registers.
10279 (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
10280 the vector reggroup and omit them from the general reggroup.
10281 (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
10282 (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
10283 (s390_iterate_over_regset_sections): Add iterations for the two
10284 new vector regsets.
10285 (s390_core_read_description): Yield a target description with
10286 vector registers if applicable.
10287 (s390_gdbarch_init): Handle target descriptions with vector
10288 registers. Add "register_name" gdbarch method.
10289 (_initialize_s390_tdep): Call new tdesc initialization functions.
10290 * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
10291 (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
10292 (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
10293 (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
10294 (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
10295 (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
10296 (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
10297 (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
10298 (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
10299 (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
10300 (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
10301 (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
10302 (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
10303 (S390_NUM_REGS): Adjust value.
10304 (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
10305 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
10306 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
10307 * NEWS: Announce S/390 vector register support.
10308
10309 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10310
10311 * features/s390-tevx-linux64.xml: New file.
10312 * features/s390-vx-linux64.xml: New file.
10313 * features/s390-vx.xml: New file.
10314 * features/s390x-tevx-linux64.xml: New file.
10315 * features/s390x-vx-linux64.xml: New file.
10316 * features/Makefile (WHICH): Add s390-vx-linux64,
10317 s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
10318 (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
10319 (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
10320 macros.
10321 * features/s390-tevx-linux64.c: New generated file.
10322 * features/s390-vx-linux64.c: Likewise.
10323 * features/s390x-tevx-linux64.c: Likewise.
10324 * features/s390x-vx-linux64.c: Likewise.
10325 * regformats/s390-tevx-linux64.dat: Likewise.
10326 * regformats/s390-vx-linux64.dat: Likewise.
10327 * regformats/s390x-tevx-linux64.dat: Likewise.
10328 * regformats/s390x-vx-linux64.dat: Likewise.
10329
10330 2015-02-28 Doug Evans <xdje42@gmail.com>
10331
10332 * symtab.h (struct symtab) <next>: Fix comment.
10333
10334 2015-02-27 Simon Marchi <simon.marchi@ericsson.com>
10335
10336 * python/python.c (python_GdbModuleDef): Rename GdbMethods to
10337 python_GdbMethods.
10338
10339 2015-02-27 Pedro Alves <palves@redhat.com>
10340
10341 * dtrace-probe.c (dtrace_probe_ops): Make extern.
10342
10343 2015-02-27 Pedro Alves <palves@redhat.com>
10344
10345 * common/common-exceptions.h (exception_none): Declare.
10346 * common/common-exceptions.c (exception_none): Moved from
10347 exceptions.c.
10348 (exceptions_state_mc_init): Use exception_none.
10349 * exceptions.c (exception_none): Move to
10350 common/common-exceptions.c.
10351 * exceptions.h (exception_none): Move to
10352 common/common-exceptions.h.
10353
10354 2015-02-27 Pedro Alves <palves@redhat.com>
10355
10356 * main.c (catch_command_errors, catch_command_errors_const):
10357 Remove 'mask' argument. Adjust.
10358 (captured_main): Adjust callers.
10359
10360 2015-02-27 Pedro Alves <palves@redhat.com>
10361
10362 * python/python-internal.h: Include "extension-priv.h".
10363
10364 2015-02-27 Pedro Alves <palves@redhat.com>
10365
10366 * breakpoint.h (enum print_stop_action): Move further up in the
10367 file.
10368
10369 2015-02-27 Pedro Alves <palves@redhat.com>
10370
10371 * gdbarch.sh: Include regcache.h.
10372 * gdbarch.h: Regenerate.
10373
10374 2015-02-27 Pedro Alves <palves@redhat.com>
10375
10376 * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
10377 Remove duplicate const.
10378 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
10379 duplicate const.
10380
10381 2015-02-27 Pedro Alves <palves@redhat.com>
10382
10383 * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
10384 * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
10385 * features/feature_to_c.sh: Tag the generated xml_builtin array
10386 with extern const in C++ mode.
10387
10388 2015-02-27 Tom Tromey <tromey@redhat.com>
10389
10390 * minidebug.c (struct lzma_stream): Rename to ...
10391 (struct gdb_lzma_stream): ... this.
10392 (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
10393
10394 2015-02-27 Pedro Alves <palves@redhat.com>
10395
10396 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
10397 function.
10398 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
10399 (mi_cmd_stack_list_variables): Use it.
10400
10401 2015-02-27 Pedro Alves <palves@redhat.com>
10402
10403 * x86-linux-nat.c (u_debugreg_offset): New function.
10404 (x86_linux_dr_get, x86_linux_dr_set): Use it.
10405
10406 2015-02-27 Pedro Alves <palves@redhat.com>
10407
10408 * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
10409 declaration.
10410 Include break-common.h.
10411
10412 2015-02-27 Tom Tromey <tromey@redhat.com>
10413 Pedro Alves <palves@redhat.com>
10414
10415 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
10416 local used to iterate over enums.
10417 * completer.c (signal_completer): Likewise.
10418 * i386-tdep.c (i386_stap_parse_special_token): Likewise.
10419 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
10420 * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
10421 * tui/tui-layout.c (next_layout, prev_layout): Likewise.
10422 * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
10423 (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
10424 * tui-wingeneral.c (tui_refresh_all): Likewise.
10425
10426 2015-02-27 Pedro Alves <palves@redhat.com>
10427
10428 * target.h: Include "infrun.h".
10429
10430 2015-02-27 Pedro Alves <palves@redhat.com>
10431
10432 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
10433
10434 2015-02-27 Pedro Alves <palves@redhat.com>
10435
10436 * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
10437 (IPA_SYM): Use it.
10438 * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
10439
10440 2015-02-27 Pedro Alves <palves@redhat.com>
10441
10442 * cli-out.c (_rl_erase_entire_line): Move declaration out of
10443 cli_mld_erase_entire_line, and make it extern "C".
10444 * common/common-defs.h (EXTERN_C): New.
10445 * completer.c (_rl_completion_prefix_display_length)
10446 (_rl_print_completions_horizontally, QSFUNC): Move declarations
10447 out of gdb_display_match_list_1.
10448 (_rl_qsort_string_compare): Move declaration out of
10449 gdb_display_match_list_1, and make it extern "C".
10450 * defs.h (re_comp): Use EXTERN_C.
10451 * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
10452 and make it extern "C".
10453 (monstartup): Move declaration out of maintenance_set_profile_cmd,
10454 and make it extern "C".
10455 (main): Move declaration out of maintenance_set_profile_cmd.
10456 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
10457 EXTERN_C.
10458
10459 2015-02-27 Pedro Alves <palves@redhat.com>
10460
10461 * python/python.c (GdbMethods): Rename to ...
10462 (python_GdbMethods): ... this and make extern.
10463 (GdbModuleDef): Rename to ...
10464 (python_GdbModuleDef): ... this and make extern.
10465
10466 2015-02-27 Pedro Alves <palves@redhat.com>
10467
10468 * record-btrace.c (set_record_btrace_cmdlist)
10469 (show_record_btrace_cmdlist): Remove redefinitions.
10470
10471 2015-02-27 Tom Tromey <tromey@redhat.com>
10472 Pedro Alves <palves@redhat.com>
10473
10474 * dwarf2-frame.c (enum cfa_how_kind, struct
10475 dwarf2_frame_state_reg_info): Move out of struct
10476 dwarf2_frame_state.
10477 * dwarf2read.c (struct tu_stats): Move out of struct
10478 dwarf2_per_objfile.
10479 (struct file_entry): Move out of struct line_header.
10480 (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
10481 typedef_field_list): Move out of struct field_info.
10482 * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
10483 Move out of struct dynamic_prop.
10484 (union type_owner, union field_location, struct field, struct
10485 range_bounds, union type_specific): Move out of struct main_type.
10486 (struct fn_fieldlist, struct fn_field, struct typedef_field)
10487 (VOFFSET_STATIC): Move out of struct cplus_struct_type.
10488 (struct call_site_target, union call_site_parameter_u, struct
10489 call_site_parameter): Move out of struct call_site.
10490 * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
10491 m32c_prologue.
10492 (enum srcdest_kind): Move out of struct srcdest.
10493 * main.c (enum cmdarg_kind): Move out of struct cmdarg.
10494 * prologue-value.h (enum prologue_value_kind): Move out of struct
10495 prologue_value.
10496 * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
10497 gdbarch_tdep.
10498 * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
10499 out of struct field_info.
10500 * symfile.h (struct other_sections): Move out of struct
10501 section_addr_info.
10502 * symtab.c (struct symbol_cache_slot): Move out struct
10503 block_symbol_cache.
10504 * target-descriptions.c (enum tdesc_type_kind): Move out of
10505 typedef struct tdesc_type.
10506 * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
10507 struct tui_line_or_address.
10508 * value.c (enum internalvar_kind, union internalvar_data): Move
10509 out of struct internalvar.
10510 * xtensa-tdep.h (struct ctype_cache): Move out of struct
10511 gdbarch_tdep.
10512
10513 2015-02-27 Tom Tromey <tromey@redhat.com>
10514 Pedro Alves <palves@redhat.com>
10515
10516 Rename symbols whose names are reserved C++ keywords throughout.
10517
10518 2015-02-27 Pedro Alves <palves@redhat.com>
10519
10520 * Makefile.in (COMPILER): New, get it from autoconf.
10521 (COMPILE.pre, CC_LD): Use COMPILER.
10522 (CXX): Get from autoconf instead.
10523 (CXX_FOR_TARGET): Default to g++ instead of gcc.
10524 * acinclude.m4: Include build-with-cxx.m4.
10525 * build-with-cxx.m4: New file.
10526 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
10527 Disable -Werror by default if building in C++ mode.
10528 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
10529 -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode.
10530 Run supported-warning-flags tests with the C++ compiler.
10531 Save/restore CXXFLAGS too.
10532 * configure: Regenerate.
10533
10534 2015-02-27 Pedro Alves <palves@redhat.com>
10535
10536 * libiberty.m4: New file.
10537 * acinclude.m4: Include libiberty.m4.
10538 * configure.ac: Call libiberty_INIT.
10539 * config.in, configure: Regenerate.
10540
10541 2015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
10542
10543 * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
10544 31-bit targets, but 64-bit targets as well.
10545 (s390_gnu_triplet_regexp): New function.
10546 (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
10547 64-bit targets as well. Set the gnu_triplet_regexp gdbarch
10548 method.
10549
10550 2015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch)
10551
10552 * windows-nat.c (CONTEXT_DEBUGGER): Remove.
10553 (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags
10554 from CONTEXT_DEBUGGER.
10555
10556 2015-02-26 Doug Evans <dje@google.com>
10557
10558 * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
10559 CHECK_TYPEDEF.
10560 (set_type_vptr_fieldno): Ditto.
10561 (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
10562 * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
10563
10564 2015-02-26 Pedro Alves <palves@redhat.com>
10565
10566 * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
10567 * complaints.c (vcomplaint): Pass argument FMT directly to
10568 printf-like functions instead of complaint->fmt.
10569 * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
10570 * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
10571 * compile/compile-loc2c.c (pushf, unary, binary): Add
10572 ATTRIBUTE_PRINTF.
10573 (do_compile_dwarf_expr_to_c): Pass string literal as format string
10574 to pushf.
10575 (BINARY): Pass string literal as format string to 'binary'.
10576 * compile/compile-object-load.c (link_callbacks_einfo): Add
10577 ATTRIBUTE_PRINTF.
10578 * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
10579
10580 2015-02-26 Pedro Alves <palves@redhat.com>
10581
10582 * windows-termcap.c: Rename to ...
10583 * stub-termcap.c: ... this. Adjust header line.
10584 * Makefile.in (SFILES): Refer to stub-termcap.c instead of
10585 windows-termcap.c.
10586 * configure: Regenerate.
10587 * configure.ac: Refer to stub-termcap.o instead of
10588 windows-termcap.o.
10589 * gdb_curses.h: Mention stub-termcap.c instead of
10590 windows-termcap.c.
10591
10592 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10593
10594 * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
10595 (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
10596
10597 2015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
10598
10599 * gdb/infcmd.c (print_return_value): use type_to_string to print type.
10600
10601 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10602
10603 * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
10604 bfd_canonicalize_symtab.
10605
10606 2015-02-25 John Baldwin <jhb@FreeBSD.org>
10607
10608 * amd64fbsd-nat.c: Include sys/user.h.
10609 (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
10610 instead of KERN_PS_STRINGS to locate the signal trampoline.
10611 * i386fbsd-nat.c: Include sys/user.h.
10612 (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
10613 instead of KERN_PS_STRINGS to locate the signal trampoline.
10614 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
10615 (amd64fbsd_sigtramp_p): New.
10616 (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
10617 longer set default values.
10618 (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
10619 * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
10620 (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
10621 (i386fbsd_freebsd4_sigtramp_start)
10622 (i386fbsd_freebsd4_sigtramp_middle)
10623 (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
10624 (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
10625 (i386fbsd_sigtramp_p): New.
10626 (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
10627 longer set default values.
10628 (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
10629
10630 2015-02-25 John Baldwin <jhb@freebsd.org>
10631
10632 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
10633 get_frame_register instead of frame_unwind_register_unsigned.
10634
10635 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10636
10637 PR build/18033
10638 * compile/compile-c-support.c (c_compute_program): Change // comment.
10639 * compile/compile-object-load.c (setup_sections): Change // comment.
10640
10641 2015-02-26 Joel Brobecker <brobecker@adacore.com>
10642
10643 PR build/18033:
10644 * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
10645
10646 2015-02-23 Pedro Alves <palves@redhat.com>
10647
10648 * remote.c (skip_to_semicolon): New function.
10649 (remote_parse_stop_reply) <T stop reply>: Use it. Don't
10650 special case the stop reasons that look like hex numbers
10651 upfront. Instead handle real register numbers after matching
10652 all the known stop reasons.
10653
10654 2015-02-21 Doug Evans <dje@google.com>
10655
10656 PR c++/17976, symtab/17821
10657 * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
10658 is_in_anonymous. All callers updated.
10659 (find_symbol_in_baseclass): Ditto.
10660 (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks
10661 for symbols in an anonymous namespace.
10662 * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
10663 DW_AT_name directly.
10664 (dwarf2_name): Convert missing namespace name to
10665 CP_ANONYMOUS_NAMESPACE_STR.
10666
10667 2015-02-20 Pedro Alves <palves@redhat.com>
10668
10669 * linux-nat.c (linux_handle_extended_wait): Call
10670 thread_db_notice_clone whenever a new clone LWP is detected.
10671 (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
10672 functions.
10673 * linux-nat.h (thread_db_attach_lwp): Delete declaration.
10674 (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
10675 (linux_unstop_all_lwps): Declare.
10676 * linux-thread-db.c (struct thread_get_info_inout): Delete.
10677 (thread_get_info_callback): Delete.
10678 (thread_from_lwp): Use td_thr_get_info and record_thread.
10679 (thread_db_attach_lwp): Delete.
10680 (thread_db_notice_clone): New function.
10681 (try_thread_db_load_1): If /proc is mounted and shows the
10682 process'es task list, walk over all LWPs and call thread_from_lwp
10683 instead of relying on td_ta_thr_iter.
10684 (attach_thread): Don't call check_thread_signals here. Split the
10685 tail part of the function (which adds the thread to the core GDB
10686 thread list) to ...
10687 (record_thread): ... this function. Call check_thread_signals
10688 here.
10689 (thread_db_wait): Don't call thread_db_find_new_threads_1. Always
10690 call thread_from_lwp.
10691 (thread_db_update_thread_list): Rename to ...
10692 (thread_db_update_thread_list_org): ... this.
10693 (thread_db_update_thread_list): New function.
10694 (thread_db_find_thread_from_tid): Delete.
10695 (thread_db_get_ada_task_ptid): Simplify.
10696 * nat/linux-procfs.c: Include <sys/stat.h>.
10697 (linux_proc_task_list_dir_exists): New function.
10698 * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
10699
10700 2015-02-20 Pedro Alves <palves@redhat.com>
10701
10702 * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
10703 main LWP. Handle the case of waitpid returning 0 if we're already
10704 attached to the LWP. Don't set the LWP's last_resume_kind to
10705 resume_stop if we already knew about the LWP.
10706 (linux_nat_filter_event): Add debug logs.
10707
10708 2015-02-20 Pedro Alves <palves@redhat.com>
10709
10710 * target.h (forward_target_decr_pc_after_break): Delete
10711 declaration.
10712
10713 2015-02-20 Pedro Alves <palves@redhat.com>
10714
10715 PR threads/18006
10716 * linux-thread-db.c (thread_get_info_callback): Return early if
10717 the thread's lwp id is -1.
10718
10719 2015-02-20 Joel Brobecker <brobecker@adacore.com>
10720
10721 GDB 7.9 released.
10722
10723 2015-02-19 Steve Ellcey <sellcey@imgtec.com>
10724
10725 * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
10726 (dtrace_get_probes) Change type of variable 'dof'.
10727
10728 2015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
10729
10730 PR breakpoints/16812
10731 * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
10732 * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
10733 * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
10734
10735 2015-02-19 David Taylor <dtaylor@emc.com>
10736
10737 * common/ax.def (setv): Fix consumed entry in setv DEFOP.
10738
10739 2015-02-18 Patrick Palka <patrick@parcs.ath.cx>
10740
10741 * tui/tui-io.c (tui_handle_resize_during_io): Remove this
10742 function.
10743 (tui_putc): Don't call tui_handle_resize_during_io.
10744 (tui_getc): Likewise.
10745 (tui_mld_getc): Likewise.
10746 * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
10747 (tui_sigwinch_token): New static variable.
10748 (tui_initialize_win): Adjust documentation. Set
10749 tui_sigwinch_token.
10750 (tui_async_resize_screen): New asynchronous callback.
10751 (tui_sigwinch_handler): Adjust documentation. Asynchronously
10752 invoke tui_async_resize_screen.
10753
10754 2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
10755
10756 * configure: Regenerated.
10757 * configure.ac: Use GDB_AC_TRANSFORM.
10758 * Makefile.in (aclocal_m4_deps): Added transform.m4.
10759 * acinclude.m4: sinclude transform.m4.
10760 * transform.m4: New file.
10761 (GDB_AC_TRANSFORM): New macro.
10762
10763 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10764
10765 * NEWS: Announce the support for DTrace SDT probes.
10766
10767 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10768
10769 * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
10770 (amd64_dtrace_parse_probe_argument): New function.
10771 (amd64_dtrace_probe_is_enabled): Likewise.
10772 (amd64_dtrace_enable_probe): Likewise.
10773 (amd64_dtrace_disable_probe): Likewise.
10774 (amd64_linux_init_abi): Register the
10775 `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
10776 `gdbarch_dtrace_disable_probe' and
10777 `gdbarch_dtrace_probe_is_enabled' hooks.
10778 (amd64_dtrace_disabled_probe_sequence_1): New constant.
10779 (amd64_dtrace_disabled_probe_sequence_2): Likewise.
10780 (amd64_dtrace_enable_probe_sequence): Likewise.
10781 (amd64_dtrace_disable_probe_sequence): Likewise.
10782
10783 2015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10784
10785 * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
10786 the -probe-dtrace new vpossible value for PROBE_MODIFIER.
10787 * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
10788 handle ELF files.
10789 * Makefile.in (SFILES): dtrace-probe.c added.
10790 * configure: Regenerate.
10791 * dtrace-probe.c: New file.
10792 (SHT_SUNW_dof): New constant.
10793 (dtrace_probe_type): New enum.
10794 (dtrace_probe_arg): New struct.
10795 (dtrace_probe_arg_s): New typedef.
10796 (struct dtrace_probe_enabler): New struct.
10797 (dtrace_probe_enabler_s): New typedef.
10798 (dtrace_probe): New struct.
10799 (dtrace_probe_is_linespec): New function.
10800 (dtrace_dof_sect_type): New enum.
10801 (dtrace_dof_dofh_ident): Likewise.
10802 (dtrace_dof_encoding): Likewise.
10803 (DTRACE_DOF_ENCODE_LSB): Likewise.
10804 (DTRACE_DOF_ENCODE_MSB): Likewise.
10805 (dtrace_dof_hdr): New struct.
10806 (dtrace_dof_sect): Likewise.
10807 (dtrace_dof_provider): Likewise.
10808 (dtrace_dof_probe): Likewise.
10809 (DOF_UINT): New macro.
10810 (DTRACE_DOF_PTR): Likewise.
10811 (DTRACE_DOF_SECT): Likewise.
10812 (dtrace_process_dof_probe): New function.
10813 (dtrace_process_dof): Likewise.
10814 (dtrace_build_arg_exprs): Likewise.
10815 (dtrace_get_arg): Likewise.
10816 (dtrace_get_probes): Likewise.
10817 (dtrace_get_probe_argument_count): Likewise.
10818 (dtrace_can_evaluate_probe_arguments): Likewise.
10819 (dtrace_evaluate_probe_argument): Likewise.
10820 (dtrace_compile_to_ax): Likewise.
10821 (dtrace_probe_destroy): Likewise.
10822 (dtrace_gen_info_probes_table_header): Likewise.
10823 (dtrace_gen_info_probes_table_values): Likewise.
10824 (dtrace_probe_is_enabled): Likewise.
10825 (dtrace_probe_ops): New variable.
10826 (info_probes_dtrace_command): New function.
10827 (_initialize_dtrace_probe): Likewise.
10828 (dtrace_type_name): Likewise.
10829
10830 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10831
10832 * gdbarch.sh (dtrace_parse_probe_argument): New.
10833 (dtrace_probe_is_enabled): Likewise.
10834 (dtrace_enable_probe): Likewise.
10835 (dtrace_disable_probe): Likewise.
10836 * gdbarch.c: Regenerate.
10837 * gdbarch.h: Regenerate.
10838
10839 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10840
10841 * stap-probe.c (stap_probe_ops): Add NULLs in the static
10842 stap_probe_ops for `enable_probe' and `disable_probe'.
10843 * probe.c (enable_probes_command): New function.
10844 (disable_probes_command): Likewise.
10845 (_initialize_probe): Define the cli commands `enable probe' and
10846 `disable probe'.
10847 (parse_probe_linespec): New function.
10848 (info_probes_for_ops): Use parse_probe_linespec.
10849 * probe.h (probe_ops): New hooks `enable_probe' and
10850 `disable_probe'.
10851
10852 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10853
10854 * probe.c (compute_probe_arg): Moved from stap-probe.c
10855 (compile_probe_arg): Likewise.
10856 (probe_funcs): Likewise.
10857 * stap-probe.c (compute_probe_arg): Moved to probe.c.
10858 (compile_probe_arg): Likewise.
10859 (probe_funcs): Likewise.
10860
10861 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10862
10863 * probe.c (print_ui_out_not_applicables): New function.
10864 (exists_probe_with_pops): Likewise.
10865 (info_probes_for_ops): Do not include column headers for probe
10866 types for which no probe has been actually found on any object.
10867 Also invoke `print_ui_out_not_applicables' in order to match the
10868 column rows with the header when probes of several types are
10869 listed.
10870 Print the "Type" column.
10871 * probe.h (probe_ops): Added a new probe operation `type_name'.
10872 * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
10873 (stap_type_name): New function.
10874
10875 2015-02-17 Patrick Palka <patrick@parcs.ath.cx>
10876
10877 * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
10878 (key_is_command_char): Delete.
10879
10880 2015-02-17 Pedro Alves <palves@redhat.com>
10881
10882 * tui/tui.c (tui_enable): Resize windows before anything
10883 might show a window.
10884
10885 2015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com>
10886
10887 PR gdb/17984
10888 * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
10889 (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
10890 call.
10891 * aarch64-tdep.h (tdesc_aarch64): Declare.
10892
10893 2015-02-12 Mark Wielaard <mjw@redhat.com>
10894
10895 * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
10896
10897 2015-02-13 Doug Evans <dje@google.com>
10898
10899 * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
10900 anonymous_namespace to is_in_anonymous for consistency with the rest
10901 of the file.
10902 (cp_lookup_bare_symbol): Fix typo in comment.
10903 (cp_search_static_and_baseclasses): Ditto.
10904 (search_symbol_list): Use vertical space in comment better.
10905 (reset_directive_searched): Ditto. Fix typo.
10906 (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
10907
10908 2015-02-13 Yao Qi <yao.qi@arm.com>
10909
10910 * MAINTAINERS: Update my email address.
10911
10912 2015-02-12 Doug Evans <dje@google.com>
10913
10914 * symtab.c (completion_list_add_name): Fix memory leak.
10915
10916 2015-02-12 Doug Evans <dje@google.com>
10917
10918 * completer.c (complete_line): Remove incorrect comment.
10919
10920 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10921
10922 * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
10923 (py_print_frame): Use RETURN_MASK_ERROR.
10924
10925 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10926
10927 * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
10928 function comment. Wrap all function that can throw in cleanups.
10929 (gdbpy_apply_frame_filter): Wrap all function that can throw in
10930 cleanups.
10931
10932 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10933
10934 * python/py-framefilter.c (py_print_frame): Substitute goto error.
10935 Remove the error label.
10936
10937 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10938
10939 * python/py-framefilter.c (py_print_frame): Put conditional code paths
10940 with goto first, indent the former else codepath left. Put variable
10941 'elided' to a new inner block.
10942
10943 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10944
10945 * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
10946
10947 2015-02-11 Pedro Alves <palves@redhat.com>
10948
10949 * xcoffread.c (within_function): Delete.
10950
10951 2015-02-11 Tom Tromey <tromey@redhat.com>
10952 Pedro Alves <palves@redhat.com>
10953
10954 * breakpoint.c (base_breakpoint_ops): Delete.
10955 * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
10956 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
10957 * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
10958 * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
10959 * python/py-arch.c (arch_object_type): Make extern.
10960 * python/py-block.c (block_syms_iterator_object_type): Make extern.
10961 * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
10962 * python/py-cmd.c (cmdpy_object_type): Make extern.
10963 * python/py-continueevent.c (continue_event_object_type)
10964 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
10965 parameter. Update all callers.
10966 * python/py-evtregistry.c (eventregistry_object_type): Make extern.
10967 * python/py-exitedevent.c (exited_event_object_type): Make extern.
10968 * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
10969 * python/py-function.c (fnpy_object_type): Make extern.
10970 * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
10971 * python/py-infevents.c (call_pre_event_object_type)
10972 (inferior_call_post_event_object_type).
10973 (memory_changed_event_object_type): Make extern.
10974 * python/py-infthread.c (thread_object_type): Make extern.
10975 * python/py-lazy-string.c (lazy_string_object_type): Make extern.
10976 * python/py-linetable.c (linetable_entry_object_type)
10977 (linetable_object_type, ltpy_iterator_object_type): Make extern.
10978 * python/py-newobjfileevent.c (new_objfile_event_object_type)
10979 (clear_objfiles_event_object_type): Make extern.
10980 * python/py-objfile.c (objfile_object_type): Make extern.
10981 * python/py-param.c (parmpy_object_type): Make extern.
10982 * python/py-progspace.c (pspace_object_type): Make extern.
10983 * python/py-signalevent.c (signal_event_object_type): Make extern.
10984 * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
10985 * python/py-type.c (type_object_type, field_object_type)
10986 (type_iterator_object_type): Make extern.
10987 * python/python.c (python_extension_script_ops)
10988 (python_extension_ops): Make extern.
10989 * stap-probe.c (stap_probe_ops): Make extern.
10990
10991 2015-02-11 Pedro Alves <pedro@codesourcery.com>
10992
10993 * infrun.c (adjust_pc_after_break): Don't adjust the PC just
10994 because the event thread is not the current thread.
10995
10996 2015-02-11 Doug Evans <xdje42@gmail.com>
10997
10998 * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
10999 been initialized yet, return NULL.
11000
11001 2015-02-11 Doug Evans <dje@google.com>
11002
11003 * symfile.h (new_symfile_objfile): Delete.
11004 * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
11005 All callers updated.
11006
11007 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11008
11009 * tui/tui-io.c (tui_handle_resize_during_io): Call
11010 tui_update_gdb_sizes() after resizing the screen.
11011 * tui/tui.c (tui_enable): Resize the terminal before
11012 calling tui_update_gdb_sizes().
11013
11014 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11015
11016 * tui/tui-io.c (tui_getc): Move cursor to the end of the command
11017 line before printing a newline.
11018
11019 2015-02-11 Mark Wielaard <mjw@redhat.com>
11020
11021 * utils.c (producer_is_gcc): Return true or false.
11022
11023 2015-02-10 Mark Wielaard <mjw@redhat.com>
11024
11025 * utils.h (producer_is_gcc): Change return type to bool. Add major
11026 argument.
11027 * utils.c (producer_is_gcc): Likewise.
11028 (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
11029 * dwarf2read.c (check_producer): Likewise.
11030
11031 2015-02-10 Pedro Alves <palves@redhat.com>
11032
11033 * infrun.c (displaced_step_fixup): Switch to the event thread
11034 before calling gdbarch_displaced_step_fixup.
11035
11036 2015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
11037
11038 * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
11039
11040 2015-02-10 Simon Marchi <simon.marchi@ericsson.com>
11041
11042 * ada-varobj.c (ada_name_of_child): Constify parent.
11043 (ada_path_expr_of_child): Same.
11044 (ada_value_of_child): Same.
11045 (ada_type_of_child): Same.
11046 * c-varobj.c (c_is_path_expr_parent): Same.
11047 (c_describe_child): Same.
11048 (c_name_of_child): Same.
11049 (c_value_of_child): Same.
11050 (c_type_of_child): Same.
11051 (cplus_number_of_children): Same.
11052 (cplus_describe_child): Constify var.
11053 (cplus_name_of_child): Constify parent.
11054 (cplus_value_of_child): Same.
11055 (cplus_type_of_child): Same.
11056 * jv-varobj.c (java_name_of_child): Same.
11057 (java_value_of_child): Same.
11058 (java_type_of_child): Same.
11059 * varobj.c (value_of_child): Same.
11060 (varobj_default_is_path_expr_parent): Constify var, parent and return
11061 value.
11062 (varobj_get_path_expr): Constify var, modify path_expr through
11063 mutable_var.
11064 (install_new_value): Constify parent.
11065 (value_of_child): Constify parent.
11066 * varobj.h (struct varobj): Constify parent.
11067 (struct lang_varobj_ops): Constify name_of_child, value_of_child and
11068 type_of_child.
11069 (varobj_get_path_expr): Constify var.
11070 (varobj_get_path_expr_parent): Constify var and return value.
11071
11072 2015-02-10 Luis Machado <lgustavo@codesourcery.com>
11073
11074 * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
11075 (arm_prologue_this_id): Move PC and SP limit checks to
11076 arm_prologue_unwind_stop_reason.
11077 (arm_prologue_unwind) <stop_reason> : Set to
11078 arm_prologue_unwind_stop_reason.
11079
11080 2015-02-09 Mark Wielaard <mjw@redhat.com>
11081
11082 * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
11083 DW_LANG_Fortran08 as language_fortran.
11084
11085 2015-02-09 Sergio Durigan Junior <sergiodj@redhat.com>
11086
11087 PR remote/17946
11088 * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
11089 of pointer against char.
11090
11091 2015-02-09 Mark Wielaard <mjw@redhat.com>
11092
11093 * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
11094 (c_type_print_modifier): Likewise.
11095 * dwarf2read.c (read_tag_atomic_type): New function.
11096 (read_type_die_1): Handle DW_TAG_atomic_type.
11097 * gdbtypes.c (make_atomic_type): New function.
11098 (recursive_dump_type): Handle TYPE_ATOMIC.
11099 * gdbtypes.h (enum type_flag_values): Renumber.
11100 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
11101 (TYPE_ATOMIC): New macro.
11102 (make_atomic_type): Declare.
11103
11104 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11105
11106 * btrace.c (ftrace_find_call): Skip gaps.
11107 (ftrace_new_function): Initialize level.
11108 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
11109 (ftrace_new_switch): Update
11110 level computation.
11111 (ftrace_new_gap): New.
11112 (ftrace_update_function): Create new function after gap.
11113 (btrace_compute_ftrace_bts): Create gap on error.
11114 (btrace_stitch_bts): Update parameters. Clear trace if it
11115 becomes empty.
11116 (btrace_stitch_trace): Update parameters. Update callers.
11117 (btrace_clear): Reset the number of gaps.
11118 (btrace_insn_get): Return NULL if the iterator points to a gap.
11119 (btrace_insn_number): Return zero if the iterator points to a gap.
11120 (btrace_insn_end): Allow gaps at the end.
11121 (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
11122 (btrace_find_insn_by_number): Assert that the found iterator does
11123 not point to a gap.
11124 (btrace_call_next, btrace_call_prev): Assert that the last function
11125 is not a gap.
11126 * btrace.h (btrace_bts_error): New.
11127 (btrace_function): Update comment.
11128 (btrace_function) <insn, insn_offset, number>: Update comment.
11129 (btrace_function) <errcode>: New.
11130 (btrace_thread_info) <ngaps>: New.
11131 (btrace_thread_info) <replay>: Update comment.
11132 (btrace_insn_get): Update comment.
11133 * record-btrace.c (btrace_ui_out_decode_error): New.
11134 (record_btrace_info): Print number of gaps.
11135 (btrace_insn_history, btrace_call_history): Call
11136 btrace_ui_out_decode_error for gaps.
11137 (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
11138
11139 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11140
11141 * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
11142 * nat/linux-btrace.c: (btrace_this_cpu): New.
11143 (cpu_supports_bts): Call btrace_this_cpu.
11144 (intel_supports_bts): Add cpu parameter.
11145
11146 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11147
11148 * btrace.h (btrace_insn_class): New.
11149 (btrace_insn) <size, iclass>: New.
11150 * btrace.c (ftrace_find_call): Update parameters. Update users.
11151 Use instruction classification.
11152 (ftrace_new_return): Update parameters. Update users.
11153 (ftrace_update_function): Update parameters. Update users. Use
11154 instruction classification.
11155 (ftrace_update_insns): Update parameters. Update users.
11156 (ftrace_classify_insn): New.
11157 (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add
11158 TRY_CATCH around call to gdb_insn_length.
11159
11160 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11161
11162 * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
11163 Update parameters. Update users.
11164
11165 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11166
11167 * btrace.c (parse_xml_btrace_conf_bts): Add size.
11168 (btrace_conf_bts_attributes): New.
11169 (btrace_conf_children): Add attributes.
11170 * common/btrace-common.h (btrace_config_bts): New.
11171 (btrace_config)<bts>: New.
11172 (btrace_config): Update comment.
11173 * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
11174 Use config.
11175 * features/btrace-conf.dtd: Increment version. Add size
11176 attribute to bts element.
11177 * record-btrace.c (set_record_btrace_bts_cmdlist,
11178 show_record_btrace_bts_cmdlist): New.
11179 (record_btrace_adjust_size, record_btrace_print_bts_conf,
11180 record_btrace_print_conf, cmd_set_record_btrace_bts,
11181 cmd_show_record_btrace_bts): New.
11182 (record_btrace_info): Call record_btrace_print_conf.
11183 (_initialize_record_btrace): Add commands.
11184 * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
11185 (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
11186 (btrace_sync_conf): Synchronize bts size.
11187 (_initialize_remote): Add Qbtrace-conf:bts:size packet.
11188 * NEWS: Announce new commands and new packets.
11189
11190 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11191
11192 * Makefile.in (XMLFILES): Add btrace-conf.dtd.
11193 * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
11194 (x86_linux_btrace_conf): New.
11195 (x86_linux_create_target): Initialize to_btrace_conf.
11196 * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
11197 Check format. Split into this and ...
11198 (linux_enable_bts): ... this.
11199 (linux_btrace_conf): New.
11200 (perf_event_skip_record): Renamed into ...
11201 (perf_event_skip_bts_record): ... this. Updated users.
11202 (linux_disable_btrace): Split into this and ...
11203 (linux_disable_bts): ... this.
11204 (linux_read_btrace): Check format.
11205 * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
11206 (linux_btrace_conf): New.
11207 (btrace_target_info)<ptid>: Moved.
11208 (btrace_target_info)<conf>: New.
11209 (btrace_target_info): Split into this and ...
11210 (btrace_tinfo_bts): ... this. Updated users.
11211 * btrace.c (btrace_enable): Update parameters.
11212 (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
11213 (btrace_conf_children, btrace_conf_attributes)
11214 (btrace_conf_elements): New.
11215 * btrace.h (btrace_enable): Update parameters.
11216 (btrace_conf, parse_xml_btrace_conf): New.
11217 * common/btrace-common.h (btrace_config): New.
11218 * feature/btrace-conf.dtd: New.
11219 * record-btrace.c (record_btrace_conf): New.
11220 (record_btrace_cmdlist): New.
11221 (record_btrace_enable_warn, record_btrace_open): Pass
11222 &record_btrace_conf.
11223 (record_btrace_info): Print recording format.
11224 (cmd_record_btrace_bts_start): New.
11225 (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
11226 (_initialize_record_btrace): Add "record btrace bts" subcommand.
11227 Add "record bts" alias command.
11228 * remote.c (remote_state)<btrace_config>: New.
11229 (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
11230 (remote_protocol_features): Add qXfer:btrace-conf:read.
11231 (remote_open_1): Call remote_btrace_reset.
11232 (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
11233 (btrace_target_info)<conf>: New.
11234 (btrace_sync_conf, btrace_read_config): New.
11235 (remote_enable_btrace): Update parameters. Call btrace_sync_conf and
11236 btrace_read_conf.
11237 (remote_btrace_conf): New.
11238 (init_remote_ops): Initialize to_btrace_conf.
11239 (_initialize_remote): Add qXfer:btrace-conf packet.
11240 * target.c (target_enable_btrace): Update parameters.
11241 (target_btrace_conf): New.
11242 * target.h (target_enable_btrace): Update parameters.
11243 (target_btrace_conf): New.
11244 (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
11245 (target_ops)<to_enable_btrace>: Update parameters and comment.
11246 (target_ops)<to_btrace_conf>: New.
11247 * target-delegates: Regenerate.
11248 * target-debug.h (target_debug_print_const_struct_btrace_config_p)
11249 (target_debug_print_const_struct_btrace_target_info_p): New.
11250 * NEWS: Announce new command and new packet.
11251
11252 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11253
11254 * nat/linux-btrace.h (perf_event_buffer): New.
11255 (btrace_target_info) <buffer, size, data_head>: Replace with ...
11256 <bts>: ... this.
11257 * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
11258 (perf_event_buffer_size, perf_event_buffer_begin)
11259 (perf_event_buffer_end, linux_btrace_has_changed): Removed.
11260 Updated users.
11261 (perf_event_new_data): New.
11262
11263 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11264
11265 * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
11266 * record-btrace.c (record_btrace_open): Remove call to
11267 target_supports_btrace.
11268 * remote.c (remote_supports_btrace): Update parameters.
11269 * target.c (target_supports_btrace): Update parameters.
11270 * target.h (to_supports_btrace, target_supports_btrace): Update
11271 parameters.
11272 * target-delegates.c: Regenerate.
11273 * target-debug.h (target_debug_print_enum_btrace_format): New.
11274 * nat/linux-btrace.c
11275 (kernel_supports_btrace): Rename into ...
11276 (kernel_supports_bts): ... this. Update users. Update warning text.
11277 (intel_supports_btrace): Rename into ...
11278 (intel_supports_bts): ... this. Update users.
11279 (cpu_supports_btrace): Rename into ...
11280 (cpu_supports_bts): ... this. Update users.
11281 (linux_supports_btrace): Update parameters. Split into this and ...
11282 (linux_supports_bts): ... this.
11283 * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
11284
11285 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11286
11287 * Makefile.in (SFILES): Add common/btrace-common.c.
11288 (COMMON_OBS): Add common/btrace-common.o.
11289 (btrace-common.o): Add build rules.
11290 * btrace.c (parse_xml_btrace): Update parameters.
11291 (parse_xml_btrace_block): Set format field.
11292 (btrace_add_pc, btrace_fetch): Use struct btrace_data.
11293 (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
11294 (btrace_compute_ftrace): Split into this and...
11295 (btrace_compute_ftrace_bts): ...this.
11296 (btrace_stitch_trace): Split into this and...
11297 (btrace_stitch_bts): ...this.
11298 * btrace.h (parse_xml_btrace): Update parameters.
11299 (make_cleanup_btrace_data): New.
11300 * common/btrace-common.c: New.
11301 * common/btrace-common.h: Include common-defs.h.
11302 (btrace_block_s): Update comment.
11303 (btrace_format): New.
11304 (btrace_format_string): New.
11305 (btrace_data_bts): New.
11306 (btrace_data): New.
11307 (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
11308 * remote.c (remote_read_btrace): Update parameters.
11309 * target.c (target_read_btrace): Update parameters.
11310 * target.h (target_read_btrace): Update parameters.
11311 (target_ops)<to_read_btrace>: Update parameters.
11312 * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
11313 * target-delegates.c: Regenerate.
11314 * target-debug (target_debug_print_struct_btrace_data_p): New.
11315 * nat/linux-btrace.c (linux_read_btrace): Split into this and...
11316 (linux_read_bts): ...this.
11317 * nat/linux-btrace.h (linux_read_btrace): Update parameters.
11318
11319 2015-02-06 Doug Evans <dje@google.com>
11320
11321 * remote-m32r-sdi.c: Include symfile.h.
11322
11323 2015-02-06 Doug Evans <dje@google.com>
11324
11325 * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
11326 * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
11327 to here.
11328
11329 2015-02-06 Pedro Alves <palves@redhat.com>
11330
11331 * linux-thread-db.c (find_new_threads_callback): Add debug output.
11332
11333 2015-02-06 Simon Marchi <simon.marchi@ericsson.com>
11334
11335 PR gdb/15678
11336 * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
11337 (enable_count_command): Check args for NULL value.
11338
11339 2015-02-05 Doug Evans <xdje42@gmail.com>
11340
11341 * guile/scm-frame.c: Fix spelling errors in a comment.
11342
11343 2015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com>
11344
11345 * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
11346 * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the
11347 return type.
11348
11349 2015-02-04 Pedro Alves <palves@redhat.com>
11350
11351 * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
11352 (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
11353 returns true.
11354 (resume_stopped_resumed_lwps): Don't check whether the thread is
11355 marked as executing.
11356 (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
11357
11358 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11359
11360 * regset.h (struct regset): Add flags field.
11361 (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
11362 * corelow.c (get_core_register_section): Add warning if the size
11363 exceeds the requested size and the regset does not have the
11364 REGSET_VARIABLE_SIZE flag set.
11365 * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
11366 flag.
11367 * armbsd-tdep.c (armbsd_gregset): Likewise.
11368 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
11369 * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
11370 * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
11371 * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
11372
11373 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11374
11375 * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
11376 For ".reg-xstate", explicitly specify the requested section size
11377 via X86_XSTATE_SIZE instead of just 0 on input and
11378 X86_XSTATE_MAX_SIZE on output.
11379 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
11380 Likewise.
11381
11382 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11383
11384 PR corefiles/17808:
11385 * gdbarch.sh (iterate_over_regset_sections_cb): Document this
11386 function type, particularly its SIZE parameter.
11387 * gdbarch.h: Regenerate.
11388 * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
11389 actual against required size using ">=" instead of "==".
11390 (amd64_collect_fpregset): Likewise.
11391 * i386-tdep.c (i386_supply_gregset): Likewise.
11392 (i386_collect_gregset): Likewise.
11393 (i386_supply_fpregset): Likewise.
11394 (i386_collect_fpregset): Likewise.
11395 * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
11396 (mips_fill_gregset_wrapper): Likewise.
11397 (mips_supply_fpregset_wrapper): Likewise.
11398 (mips_fill_fpregset_wrapper): Likewise.
11399 (mips64_supply_gregset_wrapper): Likewise.
11400 (mips64_fill_gregset_wrapper): Likewise.
11401 (mips64_supply_fpregset_wrapper): Likewise.
11402 (mips64_fill_fpregset_wrapper): Likewise.
11403 * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
11404 (am33_supply_fpregset_method): Likewise.
11405 (am33_collect_gregset_method): Likewise.
11406 (am33_collect_fpregset_method): Likewise.
11407
11408 2015-02-04 Doug Evans <dje@google.com>
11409 Pedro Alves <palves@redhat.com>
11410 Eli Zaretskii <eliz@gnu.org>
11411
11412 PR tui/17810
11413 * tui/tui-command.c (tui_refresh_cmd_win): New function.
11414 * tui/tui-command.c (tui_refresh_cmd_win): Declare.
11415 * tui/tui-file.c: #include tui/tui-command.h.
11416 (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
11417 (tui_file_flush): Refresh command window if stream is gdb_stdout.
11418 * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
11419
11420 2015-02-04 Pedro Alves <palves@redhat.com>
11421
11422 Fix build breakage.
11423 * event-loop.c (gdb_do_one_event): Add default switch case.
11424
11425 2015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11426
11427 Filter out inferior gcc option -fpreprocessed.
11428 * compile/compile.c (filter_args): New function.
11429 (get_args): Use it.
11430
11431 2015-02-03 Pedro Alves <palves@redhat.com>
11432
11433 * event-loop.c: Don't declare nor define a queue type for
11434 gdb_event_p.
11435 (event_queue): Delete.
11436 (create_event, create_file_event, gdb_event_xfree)
11437 (initialize_event_loop, process_event): Delete.
11438 (gdb_do_one_event): Return as soon as one event is handled.
11439 (handle_file_event): Change prototype. Used the passed in
11440 file_handler pointer and ready_mask instead of looping over all
11441 file handlers.
11442 (gdb_wait_for_event): Update the poll/select timeouts before
11443 blocking. Run event handlers directly instead of queueing events.
11444 Return as soon as one event is handled.
11445 (struct async_event_handler_data): Delete.
11446 (invoke_async_event_handler): Delete.
11447 (check_async_event_handlers): Change return type to int. Run
11448 event handlers directly instead of queueing events. Return as
11449 soon as one event is handled.
11450 (handle_timer_event): Delete.
11451 (update_wait_timeout): New function, factored out from
11452 poll_timers.
11453 (poll_timers): Reimplement.
11454 * event-loop.h (initialize_event_loop): Delete declaration.
11455 * top.c (gdb_init): Don't call initialize_event_loop.
11456
11457 2015-02-03 Pedro Alves <palves@redhat.com>
11458
11459 * event-loop.c (clear_async_event_handler): New function.
11460 * event-loop.h (clear_async_event_handler): New declaration.
11461 * record-btrace.c (record_btrace_async): New function.
11462 (init_record_btrace_ops): Install record_btrace_async.
11463 * record-full.c (record_full_async): New function.
11464 (record_full_resume): Don't mark the async event source here.
11465 (init_record_full_ops): Install record_full_async.
11466 (record_full_core_resume): Don't mark the async event source here.
11467 (init_record_full_core_ops): Install record_full_async.
11468 * remote.c (remote_async): Mark and clear the async stop reply
11469 queue event-loop token as appropriate.
11470
11471 2015-02-03 Pedro Alves <palves@redhat.com>
11472
11473 * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
11474 target_is_async_p instead of target_can_async.
11475 (linux_nat_wait): Use target_is_async_p instead of
11476 target_can_async. Don't enable async here.
11477 * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
11478 target_is_async_p instead of target_can_async.
11479
11480 2015-02-02 Simon Marchi <simon.marchi@ericsson.com>
11481
11482 * varobj.h (lang_varobj_ops): Mention which return values need
11483 to be freed.
11484
11485 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11486
11487 * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
11488
11489 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11490
11491 PR gdb/17856:
11492 * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
11493 results found in the cache.
11494
11495 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11496
11497 PR gdb/17854:
11498 * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
11499 when allocating a new one.
11500
11501 2015-02-01 Tom Tromey <tom@tromey.com>
11502
11503 * MAINTAINERS: Remove myself.
11504
11505 2015-01-31 Doug Evans <xdje42@gmail.com>
11506
11507 * dwarf2read.c (process_structure_scope): Update setting of
11508 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
11509 * gdbtypes.c (internal_type_vptr_fieldno): New function.
11510 (set_type_vptr_fieldno): New function.
11511 (internal_type_vptr_basetype): New function.
11512 (set_type_vptr_basetype): New function.
11513 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
11514 TYPE_VPTR_BASETYPE.
11515 (allocate_cplus_struct_type): Initialize vptr_fieldno.
11516 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
11517 (print_cplus_stuff): ... moved here.
11518 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
11519 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
11520 moved to ...
11521 (struct cplus_struct_type): ... here. All uses updated.
11522 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
11523 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
11524 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
11525 * stabsread.c (read_tilde_fields): Update setting of
11526 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
11527
11528 2015-01-31 Doug Evans <xdje42@gmail.com>
11529
11530 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
11531 to self_p.
11532 (cp_print_class_member): Rename local domain to self_type.
11533 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
11534 domain_type to self_type.
11535 (set_die_type) <need_gnat_info>: Handle
11536 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
11537 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
11538 TYPE_SPECIFIC_SELF_TYPE.
11539 * gdbtypes.c (internal_type_self_type): New function.
11540 (set_type_self_type): New function.
11541 (smash_to_memberptr_type): Rename parameter domain to self_type.
11542 Update setting of TYPE_SELF_TYPE.
11543 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
11544 (smash_to_method_type): Rename parameter domain to self_type.
11545 Update setting of TYPE_SELF_TYPE.
11546 (check_stub_method): Call smash_to_method_type.
11547 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
11548 (copy_type_recursive): Ditto.
11549 * gdbtypes.h (enum type_specific_kind): New value
11550 TYPE_SPECIFIC_SELF_TYPE.
11551 (struct main_type) <type_specific>: New member self_type.
11552 (struct cplus_struct_type) <fn_field.type>: Update comment.
11553 (TYPE_SELF_TYPE): Rewrite.
11554 (internal_type_self_type, set_type_self_type): Declare.
11555 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
11556 self_type.
11557 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
11558 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
11559 TYPE_TARGET_TYPE.
11560 * stabsread.c (read_member_functions): Mark methods with
11561 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
11562 TYPE_SELF_TYPE.
11563
11564 2015-01-31 Doug Evans <xdje42@gmail.com>
11565
11566 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
11567 All uses updated.
11568
11569 2015-01-31 Doug Evans <xdje42@gmail.com>
11570
11571 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
11572 or unions. Return zero if union.
11573 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
11574 (gnuv3_rtti_type): Pass already-check_typedef'd value to
11575 gnuv3_get_vtable.
11576 (compute_vtable_size): Assert only passed structs.
11577 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
11578
11579 2015-01-31 Doug Evans <xdje42@gmail.com>
11580
11581 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
11582 kinds.
11583
11584 2015-01-31 Gary Benson <gbenson@redhat.com>
11585 Doug Evans <dje@google.com>
11586
11587 PR cli/9007
11588 PR cli/11920
11589 PR cli/15548
11590 * cli/cli-cmds.c (complete_command): Notify user if max-completions
11591 reached.
11592 * common/common-exceptions.h (enum errors)
11593 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
11594 * completer.h (get_max_completions_reached_message): New declaration.
11595 (max_completions): Likewise.
11596 (completion_tracker_t): New typedef.
11597 (new_completion_tracker): New declaration.
11598 (make_cleanup_free_completion_tracker): Likewise.
11599 (maybe_add_completion_enum): New enum.
11600 (maybe_add_completion): New declaration.
11601 (throw_max_completions_reached_error): Likewise.
11602 * completer.c (max_completions): New global variable.
11603 (new_completion_tracker): New function.
11604 (free_completion_tracker): Likewise.
11605 (make_cleanup_free_completion_tracker): Likewise.
11606 (maybe_add_completions): Likewise.
11607 (throw_max_completions_reached_error): Likewise.
11608 (complete_line): Remove duplicates and limit result to max_completions
11609 entries.
11610 (get_max_completions_reached_message): New function.
11611 (gdb_display_match_list): Handle max_completions.
11612 (_initialize_completer): New declaration and function.
11613 * symtab.c: Include completer.h.
11614 (completion_tracker): New static variable.
11615 (completion_list_add_name): Call maybe_add_completion.
11616 (default_make_symbol_completion_list_break_on_1): Renamed from
11617 default_make_symbol_completion_list_break_on. Maintain
11618 completion_tracker across calls to completion_list_add_name.
11619 (default_make_symbol_completion_list_break_on): New function.
11620 * top.c (init_main): Set rl_completion_display_matches_hook.
11621 * tui/tui-io.c: Include completer.h.
11622 (tui_old_rl_display_matches_hook): New static global.
11623 (tui_rl_display_match_list): Notify user if max-completions reached.
11624 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
11625 * NEWS (New Options): Mention set/show max-completions.
11626
11627 2015-01-31 Gary Benson <gbenson@redhat.com>
11628
11629 * symtab.c (struct add_name_data) <code>: New field.
11630 Updated comments.
11631 (add_symtab_completions): New function.
11632 (symtab_expansion_callback): Likewise.
11633 (default_make_symbol_completion_list_break_on): Set datum.code.
11634 Move minimal symbol scan before calling expand_symtabs_matching.
11635 Scan known primary symtabs for externs and statics before calling
11636 expand_symtabs_matching. Pass symtab_expansion_callback as
11637 expansion_notify argument to expand_symtabs_matching. Do not scan
11638 primary symtabs for externs and statics after calling
11639 expand_symtabs_matching.
11640
11641 2015-01-31 Gary Benson <gbenson@redhat.com>
11642
11643 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
11644 (struct quick_symbol_functions) <expand_symtabs_matching>:
11645 New argument expansion_notify. All uses updated.
11646 (expand_symtabs_matching): New argument expansion_notify.
11647 All uses updated.
11648 * symfile-debug.c (debug_qf_expand_symtabs_matching):
11649 Also print expansion notify.
11650 * symtab.c (expand_symtabs_matching_via_partial): Call
11651 expansion_notify whenever a partial symbol table is expanded.
11652 * dwarf2read.c (dw2_expand_symtabs_matching): Call
11653 expansion_notify whenever a symbol table is instantiated.
11654
11655 2015-01-31 Doug Evans <xdje42@gmail.com>
11656
11657 * cli-out.c: #include completer.h, readline/readline.h.
11658 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
11659 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
11660 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
11661 * cli-out.h (cli_display_match_list): Declare.
11662 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
11663 (ELLIPSIS_LEN): Ditto.
11664 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
11665 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
11666 (gdb_fnprint, gdb_print_filename): Ditto.
11667 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
11668 (gdb_display_match_list): Ditto.
11669 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
11670 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
11671 (mld_beep_ftype, mld_read_key_ftype): Ditto.
11672 (match_list_displayer): New struct.
11673 (gdb_display_match_list): Declare.
11674 * top.c (init_main): Set rl_completion_display_matches_hook.
11675 * tui/tui-io.c: #include completer.h.
11676 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
11677 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
11678 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
11679 (tui_mld_getc, tui_mld_read_key): Ditto.
11680 (tui_rl_display_match_list): Rewrite.
11681 (tui_handle_resize_during_io): New arg for_completion. All callers
11682 updated.
11683
11684 2015-01-31 Doug Evans <xdje42@gmail.com>
11685
11686 Add symbol lookup cache.
11687 * NEWS: Document new options and commands.
11688 * symtab.c (symbol_cache_key): New static global.
11689 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
11690 (SYMBOL_LOOKUP_FAILED): New macro.
11691 (symbol_cache_slot_state): New enum.
11692 (block_symbol_cache): New struct.
11693 (symbol_cache): New struct.
11694 (new_symbol_cache_size, symbol_cache_size): New static globals.
11695 (hash_symbol_entry, eq_symbol_entry): New functions.
11696 (symbol_cache_byte_size, resize_symbol_cache): New functions.
11697 (make_symbol_cache, free_symbol_cache): New functions.
11698 (get_symbol_cache, symbol_cache_cleanup): New function.
11699 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
11700 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
11701 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
11702 (symbol_cache_flush, symbol_cache_dump): New functions.
11703 (maintenance_print_symbol_cache): New function.
11704 (maintenance_flush_symbol_cache): New function.
11705 (symbol_cache_stats): New function.
11706 (maintenance_print_symbol_cache_statistics): New function.
11707 (symtab_new_objfile_observer): New function.
11708 (symtab_free_objfile_observer): New function.
11709 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
11710 (_initialize_symtab): Init symbol_cache_key. New parameter
11711 maint symbol-cache-size. New maint commands print symbol-cache,
11712 print symbol-cache-statistics, flush-symbol-cache.
11713 Install new_objfile, free_objfile observers.
11714
11715 2015-01-31 Joel Brobecker <brobecker@adacore.com>
11716
11717 PR symtab/17855
11718 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
11719 to end.
11720
11721 2015-01-31 Doug Evans <xdje42@gmail.com>
11722
11723 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
11724 * auto-load.c: #include ctype.h.
11725 (struct auto_load_pspace_info): Replace member loaded_scripts with
11726 new members loaded_script_files, loaded_script_texts.
11727 (auto_load_pspace_data_cleanup): Update.
11728 (init_loaded_scripts_info): Update.
11729 (get_auto_load_pspace_data_for_loading): Update.
11730 (maybe_add_script_file): Renamed from maybe_add_script. All callers
11731 updated.
11732 (maybe_add_script_text): New function.
11733 (clear_section_scripts): Update.
11734 (source_script_file, execute_script_contents): New functions.
11735 (source_section_scripts): Add support for
11736 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
11737 (print_scripts): New function.
11738 (auto_load_info_scripts): Also print inlined scripts.
11739 (maybe_print_unsupported_script_warning): Renamed from
11740 unsupported_script_warning_print. All callers updated.
11741 (maybe_print_script_not_found_warning): Renamed from
11742 script_not_found_warning_print. All callers updated.
11743 * extension-priv.h (struct extension_language_script_ops): New member
11744 objfile_script_executor.
11745 * extension.c (ext_lang_objfile_script_executor): New function.
11746 * extension.h (objfile_script_executor_func): New typedef.
11747 (ext_lang_objfile_script_executor): Declare.
11748 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
11749 * guile/guile.c (guile_extension_script_ops): Update.
11750 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
11751 * python/python.c (python_extension_script_ops): Update.
11752 (gdbpy_execute_objfile_script): New function.
11753
11754 2015-01-31 Eli Zaretskii <eliz@gnu.org>
11755
11756 * tui/tui-io.c (tui_expand_tabs): New function.
11757 (tui_puts, tui_redisplay_readline): Expand TABs into the
11758 appropriate number of spaces.
11759 * tui/tui-regs.c: Include tui-io.h.
11760 (tui_register_format): Call tui_expand_tabs to expand TABs into
11761 the appropriate number of spaces.
11762 * tui/tui-io.h: Add prototype for tui_expand_tabs.
11763
11764 2015-01-30 Doug Evans <dje@google.com>
11765
11766 * NEWS: "info source" command now display producer string if present.
11767 * source.c (source_info): Print producer string if present.
11768
11769 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11770
11771 * varobj.c (varobj_delete): Fix comment.
11772
11773 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11774
11775 * varobj.c (create_child): Modify comment.
11776
11777 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11778
11779 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
11780 parameter.
11781 (ada_name_of_variable): Same.
11782 (ada_path_expr_of_child): Same.
11783 (ada_value_of_variable): Same.
11784 (ada_value_is_changeable_p): Same.
11785 (ada_value_has_mutated): Same.
11786 * c-varobj.c (varobj_is_anonymous_child): Same.
11787 (c_is_path_expr_parent): Same.
11788 (c_number_of_children): Same.
11789 (c_name_of_variable): Same.
11790 (c_path_expr_of_child): Same.
11791 (get_type): Same.
11792 (c_value_of_variable): Same.
11793 (cplus_number_of_children): Same.
11794 (cplus_name_of_variable): Same.
11795 (cplus_path_expr_of_child): Same.
11796 (cplus_value_of_variable): Same.
11797 * jv-varobj.c (java_number_of_children): Same.
11798 (java_name_of_variable): Same.
11799 (java_path_expr_of_child): Same.
11800 (java_value_of_variable): Same.
11801 * varobj.c (number_of_children): Same.
11802 (name_of_variable): Same.
11803 (is_root_p): Same.
11804 (varobj_ensure_python_env): Same.
11805 (varobj_get_objname): Same.
11806 (varobj_get_expression): Same.
11807 (varobj_get_display_format): Same.
11808 (varobj_get_display_hint): Same.
11809 (varobj_has_more): Same.
11810 (varobj_get_thread_id): Same.
11811 (varobj_get_frozen): Same.
11812 (dynamic_varobj_has_child_method): Same.
11813 (varobj_get_gdb_type): Same.
11814 (is_path_expr_parent): Same.
11815 (varobj_default_is_path_expr_parent): Same.
11816 (varobj_get_language): Same.
11817 (varobj_get_attributes): Same.
11818 (varobj_is_dynamic_p): Same.
11819 (varobj_get_child_range): Same.
11820 (varobj_value_has_mutated): Same.
11821 (varobj_get_value_type): Same.
11822 (number_of_children): Same.
11823 (name_of_variable): Same.
11824 (check_scope): Same.
11825 (varobj_editable_p): Same.
11826 (varobj_value_is_changeable_p): Same.
11827 (varobj_floating_p): Same.
11828 (varobj_default_value_is_changeable_p): Same.
11829
11830 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11831
11832 * varobj.c (varobj_get_path_expr): Set var->path_expr.
11833 * c-varobj.c (c_path_expr_of_child): Set local var instead of
11834 child->path_expr.
11835 (cplus_path_expr_of_child): Same.
11836
11837 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11838
11839 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
11840 result.
11841 (mi_cmd_var_info_expression): Same.
11842 * varobj.c (varobj_get_expression): Mention in the comment that
11843 the result must by freed by the caller.
11844
11845 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11846
11847 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
11848 varobj_get_type.
11849 (varobj_update_one): Same.
11850 * varobj.c (update_type_if_necessary): Free curr_type_str and
11851 new_type_str.
11852 (varobj_get_type): Specify in comment that the result needs to be
11853 freed by the caller.
11854
11855 2015-01-29 Doug Evans <dje@google.com>
11856
11857 PR symtab/17890
11858 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
11859
11860 2015-01-25 Mark Wielaard <mjw@redhat.com>
11861
11862 * dwarf2read.c (checkproducer): Call producer_is_gcc.
11863 * utils.c (producer_is_gcc_ge_4): Likewise.
11864 (producer_is_gcc): New function.
11865 * utils.h (producer_is_gcc): New declaration.
11866
11867 2015-01-29 Joel Brobecker <brobecker@adacore.com>
11868
11869 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
11870 kind.
11871 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
11872 parameter by "addr_stack" parameter.
11873 (resolve_dynamic_range): Replace "addr" parameter by
11874 "stack_addr" parameter. Update function documentation.
11875 Update code accordingly.
11876 (resolve_dynamic_array, resolve_dynamic_union)
11877 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
11878 (resolve_dynamic_type): Update code, following the changes made
11879 to resolve_dynamic_type_internal's interface.
11880 * dwarf2loc.h (struct property_addr_info): New.
11881 (dwarf2_evaluate_property): Replace "address" parameter
11882 by "addr_stack" parameter. Adjust function documentation.
11883 (struct dwarf2_offset_baton): New.
11884 (struct dwarf2_property_baton): Update documentation of
11885 field "referenced_type" to be more general. New field
11886 "offset_info" in union data field.
11887 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
11888 parameter by "addr_stack" parameter. Adjust code accordingly.
11889 Add support for PROP_ADDR_OFFSET properties.
11890 * dwarf2read.c (attr_to_dynamic_prop): Add support for
11891 DW_AT_data_member_location attributes as well. Use case
11892 statements instead of if/else condition.
11893
11894 2015-01-29 Joel Brobecker <brobecker@adacore.com>
11895
11896 * ada-varobj.c (ada_varobj_get_array_number_of_children):
11897 Return zero if PARENT_VALUE is NULL and parent_type's
11898 range type is dynamic.
11899
11900 2015-01-29 Joel Brobecker <brobecker@adacore.com>
11901
11902 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
11903 nonzero if the type's subtype is dynamic.
11904 (resolve_dynamic_range): Also resolve the range's subtype.
11905
11906 2015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
11907
11908 Pushed by Joel Brobecker <brobecker@adacore.com>.
11909 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
11910
11911 2015-01-27 Doug Evans <dje@google.com>
11912
11913 * NEWS: Mention gdb.Objfile.username.
11914 * python/py-objfile.c (objfpy_get_username): New function.
11915 (objfile_getset): Add "username".
11916
11917 2015-01-24 Mark Wielaard <mjw@redhat.com>
11918
11919 * stack.c (return_command): Markup warning message with _.
11920
11921 2015-01-24 Doug Evans <xdje42@gmail.com>
11922
11923 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
11924
11925 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
11926
11927 Fix 100x slowdown regression on DWZ files.
11928 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
11929 (struct line_header): Add offset and offset_in_dwz.
11930 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
11931 (free_line_header_voidp): New declaration.
11932 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
11933 functions.
11934 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
11935 (handle_DW_AT_stmt_list): Use line_header_hash.
11936 (free_line_header_voidp): New function.
11937 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
11938 (dwarf_decode_lines): New parameter decode_mapping, use it.
11939 (dwarf2_free_objfile): Free line_header_hash.
11940
11941 2015-01-23 Simon Marchi <simon.marchi@ericsson.com>
11942
11943 PR gdb/17416
11944 * valops.c (value_rtti_indirect_type): Catch exception thrown by
11945 value_ind.
11946
11947 2015-01-15 Mark Wielaard <mjw@redhat.com>
11948
11949 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
11950 DW_AT_noreturn.
11951 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
11952 calling_convention an 8 bit bit field.
11953 (TYPE_NO_RETURN): New macro.
11954 * infcmd.c (finish_command): Query if function does not return
11955 normally.
11956 * stack.c (return_command): Likewise.
11957
11958 2015-01-23 Pedro Alves <palves@redhat.com>
11959
11960 * linux-nat.c (linux_is_async_p): New macro.
11961 (linux_nat_is_async_p):
11962 (linux_nat_terminal_inferior): Check whether the target can async
11963 instead of whether it is already async.
11964 (linux_nat_terminal_ours): Don't check whether the target is
11965 async.
11966 (linux_async_pipe): Use linux_is_async_p.
11967
11968 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
11969
11970 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
11971 '-ascending'.
11972 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
11973 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
11974 Sort tp_array using tp_array_compar.
11975 (_initialize_thread): Extend thread_apply_all_command help.
11976
11977 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
11978
11979 * corelow.c (core_open): Call also thread_command.
11980 * gdbthread.h (thread_command): New prototype moved from ...
11981 * thread.c (thread_command): ... here.
11982 (thread_command): Make it global.
11983
11984 2015-01-22 Pedro Alves <palves@redhat.com>
11985
11986 * configure.ac [*mingw32*]: Check $curses_found instead of
11987 $prefer_curses.
11988 * configure: Regenerate.
11989 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
11990 HAVE_NCURSES_NCURSES_H checks.
11991
11992 2015-01-22 Eli Zaretskii <eliz@gnu.org>
11993
11994 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
11995 fails with the 1st arg NULL, try again with "unknown". Don't test
11996 the "cup" capability: it isn't supported by the Windows port of
11997 ncurses, but the Windows console driver is still capable of
11998 supporting TUI.
11999
12000 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12001
12002 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
12003
12004 2015-01-22 Eli Zaretskii <eliz@gnu.org>
12005
12006 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
12007 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
12008 reason that "make TAGS" is broken.
12009
12010 2015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
12011
12012 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
12013 and check additional store instructions.
12014
12015 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12016
12017 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
12018
12019 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12020
12021 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
12022 ppc_canonicalize_syscall, ppc_linux_syscall_record,
12023 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
12024 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12025 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
12026 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
12027 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
12028 ppc_process_record_op19, ppc_process_record_op31,
12029 ppc_process_record_op59, ppc_process_record_op60,
12030 ppc_process_record_op63): Likewise.
12031
12032 2015-01-20 Joel Brobecker <brobecker@adacore.com>
12033
12034 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
12035 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
12036 strerror.
12037
12038 2015-01-20 Wei-cheng Wang <cole945@gmail.com>
12039
12040 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
12041 ppc_process_record_op31, ppc_process_record_op59,
12042 ppc_process_record_op60, ppc_process_record_op63,
12043 ppc_process_record): Fix -Wformat warning.
12044 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
12045 Remove unused variables.
12046
12047 2015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
12048
12049 * MAINTAINERS (Write After Approval): Add "Chen Gang".
12050
12051 2015-01-19 Eli Zaretskii <eliz@gnu.org>
12052
12053 * configure.ac [*mingw32*]: Only add windows-termcap.o to
12054 CONFIG_OBS if not building with a curses library.
12055 * configure: Regenerate.
12056
12057 * windows-termcap.c: Include defs.h. Make the whole body empty if
12058 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
12059 HAVE_NCURSES_NCURSES_H is defined.
12060
12061 2015-01-19 Joel Brobecker <brobecker@adacore.com>
12062
12063 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
12064 from end of line to start of next line.
12065
12066 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12067
12068 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
12069 Scan PLT stub backward for reverse debugging.
12070 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12071
12072 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12073 Ulrich Weigand <uweigand@de.ibm.com>
12074
12075 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
12076 gdb_target_obs.
12077 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
12078 record.
12079 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
12080 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
12081 (ppc_linux_init_abi): Set process_record, process_record_signal.
12082 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
12083 ppc_linux_record_tdep to gdbarch_tdep.
12084 (ppc_process_record): New declaration.
12085 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
12086 ppc_process_record_op19, ppc_process_record_op31,
12087 ppc_process_record_op59, ppc_process_record_op60,
12088 ppc_process_record_op63, ppc_process_record): New functions.
12089
12090 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12091
12092 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
12093 rs6000_in_function_epilogue_frame_p and add an argument
12094 for frame_info.
12095 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
12096 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
12097 New functions.
12098 (rs6000_epilogue_frame_unwind): New.
12099 (rs6000_gdbarch_init): Append epilogue unwinder.
12100
12101 2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12102
12103 * nat/linux-personality.c: Replace "#ifndef
12104 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
12105 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
12106 systems.
12107
12108 2015-01-16 Eli Zaretskii <eliz@gnu.org>
12109
12110 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
12111 functions.
12112 (_initialize_tui_win) <border-kind, border-mode>:
12113 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
12114 (tui_set_tab_width_command): Fix the commentary.
12115
12116 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
12117
12118 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
12119 Doc fix.
12120 (tui_set_tab_width_command): Delete and recreate the source and
12121 the disassembly windows, to show the effect of the changed tab
12122 size immediately.
12123
12124 * tui/tui-data.h (LINE_PREFIX): Make shorter
12125 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
12126 "Thread NNNNN.XXXX" thread ID notation on Windows.
12127
12128 2015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
12129
12130 Fix gcc-5 compilation.
12131 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
12132
12133 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12134
12135 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
12136 (linux-personality.o): New rule.
12137 * common/common-defs.h: Include <stdint.h>.
12138 * config/aarch64/linux.mh (NATDEPFILES): Include
12139 linux-personality.o.
12140 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
12141 * config/arm/linux.mh (NATDEPFILES): Likewise.
12142 * config/i386/linux64.mh (NATDEPFILES): Likewise.
12143 * config/i386/linux.mh (NATDEPFILES): Likewise.
12144 * config/ia64/linux.mh (NATDEPFILES): Likewise.
12145 * config/m32r/linux.mh (NATDEPFILES): Likewise.
12146 * config/m68k/linux.mh (NATDEPFILES): Likewise.
12147 * config/mips/linux.mh (NATDEPFILES): Likewise.
12148 * config/pa/linux.mh (NATDEPFILES): Likewise.
12149 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
12150 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
12151 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
12152 * config/s390/linux.mh (NATDEPFILES): Likewise.
12153 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
12154 * config/sparc/linux.mh (NATDEPFILES): Likewise.
12155 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
12156 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
12157 * defs.h: Remove #include <stdint.h> (moved to
12158 common/common-defs.h).
12159 * linux-nat.c: Include nat/linux-personality.h. Remove #include
12160 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
12161 nat/linux-personality.c).
12162 (linux_nat_create_inferior): Remove code to disable address space
12163 randomization (moved to nat/linux-personality.c). Create cleanup
12164 to disable address space randomization.
12165 * nat/linux-personality.c: New file.
12166 * nat/linux-personality.h: Likewise.
12167
12168 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12169
12170 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
12171 common/posix-strerror.c.
12172 (posix-strerror.o): New rule.
12173 (mingw-strerror.o): Likewise.
12174 * common/common-utils.h (safe_strerror): Move prototype to here,
12175 from utils.h.
12176 * common/common.host: New file.
12177 * common/mingw-strerror.c: Likewise.
12178 * common/posix-strerror.c: Likewise.
12179 * configure: Regenerated.
12180 * configure.ac: Source common/common.host. Add variable
12181 common_host_obs to gdb_host_obs.
12182 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
12183 gdb/common/posix-strerror.c when warning about the use of
12184 strerror.
12185 * mingw-hdep.c (safe_strerror): Remove definition; move it to
12186 common/mingw-strerror.c.
12187 * posix-hdep.c (safe_strerror): Remove definition; move it to
12188 common/posix-hdep.c.
12189 * utils.h (safe_strerror): Remove prototype; move to
12190 common/common-utils.h.
12191
12192 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12193
12194 GDB 7.8.2 released.
12195
12196 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12197
12198 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
12199 ___XA type if the array has already been fixed.
12200
12201 2015-01-14 Yao Qi <yao@codesourcery.com>
12202
12203 * Makefile.in (ppc-linux.o): New rule.
12204 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
12205 * configure.ac: AC_CHECK_FUNCS(getauxval).
12206 * config.in: Re-generated.
12207 * configure: Re-generated.
12208 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
12209 Declare.
12210 * nat/ppc-linux.c: New file.
12211 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
12212 Call ppc64_64bit_inferior_p.
12213
12214 2015-01-14 Yao Qi <yao@codesourcery.com>
12215
12216 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
12217 nat/ppc-linux.h.
12218 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
12219 (PPC_FEATURE_HAS_DFP): Likewise.
12220 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
12221 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
12222 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
12223 Include "nat/ppc-linux.h".
12224 * nat/ppc-linux.h: New file.
12225 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
12226
12227 2015-01-14 Pedro Alves <palves@redhat.com>
12228
12229 PR gdb/17525
12230 * breakpoint.c: Include "interps.h".
12231 (bpstat_do_actions_1): Also check whether the interpreter is
12232 async.
12233
12234 2015-01-14 Pedro Alves <palves@redhat.com>
12235
12236 PR cli/17828
12237 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
12238 reinstall if the interpreter is sync.
12239
12240 2015-01-13 Doug Evans <dje@google.com>
12241
12242 * objfiles.c (objfile_filename): New function.
12243 * objfiles.h (objfile_filename): Declare it.
12244 (objfile_name): Add function comment.
12245 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
12246 bfd file name (which may be realpath'd), and the original name.
12247
12248 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12249
12250 * NEWS: Create a new section for the next release branch.
12251 Rename the section of the current branch, now that it has
12252 been cut.
12253
12254 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12255
12256 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
12257 * version.in: Bump version to 7.9.50.DATE-cvs.
12258
12259 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12260
12261 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
12262 Remove trailing new-line in argument of call to warning.
12263
12264 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12265
12266 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
12267 new-line in argument of call to "warning".
12268
12269 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12270
12271 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
12272 in static block, then try searching for primitive types.
12273
12274 2015-01-12 Patrick Palka <patrick@parcs.ath.cx>
12275
12276 * top.h (gdb_add_history): Declare.
12277 * top.c (command_count): New variable.
12278 (gdb_add_history): New function.
12279 (gdb_safe_append_history): New static function.
12280 (quit_force): Call it.
12281 (command_line_input): Use gdb_add_history instead of
12282 add_history.
12283 * event-top.c (command_line_handler): Likewise.
12284
12285 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
12286
12287 PR gdb/17046
12288 * darwin-nat.c: Replace <machine/setjmp.h> #include by
12289 <setjmp.h> #include.
12290
12291 2015-01-11 Doug Evans <xdje42@gmail.com>
12292
12293 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
12294
12295 2015-01-11 Doug Evans <xdje42@gmail.com>
12296
12297 PR gdb/15830
12298 * NEWS: The "maint demangle" command is renamed as "demangle".
12299 * demangle.c: #include cli/cli-utils.h, language.h.
12300 (demangle_command): New function.
12301 (_initialize_demangle): Add new command "demangle".
12302 * maint.c (maintenance_demangle): Stub out.
12303 (_initialize_maint_cmds): Update help text for "maint demangle",
12304 and mark as deprecated.
12305
12306 2015-01-11 Mark Kettenis <kettenis@gnu.org>
12307
12308 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
12309 inferior_thread is a function.
12310
12311 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12312
12313 * Makefile.in (.y.c): Don't munge yacc's #line
12314 directives.
12315
12316 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12317
12318 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
12319 to prompt for input.
12320 * tui/tui-hooks.c (tui_query_hook): Remove.
12321 (tui_install_hooks): Don't set deprecated_query_hook.
12322 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
12323 height calculation. Always update the command window's cur_line.
12324
12325 2015-01-09 Pedro Alves <palves@redhat.com>
12326
12327 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
12328 function.
12329 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
12330 declaration.
12331 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
12332 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
12333 stop_reason.
12334 (check_stopped_by_watchpoint): New function.
12335 (save_sigtrap): Reimplement.
12336 (linux_nat_stopped_by_watchpoint): Adjust.
12337 (linux_nat_lp_status_is_event): Delete.
12338 (stop_wait_callback): Only call save_sigtrap after storing the
12339 pending status.
12340 (status_callback): If the thread had been stopped for a breakpoint
12341 that has since been removed, discard the event and resume the LWP.
12342 (count_events_callback, select_event_lwp_callback): Use
12343 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
12344 (cancel_breakpoint): Rename to ...
12345 (check_stopped_by_breakpoint): ... this. Record whether the LWP
12346 stopped for a software breakpoint or hardware breakpoint.
12347 (select_event_lwp): Only give preference to the stepping LWP in
12348 all-stop mode. Adjust comments.
12349 (stop_and_resume_callback): Remove references to new_pending_p.
12350 (linux_nat_filter_event): Likewise. Leave exit events of the
12351 leader thread pending here. Handle signal short circuiting here.
12352 Only call save_sigtrap after storing the pending waitstatus.
12353 (linux_nat_wait_1): Remove 'retry' label. Remove references to
12354 new_pending. Don't handle leaving events the caller is not
12355 interested in pending here, nor handle signal short-circuiting
12356 here. Also give equal priority to all LWPs that have had events
12357 in non-stop mode. If reporting a software breakpoint event,
12358 unadjust the LWP's PC.
12359 * linux-nat.h (enum lwp_stop_reason): New.
12360 (struct lwp_info) <stop_pc>: New field.
12361 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
12362 (struct lwp_info) <stop_reason>: New field.
12363 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
12364
12365 2015-01-09 Pedro Alves <palves@redhat.com>
12366
12367 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
12368 Set the LWP's 'resumed' flag.
12369
12370 2015-01-09 Pedro Alves <palves@redhat.com>
12371
12372 * linux-nat.c (linux_resume_one_lwp): New function.
12373 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
12374 (linux_nat_resume): Use lwp_status_pending_p and
12375 linux_resume_one_lwp.
12376 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
12377 (linux_handle_extended_wait): Use linux_resume_one_lwp.
12378 (status_callback, running_callback): Use lwp_status_pending_p.
12379 (lwp_status_pending_p): New function.
12380 (stop_and_resume_callback): Use lwp_status_pending_p.
12381 (linux_nat_filter_event): Use linux_resume_one_lwp.
12382 (linux_nat_wait_1): Always use status_callback to look for an LWP
12383 with a pending status. Use linux_resume_one_lwp.
12384 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
12385 linux_resume_one_lwp.
12386
12387 2015-01-09 Pedro Alves <palves@redhat.com>
12388
12389 * breakpoint.c (bp_location_inserted_here_p): New function,
12390 factored out from ...
12391 (breakpoint_inserted_here_p): ... here. Use
12392 ALL_BP_LOCATIONS_AT_ADDR.
12393 (software_breakpoint_inserted_here_p): Use
12394 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
12395
12396 2014-01-09 Pedro Alves <palves@redhat.com>
12397
12398 Skip enabling event reporting if the kernel supports
12399 PTRACE_EVENT_CLONE.
12400 * linux-thread-db.c: Include "nat/linux-ptrace.h".
12401 (thread_db_use_events): New function.
12402 (try_thread_db_load_1): Check thread_db_use_events before enabling
12403 event reporting.
12404 (update_thread_state): New function.
12405 (attach_thread): Use it. Check thread_db_use_events before
12406 enabling event reporting.
12407 (thread_db_detach): Check thread_db_use_events before disabling
12408 event reporting.
12409 (find_new_threads_callback): Check thread_db_use_events before
12410 enabling event reporting. Update the thread's state if not using
12411 libthread_db events.
12412
12413 2015-01-09 Pedro Alves <palves@redhat.com>
12414
12415 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
12416 about to wait for is > 0.
12417 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
12418 the kernel thread ID is -1.
12419
12420 2015-01-09 Pedro Alves <palves@redhat.com>
12421
12422 * linux-nat.c (attach_proc_task_lwp_callback): New function.
12423 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
12424 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
12425 ptrace option flags.
12426 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
12427 field.
12428 * nat/linux-procfs.c: Include <dirent.h>.
12429 (linux_proc_get_int): New parameter "warn". Handle it.
12430 (linux_proc_get_tgid): Adjust.
12431 (linux_proc_get_tracerpid): Rename to ...
12432 (linux_proc_get_tracerpid_nowarn): ... this.
12433 (linux_proc_pid_get_state): New function, factored out from
12434 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
12435 and handle it.
12436 (linux_proc_pid_is_gone): New function.
12437 (linux_proc_pid_is_stopped): Adjust.
12438 (linux_proc_pid_is_zombie_maybe_warn)
12439 (linux_proc_pid_is_zombie_nowarn): New functions.
12440 (linux_proc_pid_is_zombie): Use
12441 linux_proc_pid_is_zombie_maybe_warn.
12442 (linux_proc_attach_tgid_threads): New function.
12443 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
12444 (linux_proc_get_tracerpid): Rename to ...
12445 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
12446 (linux_proc_pid_is_gone): New declaration.
12447 (linux_proc_pid_is_zombie): Update comment.
12448 (linux_proc_pid_is_zombie_nowarn): New declaration.
12449 (linux_proc_attach_lwp_func): New typedef.
12450 (linux_proc_attach_tgid_threads): New declaration.
12451 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
12452 use nowarn functions.
12453 (linux_ptrace_attach_fail_reason_string): Move here from
12454 gdbserver/linux-low.c and rename.
12455 (ptrace_supports_feature): If the current ptrace options are not
12456 known yet, check them now, instead of asserting.
12457 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
12458 Declare.
12459
12460 2015-01-09 Pedro Alves <palves@redhat.com>
12461
12462 * linux-thread-db.c (thread_db_find_new_threads_silently)
12463 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
12464 (find_new_threads_once): Print debug output on gdb_stdlog.
12465
12466 2015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
12467 Pedro Alves <palves@redhat.com>
12468
12469 * compile/compile.c: Include "gdb_wait.h".
12470 (do_rmdir): Check return value, and free 'zap'.
12471
12472 2015-01-08 Pedro Alves <palves@redhat.com>
12473 Yao Qi <yao@codesourcery.com>
12474
12475 * dwarf2loc.c (indirect_pieced_value): Don't call
12476 gdb_sign_extend. Call extract_signed_integer instead.
12477 * utils.c (gdb_sign_extend): Remove.
12478 * utils.h (gdb_sign_extend): Remove declaration.
12479
12480 2015-01-07 Pierre Muller <muller@sourceware.org>
12481
12482 PR symtab/17811
12483 * stabsread.c (define_symbol): Set language for C++ special symbols.
12484
12485 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
12486
12487 * inflow.c (initial_gdb_ttystate): Tweak comment.
12488
12489 2015-01-07 Joel Brobecker <brobecker@adacore.com>
12490
12491 * inflow.c (set_initial_gdb_ttystate): Add empty line after
12492 comment documenting function.
12493
12494 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
12495
12496 * terminal.h (set_initial_gdb_ttystate): Declare.
12497 * inflow.c (initial_gdb_ttystate): New static variable.
12498 (set_initial_gdb_ttystate): New setter.
12499 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
12500 instead of our current terminal state.
12501 * top.c (gdb_init): Call set_initial_gdb_ttystate.
12502
12503 2015-01-07 Joel Brobecker <brobecker@adacore.com>
12504
12505 * guile/scm-type.c (tyscm_array_1): Add comment.
12506 * python/py-type.c (typy_array_1): Add comment.
12507
12508 2015-01-06 Joel Brobecker <brobecker@adacore.com>
12509
12510 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
12511 error if N2 is equal to N1 - 1.
12512
12513 2015-01-06 Joel Brobecker <brobecker@adacore.com>
12514
12515 * python/py-type.c (typy_array_1): Do not raise negative-length
12516 exception if N2 is equal to N1 - 1.
12517
12518 2015-01-03 Doug Evans <xdje42@gmail.com>
12519
12520 * c-exp.y: Whitespace cleanup.
12521 (classify_inner_name): Remove extra ;.
12522
12523 2015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
12524
12525 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
12526 offset signed.
12527
12528 2015-01-02 Doug Evans <dje@google.com>
12529
12530 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
12531
12532 2015-01-02 Doug Evans <dje@google.com>
12533
12534 * symtab.h (struct symbol): Fix typo in comment.
12535
12536 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12537
12538 Update year range in copyright notice of all files.
12539
12540 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12541
12542 * top.c (print_gdb_version): Update copyright year to 2015.
12543
12544 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12545
12546 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
12547
12548 For older changes see ChangeLog-2014.
12549 \f
12550 Local Variables:
12551 mode: change-log
12552 left-margin: 8
12553 fill-column: 74
12554 version-control: never
12555 coding: utf-8
12556 End:
This page took 0.297334 seconds and 4 git commands to generate.