More char constification
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2015-10-13 Pedro Alves <palves@redhat.com>
2
3 * ada-lang.c (ada_enum_name): Constify local.
4 * ada-typeprint.c (print_range_bound): Constify locals.
5 * c-varobj.c (c_describe_child): Likewise.
6 * cli/cli-setshow.c (do_set_command): Likewise.
7 * gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
8 * dwarf2read.c (find_file_and_directory): Likewise.
9 (anonymous_struct_prefix, dwarf2_name): Likewise.
10 * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
11 * go-lang.c (unpack_mangled_go_symbol): Likewise.
12 * jv-typeprint.c (java_type_print_base): Likewise.
13 * ser-tcp.c (net_open): Likewise.
14 * symfile.c (deduce_language_from_filename): Likewise.
15 * symtab.c (gdb_mangle_name): Likewise.
16 * tui/tui-io.c (tui_redisplay_readline): Likewise.
17
18 2015-10-13 Pedro Alves <palves@redhat.com>
19
20 * infrun.c (restore_execution_direction): New function.
21 (fetch_inferior_event): Use it instead of
22 make_cleanup_restore_integer.
23 (execution_direction): Change type to enum
24 exec_direction_kind.
25 * infrun.h (execution_direction): Likewise.
26
27 2015-10-13 Pedro Alves <palves@redhat.com>
28
29 * ada-lang.c (ada_value_primitive_packed_val): Constify
30 locals. Use value_contents_writeable. Remove casts.
31
32 2015-10-13 Pedro Alves <palves@redhat.com>
33
34 * ada-lang.c (ada_value_primitive_packed_val): Add casts to malloc
35 and alloca calls.
36
37 2015-10-13 Simon Marchi <simon.marchi@polymtl.ca>
38
39 * lm32-tdep.c (lm32_push_dummy_call): Replace call to
40 write_memory with write_memory_unsigned_integer.
41
42 2015-10-13 Simon Marchi <thundersim@gmail.com>
43
44 * solib-dsbt.c (cmp_name): Constify arguments.
45 * solib-frv.c (cmp_name): Likewise.
46 * solib-svr4.c (svr4_create_solib_event_breakpoints): Likewise.
47 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Likewise.
48 (bfd_lookup_symbol_from_dyn_symtab): Likewise.
49 (gdb_bfd_lookup_symbol): Likewise.
50 * solib.h (gdb_bfd_lookup_symbol): Likewise.
51 (gdb_bfd_lookup_symbol_from_symtab): Likewise.
52
53 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
54
55 * stack.c (parse_frame_specification): Remove message parameter,
56 replace with fixed string in function body, update function
57 comment.
58 (frame_info): Remove message to parse_frame_specification.
59 (select_frame_command): Likewise.
60
61 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
62
63 * stack.c (parse_frame_specification): Delete.
64 (parse_frame_specification_1): Rename to
65 parse_frame_specification.
66 (frame_info): Use parse_frame_specification.
67 (select_frame_command): Likewise.
68 (return_command): Use select_frame and print_stack_frame rather
69 than frame_command and select_frame_command.
70 (func_command): Use get_current_frame rather than
71 parse_frame_specification.
72
73 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
74
75 * stack.c (func_command): Return early when there is no ARG
76 string.
77
78 2015-10-12 Andrew Burgess <andrew.burgess@embecosm.com>
79
80 * stack.c: Include safe-ctype.h not ctype.h.
81 (parse_frame_specification): Use ISSPACE not isspace.
82 (backtrace_command): Use TOLOWER not tolower.
83
84 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
85
86 * mep-tdep.c (current_me_module): Add cast.
87 (mep_gdbarch_init): Likewise.
88
89 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
90
91 * m32c-tdep.c (m32c_move_reg_t): Replace with...
92 (m32c_write_reg_t): ...this and...
93 (m32c_read_reg_t): ...this.
94 (struct m32c_reg): Update types of read and write.
95 (m32c_raw_read): Change declaration type to m32c_read_reg_t and
96 adjust definition.
97 (m32c_banked_read): Likewise.
98 (m32c_sb_read): Likewise.
99 (m32c_part_read): Likewise.
100 (m32c_cat_read): Likewise.
101 (m32c_r3r2r1r0_read): Likewise.
102 (m32c_raw_write): Change declaration type to m32c_write_reg_t
103 and adjust definition.
104 (m32c_banked_write): Likewise.
105 (m32c_sb_write): Likewise.
106 (m32c_part_write): Likewise.
107 (m32c_cat_write): Likewise.
108 (m32c_r3r2r1r0_write): Likewise.
109
110 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
111
112 * aarch64-linux-tdep.c (aarch64_linux_syscall_record): Add cast.
113
114 2015-10-12 Simon Marchi <simon.marchi@polymtl.ca>
115
116 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Return
117 gdb_sys_no_syscall instead of -1.
118
119 2015-10-12 Yao Qi <yao.qi@linaro.org>
120
121 * NEWS: Mention the change.
122
123 2015-10-12 Yao Qi <yao.qi@linaro.org>
124
125 * arch/aarch64-insn.c (emit_load_store): Rename to ...
126 (aarch64_emit_load_store): ... it. All callers updated.
127
128 2015-10-12 Yao Qi <yao.qi@linaro.org>
129
130 * arch/aarch64-insn.c (emit_insn): Rename to ...
131 (aarch64_emit_insn): ... it. All callers updated.
132
133 2015-10-12 Yao Qi <yao.qi@linaro.org>
134
135 * aarch64-linux-tdep.c: Include arch-utils.h.
136 (aarch64_linux_init_abi): Call set_gdbarch_max_insn_length,
137 set_gdbarch_displaced_step_copy_insn,
138 set_gdbarch_displaced_step_fixup,
139 set_gdbarch_displaced_step_free_closure,
140 set_gdbarch_displaced_step_location,
141 and set_gdbarch_displaced_step_hw_singlestep.
142 * aarch64-tdep.c (struct displaced_step_closure): New.
143 (struct aarch64_displaced_step_data): New.
144 (aarch64_displaced_step_b): New function.
145 (aarch64_displaced_step_b_cond): Likewise.
146 (aarch64_register): Likewise.
147 (aarch64_displaced_step_cb): Likewise.
148 (aarch64_displaced_step_tb): Likewise.
149 (aarch64_displaced_step_adr): Likewise.
150 (aarch64_displaced_step_ldr_literal): Likewise.
151 (aarch64_displaced_step_others): Likewise.
152 (aarch64_displaced_step_copy_insn): Likewise.
153 (aarch64_displaced_step_fixup): Likewise.
154 (aarch64_displaced_step_hw_singlestep): Likewise.
155 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): New macro.
156 (aarch64_displaced_step_copy_insn): Declare.
157 (aarch64_displaced_step_fixup): Declare.
158 (aarch64_displaced_step_hw_singlestep): Declare.
159 * arch/aarch64-insn.c (emit_insn): Moved from
160 gdbserver/linux-aarch64-low.c.
161 (emit_load_store): Likewise.
162 * arch/aarch64-insn.h (enum aarch64_opcodes): Moved from
163 gdbserver/linux-aarch64-low.c.
164 (struct aarch64_register): Likewise.
165 (struct aarch64_memory_operand): Likewise.
166 (ENCODE): Likewise.
167 (can_encode_int32): New macro.
168 (emit_b, emit_bcond, emit_cb, emit_ldr, emit_ldrsw): Likewise.
169 (emit_tb, emit_nop): Likewise.
170 (emit_insn): Declare.
171 (emit_load_store): Declare.
172
173 2015-10-12 Yao Qi <yao.qi@linaro.org>
174
175 * arch/aarch64-insn.c (aarch64_decode_ldr_literal): Moved from
176 gdbserver/linux-aarch64-low.c.
177 (aarch64_relocate_instruction): Likewise.
178 * arch/aarch64-insn.h (aarch64_decode_ldr_literal): Declare.
179 (struct aarch64_insn_data): Moved from
180 gdbserver/linux-aarch64-low.c.
181 (struct aarch64_insn_visitor): Likewise.
182 (aarch64_relocate_instruction): Declare.
183
184 2015-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
185
186 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT>: If
187 EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute
188 to the returned value.
189
190 2015-10-09 Joel Brobecker <brobecker@adacore.com>
191
192 * ada-lang.c (ada_unpack_from_contents): Add guard that unpacked
193 is large enough for BIT_SIZE. Update function comment.
194
195 2015-10-09 Joel Brobecker <brobecker@adacore.com>
196
197 * ada-lang.c (ada_value_primitive_packed_val): Move
198 src_len variable to local block where used. Override
199 BIT_SIZE if bigger than size of resolved type.
200
201 2015-10-09 Joel Brobecker <brobecker@adacore.com>
202
203 * gdbtypes.h (is_scalar_type): Add extern declaration.
204 * gdbtypes.c (is_scalar_type): Make non-static.
205 * ada-lang.c (ada_value_primitive_packed_val): Use is_scalar_type
206 to compute IS_SCALAR instead of doing it ourselves.
207
208 2015-10-09 Joel Brobecker <brobecker@adacore.com>
209
210 * ada-lang.c (ada_value_primitive_packed_val): Rework handling
211 of case where TYPE is dynamic.
212
213 2015-10-09 Joel Brobecker <brobecker@adacore.com>
214
215 * ada-lang.c (ada_unpack_from_contents): New function,
216 extracted from ada_value_primitive_packed_val.
217 (ada_value_primitive_packed_val): Replace extracted out code
218 by call to ada_unpack_from_contents.
219
220 2015-10-09 Joel Brobecker <brobecker@adacore.com>
221
222 * ada-lang.c (ada_value_primitive_packed_val): Reorder local
223 variable declarations.
224
225 2015-10-09 Joel Brobecker <brobecker@adacore.com>
226
227 * ada-lang.c (ada_value_primitive_packed_val): Change the type
228 of local variables src and unpacked to "gdb_type *" instead of
229 "unsigned char *".
230
231 2015-10-09 Joel Brobecker <brobecker@adacore.com>
232
233 * ada-lang.c (ada_value_primitive_packed_val): Make the name
234 of various local variables more explicit and consistent.
235 No real code change otherwise.
236
237 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
238
239 * i386-tdep.h (struct gdbarch_tdep): Change type of
240 register_reggroup_p to gdbarch_register_reggroup_p_ftype.
241
242 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
243
244 * cris-tdep.c (struct instruction_environment): Change type of
245 byte_order to enum bfd_endian.
246
247 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
248
249 * arm-linux-tdep.c (arm_canonicalize_syscall): Add
250 enum gdb_syscall casts.
251
252 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
253
254 * aarch64-tdep.c (stack_item_t): Change type of data to gdb_byte*.
255 * arm-tdep.c (struct stack_item): Likewise.
256 (push_stack_item): Add gdb_byte* cast.
257 * avr-tdep.c (struct stack_item): Change type of data to gdb_byte*.
258 (push_stack_item): Add gdb_byte* cast.
259 * cli/cli-dump.c (dump_memory_to_file): Change type of buf to gdb_byte*
260 and add cast.
261 * cris-tdep.c (struct stack_item): Change type of data to gdb_byte*.
262 (push_stack_item): Add gdb_byte* cast.
263 * gcore.c (gcore_copy_callback): Change type of memhunk to gdb_byte* and
264 add cast.
265 * gdbtypes.h (print_scalar_formatted): Change type of first parameter to
266 gdb_byte*.
267 * h8300-tdep.c (h8300_extract_return_value): Change type of valbuf to
268 gdb_byte* and remove unnecessary cast.
269 (h8300h_extract_return_value): Likewise.
270 (h8300_store_return_value): Change type of valbuf to gdb_byte*.
271 (h8300h_store_return_value): Likewise.
272 * iq2000-tdep.c (iq2000_extract_return_value): Change type of valbuf to
273 gdb_byte* and remove unnecessary cast.
274 * jit.c (jit_reader_try_read_symtab): Change type of gdb_mem to gdb_byte*
275 and add cast.
276 * m32r-tdep.c (m32r_store_return_value): Change type of valbuf to
277 gdb_byte* and remove unnecessary cast.
278 (m32r_extract_return_value): Change type of dst to gdb_byte* and remove
279 valbuf.
280 * mep-tdep.c (mep_pseudo_cr32_read): Change type of buf to gdb_byte*.
281 (mep_pseudo_cr64_read): Likewise.
282 (mep_pseudo_csr_write): Likewise.
283 (mep_pseudo_cr32_write): Likewise.
284 (mep_pseudo_cr64_write): Likewise.
285 * mi/mi-main.c (mi_cmd_data_write_memory): Change type of buffer to
286 gdb_byte* and add cast.
287 * moxie-tdep.c (moxie_store_return_value): Change type of valbuf to
288 gdb_byte* and remove unnecessary cast.
289 (moxie_extract_return_value): Change type of dst to gdb_byte* and remove
290 valbuf.
291 * p-valprint.c (print_scalar_formatted): Change type of valaddr to
292 gdb_byte*.
293 * printcmd.c (void): Likewise.
294 * python/py-inferior.c (infpy_read_memory): Change type of buffer to
295 gdb_byte* and add cast.
296 (infpy_write_memory): Likewise.
297 (infpy_search_memory): Likewise.
298 * regcache.c (regcache_raw_write_signed): Change type of buf to gdb_byte*
299 and add cast.
300 (regcache_raw_write_unsigned): Likewise.
301 (regcache_cooked_write_signed): Likewise.
302 (regcache_cooked_write_unsigned): Likewise.
303 * sh64-tdep.c (h64_extract_return_value): Change type of valbuf to
304 gdb_byte*.
305
306 2015-10-09 Simon Marchi <simon.marchi@ericsson.com>
307
308 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Add cast.
309 * linux-tdep.c (linux_collect_regset_section_cb_data): Likewise.
310
311 2015-10-09 Eli Zaretskii <eliz@gnu.org>
312
313 * stack.c (print_stack_frame):
314 * utils.c (printchar): Fix typos in commentary.
315
316 2015-10-08 Iain Buclaw <ibuclaw@gdcproject.org>
317
318 * d-exp.y: (UnaryExpression): Support `type.sizeof' expressions.
319 (PostfixExpression): Support `expr.sizeof' expressions.
320 (PrimaryExpression): Support `typeof(expr)' expressions.
321
322 2015-10-08 Maciej W. Rozycki <macro@imgtec.com>
323
324 * MAINTAINERS: Update my email address.
325
326 2015-10-08 Markus Metzger <markus.t.metzger@intel.com>
327
328 * record-btrace.c (record_btrace_resume): Fix void return.
329
330 2015-10-07 Yao Qi <yao.qi@linaro.org>
331
332 * aarch64-tdep.c: Include opcode/aarch64.h.
333 (submask): Move it above.
334 (bit): Likewise.
335 (bits): Likewise.
336 (aarch64_software_single_step): Call aarch64_decode_insn.
337 Decode instruction by aarch64_inst instead of using
338 aarch64_decode_bcond and decode_masked_match.
339
340 2015-10-06 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
341
342 * cli/cli-dump.c (restore_command): Parse load_offset (bias) as address
343 only when the file is binary.
344
345 2015-10-02 James Bowman <james.bowman@ftdichip.com>
346
347 * ft32-tdep.c (ft32_analyze_prologue): Add function prolog
348 subroutine handling.
349
350 2015-10-01 Simon Marchi <simon.marchi@ericsson.com>
351
352 * common/vec.h (VEC_OP (T,cleanup)): Add pointer cast.
353
354 2015-09-30 Doug Evans <dje@google.com>
355
356 * dwarf2read.c (setup_type_unit_groups): Add comment.
357
358 2015-09-30 Pedro Alves <palves@redhat.com>
359
360 * linux-nat.c (linux_nat_always_non_stop_p): Always return 1.
361 * x86-linux-nat.c (x86_linux_always_non_stop_p): Delete.
362 (x86_linux_create_target): Don't install
363 x86_linux_always_non_stop_p.
364
365 2015-09-30 Don Breazeal <donb@codesourcery.com>
366
367 * remote.c (remote_parse_stop_reply): Call strprefix instead
368 of strncmp.
369
370 2015-09-30 Simon Marchi <simon.marchi@ericsson.com>
371
372 * gdbarch.sh (struct gdbarch_info): Change tdep_info's type to void *.
373 * gdbarch.h: Regenerate.
374 * i386-tdep.c (i386_gdbarch_init): Remove cast to
375 struct gdbarch_tdep_info *.
376 * mips-tdep.c (mips_gdbarch_init): Likewise.
377 * ppc-linux-tdep (ppu2spu_sniffer): Likewise.
378 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
379 * spu-multiarch.c (spu_gdbarch): Likewise.
380
381 2015-09-30 Kevin Buettner <kevinb@redhat.com>
382
383 * infcmd.c (finish_command_fsm_should_stop): Don't attempt to
384 record a NULL value.
385
386 2015-09-29 Kevin Buettner <kevinb@redhat.com>
387
388 * msp430-tdep.c (msp430_push_dummy_call): Treat reference, struct,
389 and union arguments the same as pointer arguments when determining
390 size of argument.
391
392 2015-09-29 James Bowman <james.bowman@ftdichip.com>
393
394 * ft32-tdep.c: #include "opcode/ft32.h".
395 Delete local macros IS_PUSH, PUSH_REG, IS_LINK, LINK_SIZE.
396 (ft32_analyze_prologue): Use FT32_* macros.
397
398 2015-09-28 Simon Marchi <simon.marchi@ericsson.com>
399
400 * cli/cli-script.c (read_next_line): Fix stdout -> stdin in
401 comment.
402
403 2015-09-28 Doug Evans <dje@google.com>
404
405 * MAINTAINERS: Add Iain Buclaw as D language maintainer.
406
407 2015-09-28 Doug Evans <dje@google.com>
408
409 * common/filestuff.c (make_cleanup_close): Update comment.
410
411 2015-09-26 Simon Marchi <simark@nova.polymtl.ca>
412
413 * btrace.c (parse_xml_btrace_block): Fix cast of
414 xml_find_attribute's return value.
415 * memory-map.c (memory_map_start_memory): Likewise.
416 * solib-svr4.c (library_list_start_library): Likewise.
417 * solib-target.c (library_list_start_segment): Likewise.
418 (library_list_start_section): Likewise.
419 * tracepoint.c (traceframe_info_start_memory): Likewise.
420
421 2015-09-26 Iain Buclaw <ibuclaw@gdcproject.org>
422
423 * d-namespace.c (d_lookup_symbol): New arg langdef.
424 All callers updated. Support looking up symbol as a primitive type.
425 (lookup_module_scope): New arg langdef. All callers updated.
426 Call d_lookup_symbol directly for simple bare symbols.
427
428 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
429
430 * macrocmd.c (print_macro_callback): Add cast(s).
431 * macrotab.c (macro_bcache_str): Likewise.
432 (new_macro_definition): Likewise.
433 * main.c (captured_main): Likewise.
434 * maint.c (print_bfd_section_info): Likewise.
435 * mdebugread.c (mdebug_build_psymtabs): Likewise.
436 (basic_type): Likewise.
437 * memattr.c (mem_region_cmp): Likewise.
438 * memory-map.c (memory_map_start_memory): Likewise.
439 (memory_map_end_memory): Likewise.
440 (memory_map_start_property): Likewise.
441 (memory_map_end_property): Likewise.
442 (clear_result): Likewise.
443 * memrange.c (compare_mem_ranges): Likewise.
444 * mep-tdep.c (mep_analyze_frame_prologue): Likewise.
445 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Likewise.
446 * mi/mi-console.c (mi_console_file_delete): Likewise.
447 (mi_console_file_fputs): Likewise.
448 (mi_console_raw_packet): Likewise.
449 (mi_console_file_flush): Likewise.
450 (mi_console_set_raw): Likewise.
451 * mi/mi-interp.c (mi_interpreter_resume): Likewise.
452 (mi_new_thread): Likewise.
453 (mi_thread_exit): Likewise.
454 (mi_record_changed): Likewise.
455 (mi_inferior_added): Likewise.
456 (mi_inferior_appeared): Likewise.
457 (mi_inferior_exit): Likewise.
458 (mi_inferior_removed): Likewise.
459 (mi_interp_data): Likewise.
460 (mi_on_normal_stop): Likewise.
461 (mi_traceframe_changed): Likewise.
462 (mi_tsv_created): Likewise.
463 (mi_tsv_deleted): Likewise.
464 (mi_tsv_modified): Likewise.
465 (mi_breakpoint_created): Likewise.
466 (mi_breakpoint_deleted): Likewise.
467 (mi_breakpoint_modified): Likewise.
468 (mi_output_running_pid): Likewise.
469 (mi_inferior_count): Likewise.
470 (mi_solib_loaded): Likewise.
471 (mi_solib_unloaded): Likewise.
472 (mi_command_param_changed): Likewise.
473 (mi_memory_changed): Likewise.
474 (report_initial_inferior): Likewise.
475 (mi_ui_out): Likewise.
476 (mi_set_logging): Likewise.
477 * mi/mi-main.c (collect_cores): Likewise.
478 (print_one_inferior): Likewise.
479 (free_vector_of_ints): Likewise.
480 (free_splay_tree): Likewise.
481 (mi_execute_command): Likewise.
482 * mi/mi-out.c (mi_table_body): Likewise.
483 (mi_table_end): Likewise.
484 (mi_table_header): Likewise.
485 (mi_begin): Likewise.
486 (mi_end): Likewise.
487 (mi_field_int): Likewise.
488 (mi_field_string): Likewise.
489 (mi_field_fmt): Likewise.
490 (mi_flush): Likewise.
491 (mi_redirect): Likewise.
492 (field_separator): Likewise.
493 (mi_open): Likewise.
494 (mi_close): Likewise.
495 (mi_out_buffered): Likewise.
496 (mi_out_rewind): Likewise.
497 (mi_out_put): Likewise.
498 (mi_version): Likewise.
499 (mi_out_data_dtor): Likewise.
500 * mi/mi-parse.c (mi_parse_cleanup): Likewise.
501 * microblaze-tdep.c (microblaze_frame_cache): Likewise.
502 * minidebug.c (lzma_open): Likewise.
503 (lzma_pread): Likewise.
504 (lzma_close): Likewise.
505 (lzma_stat): Likewise.
506 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
507 * mips-sde-tdep.c (mips_sde_frame_cache): Likewise.
508 (mips_sde_elf_osabi_sniff_abi_tag_sections): Likewise.
509 * mips-tdep.c (mips_insn16_frame_cache): Likewise.
510 (mips_micro_frame_cache): Likewise.
511 (mips_insn32_frame_cache): Likewise.
512 (mips_stub_frame_cache): Likewise.
513 (gdb_print_insn_mips): Likewise.
514 (value_of_mips_user_reg): Likewise.
515 (mips_gdbarch_init): Likewise.
516 * mips64obsd-tdep.c (mips64obsd_supply_gregset): Likewise.
517 * mipsnbsd-tdep.c (mipsnbsd_supply_fpregset): Likewise.
518 (mipsnbsd_supply_gregset): Likewise.
519 * mn10300-linux-tdep.c (am33_supply_fpregset_method): Likewise.
520 (am33_collect_gregset_method): Likewise.
521 (am33_collect_fpregset_method): Likewise.
522 * mn10300-tdep.c (mn10300_analyze_frame_prologue): Likewise.
523 * moxie-tdep.c (moxie_frame_cache): Likewise.
524 * msp430-tdep.c (msp430_get_opcode_byte): Likewise.
525 (msp430_analyze_frame_prologue): Likewise.
526 * mt-tdep.c (mt_frame_unwind_cache): Likewise.
527 * nios2-linux-tdep.c (nios2_supply_gregset): Likewise.
528 (nios2_collect_gregset): Likewise.
529 * nios2-tdep.c (nios2_frame_unwind_cache): Likewise.
530 (nios2_stub_frame_cache): Likewise.
531 * objc-lang.c (find_methods): Likewise.
532 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
533 (get_objfile_pspace_data): Likewise.
534 (get_objfile_bfd_data): Likewise.
535 (objfile_bfd_data_free): Likewise.
536 (add_to_objfile_sections): Likewise.
537 (do_free_objfile_cleanup): Likewise.
538 (resume_section_map_updates_cleanup): Likewise.
539 * opencl-lang.c (builtin_opencl_type): Likewise.
540 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
541 * osdata.c (osdata_start_osdata): Likewise.
542 (osdata_start_item): Likewise.
543 (osdata_start_column): Likewise.
544 (osdata_end_column): Likewise.
545 (clear_parsing_data): Likewise.
546 (osdata_free_cleanup): Likewise.
547 * parse.c (type_stack_cleanup): Likewise.
548 (exp_uses_objfile_iter): Likewise.
549 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Likewise.
550 (ppc_linux_collect_gregset): Likewise.
551 (ppu2spu_prev_arch): Likewise.
552 (ppu2spu_this_id): Likewise.
553 (ppu2spu_prev_register): Likewise.
554 (ppu2spu_unwind_register): Likewise.
555 (ppu2spu_sniffer): Likewise.
556 (ppu2spu_dealloc_cache): Likewise.
557 (ppc_linux_init_abi): Likewise.
558 * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
559 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
560 * progspace.c (restore_program_space): Likewise.
561 * psymtab.c (find_pc_sect_psymtab): Likewise.
562 (compare_psymbols): Likewise.
563 (psymbol_bcache_full): Likewise.
564 (allocate_psymtab): Likewise.
565 (discard_psymtabs_upto): Likewise.
566 * python/py-block.c (set_block): Likewise.
567 (del_objfile_blocks): Likewise.
568 * python/py-breakpoint.c (build_bp_list): Likewise.
569 * python/py-inferior.c (inferior_to_inferior_object): Likewise.
570 (build_inferior_list): Likewise.
571 (py_free_inferior): Likewise.
572 * python/py-objfile.c (py_free_objfile): Likewise.
573 (objfile_to_objfile_object): Likewise.
574 * python/py-prettyprint.c (py_restore_tstate): Likewise.
575 * python/py-progspace.c (py_free_pspace): Likewise.
576 (pspace_to_pspace_object): Likewise.
577 * python/py-symbol.c (set_symbol): Likewise.
578 (del_objfile_symbols): Likewise.
579 * python/py-symtab.c (set_sal): Likewise.
580 (set_symtab): Likewise.
581 (del_objfile_symtab): Likewise.
582 (del_objfile_sal): Likewise.
583 * python/py-type.c (save_objfile_types): Likewise.
584 (set_type): Likewise.
585 * python/py-unwind.c (pyuw_prev_register): Likewise.
586 (pyuw_on_new_gdbarch): Likewise.
587 * python/py-utils.c (py_decref): Likewise.
588 (py_xdecref): Likewise.
589 (gdb_py_generic_dict): Likewise.
590 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data): Likewise.
591 (gdbpy_clone_xmethod_worker_data): Likewise.
592 (gdbpy_get_xmethod_arg_types): Likewise.
593 (gdbpy_get_xmethod_result_type): Likewise.
594 (gdbpy_invoke_xmethod): Likewise.
595 * python/python.c (gdbpy_apply_type_printers): Likewise.
596 (gdbpy_free_type_printers): Likewise.
597 * record-btrace.c (record_btrace_disable_callback): Likewise.
598 (bfcache_hash): Likewise.
599 (bfcache_eq): Likewise.
600 (btrace_get_frame_function): Likewise.
601 (record_btrace_frame_unwind_stop_reason): Likewise.
602 (record_btrace_frame_this_id): Likewise.
603 (record_btrace_frame_prev_register): Likewise.
604 (record_btrace_frame_dealloc_cache): Likewise.
605 * record-full.c (record_full_message_wrapper): Likewise.
606 (record_full_save_cleanups): Likewise.
607 * regcache.c (regcache_descr): Likewise.
608 (do_regcache_xfree): Likewise.
609 (do_regcache_invalidate): Likewise.
610 (do_cooked_read): Likewise.
611 (regcache_transfer_regset): Likewise.
612 * reggroups.c (reggroup_add): Likewise.
613 (reggroup_next): Likewise.
614 (reggroup_prev): Likewise.
615 * remote-fileio.c (do_remote_fileio_request): Likewise.
616 * remote-notif.c (remote_async_get_pending_events_handler): Likewise.
617 (do_notif_event_xfree): Likewise.
618 * remote.c (get_remote_arch_state): Likewise.
619 (remote_pspace_data_cleanup): Likewise.
620 (get_remote_exec_file): Likewise.
621 (set_pspace_remote_exec_file): Likewise.
622 (compare_pnums): Likewise.
623 (clear_threads_listing_context): Likewise.
624 (remote_newthread_step): Likewise.
625 (start_thread): Likewise.
626 (end_thread): Likewise.
627 (remove_child_of_pending_fork): Likewise.
628 (remove_stop_reply_for_inferior): Likewise.
629 (remove_stop_reply_of_remote_state): Likewise.
630 (remote_notif_remove_once_on_match): Likewise.
631 (stop_reply_match_ptid_and_ws): Likewise.
632 (kill_child_of_pending_fork): Likewise.
633 (register_remote_g_packet_guess): Likewise.
634 (remote_read_description_p): Likewise.
635 (remote_read_description): Likewise.
636 (free_actions_list_cleanup_wrapper): Likewise.
637 (remote_async_serial_handler): Likewise.
638 * rl78-tdep.c (rl78_get_opcode_byte): Likewise.
639 (rl78_analyze_frame_prologue): Likewise.
640 * rs6000-tdep.c (ppc_supply_gregset): Likewise.
641 (ppc_supply_fpregset): Likewise.
642 (ppc_supply_vsxregset): Likewise.
643 (ppc_supply_vrregset): Likewise.
644 (ppc_collect_gregset): Likewise.
645 (ppc_collect_fpregset): Likewise.
646 (ppc_collect_vsxregset): Likewise.
647 (ppc_collect_vrregset): Likewise.
648 (e500_move_ev_register): Likewise.
649 (do_regcache_raw_write): Likewise.
650 (rs6000_frame_cache): Likewise.
651 (rs6000_epilogue_frame_cache): Likewise.
652 (rs6000_gdbarch_init): Likewise.
653 * rx-tdep.c (rx_get_opcode_byte): Likewise.
654 (rx_analyze_frame_prologue): Likewise.
655 (rx_frame_type): Likewise.
656 (rx_frame_sniffer_common): Likewise.
657 * s390-linux-tdep.c (s390_check_for_saved): Likewise.
658 (s390_frame_unwind_cache): Likewise.
659 (s390_stub_frame_unwind_cache): Likewise.
660 (s390_sigtramp_frame_unwind_cache): Likewise.
661 * score-tdep.c (score_make_prologue_cache): Likewise.
662 * sentinel-frame.c (sentinel_frame_prev_register): Likewise.
663 (sentinel_frame_prev_arch): Likewise.
664 * ser-base.c (fd_event): Likewise.
665 (push_event): Likewise.
666 (ser_base_write): Likewise.
667 * ser-pipe.c (pipe_close): Likewise.
668 * serial.c (serial_write): Likewise.
669 * sh-tdep.c (sh_frame_cache): Likewise.
670 (sh_stub_this_id): Likewise.
671 * sh64-tdep.c (sh64_frame_cache): Likewise.
672 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
673 (library_list_start_library): Likewise.
674 (library_list_start_list): Likewise.
675 (solib_aix_free_library_list): Likewise.
676 * solib-darwin.c (get_darwin_info): Likewise.
677 * solib-dsbt.c (get_dsbt_info): Likewise.
678 * solib-spu.c (append_ocl_sos): Likewise.
679 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
680 (get_svr4_info): Likewise.
681 (library_list_start_library): Likewise.
682 (svr4_library_list_start_list): Likewise.
683 (hash_probe_and_action): Likewise.
684 (equal_probe_and_action): Likewise.
685 (svr4_update_solib_event_breakpoint): Likewise.
686 (set_solib_svr4_fetch_link_map_offsets): Likewise.
687 (svr4_fetch_link_map_offsets): Likewise.
688 (svr4_have_link_map_offsets): Likewise.
689 * solib-target.c (library_list_start_segment): Likewise.
690 (library_list_start_section): Likewise.
691 (library_list_start_library): Likewise.
692 (library_list_end_library): Likewise.
693 (library_list_start_list): Likewise.
694 (solib_target_free_library_list): Likewise.
695 * solib.c (solib_ops): Likewise.
696 (set_solib_ops): Likewise.
697 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
698 * sparc-tdep.c (sparc_frame_cache): Likewise.
699 (sparc32_frame_cache): Likewise.
700 (sparc32_supply_gregset): Likewise.
701 (sparc32_collect_gregset): Likewise.
702 (sparc32_supply_fpregset): Likewise.
703 (sparc32_collect_fpregset): Likewise.
704 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
705 * sparc64-tdep.c (sparc64_supply_gregset): Likewise.
706 (sparc64_collect_gregset): Likewise.
707 (sparc64_supply_fpregset): Likewise.
708 (sparc64_collect_fpregset): Likewise.
709 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_cache): Likewise.
710 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_cache): Likewise.
711 * sparc64obsd-tdep.c (sparc64obsd_frame_cache): Likewise.
712 (sparc64obsd_trapframe_cache): Likewise.
713 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_cache): Likewise.
714 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_cache): Likewise.
715 * spu-multiarch.c (spu_gdbarch): Likewise.
716 * spu-tdep.c (spu_frame_unwind_cache): Likewise.
717 (spu2ppu_prev_arch): Likewise.
718 (spu2ppu_this_id): Likewise.
719 (spu2ppu_prev_register): Likewise.
720 (spu2ppu_dealloc_cache): Likewise.
721 (spu_dis_asm_print_address): Likewise.
722 (gdb_print_insn_spu): Likewise.
723 (spu_get_overlay_table): Likewise.
724 * stabsread.c (rs6000_builtin_type): Likewise.
725 * stack.c (do_print_variable_and_value): Likewise.
726 * stap-probe.c (get_stap_base_address_1): Likewise.
727 * symfile-debug.c (debug_qf_has_symbols): Likewise.
728 (debug_qf_find_last_source_symtab): Likewise.
729 (debug_qf_forget_cached_source_info): Likewise.
730 (debug_qf_map_symtabs_matching_filename): Likewise.
731 (debug_qf_lookup_symbol): Likewise.
732 (debug_qf_print_stats): Likewise.
733 (debug_qf_dump): Likewise.
734 (debug_qf_relocate): Likewise.
735 (debug_qf_expand_symtabs_for_function): Likewise.
736 (debug_qf_expand_all_symtabs): Likewise.
737 (debug_qf_expand_symtabs_with_fullname): Likewise.
738 (debug_qf_map_matching_symbols): Likewise.
739 (debug_qf_expand_symtabs_matching): Likewise.
740 (debug_qf_find_pc_sect_compunit_symtab): Likewise.
741 (debug_qf_map_symbol_filenames): Likewise.
742 (debug_sym_get_probes): Likewise.
743 (debug_sym_new_init): Likewise.
744 (debug_sym_init): Likewise.
745 (debug_sym_read): Likewise.
746 (debug_sym_read_psymbols): Likewise.
747 (debug_sym_finish): Likewise.
748 (debug_sym_offsets): Likewise.
749 (debug_sym_read_linetable): Likewise.
750 (debug_sym_relocate): Likewise.
751 (uninstall_symfile_debug_logging): Likewise.
752 * symfile-mem.c (symbol_file_add_from_memory_wrapper): Likewise.
753 * symfile.c (place_section): Likewise.
754 (add_section_size_callback): Likewise.
755 (load_progress): Likewise.
756 (load_section_callback): Likewise.
757 (clear_memory_write_data): Likewise.
758 (allocate_symtab): Likewise.
759 * symmisc.c (maintenance_expand_file_matcher): Likewise.
760 * symtab.c (lookup_symtab_callback): Likewise.
761 (hash_demangled_name_entry): Likewise.
762 (eq_demangled_name_entry): Likewise.
763 (get_symbol_cache): Likewise.
764 (symbol_cache_cleanup): Likewise.
765 (set_symbol_cache_size): Likewise.
766 (symbol_cache_flush): Likewise.
767 (maintenance_print_symbol_cache): Likewise.
768 (maintenance_print_symbol_cache_statistics): Likewise.
769 (delete_filename_seen_cache): Likewise.
770 (output_partial_symbol_filename): Likewise.
771 (search_symbols_file_matches): Likewise.
772 (search_symbols_name_matches): Likewise.
773 (do_free_completion_list): Likewise.
774 (maybe_add_partial_symtab_filename): Likewise.
775 (get_main_info): Likewise.
776 (main_info_cleanup): Likewise.
777 * target-dcache.c (target_dcache_cleanup): Likewise.
778 (target_dcache_init_p): Likewise.
779 (target_dcache_invalidate): Likewise.
780 (target_dcache_get): Likewise.
781 (target_dcache_get_or_init): Likewise.
782 * target-descriptions.c (target_find_description): Likewise.
783 (tdesc_find_type): Likewise.
784 (tdesc_data_cleanup): Likewise.
785 (tdesc_find_arch_register): Likewise.
786 (tdesc_register_name): Likewise.
787 (tdesc_register_type): Likewise.
788 (tdesc_register_reggroup_p): Likewise.
789 (set_tdesc_pseudo_register_name): Likewise.
790 (set_tdesc_pseudo_register_type): Likewise.
791 (set_tdesc_pseudo_register_reggroup_p): Likewise.
792 (tdesc_use_registers): Likewise.
793 (free_target_description): Likewise.
794 * target-memory.c (compare_block_starting_address): Likewise.
795 (cleanup_request_data): Likewise.
796 (cleanup_write_requests_vector): Likewise.
797 * target.c (open_target): Likewise.
798 (cleanup_restore_target_terminal): Likewise.
799 (free_memory_read_result_vector): Likewise.
800 * thread.c (disable_thread_stack_temporaries): Likewise.
801 (finish_thread_state_cleanup): Likewise.
802 (do_restore_current_thread_cleanup): Likewise.
803 (restore_current_thread_cleanup_dtor): Likewise.
804 (set_thread_refcount): Likewise.
805 (tp_array_compar): Likewise.
806 (do_captured_thread_select): Likewise.
807 * tic6x-tdep.c (tic6x_frame_unwind_cache): Likewise.
808 (tic6x_stub_this_id): Likewise.
809 * tilegx-tdep.c (tilegx_frame_cache): Likewise.
810 * top.c (do_restore_instream_cleanup): Likewise.
811 (gdb_readline_wrapper_cleanup): Likewise.
812 (kill_or_detach): Likewise.
813 (print_inferior_quit_action): Likewise.
814 * tracefile-tfile.c (match_blocktype): Likewise.
815 (build_traceframe_info): Likewise.
816 * tracefile.c (trace_file_writer_xfree): Likewise.
817 * tracepoint.c (memrange_cmp): Likewise.
818 (do_collect_symbol): Likewise.
819 (do_clear_collection_list): Likewise.
820 (do_restore_current_traceframe_cleanup): Likewise.
821 (restore_current_traceframe_cleanup_dtor): Likewise.
822 (free_current_marker): Likewise.
823 (traceframe_info_start_memory): Likewise.
824 (traceframe_info_start_tvar): Likewise.
825 (free_result): Likewise.
826 * tramp-frame.c (tramp_frame_cache): Likewise.
827 * tui/tui-file.c (tui_file_delete): Likewise.
828 (tui_fileopen): Likewise.
829 (tui_sfileopen): Likewise.
830 (tui_file_isatty): Likewise.
831 (tui_file_rewind): Likewise.
832 (tui_file_put): Likewise.
833 (tui_file_fputs): Likewise.
834 (tui_file_get_strbuf): Likewise.
835 (tui_file_adjust_strbuf): Likewise.
836 (tui_file_flush): Likewise.
837 * tui/tui-layout.c (make_command_window): Likewise.
838 (make_data_window): Likewise.
839 (show_source_disasm_command): Likewise.
840 (show_data): Likewise.
841 (make_source_or_disasm_window): Likewise.
842 (show_source_or_disasm_and_command): Likewise.
843 * tui/tui-out.c (tui_field_int): Likewise.
844 (tui_field_string): Likewise.
845 (tui_field_fmt): Likewise.
846 (tui_text): Likewise.
847 * typeprint.c (hash_typedef_field): Likewise.
848 (eq_typedef_field): Likewise.
849 (do_free_typedef_hash): Likewise.
850 (copy_typedef_hash_element): Likewise.
851 (do_free_global_table): Likewise.
852 (find_global_typedef): Likewise.
853 (find_typedef_in_hash): Likewise.
854 * ui-file.c (ui_file_write_for_put): Likewise.
855 (do_ui_file_xstrdup): Likewise.
856 (mem_file_delete): Likewise.
857 (mem_file_rewind): Likewise.
858 (mem_file_put): Likewise.
859 (mem_file_write): Likewise.
860 (stdio_file_delete): Likewise.
861 (stdio_file_flush): Likewise.
862 (stdio_file_read): Likewise.
863 (stdio_file_write): Likewise.
864 (stdio_file_write_async_safe): Likewise.
865 (stdio_file_fputs): Likewise.
866 (stdio_file_isatty): Likewise.
867 (stdio_file_fseek): Likewise.
868 (tee_file_delete): Likewise.
869 (tee_file_flush): Likewise.
870 (tee_file_write): Likewise.
871 (tee_file_fputs): Likewise.
872 (tee_file_isatty): Likewise.
873 * ui-out.c (do_cleanup_table_end): Likewise.
874 (do_cleanup_end): Likewise.
875 * user-regs.c (user_reg_add): Likewise.
876 (user_reg_map_name_to_regnum): Likewise.
877 (usernum_to_user_reg): Likewise.
878 (maintenance_print_user_registers): Likewise.
879 * utils.c (do_bfd_close_cleanup): Likewise.
880 (do_fclose_cleanup): Likewise.
881 (do_obstack_free): Likewise.
882 (do_ui_file_delete): Likewise.
883 (do_ui_out_redirect_pop): Likewise.
884 (do_free_section_addr_info): Likewise.
885 (restore_integer): Likewise.
886 (do_unpush_target): Likewise.
887 (do_htab_delete_cleanup): Likewise.
888 (do_restore_ui_file): Likewise.
889 (do_value_free): Likewise.
890 (do_free_so): Likewise.
891 (free_current_contents): Likewise.
892 (do_regfree_cleanup): Likewise.
893 (core_addr_hash): Likewise.
894 (core_addr_eq): Likewise.
895 (do_free_char_ptr_vec): Likewise.
896 * v850-tdep.c (v850_frame_cache): Likewise.
897 * varobj.c (do_free_variable_cleanup): Likewise.
898 * vax-tdep.c (vax_supply_gregset): Likewise.
899 (vax_frame_cache): Likewise.
900 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_cache): Likewise.
901 * xml-support.c (gdb_xml_body_text): Likewise.
902 (gdb_xml_values_cleanup): Likewise.
903 (gdb_xml_start_element): Likewise.
904 (gdb_xml_start_element_wrapper): Likewise.
905 (gdb_xml_end_element): Likewise.
906 (gdb_xml_end_element_wrapper): Likewise.
907 (gdb_xml_cleanup): Likewise.
908 (gdb_xml_fetch_external_entity): Likewise.
909 (gdb_xml_parse_attr_enum): Likewise.
910 (xinclude_start_include): Likewise.
911 (xinclude_end_include): Likewise.
912 (xml_xinclude_default): Likewise.
913 (xml_xinclude_start_doctype): Likewise.
914 (xml_xinclude_end_doctype): Likewise.
915 (xml_xinclude_cleanup): Likewise.
916 (xml_fetch_content_from_file): Likewise.
917 * xml-syscall.c (free_syscalls_info): Likewise.
918 (syscall_start_syscall): Likewise.
919 * xml-tdesc.c (tdesc_end_arch): Likewise.
920 (tdesc_end_osabi): Likewise.
921 (tdesc_end_compatible): Likewise.
922 (tdesc_start_target): Likewise.
923 (tdesc_start_feature): Likewise.
924 (tdesc_start_reg): Likewise.
925 (tdesc_start_union): Likewise.
926 (tdesc_start_struct): Likewise.
927 (tdesc_start_flags): Likewise.
928 (tdesc_start_field): Likewise.
929 (tdesc_start_vector): Likewise.
930 (fetch_available_features_from_target): Likewise.
931 * xstormy16-tdep.c (xstormy16_frame_cache): Likewise.
932 * xtensa-tdep.c (xtensa_supply_gregset): Likewise.
933 (xtensa_frame_cache): Likewise.
934 (xtensa_frame_prev_register): Likewise.
935 (xtensa_extract_return_value): Likewise.
936
937 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
938
939 * aarch64-tdep.c (aarch64_make_prologue_cache): Add cast(s).
940 (aarch64_make_stub_cache): Likewise.
941 (value_of_aarch64_user_reg): Likewise.
942 * ada-lang.c (ada_inferior_data_cleanup): Likewise.
943 (get_ada_inferior_data): Likewise.
944 (get_ada_pspace_data): Likewise.
945 (ada_pspace_data_cleanup): Likewise.
946 (ada_complete_symbol_matcher): Likewise.
947 (ada_exc_search_name_matches): Likewise.
948 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
949 (get_ada_tasks_inferior_data): Likewise.
950 * addrmap.c (addrmap_mutable_foreach_worker): Likewise.
951 (splay_obstack_alloc): Likewise.
952 (splay_obstack_free): Likewise.
953 * alpha-linux-tdep.c (alpha_linux_supply_gregset): Likewise.
954 (alpha_linux_collect_gregset): Likewise.
955 (alpha_linux_supply_fpregset): Likewise.
956 (alpha_linux_collect_fpregset): Likewise.
957 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind_cache): Likewise.
958 * alpha-tdep.c (alpha_lds): Likewise.
959 (alpha_sts): Likewise.
960 (alpha_sigtramp_frame_unwind_cache): Likewise.
961 (alpha_heuristic_frame_unwind_cache): Likewise.
962 (alpha_supply_int_regs): Likewise.
963 (alpha_fill_int_regs): Likewise.
964 (alpha_supply_fp_regs): Likewise.
965 (alpha_fill_fp_regs): Likewise.
966 * alphanbsd-tdep.c (alphanbsd_supply_fpregset): Likewise.
967 (alphanbsd_aout_supply_gregset): Likewise.
968 (alphanbsd_supply_gregset): Likewise.
969 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
970 (amd64_x32_linux_init_abi): Likewise.
971 * amd64-nat.c (amd64_supply_native_gregset): Likewise.
972 (amd64_collect_native_gregset): Likewise.
973 * amd64-tdep.c (amd64_frame_cache): Likewise.
974 (amd64_sigtramp_frame_cache): Likewise.
975 (amd64_epilogue_frame_cache): Likewise.
976 (amd64_supply_fxsave): Likewise.
977 (amd64_supply_xsave): Likewise.
978 (amd64_collect_fxsave): Likewise.
979 (amd64_collect_xsave): Likewise.
980 * amd64-windows-tdep.c (amd64_windows_frame_cache): Likewise.
981 * amd64obsd-tdep.c (amd64obsd_trapframe_cache): Likewise.
982 * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
983 (arm_linux_collect_gregset): Likewise.
984 (arm_linux_supply_nwfpe): Likewise.
985 (arm_linux_collect_nwfpe): Likewise.
986 (arm_linux_supply_vfp): Likewise.
987 (arm_linux_collect_vfp): Likewise.
988 * arm-tdep.c (arm_find_mapping_symbol): Likewise.
989 (arm_prologue_unwind_stop_reason): Likewise.
990 (arm_prologue_this_id): Likewise.
991 (arm_prologue_prev_register): Likewise.
992 (arm_exidx_data_free): Likewise.
993 (arm_find_exidx_entry): Likewise.
994 (arm_stub_this_id): Likewise.
995 (arm_m_exception_this_id): Likewise.
996 (arm_m_exception_prev_register): Likewise.
997 (arm_normal_frame_base): Likewise.
998 (gdb_print_insn_arm): Likewise.
999 (arm_objfile_data_free): Likewise.
1000 (arm_record_special_symbol): Likewise.
1001 (value_of_arm_user_reg): Likewise.
1002 * armbsd-tdep.c (armbsd_supply_fpregset): Likewise.
1003 (armbsd_supply_gregset): Likewise.
1004 * auto-load.c (auto_load_pspace_data_cleanup): Likewise.
1005 (get_auto_load_pspace_data): Likewise.
1006 (hash_loaded_script_entry): Likewise.
1007 (eq_loaded_script_entry): Likewise.
1008 (clear_section_scripts): Likewise.
1009 (collect_matching_scripts): Likewise.
1010 * auxv.c (auxv_inferior_data_cleanup): Likewise.
1011 (get_auxv_inferior_data): Likewise.
1012 * avr-tdep.c (avr_frame_unwind_cache): Likewise.
1013 * ax-general.c (do_free_agent_expr_cleanup): Likewise.
1014 * bfd-target.c (target_bfd_xfer_partial): Likewise.
1015 (target_bfd_xclose): Likewise.
1016 (target_bfd_get_section_table): Likewise.
1017 * bfin-tdep.c (bfin_frame_cache): Likewise.
1018 * block.c (find_block_in_blockvector): Likewise.
1019 (call_site_for_pc): Likewise.
1020 (block_find_non_opaque_type_preferred): Likewise.
1021 * break-catch-sig.c (signal_catchpoint_insert_location): Likewise.
1022 (signal_catchpoint_remove_location): Likewise.
1023 (signal_catchpoint_breakpoint_hit): Likewise.
1024 (signal_catchpoint_print_one): Likewise.
1025 (signal_catchpoint_print_mention): Likewise.
1026 (signal_catchpoint_print_recreate): Likewise.
1027 * break-catch-syscall.c (get_catch_syscall_inferior_data): Likewise.
1028 * breakpoint.c (do_cleanup_counted_command_line): Likewise.
1029 (bp_location_compare_addrs): Likewise.
1030 (get_first_locp_gte_addr): Likewise.
1031 (check_tracepoint_command): Likewise.
1032 (do_map_commands_command): Likewise.
1033 (get_breakpoint_objfile_data): Likewise.
1034 (free_breakpoint_probes): Likewise.
1035 (do_captured_breakpoint_query): Likewise.
1036 (compare_breakpoints): Likewise.
1037 (bp_location_compare): Likewise.
1038 (bpstat_remove_breakpoint_callback): Likewise.
1039 (do_delete_breakpoint_cleanup): Likewise.
1040 * bsd-uthread.c (bsd_uthread_set_supply_uthread): Likewise.
1041 (bsd_uthread_set_collect_uthread): Likewise.
1042 (bsd_uthread_activate): Likewise.
1043 (bsd_uthread_fetch_registers): Likewise.
1044 (bsd_uthread_store_registers): Likewise.
1045 * btrace.c (check_xml_btrace_version): Likewise.
1046 (parse_xml_btrace_block): Likewise.
1047 (parse_xml_btrace_pt_config_cpu): Likewise.
1048 (parse_xml_btrace_pt_raw): Likewise.
1049 (parse_xml_btrace_pt): Likewise.
1050 (parse_xml_btrace_conf_bts): Likewise.
1051 (parse_xml_btrace_conf_pt): Likewise.
1052 (do_btrace_data_cleanup): Likewise.
1053 * c-typeprint.c (find_typedef_for_canonicalize): Likewise.
1054 * charset.c (cleanup_iconv): Likewise.
1055 (do_cleanup_iterator): Likewise.
1056 * cli-out.c (cli_uiout_dtor): Likewise.
1057 (cli_table_begin): Likewise.
1058 (cli_table_body): Likewise.
1059 (cli_table_end): Likewise.
1060 (cli_table_header): Likewise.
1061 (cli_begin): Likewise.
1062 (cli_end): Likewise.
1063 (cli_field_int): Likewise.
1064 (cli_field_skip): Likewise.
1065 (cli_field_string): Likewise.
1066 (cli_field_fmt): Likewise.
1067 (cli_spaces): Likewise.
1068 (cli_text): Likewise.
1069 (cli_message): Likewise.
1070 (cli_wrap_hint): Likewise.
1071 (cli_flush): Likewise.
1072 (cli_redirect): Likewise.
1073 (out_field_fmt): Likewise.
1074 (field_separator): Likewise.
1075 (cli_out_set_stream): Likewise.
1076 * cli/cli-cmds.c (compare_symtabs): Likewise.
1077 * cli/cli-dump.c (call_dump_func): Likewise.
1078 (restore_section_callback): Likewise.
1079 * cli/cli-script.c (clear_hook_in_cleanup): Likewise.
1080 (do_restore_user_call_depth): Likewise.
1081 (do_free_command_lines_cleanup): Likewise.
1082 * coff-pe-read.c (get_section_vmas): Likewise.
1083 (pe_as16): Likewise.
1084 (pe_as32): Likewise.
1085 * coffread.c (coff_symfile_read): Likewise.
1086 * common/agent.c (agent_look_up_symbols): Likewise.
1087 * common/filestuff.c (do_close_cleanup): Likewise.
1088 * common/format.c (free_format_pieces_cleanup): Likewise.
1089 * common/vec.c (vec_o_reserve): Likewise.
1090 * compile/compile-c-support.c (print_one_macro): Likewise.
1091 * compile/compile-c-symbols.c (hash_symbol_error): Likewise.
1092 (eq_symbol_error): Likewise.
1093 (del_symbol_error): Likewise.
1094 (error_symbol_once): Likewise.
1095 (gcc_convert_symbol): Likewise.
1096 (gcc_symbol_address): Likewise.
1097 (hash_symname): Likewise.
1098 (eq_symname): Likewise.
1099 * compile/compile-c-types.c (hash_type_map_instance): Likewise.
1100 (eq_type_map_instance): Likewise.
1101 (insert_type): Likewise.
1102 (convert_type): Likewise.
1103 * compile/compile-object-load.c (munmap_listp_free_cleanup): Likewise.
1104 (setup_sections): Likewise.
1105 (link_hash_table_free): Likewise.
1106 (copy_sections): Likewise.
1107 * compile/compile-object-run.c (do_module_cleanup): Likewise.
1108 * compile/compile.c (compile_print_value): Likewise.
1109 (do_rmdir): Likewise.
1110 (cleanup_compile_instance): Likewise.
1111 (cleanup_unlink_file): Likewise.
1112 * completer.c (free_completion_tracker): Likewise.
1113 * corelow.c (add_to_spuid_list): Likewise.
1114 * cp-namespace.c (reset_directive_searched): Likewise.
1115 * cp-support.c (reset_directive_searched): Likewise.
1116 * cris-tdep.c (cris_sigtramp_frame_unwind_cache): Likewise.
1117 (cris_frame_unwind_cache): Likewise.
1118 * d-lang.c (builtin_d_type): Likewise.
1119 * d-namespace.c (reset_directive_searched): Likewise.
1120 * dbxread.c (dbx_free_symfile_info): Likewise.
1121 (do_free_bincl_list_cleanup): Likewise.
1122 * disasm.c (hash_dis_line_entry): Likewise.
1123 (eq_dis_line_entry): Likewise.
1124 (dis_asm_print_address): Likewise.
1125 (fprintf_disasm): Likewise.
1126 (do_ui_file_delete): Likewise.
1127 * doublest.c (convert_floatformat_to_doublest): Likewise.
1128 * dummy-frame.c (pop_dummy_frame_bpt): Likewise.
1129 (dummy_frame_prev_register): Likewise.
1130 (dummy_frame_this_id): Likewise.
1131 * dwarf2-frame-tailcall.c (cache_hash): Likewise.
1132 (cache_eq): Likewise.
1133 (cache_find): Likewise.
1134 (tailcall_frame_this_id): Likewise.
1135 (dwarf2_tailcall_prev_register_first): Likewise.
1136 (tailcall_frame_prev_register): Likewise.
1137 (tailcall_frame_dealloc_cache): Likewise.
1138 (tailcall_frame_prev_arch): Likewise.
1139 * dwarf2-frame.c (dwarf2_frame_state_free): Likewise.
1140 (dwarf2_frame_set_init_reg): Likewise.
1141 (dwarf2_frame_init_reg): Likewise.
1142 (dwarf2_frame_set_signal_frame_p): Likewise.
1143 (dwarf2_frame_signal_frame_p): Likewise.
1144 (dwarf2_frame_set_adjust_regnum): Likewise.
1145 (dwarf2_frame_adjust_regnum): Likewise.
1146 (clear_pointer_cleanup): Likewise.
1147 (dwarf2_frame_cache): Likewise.
1148 (find_cie): Likewise.
1149 (dwarf2_frame_find_fde): Likewise.
1150 * dwarf2expr.c (dwarf_expr_address_type): Likewise.
1151 (free_dwarf_expr_context_cleanup): Likewise.
1152 * dwarf2loc.c (locexpr_find_frame_base_location): Likewise.
1153 (locexpr_get_frame_base): Likewise.
1154 (loclist_find_frame_base_location): Likewise.
1155 (loclist_get_frame_base): Likewise.
1156 (dwarf_expr_dwarf_call): Likewise.
1157 (dwarf_expr_get_base_type): Likewise.
1158 (dwarf_expr_push_dwarf_reg_entry_value): Likewise.
1159 (dwarf_expr_get_obj_addr): Likewise.
1160 (entry_data_value_coerce_ref): Likewise.
1161 (entry_data_value_copy_closure): Likewise.
1162 (entry_data_value_free_closure): Likewise.
1163 (get_frame_address_in_block_wrapper): Likewise.
1164 (dwarf2_evaluate_property): Likewise.
1165 (dwarf2_compile_property_to_c): Likewise.
1166 (needs_frame_read_addr_from_reg): Likewise.
1167 (needs_frame_get_reg_value): Likewise.
1168 (needs_frame_frame_base): Likewise.
1169 (needs_frame_frame_cfa): Likewise.
1170 (needs_frame_tls_address): Likewise.
1171 (needs_frame_dwarf_call): Likewise.
1172 (needs_dwarf_reg_entry_value): Likewise.
1173 (get_ax_pc): Likewise.
1174 (locexpr_read_variable): Likewise.
1175 (locexpr_read_variable_at_entry): Likewise.
1176 (locexpr_read_needs_frame): Likewise.
1177 (locexpr_describe_location): Likewise.
1178 (locexpr_tracepoint_var_ref): Likewise.
1179 (locexpr_generate_c_location): Likewise.
1180 (loclist_read_variable): Likewise.
1181 (loclist_read_variable_at_entry): Likewise.
1182 (loclist_describe_location): Likewise.
1183 (loclist_tracepoint_var_ref): Likewise.
1184 (loclist_generate_c_location): Likewise.
1185 * dwarf2read.c (line_header_hash_voidp): Likewise.
1186 (line_header_eq_voidp): Likewise.
1187 (dwarf2_has_info): Likewise.
1188 (dwarf2_get_section_info): Likewise.
1189 (locate_dwz_sections): Likewise.
1190 (hash_file_name_entry): Likewise.
1191 (eq_file_name_entry): Likewise.
1192 (delete_file_name_entry): Likewise.
1193 (dw2_setup): Likewise.
1194 (dw2_get_file_names_reader): Likewise.
1195 (dw2_find_pc_sect_compunit_symtab): Likewise.
1196 (hash_signatured_type): Likewise.
1197 (eq_signatured_type): Likewise.
1198 (add_signatured_type_cu_to_table): Likewise.
1199 (create_debug_types_hash_table): Likewise.
1200 (lookup_dwo_signatured_type): Likewise.
1201 (lookup_dwp_signatured_type): Likewise.
1202 (lookup_signatured_type): Likewise.
1203 (hash_type_unit_group): Likewise.
1204 (eq_type_unit_group): Likewise.
1205 (get_type_unit_group): Likewise.
1206 (process_psymtab_comp_unit_reader): Likewise.
1207 (sort_tu_by_abbrev_offset): Likewise.
1208 (process_skeletonless_type_unit): Likewise.
1209 (psymtabs_addrmap_cleanup): Likewise.
1210 (dwarf2_read_symtab): Likewise.
1211 (psymtab_to_symtab_1): Likewise.
1212 (die_hash): Likewise.
1213 (die_eq): Likewise.
1214 (load_full_comp_unit_reader): Likewise.
1215 (reset_die_in_process): Likewise.
1216 (free_cu_line_header): Likewise.
1217 (handle_DW_AT_stmt_list): Likewise.
1218 (hash_dwo_file): Likewise.
1219 (eq_dwo_file): Likewise.
1220 (hash_dwo_unit): Likewise.
1221 (eq_dwo_unit): Likewise.
1222 (create_dwo_cu_reader): Likewise.
1223 (create_dwo_unit_in_dwp_v1): Likewise.
1224 (create_dwo_unit_in_dwp_v2): Likewise.
1225 (lookup_dwo_unit_in_dwp): Likewise.
1226 (dwarf2_locate_dwo_sections): Likewise.
1227 (dwarf2_locate_common_dwp_sections): Likewise.
1228 (dwarf2_locate_v2_dwp_sections): Likewise.
1229 (hash_dwp_loaded_cutus): Likewise.
1230 (eq_dwp_loaded_cutus): Likewise.
1231 (lookup_dwo_cutu): Likewise.
1232 (abbrev_table_free_cleanup): Likewise.
1233 (dwarf2_free_abbrev_table): Likewise.
1234 (find_partial_die_in_comp_unit): Likewise.
1235 (free_line_header_voidp): Likewise.
1236 (follow_die_offset): Likewise.
1237 (follow_die_sig_1): Likewise.
1238 (free_heap_comp_unit): Likewise.
1239 (free_stack_comp_unit): Likewise.
1240 (dwarf2_free_objfile): Likewise.
1241 (per_cu_offset_and_type_hash): Likewise.
1242 (per_cu_offset_and_type_eq): Likewise.
1243 (get_die_type_at_offset): Likewise.
1244 (partial_die_hash): Likewise.
1245 (partial_die_eq): Likewise.
1246 (dwarf2_per_objfile_free): Likewise.
1247 (hash_strtab_entry): Likewise.
1248 (eq_strtab_entry): Likewise.
1249 (add_string): Likewise.
1250 (hash_symtab_entry): Likewise.
1251 (eq_symtab_entry): Likewise.
1252 (delete_symtab_entry): Likewise.
1253 (cleanup_mapped_symtab): Likewise.
1254 (add_indices_to_cpool): Likewise.
1255 (hash_psymtab_cu_index): Likewise.
1256 (eq_psymtab_cu_index): Likewise.
1257 (add_address_entry_worker): Likewise.
1258 (unlink_if_set): Likewise.
1259 (write_one_signatured_type): Likewise.
1260 (save_gdb_index_command): Likewise.
1261 * elfread.c (elf_symtab_read): Likewise.
1262 (elf_gnu_ifunc_cache_hash): Likewise.
1263 (elf_gnu_ifunc_cache_eq): Likewise.
1264 (elf_gnu_ifunc_record_cache): Likewise.
1265 (elf_gnu_ifunc_resolve_by_cache): Likewise.
1266 (elf_get_probes): Likewise.
1267 (probe_key_free): Likewise.
1268 * f-lang.c (builtin_f_type): Likewise.
1269 * frame-base.c (frame_base_append_sniffer): Likewise.
1270 (frame_base_set_default): Likewise.
1271 (frame_base_find_by_frame): Likewise.
1272 * frame-unwind.c (frame_unwind_prepend_unwinder): Likewise.
1273 (frame_unwind_append_unwinder): Likewise.
1274 (frame_unwind_find_by_frame): Likewise.
1275 * frame.c (frame_addr_hash): Likewise.
1276 (frame_addr_hash_eq): Likewise.
1277 (frame_stash_find): Likewise.
1278 (do_frame_register_read): Likewise.
1279 (unwind_to_current_frame): Likewise.
1280 (frame_cleanup_after_sniffer): Likewise.
1281 * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
1282 * frv-tdep.c (frv_frame_unwind_cache): Likewise.
1283 * ft32-tdep.c (ft32_frame_cache): Likewise.
1284 * gcore.c (do_bfd_delete_cleanup): Likewise.
1285 (gcore_create_callback): Likewise.
1286 * gdb_bfd.c (hash_bfd): Likewise.
1287 (eq_bfd): Likewise.
1288 (gdb_bfd_open): Likewise.
1289 (free_one_bfd_section): Likewise.
1290 (gdb_bfd_ref): Likewise.
1291 (gdb_bfd_unref): Likewise.
1292 (get_section_descriptor): Likewise.
1293 (gdb_bfd_map_section): Likewise.
1294 (gdb_bfd_crc): Likewise.
1295 (gdb_bfd_mark_parent): Likewise.
1296 (gdb_bfd_record_inclusion): Likewise.
1297 (gdb_bfd_requires_relocations): Likewise.
1298 (print_one_bfd): Likewise.
1299 * gdbtypes.c (type_pair_hash): Likewise.
1300 (type_pair_eq): Likewise.
1301 (builtin_type): Likewise.
1302 (objfile_type): Likewise.
1303 * gnu-v3-abi.c (vtable_ptrdiff_type): Likewise.
1304 (vtable_address_point_offset): Likewise.
1305 (gnuv3_get_vtable): Likewise.
1306 (hash_value_and_voffset): Likewise.
1307 (eq_value_and_voffset): Likewise.
1308 (compare_value_and_voffset): Likewise.
1309 (compute_vtable_size): Likewise.
1310 (gnuv3_get_typeid_type): Likewise.
1311 * go-lang.c (builtin_go_type): Likewise.
1312 * guile/scm-block.c (bkscm_hash_block_smob): Likewise.
1313 (bkscm_eq_block_smob): Likewise.
1314 (bkscm_objfile_block_map): Likewise.
1315 (bkscm_del_objfile_blocks): Likewise.
1316 * guile/scm-breakpoint.c (bpscm_build_bp_list): Likewise.
1317 * guile/scm-disasm.c (gdbscm_disasm_read_memory_worker): Likewise.
1318 (gdbscm_disasm_print_address): Likewise.
1319 * guile/scm-frame.c (frscm_hash_frame_smob): Likewise.
1320 (frscm_eq_frame_smob): Likewise.
1321 (frscm_inferior_frame_map): Likewise.
1322 (frscm_del_inferior_frames): Likewise.
1323 * guile/scm-gsmob.c (gdbscm_add_objfile_ref): Likewise.
1324 * guile/scm-objfile.c (ofscm_handle_objfile_deleted): Likewise.
1325 (ofscm_objfile_smob_from_objfile): Likewise.
1326 * guile/scm-ports.c (ioscm_write): Likewise.
1327 (ioscm_file_port_delete): Likewise.
1328 (ioscm_file_port_rewind): Likewise.
1329 (ioscm_file_port_put): Likewise.
1330 (ioscm_file_port_write): Likewise.
1331 * guile/scm-progspace.c (psscm_handle_pspace_deleted): Likewise.
1332 (psscm_pspace_smob_from_pspace): Likewise.
1333 * guile/scm-safe-call.c (scscm_recording_pre_unwind_handler): Likewise.
1334 (scscm_recording_unwind_handler): Likewise.
1335 (gdbscm_with_catch): Likewise.
1336 (scscm_call_0_body): Likewise.
1337 (scscm_call_1_body): Likewise.
1338 (scscm_call_2_body): Likewise.
1339 (scscm_call_3_body): Likewise.
1340 (scscm_call_4_body): Likewise.
1341 (scscm_apply_1_body): Likewise.
1342 (scscm_eval_scheme_string): Likewise.
1343 (gdbscm_safe_eval_string): Likewise.
1344 (scscm_source_scheme_script): Likewise.
1345 (gdbscm_safe_source_script): Likewise.
1346 * guile/scm-string.c (gdbscm_call_scm_to_stringn): Likewise.
1347 (gdbscm_call_scm_from_stringn): Likewise.
1348 * guile/scm-symbol.c (syscm_hash_symbol_smob): Likewise.
1349 (syscm_eq_symbol_smob): Likewise.
1350 (syscm_get_symbol_map): Likewise.
1351 (syscm_del_objfile_symbols): Likewise.
1352 * guile/scm-symtab.c (stscm_hash_symtab_smob): Likewise.
1353 (stscm_eq_symtab_smob): Likewise.
1354 (stscm_objfile_symtab_map): Likewise.
1355 (stscm_del_objfile_symtabs): Likewise.
1356 * guile/scm-type.c (tyscm_hash_type_smob): Likewise.
1357 (tyscm_eq_type_smob): Likewise.
1358 (tyscm_type_map): Likewise.
1359 (tyscm_copy_type_recursive): Likewise.
1360 (save_objfile_types): Likewise.
1361 * guile/scm-utils.c (extract_arg): Likewise.
1362 * h8300-tdep.c (h8300_frame_cache): Likewise.
1363 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind_cache): Likewise.
1364 * hppa-tdep.c (compare_unwind_entries): Likewise.
1365 (find_unwind_entry): Likewise.
1366 (hppa_frame_cache): Likewise.
1367 (hppa_stub_frame_unwind_cache): Likewise.
1368 * hppanbsd-tdep.c (hppanbsd_supply_gregset): Likewise.
1369 * hppaobsd-tdep.c (hppaobsd_supply_gregset): Likewise.
1370 (hppaobsd_supply_fpregset): Likewise.
1371 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1372 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1373 * i386-tdep.c (i386_frame_cache): Likewise.
1374 (i386_epilogue_frame_cache): Likewise.
1375 (i386_sigtramp_frame_cache): Likewise.
1376 (i386_supply_gregset): Likewise.
1377 (i386_collect_gregset): Likewise.
1378 (i386_gdbarch_init): Likewise.
1379 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Likewise.
1380 (i386obsd_trapframe_cache): Likewise.
1381 * i387-tdep.c (i387_supply_fsave): Likewise.
1382 (i387_collect_fsave): Likewise.
1383 (i387_supply_fxsave): Likewise.
1384 (i387_collect_fxsave): Likewise.
1385 (i387_supply_xsave): Likewise.
1386 (i387_collect_xsave): Likewise.
1387 * ia64-tdep.c (ia64_frame_cache): Likewise.
1388 (ia64_sigtramp_frame_cache): Likewise.
1389 * infcmd.c (attach_command_continuation): Likewise.
1390 (attach_command_continuation_free_args): Likewise.
1391 * inferior.c (restore_inferior): Likewise.
1392 (delete_thread_of_inferior): Likewise.
1393 * inflow.c (inflow_inferior_data_cleanup): Likewise.
1394 (get_inflow_inferior_data): Likewise.
1395 (inflow_inferior_exit): Likewise.
1396 * infrun.c (displaced_step_clear_cleanup): Likewise.
1397 (restore_current_uiout_cleanup): Likewise.
1398 (release_stop_context_cleanup): Likewise.
1399 (do_restore_infcall_suspend_state_cleanup): Likewise.
1400 (do_restore_infcall_control_state_cleanup): Likewise.
1401 (restore_inferior_ptid): Likewise.
1402 * inline-frame.c (block_starting_point_at): Likewise.
1403 * iq2000-tdep.c (iq2000_frame_cache): Likewise.
1404 * jit.c (get_jit_objfile_data): Likewise.
1405 (get_jit_program_space_data): Likewise.
1406 (jit_object_close_impl): Likewise.
1407 (jit_find_objf_with_entry_addr): Likewise.
1408 (jit_breakpoint_deleted): Likewise.
1409 (jit_unwind_reg_set_impl): Likewise.
1410 (jit_unwind_reg_get_impl): Likewise.
1411 (jit_dealloc_cache): Likewise.
1412 (jit_frame_sniffer): Likewise.
1413 (jit_frame_prev_register): Likewise.
1414 (jit_prepend_unwinder): Likewise.
1415 (jit_inferior_exit_hook): Likewise.
1416 (free_objfile_data): Likewise.
1417 * jv-lang.c (jv_per_objfile_free): Likewise.
1418 (get_dynamics_objfile): Likewise.
1419 (get_java_class_symtab): Likewise.
1420 (builtin_java_type): Likewise.
1421 * language.c (language_string_char_type): Likewise.
1422 (language_bool_type): Likewise.
1423 (language_lookup_primitive_type): Likewise.
1424 (language_lookup_primitive_type_as_symbol): Likewise.
1425 * linespec.c (hash_address_entry): Likewise.
1426 (eq_address_entry): Likewise.
1427 (iterate_inline_only): Likewise.
1428 (iterate_name_matcher): Likewise.
1429 (decode_line_2_compare_items): Likewise.
1430 (collect_one_symbol): Likewise.
1431 (compare_symbols): Likewise.
1432 (compare_msymbols): Likewise.
1433 (add_symtabs_to_list): Likewise.
1434 (collect_symbols): Likewise.
1435 (compare_msyms): Likewise.
1436 (add_minsym): Likewise.
1437 (cleanup_linespec_result): Likewise.
1438 * linux-fork.c (inferior_call_waitpid_cleanup): Likewise.
1439 * linux-nat.c (delete_lwp_cleanup): Likewise.
1440 (count_events_callback): Likewise.
1441 (select_event_lwp_callback): Likewise.
1442 (resume_stopped_resumed_lwps): Likewise.
1443 * linux-tdep.c (get_linux_gdbarch_data): Likewise.
1444 (invalidate_linux_cache_inf): Likewise.
1445 (get_linux_inferior_data): Likewise.
1446 (linux_find_memory_regions_thunk): Likewise.
1447 (linux_make_mappings_callback): Likewise.
1448 (linux_corefile_thread_callback): Likewise.
1449 (find_mapping_size): Likewise.
1450 * linux-thread-db.c (find_new_threads_callback): Likewise.
1451 * lm32-tdep.c (lm32_frame_cache): Likewise.
1452 * m2-lang.c (builtin_m2_type): Likewise.
1453 * m32c-tdep.c (m32c_analyze_frame_prologue): Likewise.
1454 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_cache): Likewise.
1455 (m32r_linux_supply_gregset): Likewise.
1456 (m32r_linux_collect_gregset): Likewise.
1457 * m32r-tdep.c (m32r_frame_unwind_cache): Likewise.
1458 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
1459 * m68k-tdep.c (m68k_frame_cache): Likewise.
1460 * m68kbsd-tdep.c (m68kbsd_supply_fpregset): Likewise.
1461 (m68kbsd_supply_gregset): Likewise.
1462 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
1463 * m88k-tdep.c (m88k_frame_cache): Likewise.
1464 (m88k_supply_gregset): Likewise.
1465
1466 2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
1467
1468 * aarch64-linux-tdep.c (aarch64_stap_parse_special_token): Add cast
1469 to allocation result assignment.
1470 * ada-exp.y (write_object_renaming): Likewise.
1471 (write_ambiguous_var): Likewise.
1472 (ada_nget_field_index): Likewise.
1473 (write_var_or_type): Likewise.
1474 * ada-lang.c (ada_decode_symbol): Likewise.
1475 (ada_value_assign): Likewise.
1476 (value_pointer): Likewise.
1477 (cache_symbol): Likewise.
1478 (add_nonlocal_symbols): Likewise.
1479 (ada_name_for_lookup): Likewise.
1480 (symbol_completion_add): Likewise.
1481 (ada_to_fixed_type_1): Likewise.
1482 (ada_get_next_arg): Likewise.
1483 (defns_collected): Likewise.
1484 * ada-lex.l (processId): Likewise.
1485 (processString): Likewise.
1486 * ada-tasks.c (read_known_tasks_array): Likewise.
1487 (read_known_tasks_list): Likewise.
1488 * ada-typeprint.c (decoded_type_name): Likewise.
1489 * addrmap.c (addrmap_mutable_create_fixed): Likewise.
1490 * amd64-tdep.c (amd64_push_arguments): Likewise.
1491 (amd64_displaced_step_copy_insn): Likewise.
1492 (amd64_classify_insn_at): Likewise.
1493 (amd64_relocate_instruction): Likewise.
1494 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Likewise.
1495 * arch-utils.c (simple_displaced_step_copy_insn): Likewise.
1496 (initialize_current_architecture): Likewise.
1497 * arm-linux-tdep.c (arm_stap_parse_special_token): Likewise.
1498 * arm-symbian-tdep.c (arm_symbian_osabi_sniffer): Likewise.
1499 * arm-tdep.c (arm_exidx_new_objfile): Likewise.
1500 (arm_push_dummy_call): Likewise.
1501 (extend_buffer_earlier): Likewise.
1502 (arm_adjust_breakpoint_address): Likewise.
1503 (arm_skip_stub): Likewise.
1504 * auto-load.c (filename_is_in_pattern): Likewise.
1505 (maybe_add_script_file): Likewise.
1506 (maybe_add_script_text): Likewise.
1507 (auto_load_objfile_script_1): Likewise.
1508 * auxv.c (ld_so_xfer_auxv): Likewise.
1509 * ax-general.c (new_agent_expr): Likewise.
1510 (grow_expr): Likewise.
1511 (ax_reg_mask): Likewise.
1512 * bcache.c (bcache_full): Likewise.
1513 * breakpoint.c (program_breakpoint_here_p): Likewise.
1514 * btrace.c (parse_xml_raw): Likewise.
1515 * build-id.c (build_id_to_debug_bfd): Likewise.
1516 * buildsym.c (end_symtab_with_blockvector): Likewise.
1517 * c-exp.y (string_exp): Likewise.
1518 (qualified_name): Likewise.
1519 (write_destructor_name): Likewise.
1520 (operator_stoken): Likewise.
1521 (parse_number): Likewise.
1522 (scan_macro_expansion): Likewise.
1523 (yylex): Likewise.
1524 (c_print_token): Likewise.
1525 * c-lang.c (c_get_string): Likewise.
1526 (emit_numeric_character): Likewise.
1527 * charset.c (wchar_iterate): Likewise.
1528 * cli/cli-cmds.c (complete_command): Likewise.
1529 (make_command): Likewise.
1530 * cli/cli-dump.c (restore_section_callback): Likewise.
1531 (restore_binary_file): Likewise.
1532 * cli/cli-interp.c (cli_interpreter_exec): Likewise.
1533 * cli/cli-script.c (execute_control_command): Likewise.
1534 * cli/cli-setshow.c (do_set_command): Likewise.
1535 * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
1536 (read_pe_exported_syms): Likewise.
1537 * coffread.c (coff_read_struct_type): Likewise.
1538 (coff_read_enum_type): Likewise.
1539 * common/btrace-common.c (btrace_data_append): Likewise.
1540 * common/buffer.c (buffer_grow): Likewise.
1541 * common/filestuff.c (gdb_fopen_cloexec): Likewise.
1542 * common/format.c (parse_format_string): Likewise.
1543 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
1544 * common/xml-utils.c (xml_escape_text): Likewise.
1545 * compile/compile-object-load.c (copy_sections): Likewise.
1546 (compile_object_load): Likewise.
1547 * compile/compile-object-run.c (compile_object_run): Likewise.
1548 * completer.c (filename_completer): Likewise.
1549 * corefile.c (read_memory_typed_address): Likewise.
1550 (write_memory_unsigned_integer): Likewise.
1551 (write_memory_signed_integer): Likewise.
1552 (complete_set_gnutarget): Likewise.
1553 * corelow.c (get_core_register_section): Likewise.
1554 * cp-name-parser.y (d_grab): Likewise.
1555 (allocate_info): Likewise.
1556 (cp_new_demangle_parse_info): Likewise.
1557 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Likewise.
1558 (cp_lookup_symbol_in_namespace): Likewise.
1559 (lookup_namespace_scope): Likewise.
1560 (find_symbol_in_baseclass): Likewise.
1561 (cp_lookup_nested_symbol): Likewise.
1562 (cp_lookup_transparent_type_loop): Likewise.
1563 * cp-support.c (copy_string_to_obstack): Likewise.
1564 (make_symbol_overload_list): Likewise.
1565 (make_symbol_overload_list_namespace): Likewise.
1566 (make_symbol_overload_list_adl_namespace): Likewise.
1567 (first_component_command): Likewise.
1568 * cp-valprint.c (cp_print_value): Likewise.
1569 * ctf.c (ctf_xfer_partial): Likewise.
1570 * d-exp.y (StringExp): Likewise.
1571 * d-namespace.c (d_lookup_symbol_in_module): Likewise.
1572 (lookup_module_scope): Likewise.
1573 (find_symbol_in_baseclass): Likewise.
1574 (d_lookup_nested_symbol): Likewise.
1575 * dbxread.c (find_stab_function_addr): Likewise.
1576 (read_dbx_symtab): Likewise.
1577 (dbx_end_psymtab): Likewise.
1578 (cp_set_block_scope): Likewise.
1579 * dcache.c (dcache_alloc): Likewise.
1580 * demangle.c (_initialize_demangler): Likewise.
1581 * dicos-tdep.c (dicos_load_module_p): Likewise.
1582 * dictionary.c (dict_create_hashed_expandable): Likewise.
1583 (dict_create_linear_expandable): Likewise.
1584 (expand_hashtable): Likewise.
1585 (add_symbol_linear_expandable): Likewise.
1586 * dwarf2-frame.c (add_cie): Likewise.
1587 (add_fde): Likewise.
1588 (dwarf2_build_frame_info): Likewise.
1589 * dwarf2expr.c (dwarf_expr_grow_stack): Likewise.
1590 (dwarf_expr_fetch_address): Likewise.
1591 (add_piece): Likewise.
1592 (execute_stack_op): Likewise.
1593 * dwarf2loc.c (chain_candidate): Likewise.
1594 (dwarf_entry_parameter_to_value): Likewise.
1595 (read_pieced_value): Likewise.
1596 (write_pieced_value): Likewise.
1597 * dwarf2read.c (dwarf2_read_section): Likewise.
1598 (add_type_unit): Likewise.
1599 (read_comp_units_from_section): Likewise.
1600 (fixup_go_packaging): Likewise.
1601 (dwarf2_compute_name): Likewise.
1602 (dwarf2_physname): Likewise.
1603 (create_dwo_unit_in_dwp_v1): Likewise.
1604 (create_dwo_unit_in_dwp_v2): Likewise.
1605 (read_func_scope): Likewise.
1606 (read_call_site_scope): Likewise.
1607 (dwarf2_attach_fields_to_type): Likewise.
1608 (process_structure_scope): Likewise.
1609 (mark_common_block_symbol_computed): Likewise.
1610 (read_common_block): Likewise.
1611 (abbrev_table_read_table): Likewise.
1612 (guess_partial_die_structure_name): Likewise.
1613 (fixup_partial_die): Likewise.
1614 (add_file_name): Likewise.
1615 (dwarf2_const_value_data): Likewise.
1616 (dwarf2_const_value_attr): Likewise.
1617 (build_error_marker_type): Likewise.
1618 (guess_full_die_structure_name): Likewise.
1619 (anonymous_struct_prefix): Likewise.
1620 (typename_concat): Likewise.
1621 (dwarf2_canonicalize_name): Likewise.
1622 (dwarf2_name): Likewise.
1623 (write_constant_as_bytes): Likewise.
1624 (dwarf2_fetch_constant_bytes): Likewise.
1625 (copy_string): Likewise.
1626 (parse_macro_definition): Likewise.
1627 * elfread.c (elf_symfile_segments): Likewise.
1628 (elf_rel_plt_read): Likewise.
1629 (elf_gnu_ifunc_resolve_by_cache): Likewise.
1630 (elf_gnu_ifunc_resolve_by_got): Likewise.
1631 (elf_read_minimal_symbols): Likewise.
1632 (elf_gnu_ifunc_record_cache): Likewise.
1633 * event-top.c (top_level_prompt): Likewise.
1634 (command_line_handler): Likewise.
1635 * exec.c (resize_section_table): Likewise.
1636 * expprint.c (print_subexp_standard): Likewise.
1637 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
1638 * findcmd.c (parse_find_args): Likewise.
1639 * findvar.c (address_from_register): Likewise.
1640 * frame.c (get_prev_frame_always): Likewise.
1641 * gdb_bfd.c (gdb_bfd_ref): Likewise.
1642 (get_section_descriptor): Likewise.
1643 * gdb_obstack.c (obconcat): Likewise.
1644 (obstack_strdup): Likewise.
1645 * gdbtypes.c (lookup_function_type_with_arguments): Likewise.
1646 (create_set_type): Likewise.
1647 (lookup_unsigned_typename): Likewise.
1648 (lookup_signed_typename): Likewise.
1649 (resolve_dynamic_union): Likewise.
1650 (resolve_dynamic_struct): Likewise.
1651 (add_dyn_prop): Likewise.
1652 (copy_dynamic_prop_list): Likewise.
1653 (arch_flags_type): Likewise.
1654 (append_composite_type_field_raw): Likewise.
1655 * gdbtypes.h (INIT_FUNC_SPECIFIC): Likewise.
1656 * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
1657 * go-exp.y (string_exp): Likewise.
1658 * go-lang.c (go_demangle): Likewise.
1659 * guile/guile.c (compute_scheme_string): Likewise.
1660 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
1661 (gdbscm_canonicalize_command_name): Likewise.
1662 * guile/scm-ports.c (ioscm_init_stdio_buffers): Likewise.
1663 (ioscm_init_memory_port): Likewise.
1664 (ioscm_reinit_memory_port): Likewise.
1665 * guile/scm-utils.c (gdbscm_gc_xstrdup): Likewise.
1666 (gdbscm_gc_dup_argv): Likewise.
1667 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
1668 * hppa-tdep.c (internalize_unwinds): Likewise.
1669 (read_unwind_info): Likewise.
1670 * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1671 (windows_core_xfer_shared_libraries): Likewise.
1672 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
1673 (i386_stap_parse_special_token_triplet): Likewise.
1674 (i386_stap_parse_special_token_three_arg_disp): Likewise.
1675 * i386obsd-tdep.c (i386obsd_sigtramp_p): Likewise.
1676 * inf-child.c (inf_child_fileio_readlink): Likewise.
1677 * inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
1678 (inf_ptrace_store_register): Likewise.
1679 * infrun.c (follow_exec): Likewise.
1680 (displaced_step_prepare_throw): Likewise.
1681 (save_stop_context): Likewise.
1682 (save_infcall_suspend_state): Likewise.
1683 * jit.c (jit_read_descriptor): Likewise.
1684 (jit_read_code_entry): Likewise.
1685 (jit_symtab_line_mapping_add_impl): Likewise.
1686 (finalize_symtab): Likewise.
1687 (jit_unwind_reg_get_impl): Likewise.
1688 * jv-exp.y (QualifiedName): Likewise.
1689 * jv-lang.c (get_java_utf8_name): Likewise.
1690 (type_from_class): Likewise.
1691 (java_demangle_type_signature): Likewise.
1692 (java_class_name_from_physname): Likewise.
1693 * jv-typeprint.c (java_type_print_base): Likewise.
1694 * jv-valprint.c (java_value_print): Likewise.
1695 * language.c (add_language): Likewise.
1696 * linespec.c (add_sal_to_sals_basic): Likewise.
1697 (add_sal_to_sals): Likewise.
1698 (decode_objc): Likewise.
1699 (find_linespec_symbols): Likewise.
1700 * linux-fork.c (fork_save_infrun_state): Likewise.
1701 * linux-nat.c (linux_nat_detach): Likewise.
1702 (linux_nat_fileio_readlink): Likewise.
1703 * linux-record.c (record_linux_sockaddr): Likewise.
1704 (record_linux_msghdr): Likewise.
1705 (Do): Likewise.
1706 * linux-tdep.c (linux_core_info_proc_mappings): Likewise.
1707 (linux_collect_regset_section_cb): Likewise.
1708 (linux_get_siginfo_data): Likewise.
1709 * linux-thread-db.c (try_thread_db_load_from_pdir_1): Likewise.
1710 (try_thread_db_load_from_dir): Likewise.
1711 (thread_db_load_search): Likewise.
1712 (info_auto_load_libthread_db): Likewise.
1713 * m32c-tdep.c (m32c_m16c_address_to_pointer): Likewise.
1714 (m32c_m16c_pointer_to_address): Likewise.
1715 * m68hc11-tdep.c (m68hc11_pseudo_register_write): Likewise.
1716 * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
1717 * machoread.c (macho_check_dsym): Likewise.
1718 * macroexp.c (resize_buffer): Likewise.
1719 (gather_arguments): Likewise.
1720 (maybe_expand): Likewise.
1721 * macrotab.c (new_macro_key): Likewise.
1722 (new_source_file): Likewise.
1723 (new_macro_definition): Likewise.
1724 * mdebugread.c (parse_symbol): Likewise.
1725 (parse_type): Likewise.
1726 (parse_partial_symbols): Likewise.
1727 (psymtab_to_symtab_1): Likewise.
1728 * mem-break.c (default_memory_insert_breakpoint): Likewise.
1729 * mi/mi-cmd-break.c (mi_argv_to_format): Likewise.
1730 * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
1731 (mi_cmd_data_read_memory_bytes): Likewise.
1732 (mi_cmd_data_write_memory_bytes): Likewise.
1733 (mi_cmd_trace_frame_collected): Likewise.
1734 * mi/mi-parse.c (mi_parse_argv): Likewise.
1735 (mi_parse): Likewise.
1736 * minidebug.c (lzma_open): Likewise.
1737 (lzma_pread): Likewise.
1738 * mips-tdep.c (mips_read_fp_register_single): Likewise.
1739 (mips_print_fp_register): Likewise.
1740 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Likewise.
1741 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
1742 * mt-tdep.c (mt_register_name): Likewise.
1743 (mt_registers_info): Likewise.
1744 (mt_push_dummy_call): Likewise.
1745 * namespace.c (add_using_directive): Likewise.
1746 * nat/linux-btrace.c (perf_event_read): Likewise.
1747 (linux_enable_bts): Likewise.
1748 * nat/linux-osdata.c (linux_common_core_of_thread): Likewise.
1749 * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Likewise.
1750 * nto-tdep.c (nto_find_and_open_solib): Likewise.
1751 (nto_parse_redirection): Likewise.
1752 * objc-lang.c (objc_demangle): Likewise.
1753 (find_methods): Likewise.
1754 * objfiles.c (get_objfile_bfd_data): Likewise.
1755 (set_objfile_main_name): Likewise.
1756 (allocate_objfile): Likewise.
1757 (objfile_relocate): Likewise.
1758 (update_section_map): Likewise.
1759 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
1760 * p-exp.y (exp): Likewise.
1761 (yylex): Likewise.
1762 * p-valprint.c (pascal_object_print_value): Likewise.
1763 * parse.c (initialize_expout): Likewise.
1764 (mark_completion_tag): Likewise.
1765 (copy_name): Likewise.
1766 (parse_float): Likewise.
1767 (type_stack_reserve): Likewise.
1768 * ppc-linux-tdep.c (ppc_stap_parse_special_token): Likewise.
1769 (ppu2spu_prev_register): Likewise.
1770 * ppc-ravenscar-thread.c (supply_register_at_address): Likewise.
1771 * printcmd.c (printf_wide_c_string): Likewise.
1772 (printf_pointer): Likewise.
1773 * probe.c (parse_probes): Likewise.
1774 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
1775 (cmdpy_init): Likewise.
1776 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Likewise.
1777 * python/py-symtab.c (set_sal): Likewise.
1778 * python/py-unwind.c (pyuw_sniffer): Likewise.
1779 * python/python.c (python_interactive_command): Likewise.
1780 (compute_python_string): Likewise.
1781 * ravenscar-thread.c (get_running_thread_id): Likewise.
1782 * record-full.c (record_full_exec_insn): Likewise.
1783 (record_full_core_open_1): Likewise.
1784 * regcache.c (regcache_raw_read_signed): Likewise.
1785 (regcache_raw_read_unsigned): Likewise.
1786 (regcache_cooked_read_signed): Likewise.
1787 (regcache_cooked_read_unsigned): Likewise.
1788 * remote-fileio.c (remote_fileio_func_open): Likewise.
1789 (remote_fileio_func_rename): Likewise.
1790 (remote_fileio_func_unlink): Likewise.
1791 (remote_fileio_func_stat): Likewise.
1792 (remote_fileio_func_system): Likewise.
1793 * remote-mips.c (mips_xfer_memory): Likewise.
1794 (mips_load_srec): Likewise.
1795 (pmon_end_download): Likewise.
1796 * remote.c (new_remote_state): Likewise.
1797 (map_regcache_remote_table): Likewise.
1798 (remote_register_number_and_offset): Likewise.
1799 (init_remote_state): Likewise.
1800 (get_memory_packet_size): Likewise.
1801 (remote_pass_signals): Likewise.
1802 (remote_program_signals): Likewise.
1803 (remote_start_remote): Likewise.
1804 (remote_check_symbols): Likewise.
1805 (remote_query_supported): Likewise.
1806 (extended_remote_attach): Likewise.
1807 (process_g_packet): Likewise.
1808 (store_registers_using_G): Likewise.
1809 (putpkt_binary): Likewise.
1810 (read_frame): Likewise.
1811 (compare_sections_command): Likewise.
1812 (remote_hostio_pread): Likewise.
1813 (remote_hostio_readlink): Likewise.
1814 (remote_file_put): Likewise.
1815 (remote_file_get): Likewise.
1816 (remote_pid_to_exec_file): Likewise.
1817 (_initialize_remote): Likewise.
1818 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1819 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
1820 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
1821 (bfd_uses_spe_extensions): Likewise.
1822 * s390-linux-tdep.c (s390_displaced_step_copy_insn): Likewise.
1823 * score-tdep.c (score7_malloc_and_get_memblock): Likewise.
1824 * solib-dsbt.c (decode_loadmap): Likewise.
1825 (fetch_loadmap): Likewise.
1826 (scan_dyntag): Likewise.
1827 (enable_break): Likewise.
1828 (dsbt_relocate_main_executable): Likewise.
1829 * solib-frv.c (fetch_loadmap): Likewise.
1830 (enable_break2): Likewise.
1831 (frv_relocate_main_executable): Likewise.
1832 * solib-spu.c (spu_relocate_main_executable): Likewise.
1833 (spu_bfd_open): Likewise.
1834 * solib-svr4.c (lm_info_read): Likewise.
1835 (read_program_header): Likewise.
1836 (find_program_interpreter): Likewise.
1837 (scan_dyntag): Likewise.
1838 (elf_locate_base): Likewise.
1839 (open_symbol_file_object): Likewise.
1840 (read_program_headers_from_bfd): Likewise.
1841 (svr4_relocate_main_executable): Likewise.
1842 * solib-target.c (solib_target_relocate_section_addresses): Likewise.
1843 * solib.c (solib_find_1): Likewise.
1844 (exec_file_find): Likewise.
1845 (solib_find): Likewise.
1846 * source.c (openp): Likewise.
1847 (print_source_lines_base): Likewise.
1848 (forward_search_command): Likewise.
1849 * sparc-ravenscar-thread.c (supply_register_at_address): Likewise.
1850 * spu-tdep.c (spu2ppu_prev_register): Likewise.
1851 (spu_get_overlay_table): Likewise.
1852 * stabsread.c (patch_block_stabs): Likewise.
1853 (define_symbol): Likewise.
1854 (again:): Likewise.
1855 (read_member_functions): Likewise.
1856 (read_one_struct_field): Likewise.
1857 (read_enum_type): Likewise.
1858 (common_block_start): Likewise.
1859 * stack.c (read_frame_arg): Likewise.
1860 (backtrace_command): Likewise.
1861 * stap-probe.c (stap_parse_register_operand): Likewise.
1862 * symfile.c (syms_from_objfile_1): Likewise.
1863 (find_separate_debug_file): Likewise.
1864 (load_command): Likewise.
1865 (load_progress): Likewise.
1866 (load_section_callback): Likewise.
1867 (reread_symbols): Likewise.
1868 (add_filename_language): Likewise.
1869 (allocate_compunit_symtab): Likewise.
1870 (read_target_long_array): Likewise.
1871 (simple_read_overlay_table): Likewise.
1872 * symtab.c (symbol_set_names): Likewise.
1873 (resize_symbol_cache): Likewise.
1874 (rbreak_command): Likewise.
1875 (completion_list_add_name): Likewise.
1876 (completion_list_objc_symbol): Likewise.
1877 (add_filename_to_list): Likewise.
1878 * target-descriptions.c (maint_print_c_tdesc_cmd): Likewise.
1879 * target-memory.c (target_write_memory_blocks): Likewise.
1880 * target.c (target_read_string): Likewise.
1881 (read_whatever_is_readable): Likewise.
1882 (target_read_alloc_1): Likewise.
1883 (simple_search_memory): Likewise.
1884 (target_fileio_read_alloc_1): Likewise.
1885 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
1886 * top.c (command_line_input): Likewise.
1887 * tracefile-tfile.c (tfile_fetch_registers): Likewise.
1888 * tracefile.c (tracefile_fetch_registers): Likewise.
1889 * tracepoint.c (add_memrange): Likewise.
1890 (init_collection_list): Likewise.
1891 (add_aexpr): Likewise.
1892 (trace_dump_actions): Likewise.
1893 (parse_trace_status): Likewise.
1894 (parse_tracepoint_definition): Likewise.
1895 (parse_tsv_definition): Likewise.
1896 (parse_static_tracepoint_marker_definition): Likewise.
1897 * tui/tui-file.c (tui_sfileopen): Likewise.
1898 (tui_file_adjust_strbuf): Likewise.
1899 * tui/tui-io.c (tui_expand_tabs): Likewise.
1900 * tui/tui-source.c (tui_set_source_content): Likewise.
1901 * typeprint.c (find_global_typedef): Likewise.
1902 * ui-file.c (do_ui_file_xstrdup): Likewise.
1903 (ui_file_obsavestring): Likewise.
1904 (mem_file_write): Likewise.
1905 * utils.c (make_hex_string): Likewise.
1906 (get_regcomp_error): Likewise.
1907 (puts_filtered_tabular): Likewise.
1908 (gdb_realpath_keepfile): Likewise.
1909 (ldirname): Likewise.
1910 (gdb_bfd_errmsg): Likewise.
1911 (substitute_path_component): Likewise.
1912 * valops.c (search_struct_method): Likewise.
1913 (find_oload_champ_namespace_loop): Likewise.
1914 * valprint.c (print_decimal_chars): Likewise.
1915 (read_string): Likewise.
1916 (generic_emit_char): Likewise.
1917 * varobj.c (varobj_delete): Likewise.
1918 (varobj_value_get_print_value): Likewise.
1919 * vaxobsd-tdep.c (vaxobsd_sigtramp_sniffer): Likewise.
1920 * windows-tdep.c (display_one_tib): Likewise.
1921 * xcoffread.c (read_xcoff_symtab): Likewise.
1922 (process_xcoff_symbol): Likewise.
1923 (swap_sym): Likewise.
1924 (scan_xcoff_symtab): Likewise.
1925 (xcoff_initial_scan): Likewise.
1926 * xml-support.c (gdb_xml_end_element): Likewise.
1927 (xml_process_xincludes): Likewise.
1928 (xml_fetch_content_from_file): Likewise.
1929 * xml-syscall.c (xml_list_of_syscalls): Likewise.
1930 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
1931
1932 2015-09-23 James Bowman <james.bowman@ftdichip.com>
1933
1934 * ft32-tdep.c (ft32_register_type): Return gdbarch_tdep (gdbarch)->pc_type
1935 instead of builtin_func_ptr.
1936 (ft32_pointer_to_address): New function.
1937 (ft32_address_class_type_flags): New function.
1938 (ft32_address_class_type_flags_to_name): New function.
1939 (ft32_address_class_name_to_type_flags): New function.
1940 (ft32_gdbarch_init): Set tdep->pc_type. Call
1941 set_gdbarch_pointer_to_address,
1942 set_gdbarch_address_class_type_flags
1943 set_gdbarch_address_class_name_to_type_flags,
1944 and set_gdbarch_address_class_type_flags_to_name.
1945 * ft32-tdep.h (struct gdbarch_tdep) <pc_type>: New field.
1946
1947 2015-09-23 Pierre-Marie de Rodat <derodat@adacore.com>
1948
1949 * ada-lang.c (ada_evaluate_subexp) <OP_FUNCALL>: When the input
1950 value is a reference, actually dereference it in order to get
1951 the underlying value.
1952
1953 2015-09-22 Simon Marchi <simon.marchi@ericsson.com>
1954
1955 * stap-probe.c (handle_stap_probe): Remove unnecessary cast.
1956
1957 2015-09-21 Simon Marchi <simon.marchi@ericsson.com>
1958
1959 * cli/cli-setshow.c (cmd_show_list): Constify a variable.
1960 * linespec.c (linespec_lexer_lex_string): Same.
1961
1962 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
1963
1964 * NEWS: Mention support for fast tracepoints on aarch64-linux.
1965
1966 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
1967
1968 * aarch64-tdep.c (aarch64_analyze_prologue): New is_adrp
1969 variable. Call aarch64_decode_adr instead of
1970 aarch64_decode_adrp.
1971 * arch/aarch64-insn.h (aarch64_decode_adrp): Delete.
1972 (aarch64_decode_adr): New function declaration.
1973 * arch/aarch64-insn.c (aarch64_decode_adrp): Delete.
1974 (aarch64_decode_adr): New function, factored out from
1975 aarch64_decode_adrp to decode both adr and adrp instructions.
1976
1977 2015-09-21 Pierre Langlois <pierre.langlois@arm.com>
1978
1979 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-insn.o.
1980 (HFILES_NO_SRCDIR): Add arch/aarch64-insn.h.
1981 (aarch64-insn.o): New rule.
1982 * configure.tgt (aarch64*-*-elf): Add aarch64-insn.o.
1983 (aarch64*-*-linux*): Likewise.
1984 * arch/aarch64-insn.c: New file.
1985 * arch/aarch64-insn.h: New file.
1986 * aarch64-tdep.c: Include arch/aarch64-insn.h.
1987 (aarch64_debug): Move to arch/aarch64-insn.c. Declare in
1988 arch/aarch64-insn.h.
1989 (decode_add_sub_imm): Rename to ...
1990 (aarch64_decode_add_sub_imm): ... this.
1991 (decode_adrp): Rename to ...
1992 (aarch64_decode_adrp): ... this. Move to arch/aarch64-insn.c.
1993 Declare in arch/aarch64-insn.h.
1994 (decode_b): Rename to ...
1995 (aarch64_decode_b): ... this. Move to arch/aarch64-insn.c.
1996 Declare in arch/aarch64-insn.h.
1997 (decode_bcond): Rename to ...
1998 (aarch64_decode_bcond): ... this. Move to arch/aarch64-insn.c.
1999 Declare in arch/aarch64-insn.h.
2000 (decode_br): Rename to ...
2001 (aarch64_decode_br): ... this.
2002 (decode_cb): Rename to ...
2003 (aarch64_decode_cb): ... this. Move to arch/aarch64-insn.c.
2004 Declare in arch/aarch64-insn.h.
2005 (decode_eret): Rename to ...
2006 (aarch64_decode_eret): ... this.
2007 (decode_movz): Rename to ...
2008 (aarch64_decode_movz): ... this.
2009 (decode_orr_shifted_register_x): Rename to ...
2010 (aarch64_decode_orr_shifted_register_x): ... this.
2011 (decode_ret): Rename to ...
2012 (aarch64_decode_ret): ... this.
2013 (decode_stp_offset): Rename to ...
2014 (aarch64_decode_stp_offset): ... this.
2015 (decode_stp_offset_wb): Rename to ...
2016 (aarch64_decode_stp_offset_wb): ... this.
2017 (decode_stur): Rename to ...
2018 (aarch64_decode_stur): ... this.
2019 (decode_tb): Rename to ...
2020 (aarch64_decode_tb): ... this. Move to arch/aarch64-insn.c.
2021 Declare in arch/aarch64-insn.h.
2022 (aarch64_analyze_prologue): Adjust calls to renamed functions.
2023
2024 2015-09-20 Doug Evans <xdje42@gmail.com>
2025
2026 * dwarf2read.c (add_partial_symbol): Remove outdated comments.
2027
2028 2015-09-20 Doug Evans <xdje42@gmail.com>
2029
2030 * dwarf2read.c (dwarf2_compute_name): Add FIXME. Don't use a local
2031 variable name that collides with a parameter.
2032
2033 2015-09-20 Joel Brobecker <brobecker@adacore.com>
2034
2035 * dwarf2loc.c (locexpr_get_frame_base): Renames
2036 block_op_get_frame_base.
2037 (dwarf2_block_frame_base_locexpr_funcs): Replace reference to
2038 block_op_get_frame_base by reference to locexpr_get_frame_base.
2039 (loclist_get_frame_base): New function, near identical copy of
2040 locexpr_get_frame_base.
2041 (dwarf2_block_frame_base_loclist_funcs): Replace reference to
2042 block_op_get_frame_base by reference to loclist_get_frame_base.
2043
2044 2015-09-19 Doug Evans <xdje42@gmail.com>
2045
2046 * ravenscar-thread.c (ravenscar_inferior_created): Replace
2047 current_inferior ()->gdbarch with its wrapper target_gdbarch.
2048
2049 2015-09-18 Doug Evans <xdje42@gmail.com>
2050
2051 * linux-thread-db.c (record_thread): Return the created thread.
2052 (thread_from_lwp): Likewise.
2053 (thread_db_get_thread_local_address): Update.
2054
2055 2015-09-18 Doug Evans <xdje42@gmail.com>
2056
2057 * symtab.h (general_symbol_info) <mangled_lang>: Delete struct,
2058 move only member demangled_name up. All uses updated.
2059
2060 2015-09-18 Doug Evans <xdje42@gmail.com>
2061
2062 * findvar.c (default_read_var_value) <LOC_UNRESOLVED>: Include the
2063 kind of minimal symbol in the error message.
2064 * objfiles.c (objfile_flavour_name): New function.
2065 * objfiles.h (objfile_flavour_name): Declare.
2066
2067 2015-09-18 Yao Qi <yao.qi@linaro.org>
2068
2069 * nat/aarch64-linux.c: Include elf/common.h,
2070 nat/gdb_ptrace.h, asm/ptrace.h and sys/uio.h.
2071 (aarch64_ps_get_thread_area): New function.
2072 * nat/aarch64-linux.h: Include gdb_proc_service.h.
2073 (aarch64_ps_get_thread_area): Declare.
2074 * aarch64-linux-nat.c (ps_get_thread_area): Call
2075 aarch64_ps_get_thread_area.
2076
2077 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2078
2079 * record-btrace.c (record_btrace_resume): Honour scheduler-locking.
2080
2081 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2082
2083 * NEWS: Announce new scheduler-locking mode.
2084 * infrun.c (schedlock_replay): New.
2085 (scheduler_enums): Add schedlock_replay.
2086 (scheduler_mode): Change default to schedlock_replay.
2087 (user_visible_resume_ptid): Handle schedlock_replay.
2088 (clear_proceed_status_thread): Stop replaying if resumed thread is
2089 not replaying.
2090 (schedlock_applies): Handle schedlock_replay.
2091 (_initialize_infrun): Document new scheduler-locking mode.
2092 * record-btrace.c (record_btrace_resume): Remove code to stop other
2093 threads when not replaying the resumed thread.
2094
2095 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2096
2097 * record-btrace.c ((record_btrace_will_replay): New.
2098 (init_record_btrace_ops): Initialize to_record_will_replay.
2099 * record-full.c ((record_full_will_replay): New.
2100 (init_record_full_ops): Initialize to_record_will_replay.
2101 * target-delegates.c: Regenerated.
2102 * target.c (target_record_will_replay): New.
2103 * target.h (struct target_ops) <to_record_will_replay>: New.
2104 (target_record_will_replay): New.
2105
2106 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2107
2108 * record-btrace.c (record_btrace_resume): Call
2109 target_record_stop_replaying.
2110 (record_btrace_stop_replaying_all): New.
2111 (init_record_btrace_ops): Initialize to_record_stop_replaying.
2112 * record-full.c (record_full_stop_replaying): New.
2113 (init_record_full_ops ): Initialize to_record_stop_replaying.
2114 * target-delegates.c: Regenerated.
2115 * target.c (target_record_stop_replaying): New.
2116 * target.h (struct target_ops) <to_record_stop_replaying>: New.
2117 (target_record_stop_replaying): New.
2118
2119 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2120
2121 * record-btrace.c (record_btrace_xfer_partial)
2122 (record_btrace_store_registers, record_btrace_prepare_to_store):
2123 Call record_btrace_is_replaying with inferior_ptid instead of
2124 minus_one_ptid.
2125 (record_btrace_store_registers): Change error message.
2126
2127 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2128
2129 * record-btrace.c (record_btrace_is_replaying): Add ptid argument.
2130 Update users to pass minus_one_ptid.
2131 * record-full.c (record_full_is_replaying): Add ptid argument (ignored).
2132 * record.c (cmd_record_delete): Pass inferior_ptid to
2133 target_record_is_replaying.
2134 * target-delegates.c: Regenerated.
2135 * target.c (target_record_is_replaying): Add ptid argument.
2136 * target.h (struct target_ops) <to_record_is_replaying>: Add ptid
2137 argument.
2138 (target_record_is_replaying): Add ptid argument.
2139
2140 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2141
2142 * record-btrace.c (record_btrace_open): Remove non_stop check.
2143 * NEWS: Announce that record btrace supports non-stop mode.
2144
2145 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2146
2147 * infrun.c (handle_inferior_event_1): Switch to the eventing thread
2148 in the TARKET_WAITKIND_NO_HISTORY case.
2149
2150 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2151
2152 * record-btrace.c (record_btrace_maybe_mark_async_event): New.
2153 (record_btrace_wait): Call record_btrace_maybe_mark_async_event.
2154
2155 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2156
2157 * record-btrace.c (get_thread_current_frame): New.
2158 (record_btrace_start_replaying): Call get_thread_current_frame.
2159
2160 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2161
2162 * record-btrace.c (record_btrace_resume_thread): A move request
2163 overwrites a previous move request.
2164 (record_btrace_find_resume_thread): Removed.
2165 (record_btrace_resume): Resume all requested threads.
2166
2167 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2168
2169 * record-btrace.c: Include vec.h.
2170 (record_btrace_find_thread_to_move): Removed.
2171 (btrace_step_no_resumed, btrace_step_again)
2172 (record_btrace_stop_replaying_at_end): New.
2173 (record_btrace_cancel_resume): Call record_btrace_stop_replaying_at_end.
2174 (record_btrace_single_step_forward): Remove calls to
2175 record_btrace_stop_replaying.
2176 (record_btrace_step_thread): Do only one step for BTHR_CONT and
2177 BTHR_RCONT. Keep threads at the end of their history moving.
2178 (record_btrace_wait): Call record_btrace_step_thread for all threads
2179 until one reports an event. Call record_btrace_stop_replaying_at_end
2180 for the eventing thread.
2181
2182 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2183
2184 * record-btrace.c (record_btrace_single_step_forward): Return
2185 NO_HISTORY if a step brings us to the end of the execution history.
2186
2187 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2188
2189 * record-btrace.c (record_btrace_step_thread): Move breakpoint check
2190 to ...
2191 (record_btrace_single_step_forward): ... here and
2192 (record_btrace_single_step_backward): ... here.
2193
2194 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2195
2196 * record-btrace.c (btrace_step_spurious)
2197 (record_btrace_single_step_forward)
2198 (record_btrace_single_step_backward): New.
2199 (record_btrace_step_thread): Call record_btrace_single_step_forward
2200 and record_btrace_single_step_backward.
2201
2202 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2203
2204 * record-btrace.c (record_btrace_replay_at_breakpoint): New.
2205 (record_btrace_step_thread): Call record_btrace_replay_at_breakpoint.
2206
2207 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2208
2209 * record-btrace.c (btrace_thread_flag_to_str)
2210 (record_btrace_cancel_resume): New.
2211 (record_btrace_step_thread): Call btrace_thread_flag_to_str.
2212 (record_btrace_resume): Print execution direction.
2213 (record_btrace_resume_thread): Call btrace_thread_flag_to_str.
2214 (record_btrace_wait): Call record_btrace_cancel_resume.
2215
2216 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2217
2218 * btrace.h (enum btrace_thread_flag) <BTHR_STOP>: New.
2219 * record-btrace (record_btrace_resume_thread): Clear BTHR_STOP.
2220 (record_btrace_find_thread_to_move): Also accept threads that have
2221 BTHR_STOP set.
2222 (btrace_step_stopped_on_request, record_btrace_stop): New.
2223 (record_btrace_step_thread): Support BTHR_STOP.
2224 (record_btrace_wait): Also clear BTHR_STOP when stopping other threads.
2225 (init_record_btrace_ops): Initialize to_stop.
2226
2227 2015-09-18 Markus Metzger <markus.t.metzger@intel.com>
2228
2229 * record-btrace.c (record_btrace_wait): Replace non_stop check with
2230 target_is_non_stop_p ().
2231
2232 2015-09-15 Pierre-Marie de Rodat <derodat@adacore.com>
2233
2234 * ada-typeprint.c (print_array_type): Do not describe arrays as
2235 packed when they embed dynamic elements.
2236
2237 2015-09-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2238
2239 * symtab.h (address_class): Document that TLS variables
2240 are handled by LOC_UNRESOLVED.
2241 * findvar.c (default_read_var_value): Don't relocate TLS variables.
2242 * printcmd.c (address_info): Don't relocate TLS variables.
2243
2244 2015-09-15 Pierre Langlois <pierre.langlois@arm.com>
2245
2246 * aarch64-tdep.c (decode_add_sub_imm): Use debug_printf.
2247 (decode_adrp): Likewise.
2248 (decode_b): Likewise.
2249 (decode_bcond): Likewise.
2250 (decode_br): Likewise.
2251 (decode_cb): Likewise.
2252 (decode_eret): Likewise.
2253 (decode_movz): Likewise.
2254 (decode_orr_shifted_register_x): Likewise.
2255 (decode_ret): Likewise.
2256 (decode_stp_offset): Likewise.
2257 (decode_stp_offset_wb): Likewise.
2258 (decode_stur): Likewise.
2259 (decode_tb): Likewise.
2260 (aarch64_analyze_prologue): Likewise.
2261 (pass_in_x): Likewise.
2262 (pass_in_v): Likewise.
2263 (pass_on_stack): Likewise.
2264 (aarch64_push_dummy_call): Likewise.
2265 (aarch64_extract_return_value): Likewise.
2266 (aarch64_store_return_value): Likewise.
2267 (aarch64_return_value): Likewise.
2268 (aarch64_record_asimd_load_store): Likewise.
2269 (aarch64_record_load_store): Likewise.
2270 (aarch64_record_data_proc_simd_fp): Likewise.
2271
2272 2015-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2273
2274 * linespec.c (minsym_found): Call gdbarch_skip_entrypoint.
2275 * ppc64-tdep.c (ppc64_skip_trampoline_code): Rename to ...
2276 (ppc64_skip_trampoline_code_1): ... here.
2277 (ppc64_skip_trampoline_code): New wrapper function.
2278 * symtab.c (find_function_start_sal): Call gdbarch_skip_entrypoint.
2279
2280 2015-09-15 Yao Qi <yao.qi@linaro.org>
2281
2282 * aarch64-linux-nat.c (aarch64_linux_can_do_single_step): New
2283 function.
2284 (_initialize_aarch64_linux_nat): Install it to to_can_do_single_step.
2285 * arm-linux-tdep.c (arm_linux_software_single_step): Return 0
2286 if target_can_do_single_step returns 1.
2287 * remote.c (struct vCont_action_support) <s, S>: New fields.
2288 (PACKET_vContSupported): New enum.
2289 (remote_protocol_features): New element for vContSupported.
2290 (remote_query_supported): Append "vContSupported+".
2291 (remote_vcont_probe): Remove support_s and support_S, use
2292 rs->supports_vCont.s and rs->supports_vCont.S instead. Disable
2293 vCont packet if c and C actions are not supported.
2294 (remote_can_do_single_step): New function.
2295 (init_remote_ops): Install it to to_can_do_single_step.
2296 (_initialize_remote): Call add_packet_config_cmd.
2297 * target.h (struct target_ops) <to_can_do_single_step>: New field.
2298 (target_can_do_single_step): New macro.
2299 * target-delegates.c: Re-generated.
2300
2301 2015-09-15 Yao Qi <yao.qi@linaro.org>
2302
2303 * aarch64-linux-nat.c (aarch64_linux_siginfo_fixup): New function.
2304 (_initialize_aarch64_linux_nat): Call linux_nat_set_siginfo_fixup.
2305 * nat/aarch64-linux.c (aarch64_compat_siginfo_from_siginfo):
2306 New function.
2307 (aarch64_siginfo_from_compat_siginfo): New function.
2308 * nat/aarch64-linux.h: Include signal.h.
2309 (compat_int_t, compat_uptr_t, compat_time_t): Typedef.
2310 (compat_timer_t, compat_clock_t): Likewise.
2311 (struct compat_timeval): New.
2312 (union compat_sigval): New.
2313 (struct compat_siginfo): New.
2314 (cpt_si_pid, cpt_si_uid, cpt_si_timerid): New macros.
2315 (cpt_si_overrun, cpt_si_status, cpt_si_utime): Likewise.
2316 (cpt_si_stime, cpt_si_ptr, cpt_si_addr): Likewise.
2317 (cpt_si_band, cpt_si_fd): Likewise.
2318
2319 2015-09-14 Pedro Alves <palves@redhat.com>
2320
2321 * infrun.c (current_stop_id): New global.
2322 (get_stop_id, new_stop_id): New functions.
2323 (fetch_inferior_event): Handle normal_stop proceeding the target.
2324 (struct stop_context): New.
2325 (save_stop_context, release_stop_context_cleanup)
2326 (stop_context_changed): New functions.
2327 (normal_stop): Return true if the hook-stop changes the stop
2328 context.
2329 * infrun.h (get_stop_id): Declare.
2330 (normal_stop): Now returns int. Add documentation.
2331
2332 2015-09-14 Pierre-Marie de Rodat <derodat@adacore.com>
2333
2334 * ada-lang.c (ada_value_ptr_subscript): Update the heading
2335 comment. Handle packed arrays.
2336
2337 2015-09-14 Pedro Alves <palves@redhat.com>
2338
2339 * NEWS (Changes in GDB 7.10, New commands>: Remove duplicate
2340 mention of maint set/show target-non-stop.
2341
2342 2015-09-11 Don Breazeal <donb@codesourcery.com>
2343
2344 * NEWS: Announce new remote packets for the exec-events
2345 feature and the exec-events feature and associated commands.
2346
2347 2015-09-11 Don Breazeal <donb@codesourcery.com>
2348
2349 * remote.c (remote_exec_event_p): New function.
2350 (remote_insert_exec_catchpoint): New function.
2351 (remote_remove_exec_catchpoint): New function.
2352 (init_extended_remote_ops): Initialize extended_remote_ops
2353 members to_insert_exec_catchpoint and
2354 to_remove_exec_catchpoint.
2355
2356 2015-09-11 Don Breazeal <donb@codesourcery.com>
2357 Luis Machado <lgustavo@codesourcery.com>
2358
2359 * infrun.c (follow_exec): Use process-style ptid for
2360 exec message. Call add_inferior_with_spaces and
2361 target_follow_exec.
2362 * nat/linux-ptrace.c (linux_supports_traceexec): New function.
2363 * nat/linux-ptrace.h (linux_supports_traceexec): Declare.
2364 * remote.c (remote_pspace_data): New static variable.
2365 (remote_pspace_data_cleanup): New function.
2366 (get_remote_exec_file): New function.
2367 (set_remote_exec_file_1): New function.
2368 (set_remote_exec_file): New function.
2369 (show_remote_exec_file): New function.
2370 (remote_exec_file): Delete static variable.
2371 (anonymous enum) <PACKET_exec_event_feature>: New
2372 enumeration constant.
2373 (remote_protocol_features): Add entry for exec-events feature.
2374 (remote_query_supported): Add client side of qSupported query
2375 for exec-events feature.
2376 (remote_follow_exec): New function.
2377 (remote_parse_stop_reply): Handle 'exec' stop reason.
2378 (extended_remote_run, extended_remote_create_inferior): Call
2379 get_remote_exec_file and set_remote_exec_file_1.
2380 (init_extended_remote_ops) <to_follow_exec>: Initialize new
2381 member.
2382 (_initialize_remote): Call
2383 register_program_space_data_with_cleanup. Call
2384 add_packet_config_cmd for remote exec-events feature.
2385 Modify call to add_setshow_string_noescape_cmd for exec-file
2386 to use new functions set_remote_exec_file and
2387 show_remote_exec_file.
2388 * target-debug.h, target-delegates.c: Regenerated.
2389 * target.c (target_follow_exec): New function.
2390 * target.h (struct target_ops) <to_follow_exec>: New member.
2391 (target_follow_exec): Declare new function.
2392
2393 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2394
2395 * aarch64-tdep.c (decode_cb): Move up comment describing the
2396 encoding.
2397 (decode_tb): Fix a typo in comment above the function. Move up
2398 comment describing the encoding.
2399
2400 2015-09-11 Pierre Langlois <pierre.langlois@arm.com>
2401
2402 * aarch64-tdep.c (decode_bcond): Fix incorrect mask.
2403
2404 2015-09-11 Mihail-Marian Nistor <mihail.nistor@freescale.com>
2405
2406 PR gdb/18947
2407 * aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
2408 glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.
2409
2410 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2411
2412 * ada-lang.c (scan_discrim_bound): Factor out arithmetic
2413 operations.
2414
2415 2015-09-10 Simon Marchi <simon.marchi@ericsson.com>
2416
2417 * ada-lang.c (ada_search_struct_field): Constify parameters
2418 and/or variables..
2419 (xget_renaming_scope): Likewise.
2420 (ada_is_redundant_range_encoding): Likewise.
2421 (scan_discrim_bound): Likewise.
2422 (to_fixed_range_type): Likewise.
2423
2424 2015-09-10 Yao Qi <yao.qi@linaro.org>
2425
2426 * breakpoint.c (download_tracepoint_locations): New local
2427 can_download_tracepoint. Check the result of
2428 target_can_download_tracepoint and save it in
2429 can_download_tracepoint if there are tracepoints to download.
2430 * linux-nat.h (enum tribool): Move it to ...
2431 * common/common-types.h: ... here.
2432
2433 2015-09-09 Pedro Alves <palves@redhat.com>
2434
2435 * inf-loop.c (inferior_event_handler): Delete INF_TIMER case.
2436 * target.h (enum inferior_event_type) <INF_TIMER>: Delete.
2437
2438 2015-09-09 Pedro Alves <palves@redhat.com>
2439
2440 * continuations.c (add_continuation, restore_thread_cleanup)
2441 (do_all_continuations_ptid, do_all_continuations_thread_callback)
2442 (do_all_continuations_thread, do_all_continuations)
2443 (discard_all_continuations_thread_callback)
2444 (discard_all_continuations_thread, discard_all_continuations)
2445 (add_intermediate_continuation)
2446 (do_all_intermediate_continuations_thread_callback)
2447 (do_all_intermediate_continuations_thread)
2448 (do_all_intermediate_continuations)
2449 (discard_all_intermediate_continuations_thread_callback)
2450 (discard_all_intermediate_continuations_thread)
2451 (discard_all_intermediate_continuations): Delete.
2452 * continuations.h (add_continuation, do_all_continuations)
2453 (do_all_continuations_thread, discard_all_continuations)
2454 (discard_all_continuations_thread, add_intermediate_continuation)
2455 (do_all_intermediate_continuations)
2456 (do_all_intermediate_continuations_thread)
2457 (discard_all_intermediate_continuations)
2458 (discard_all_intermediate_continuations_thread): Delete
2459 declarations.
2460 * event-top.c (stdin_event_handler): Delete references to
2461 continuations.
2462 * gdbthread.h (struct thread_info): Delete continuations and
2463 intermediate_continuations fields.
2464 * inf-loop.c (inferior_event_handler): Remove references to
2465 continuations.
2466 * infrun.c (infrun_thread_stop_requested_callback): Remove
2467 references to continuations.
2468 * target.h (enum inferior_event_type) <INF_EXEC_CONTINUE>: Delete.
2469 * thread.c: Don't include "continuations.h".
2470 (clear_thread_inferior_resources): Remove references to
2471 continuations.
2472
2473 2015-09-09 Pedro Alves <palves@redhat.com>
2474
2475 * infcall.c (struct dummy_frame_context_saver): Delete.
2476 (dummy_frame_context_saver_free, dummy_frame_context_saver_dtor)
2477 (dummy_frame_context_saver_drop)
2478 (dummy_frame_context_saver_cleanup)
2479 (dummy_frame_context_saver_get_regs)
2480 (dummy_frame_context_saver_setup): Delete.
2481 * infcall.h (dummy_frame_context_saver_drop)
2482 (dummy_frame_context_saver_cleanup)
2483 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver):
2484 Delete.
2485 (get_return_value): Remove 'ctx_saver' paremeter. Adjust.
2486 * inferior.h (get_return_value): Remove 'ctx_saver' paremeter.
2487 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Adjust.
2488
2489 2015-09-09 Pedro Alves <palves@redhat.com>
2490
2491 * breakpoint.c: Include "thread-fsm.h".
2492 (struct until_break_command_continuation_args): Delete.
2493 (struct until_break_fsm): New.
2494 (until_break_fsm_ops): New global.
2495 (new_until_break_fsm, until_break_fsm_should_stop): New functions.
2496 (until_break_command_continuation): Delete.
2497 (until_break_fsm_clean_up): New function.
2498 (until_break_fsm_async_reply_reason): New function.
2499 (until_break_command): Adjust to create an until_break_fsm instead
2500 of a continuation.
2501 (momentary_bkpt_print_it): No longer print MI's async-stop-reason
2502 here.
2503 * infcmd.c (struct until_next_fsm): New.
2504 (until_next_fsm_ops): New global.
2505 (new_until_next_fsm, until_next_fsm_should_stop): New function.
2506 (until_next_continuation): Delete.
2507 (until_next_fsm_clean_up, until_next_fsm_async_reply_reason): New
2508 functions.
2509 (until_next_command): Adjust to create a new until_next_fsm
2510 instead of a continuation.
2511
2512 2015-09-09 Pedro Alves <palves@redhat.com>
2513
2514 * infcall.c: Include thread_fsm.h.
2515 (struct call_return_meta_info): New.
2516 (get_call_return_value): New function, factored out from
2517 call_function_by_hand_dummy.
2518 (struct call_thread_fsm): New.
2519 (call_thread_fsm_ops): New global.
2520 (new_call_thread_fsm, call_thread_fsm_should_stop)
2521 (call_thread_fsm_should_notify_stop): New functions.
2522 (run_inferior_call): Add 'sm' parameter. Associate the FSM with
2523 the thread.
2524 (call_function_by_hand_dummy): Create a new call_thread_fsm
2525 instance, associate it with the thread, and wait for the FSM to
2526 finish. If finished successfully, fetch the function's result
2527 value out of the FSM.
2528 * infrun.c (fetch_inferior_event): If the FSM says the stop
2529 shouldn't be notified, don't call normal_stop.
2530 (maybe_remove_breakpoints): New function, factored out from ...
2531 (normal_stop): ... here. Simplify.
2532 * infrun.h (maybe_remove_breakpoints): Declare.
2533 * thread-fsm.c (thread_fsm_should_notify_stop): New function.
2534 (thread-fsm.h) <struct thread_fsm_ops>: New field.
2535 (thread_fsm_should_notify_stop): Declare.
2536
2537 2015-09-09 Pedro Alves <palves@redhat.com>
2538
2539 * Makefile.in (COMMON_OBS): Add thread-fsm.o.
2540 * breakpoint.c (handle_jit_event): Print debug output.
2541 (bpstat_what): Split event callback handling to ...
2542 (bpstat_run_callbacks): ... this new function.
2543 (momentary_bkpt_print_it): No longer handle bp_finish here.
2544 * breakpoint.h (bpstat_run_callbacks): Declare.
2545 * gdbthread.h (struct thread_info) <step_multi>: Delete field.
2546 <thread_fsm>: New field.
2547 (thread_cancel_execution_command): Declare.
2548 * infcmd.c: Include thread-fsm.h.
2549 (struct step_command_fsm): New.
2550 (step_command_fsm_ops): New global.
2551 (new_step_command_fsm, step_command_fsm_prepare): New functions.
2552 (step_1): Adjust to use step_command_fsm_prepare and
2553 prepare_one_step.
2554 (struct step_1_continuation_args): Delete.
2555 (step_1_continuation): Delete.
2556 (step_command_fsm_should_stop): New function.
2557 (step_once): Delete.
2558 (step_command_fsm_clean_up, step_command_fsm_async_reply_reason)
2559 (prepare_one_step): New function, based on step_once.
2560 (until_next_command): Remove step_multi reference.
2561 (struct return_value_info): New.
2562 (print_return_value): Rename to ...
2563 (print_return_value_1): ... this. New struct return_value_info
2564 parameter. Adjust.
2565 (print_return_value): Reimplement as wrapper around
2566 print_return_value_1.
2567 (struct finish_command_fsm): New.
2568 (finish_command_continuation): Delete.
2569 (finish_command_fsm_ops): New global.
2570 (new_finish_command_fsm, finish_command_fsm_should_stop): New
2571 functions.
2572 (finish_command_fsm_clean_up, finish_command_fsm_return_value):
2573 New.
2574 (finish_command_continuation_free_arg): Delete.
2575 (finish_command_fsm_async_reply_reason): New.
2576 (finish_backward, finish_forward): Change symbol parameter to a
2577 finish_command_fsm. Adjust.
2578 (finish_command): Create a finish_command_fsm. Adjust.
2579 * infrun.c: Include "thread-fsm.h".
2580 (clear_proceed_status_thread): Delete the thread's FSM.
2581 (infrun_thread_stop_requested_callback): Cancel the thread's
2582 execution command.
2583 (clean_up_just_stopped_threads_fsms): New function.
2584 (fetch_inferior_event): Handle the event_thread's should_stop
2585 method saying the command isn't done yet.
2586 (process_event_stop_test): Run breakpoint callbacks here.
2587 (print_stop_event): Rename to ...
2588 (print_stop_location): ... this.
2589 (restore_current_uiout_cleanup): New function.
2590 (print_stop_event): Reimplement.
2591 (normal_stop): No longer notify the end_stepping_range observers
2592 here handle "step N" nor "finish" here. No longer call
2593 print_stop_event here.
2594 * infrun.h (struct return_value_info): Forward declare.
2595 (print_return_value): Declare.
2596 (print_stop_event): Change prototype.
2597 * thread-fsm.c: New file.
2598 * thread-fsm.h: New file.
2599 * thread.c: Include "thread-fsm.h".
2600 (thread_cancel_execution_command): New function.
2601 (clear_thread_inferior_resources): Call it.
2602 * cli/cli-interp.c (cli_on_normal_stop): New function.
2603 (cli_interpreter_init): Install cli_on_normal_stop as normal_stop
2604 observer.
2605 * mi/mi-interp.c: Include "thread-fsm.h".
2606 (restore_current_uiout_cleanup): Delete.
2607 (mi_on_normal_stop): If the thread has an FSM associated, and it
2608 finished, ask it for the async-reply-reason to print. Always call
2609 print_stop_event here, regardless of the top-level interpreter.
2610 Check bpstat_what to tell whether an asynchronous breakpoint hit
2611 triggered.
2612 * tui/tui-interp.c (tui_on_normal_stop): New function.
2613 (tui_init): Install tui_on_normal_stop as normal_stop observer.
2614
2615 2015-09-09 Pedro Alves <palves@redhat.com>
2616
2617 * breakpoint.c (bpstat_do_actions_1, until_break_command): Don't
2618 check whether the target can async.
2619 * inf-loop.c (inferior_event_handler): Only call target_async if
2620 the target can async.
2621 * infcall.c: Include top.h and interps.h.
2622 (run_inferior_call): For the interpreter to sync mode while
2623 running the infcall. Call wait_sync_command_done instead of
2624 wait_for_inferior plus normal_stop.
2625 * infcmd.c (prepare_execution_command): Don't check whether the
2626 target can async when running in the foreground.
2627 (step_1): Delete synchronous case handling.
2628 (step_once): Always install a continuation, even in sync mode.
2629 (until_next_command, finish_forward): Don't check whether the
2630 target can async.
2631 (attach_command_post_wait, notice_new_inferior): Always install a
2632 continuation, even in sync mode.
2633 * infrun.c (mark_infrun_async_event_handler): New function.
2634 (proceed): In sync mode, mark infrun's event source instead of
2635 waiting for events here.
2636 (fetch_inferior_event): If the target can't async, do a blocking
2637 wait.
2638 (prepare_to_wait): In sync mode, mark infrun's event source.
2639 (infrun_async_inferior_event_handler): No longer bail out if the
2640 target can't async.
2641 * infrun.h (mark_infrun_async_event_handler): New declaration.
2642 * linux-nat.c (linux_nat_wait_1): Remove calls to
2643 set_sigint_trap/clear_sigint_trap.
2644 (linux_nat_terminal_inferior): No longer check whether the target
2645 can async.
2646 * mi/mi-interp.c (mi_on_sync_execution_done): Update and simplify
2647 comment.
2648 (mi_execute_command_input_handler): No longer check whether the
2649 target is async. Update and simplify comment.
2650 * target.c (default_target_wait): New function.
2651 * target.h (struct target_ops) <to_wait>: Now defaults to
2652 default_target_wait.
2653 (default_target_wait): Declare.
2654 * top.c (wait_sync_command_done): New function, factored out from
2655 ...
2656 (maybe_wait_sync_command_done): ... this.
2657 * top.h (wait_sync_command_done): Declare.
2658 * target-delegates.c: Regenerate.
2659
2660 2015-09-09 Markus Metzger <markus.t.metzger@intel.com>
2661
2662 * nat/linux-btrace.h (struct btrace_target_info) <ptr_bits>: Remove.
2663 * nat/linux-btrace.c: Include filestuff.h and inttypes.h.
2664 Remove include of sys/utsname.h.
2665 (linux_determine_kernel_ptr_bits): Remove.
2666 (linux_determine_kernel_start): New.
2667 (perf_event_is_kernel_addr): Remove tinfo argument. Update users.
2668 Update check.
2669 (perf_event_skip_bts_record): Remove tinfo argument. Update users.
2670 (linux_enable_bts, linux_enable_pt): Remove tinfo->ptr_bits
2671 initialization.
2672 * x86-linux-nat.c (x86_linux_enable_btrace): Remove ptr_bits
2673 assignment.
2674
2675 2015-09-07 Pedro Alves <palves@redhat.com>
2676
2677 * guile/guile-internal.h (as_a_scm_t_subr): New.
2678 * guile/guile.c (misc_guile_functions): Use it.
2679 * guile/scm-arch.c (arch_functions): Use it.
2680 * guile/scm-block.c (block_functions, gdbscm_initialize_blocks):
2681 Use it.
2682 * guile/scm-breakpoint.c (breakpoint_functions): Use it.
2683 * guile/scm-cmd.c (command_functions): Use it.
2684 * guile/scm-disasm.c (disasm_functions): Use it.
2685 * guile/scm-exception.c (exception_functions)
2686 (private_exception_functions): Use it.
2687 * guile/scm-frame.c (frame_functions)
2688 * guile/scm-gsmob.c (gsmob_functions): Use it.
2689 * guile/scm-iterator.c (iterator_functions): Use it.
2690 * guile/scm-lazy-string.c (lazy_string_functions): Use it.
2691 * guile/scm-math.c (math_functions): Use it.
2692 * guile/scm-objfile.c (objfile_functions): Use it.
2693 * guile/scm-param.c (parameter_functions): Use it.
2694 * guile/scm-ports.c (port_functions, private_port_functions): Use
2695 it.
2696 * guile/scm-pretty-print.c (pretty_printer_functions): Use it.
2697 * guile/scm-progspace.c (pspace_functions): Use it.
2698 * guile/scm-string.c (string_functions): Use it.
2699 * guile/scm-symbol.c (symbol_functions): Use it.
2700 * guile/scm-symtab.c (symtab_functions): Use it.
2701 * guile/scm-type.c (type_functions, gdbscm_initialize_types): Use
2702 it.
2703 * guile/scm-value.c (value_functions): Use it.
2704
2705 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2706
2707 * tui/tui-data.c (win_with_focus): Remove cast of NULL pointer.
2708 (tui_next_win): Likewise.
2709 (tui_prev_win): Likewise.
2710 (tui_partial_win_by_name): Likewise.
2711 (tui_init_generic_part): Likewise.
2712 (init_content_element): Likewise.
2713 (tui_del_window): Likewise.
2714 (tui_free_window): Likewise.
2715 (tui_del_data_windows): Likewise.
2716 (tui_free_data_content): Likewise.
2717 * tui/tui-layout.c (make_source_or_disasm_window): Likewise.
2718 * tui/tui-regs.c (tui_show_register_group): Likewise.
2719 * tui/tui-win.c (tui_resize_all): Likewise.
2720 (tui_set_focus): Likewise.
2721 (tui_set_win_height): Likewise.
2722 (make_invisible_and_set_new_height): Likewise.
2723 * tui/tui-windata.c (tui_delete_data_content_windows): Likewise.
2724 * tui/tui-wingeneral.c (make_visible): Likewise.
2725
2726 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2727
2728 * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
2729
2730 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
2731
2732 * c-valprint.c (print_unpacked_pointer): Remove cast of NULL
2733 pointer.
2734 * dbxread.c (dbx_end_psymtab): Likewise.
2735 * gnu-nat.c (gnu_write_inferior): Likewise.
2736 * mdebugread.c (cross_ref): Likewise.
2737 * p-valprint.c (pascal_val_print): Likewise.
2738 * xcoffread.c (xcoff_end_psymtab): Likewise.
2739
2740 2015-09-04 Yao Qi <yao.qi@linaro.org>
2741
2742 * NEWS: Mention the aarch64 multi-arch debugging support.
2743
2744 2015-09-03 Pierre-Marie de Rodat <derodat@adacore.com>
2745
2746 * ada-lang.c (ada_language_arch_info): Create a TYPE_CODE_CHAR
2747 type instead of a TYPE_CODE_INT one for the string_char_type
2748 and the ada_primitive_type_char types.
2749
2750 2015-09-03 Yao Qi <yao.qi@linaro.org>
2751
2752 * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
2753 Move code to aarch64_linux_region_ok_for_watchpoint. Call
2754 aarch64_linux_region_ok_for_watchpoint.
2755 * nat/aarch64-linux-hw-point.c (aarch64_linux_region_ok_for_watchpoint):
2756 New function.
2757 * nat/aarch64-linux-hw-point.h (aarch64_linux_region_ok_for_watchpoint):
2758 Declare it.
2759
2760 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
2761
2762 * gdb_obstack.h (obstack_strdup): Declare.
2763 * gdb_obstack.c (obstack_strdup): Define.
2764 * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
2765 * gdbarch.c: Regenerate.
2766 * gdbarch.h: Regenerate.
2767 * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
2768
2769 2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
2770
2771 * gdbtypes.c (copy_type_recursive): Update documentation.
2772
2773 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2774
2775 * solib-svr4.c (solib_event_probe_action): Initialize 'probe_argc'
2776 as zero.
2777
2778 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2779
2780 * solib-svr4.c (svr4_handle_solib_event): Initialize 'val' as NULL
2781
2782 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2783
2784 * solib-svr4.c (solib_event_probe_action): Call
2785 get_probe_argument_count using TRY...CATCH.
2786 (svr4_handle_solib_event): Likewise, for evaluate_probe_argument.
2787
2788 2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
2789
2790 * probe.h (struct probe_ops) <get_probe_argument_count,
2791 evaluate_probe_argument, enable_probe, disable_probe>: Mention in
2792 the comment that the function can throw an exception.
2793 (get_probe_argument_count): Likewise.
2794 (evaluate_probe_argument): Likewise.
2795 * stap-probe.c (stap_get_opcode): Call error instead of
2796 internal_error.
2797 (stap_get_expected_argument_type): Likewise. Add argument
2798 'probe'. Improve error message by mentioning the probe's name.
2799 (stap_parse_probe_arguments): Adjust call to
2800 stap_get_expected_argument_type.
2801 (stap_get_arg): Add comment. Assert that 'probe->args_parsed' is
2802 not zero. Call internal_error if GDB requests an argument but the
2803 probe has no arguments.
2804
2805 2015-09-01 Pierre-Marie de Rodat <derodat@adacore.com>
2806
2807 * ada-lang.c (ada_resolve_function): Do not ask the user what
2808 match to use when in completion mode.
2809
2810 2015-08-31 Andrew Burgess <andrew.burgess@embecosm.com>
2811
2812 * tui/tui-data.c (tui_win_name): Make local variable const, remove
2813 cast of NULL.
2814
2815 2015-08-31 Max Filippov <jcmvbkbc@gmail.com>
2816
2817 * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Initialize
2818 call_abi using XSHAL_ABI macro.
2819
2820 2015-08-29 Doug Evans <xdje42@gmail.com>
2821
2822 * symtab.h (struct symbol): Tweak comment.
2823
2824 2015-08-29 Patrick Palka <patrick@parcs.ath.cx>
2825
2826 * gdbtypes.c (alloc_type_arch): Allocate the type on the given
2827 gdbarch obstack instead of on the heap. Update commentary
2828 accordingly.
2829
2830 2015-08-28 Joel Brobecker <brobecker@adacore.com>
2831
2832 GDB 7.10 released.
2833
2834 2015-08-28 Simon Marchi <simon.marchi@ericsson.com>
2835
2836 * NEWS: Update entry about non-8-bits addressable memory.
2837
2838 2015-08-28 Ulrich Weigand <uweigand@de.ibm.com>
2839
2840 Revert:
2841 2014-11-06 Doug Evans <xdje42@gmail.com>
2842 * solib.c (solib_global_lookup): Fetch arch from objfile,
2843 not target_gdbarch.
2844
2845 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2846
2847 * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Do not
2848 attempt to relocate a TLS variable offset.
2849
2850 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2851
2852 * spu-multiarch.c (parse_spufs_run): Bail out if inferior is not
2853 registered yet. Set inferior_ptid while calling target_read_memory.
2854
2855 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2856
2857 * nat/linux-ptrace.h (GDB_ARCH_TRAP_BRKPT): Replace by ...
2858 (GDB_ARCH_IS_TRAP_BRKPT): ... this. Add __powerpc__ case.
2859 * linux-nat.c (check_stopped_by_breakpoint): Use
2860 GDB_ARCH_IS_TRAP_BRKPT instead of GDB_ARCH_TRAP_BRKPT.
2861
2862 2015-08-27 Ulrich Weigand <uweigand@de.ibm.com>
2863
2864 * linux-thread-db.c (thread_db_get_thread_local_address): If the
2865 thread was not yet discovered, use thread_from_lwp instead of
2866 calling thread_db_find_new_threads_1.
2867
2868 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
2869
2870 * m88k-tdep.c (m88k_analyze_prologue): Fix inverted allocation
2871 statements.
2872
2873 2015-08-27 Simon Marchi <simon.marchi@ericsson.com>
2874
2875 * NEWS: Document support for non-8-bits addressable memory.
2876
2877 2015-08-27 Pedro Alves <palves@redhat.com>
2878
2879 * configure.ac: Remove AC_TYPE_SIGNAL call.
2880 * configure, config.in: Regenerate.
2881
2882 2015-08-27 Pedro Alves <palves@redhat.com>
2883
2884 * cp-support.c (gdb_demangle): Use sighandler_t. Remove cast.
2885 * extension-priv.h: Include signal.h.
2886 (struct signal_handler) <handler>: Change type to sighandler_t.
2887 * extension.c (install_gdb_sigint_handler): Use sighandler_t.
2888 * inflow.c (sigint_ours, sigquit_ours): Change type to
2889 sighandler_t.
2890 (child_terminal_inferior): Remove casts.
2891 (child_terminal_ours_1, new_tty): Use sighandler_t. Remove casts.
2892 (osig): Change type to sighandler_t.
2893 * nto-procfs.c (ofunc): Change type to sighandler_t.
2894 (procfs_wait): Remove casts.
2895 * remote-m32r-sdi.c (m32r_wait, m32r_load): Use sighandler_t.
2896 * remote-sim.c (gdbsim_wait): Use sighandler_t.
2897 * utils.c (wait_to_die_with_timeout): Use sighandler_t.
2898
2899 2015-08-27 Pedro Alves <palves@redhat.com>
2900
2901 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add signal-h.
2902 * gnulib/aclocal.m4: Renegerate.
2903 * gnulib/config.in: Renegerate.
2904 * gnulib/configure: Renegerate.
2905 * gnulib/import/Makefile.am: Update.
2906 * gnulib/import/Makefile.in: Regenerate.
2907 * gnulib/import/m4/gnulib-cache.m4: Update.
2908 * gnulib/import/m4/gnulib-comp.m4: Update.
2909 * gnulib/import/m4/signal_h.m4: New file.
2910 * gnulib/import/signal.in.h: New file.
2911
2912 2015-08-27 Pedro Alves <palves@redhat.com>
2913
2914 * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE)
2915 (MIN_MEMORY_PACKET_SIZE): New.
2916 (MAX_REMOTE_PACKET_SIZE, MIN_REMOTE_PACKET_SIZE): Delete.
2917 (get_memory_packet_size): Adjust. No longer limit the max packet
2918 size.
2919 (set_memory_packet_size): Adjust, and remove dead code.
2920 (remote_check_symbols): Use xmalloc and a cleanup instead of
2921 alloca.
2922 (remote_packet_size): No longer cap the packet size.
2923 (putpkt_binary): Use xmalloc and a cleanup instead of alloca.
2924
2925 2015-08-26 Luis Machado <lgustavo@codesourcery.com>
2926
2927 * compile/compile.c (compile_to_object): Mention language in
2928 error message.
2929
2930 2015-08-26 Patrick Palka <patrick@parcs.ath.cx>
2931
2932 * target.c (target_pre_inferior): Unset attach_flag.
2933
2934 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
2935
2936 * gdbarch.sh (append_name): Fix type in XRESIZEVEC.
2937 * gdbarch.c: Re-generate.
2938
2939 2015-08-26 Simon Marchi <simon.marchi@ericsson.com>
2940
2941 * aarch64-linux-nat.c (aarch64_add_process): Replace xmalloc-family
2942 function with the XNEW-family equivalent.
2943 * aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
2944 * ada-exp.y (write_ambiguous_var): Likewise.
2945 * ada-lang.c (resolve_subexp): Likewise.
2946 (user_select_syms): Likewise.
2947 (assign_aggregate): Likewise.
2948 (ada_evaluate_subexp): Likewise.
2949 (cache_symbol): Likewise.
2950 * addrmap.c (allocate_key): Likewise.
2951 (addrmap_create_mutable): Likewise.
2952 * aix-thread.c (sync_threadlists): Likewise.
2953 * alpha-tdep.c (alpha_push_dummy_call): Likewise.
2954 (alpha_gdbarch_init): Likewise.
2955 * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
2956 * arm-linux-nat.c (arm_linux_add_process): Likewise.
2957 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
2958 * arm-tdep.c (push_stack_item): Likewise.
2959 (arm_displaced_step_copy_insn): Likewise.
2960 (arm_gdbarch_init): Likewise.
2961 (_initialize_arm_tdep): Likewise.
2962 * avr-tdep.c (push_stack_item): Likewise.
2963 * ax-general.c (new_agent_expr): Likewise.
2964 * block.c (block_initialize_namespace): Likewise.
2965 * breakpoint.c (alloc_counted_command_line): Likewise.
2966 (update_dprintf_command_list): Likewise.
2967 (parse_breakpoint_sals): Likewise.
2968 (decode_static_tracepoint_spec): Likewise.
2969 (until_break_command): Likewise.
2970 (clear_command): Likewise.
2971 (update_global_location_list): Likewise.
2972 (get_breakpoint_objfile_data) Likewise.
2973 * btrace.c (ftrace_new_function): Likewise.
2974 (btrace_set_insn_history): Likewise.
2975 (btrace_set_call_history): Likewise.
2976 * buildsym.c (add_symbol_to_list): Likewise.
2977 (record_pending_block): Likewise.
2978 (start_subfile): Likewise.
2979 (start_buildsym_compunit): Likewise.
2980 (push_subfile): Likewise.
2981 (end_symtab_get_static_block): Likewise.
2982 (buildsym_init): Likewise.
2983 * cli/cli-cmds.c (source_command): Likewise.
2984 * cli/cli-decode.c (add_cmd): Likewise.
2985 * cli/cli-script.c (build_command_line): Likewise.
2986 (setup_user_args): Likewise.
2987 (realloc_body_list): Likewise.
2988 (process_next_line): Likewise.
2989 (copy_command_lines): Likewise.
2990 * cli/cli-setshow.c (do_set_command): Likewise.
2991 * coff-pe-read.c (read_pe_exported_syms): Likewise.
2992 * coffread.c (coff_locate_sections): Likewise.
2993 (coff_symtab_read): Likewise.
2994 (coff_read_struct_type): Likewise.
2995 * common/cleanups.c (make_my_cleanup2): Likewise.
2996 * common/common-exceptions.c (throw_it): Likewise.
2997 * common/filestuff.c (make_cleanup_close): Likewise.
2998 * common/format.c (parse_format_string): Likewise.
2999 * common/queue.h (DEFINE_QUEUE_P): Likewise.
3000 * compile/compile-object-load.c (munmap_list_add): Likewise.
3001 (compile_object_load): Likewise.
3002 * compile/compile-object-run.c (compile_object_run): Likewise.
3003 * compile/compile.c (append_args): Likewise.
3004 * corefile.c (specify_exec_file_hook): Likewise.
3005 * cp-support.c (make_symbol_overload_list): Likewise.
3006 * cris-tdep.c (push_stack_item): Likewise.
3007 (cris_gdbarch_init): Likewise.
3008 * ctf.c (ctf_trace_file_writer_new): Likewise.
3009 * dbxread.c (init_header_files): Likewise.
3010 (add_new_header_file): Likewise.
3011 (init_bincl_list): Likewise.
3012 (dbx_end_psymtab): Likewise.
3013 (start_psymtab): Likewise.
3014 (dbx_end_psymtab): Likewise.
3015 * dcache.c (dcache_init): Likewise.
3016 * dictionary.c (dict_create_hashed): Likewise.
3017 (dict_create_hashed_expandable): Likewise.
3018 (dict_create_linear): Likewise.
3019 (dict_create_linear_expandable): Likewise.
3020 * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
3021 * dummy-frame.c (register_dummy_frame_dtor): Likewise.
3022 * dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
3023 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3024 (decode_frame_entry_1): Likewise.
3025 * dwarf2expr.c (new_dwarf_expr_context): Likewise.
3026 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
3027 * dwarf2read.c (dwarf2_has_info): Likewise.
3028 (create_signatured_type_table_from_index): Likewise.
3029 (dwarf2_read_index): Likewise.
3030 (dw2_get_file_names_reader): Likewise.
3031 (create_all_type_units): Likewise.
3032 (read_cutu_die_from_dwo): Likewise.
3033 (init_tu_and_read_dwo_dies): Likewise.
3034 (init_cutu_and_read_dies): Likewise.
3035 (create_all_comp_units): Likewise.
3036 (queue_comp_unit): Likewise.
3037 (inherit_abstract_dies): Likewise.
3038 (read_call_site_scope): Likewise.
3039 (dwarf2_add_field): Likewise.
3040 (dwarf2_add_typedef): Likewise.
3041 (dwarf2_add_member_fn): Likewise.
3042 (attr_to_dynamic_prop): Likewise.
3043 (abbrev_table_alloc_abbrev): Likewise.
3044 (abbrev_table_read_table): Likewise.
3045 (add_include_dir): Likewise.
3046 (add_file_name): Likewise.
3047 (dwarf_decode_line_header): Likewise.
3048 (dwarf2_const_value_attr): Likewise.
3049 (dwarf_alloc_block): Likewise.
3050 (parse_macro_definition): Likewise.
3051 (set_die_type): Likewise.
3052 (write_psymtabs_to_index): Likewise.
3053 (create_cus_from_index): Likewise.
3054 (dwarf2_create_include_psymtab): Likewise.
3055 (process_psymtab_comp_unit_reader): Likewise.
3056 (build_type_psymtab_dependencies): Likewise.
3057 (read_comp_units_from_section): Likewise.
3058 (compute_compunit_symtab_includes): Likewise.
3059 (create_dwo_unit_in_dwp_v1): Likewise.
3060 (create_dwo_unit_in_dwp_v2): Likewise.
3061 (read_func_scope): Likewise.
3062 (process_structure_scope): Likewise.
3063 (mark_common_block_symbol_computed): Likewise.
3064 (load_partial_dies): Likewise.
3065 (dwarf2_symbol_mark_computed): Likewise.
3066 * elfread.c (elf_symfile_segments): Likewise.
3067 (elf_read_minimal_symbols): Likewise.
3068 * environ.c (make_environ): Likewise.
3069 * eval.c (evaluate_subexp_standard): Likewise.
3070 * event-loop.c (create_file_handler): Likewise.
3071 (create_async_signal_handler): Likewise.
3072 (create_async_event_handler): Likewise.
3073 (create_timer): Likewise.
3074 * exec.c (build_section_table): Likewise.
3075 * fbsd-nat.c (fbsd_remember_child): Likewise.
3076 * fork-child.c (fork_inferior): Likewise.
3077 * frv-tdep.c (new_variant): Likewise.
3078 * gdbarch.sh (gdbarch_alloc): Likewise.
3079 (append_name): Likewise.
3080 * gdbtypes.c (rank_function): Likewise.
3081 (copy_type_recursive): Likewise.
3082 (add_dyn_prop): Likewise.
3083 * gnu-nat.c (make_proc): Likewise.
3084 (make_inf): Likewise.
3085 (gnu_write_inferior): Likewise.
3086 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
3087 (build_std_type_info_type): Likewise.
3088 * guile/scm-param.c (compute_enum_list): Likewise.
3089 * guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
3090 * guile/scm-value.c (gdbscm_value_call): Likewise.
3091 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
3092 * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
3093 (read_unwind_info): Likewise.
3094 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
3095 * infcall.c (dummy_frame_context_saver_setup): Likewise.
3096 (call_function_by_hand_dummy): Likewise.
3097 * infcmd.c (step_once): Likewise.
3098 (finish_forward): Likewise.
3099 (attach_command): Likewise.
3100 (notice_new_inferior): Likewise.
3101 * inferior.c (add_inferior_silent): Likewise.
3102 * infrun.c (add_displaced_stepping_state): Likewise.
3103 (save_infcall_control_state): Likewise.
3104 (save_inferior_ptid): Likewise.
3105 (_initialize_infrun): Likewise.
3106 * jit.c (bfd_open_from_target_memory): Likewise.
3107 (jit_gdbarch_data_init): Likewise.
3108 * language.c (add_language): Likewise.
3109 * linespec.c (decode_line_2): Likewise.
3110 * linux-nat.c (add_to_pid_list): Likewise.
3111 (add_initial_lwp): Likewise.
3112 * linux-thread-db.c (add_thread_db_info): Likewise.
3113 (record_thread): Likewise.
3114 (info_auto_load_libthread_db): Likewise.
3115 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
3116 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
3117 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
3118 * m88k-tdep.c (m88k_analyze_prologue): Likewise.
3119 * macrocmd.c (macro_define_command): Likewise.
3120 * macroexp.c (gather_arguments): Likewise.
3121 * macroscope.c (sal_macro_scope): Likewise.
3122 * macrotab.c (new_macro_table): Likewise.
3123 * mdebugread.c (push_parse_stack): Likewise.
3124 (parse_partial_symbols): Likewise.
3125 (parse_symbol): Likewise.
3126 (psymtab_to_symtab_1): Likewise.
3127 (new_block): Likewise.
3128 (new_psymtab): Likewise.
3129 (mdebug_build_psymtabs): Likewise.
3130 (add_pending): Likewise.
3131 (elfmdebug_build_psymtabs): Likewise.
3132 * mep-tdep.c (mep_gdbarch_init): Likewise.
3133 * mi/mi-main.c (mi_execute_command): Likewise.
3134 * mi/mi-parse.c (mi_parse_argv): Likewise.
3135 * minidebug.c (lzma_open): Likewise.
3136 * minsyms.c (terminate_minimal_symbol_table): Likewise.
3137 * mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
3138 * mips-tdep.c (mips_gdbarch_init): Likewise.
3139 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
3140 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
3141 * mt-tdep.c (mt_registers_info): Likewise.
3142 * nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
3143 * nat/linux-btrace.c (linux_enable_bts): Likewise.
3144 (linux_enable_pt): Likewise.
3145 * nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
3146 (linux_xfer_osdata_processgroups): Likewise.
3147 * nios2-tdep.c (nios2_gdbarch_init): Likewise.
3148 * nto-procfs.c (procfs_meminfo): Likewise.
3149 * objc-lang.c (start_msglist): Likewise.
3150 (selectors_info): Likewise.
3151 (classes_info): Likewise.
3152 (find_methods): Likewise.
3153 * objfiles.c (allocate_objfile): Likewise.
3154 (update_section_map): Likewise.
3155 * osabi.c (gdbarch_register_osabi): Likewise.
3156 (gdbarch_register_osabi_sniffer): Likewise.
3157 * parse.c (start_arglist): Likewise.
3158 * ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
3159 (hwdebug_insert_point): Likewise.
3160 * printcmd.c (display_command): Likewise.
3161 (ui_printf): Likewise.
3162 * procfs.c (create_procinfo): Likewise.
3163 (load_syscalls): Likewise.
3164 (proc_get_LDT_entry): Likewise.
3165 (proc_update_threads): Likewise.
3166 * prologue-value.c (make_pv_area): Likewise.
3167 (pv_area_store): Likewise.
3168 * psymtab.c (extend_psymbol_list): Likewise.
3169 (init_psymbol_list): Likewise.
3170 (allocate_psymtab): Likewise.
3171 * python/py-inferior.c (add_thread_object): Likewise.
3172 * python/py-param.c (compute_enum_values): Likewise.
3173 * python/py-value.c (valpy_call): Likewise.
3174 * python/py-varobj.c (py_varobj_iter_next): Likewise.
3175 * python/python.c (ensure_python_env): Likewise.
3176 * record-btrace.c (record_btrace_start_replaying): Likewise.
3177 * record-full.c (record_full_reg_alloc): Likewise.
3178 (record_full_mem_alloc): Likewise.
3179 (record_full_end_alloc): Likewise.
3180 (record_full_core_xfer_partial): Likewise.
3181 * regcache.c (get_thread_arch_aspace_regcache): Likewise.
3182 * remote-fileio.c (remote_fileio_init_fd_map): Likewise.
3183 * remote-notif.c (remote_notif_state_allocate): Likewise.
3184 * remote.c (demand_private_info): Likewise.
3185 (remote_notif_stop_alloc_reply): Likewise.
3186 (remote_enable_btrace): Likewise.
3187 * reverse.c (save_bookmark_command): Likewise.
3188 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
3189 * rx-tdep.c (rx_gdbarch_init): Likewise.
3190 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
3191 * ser-go32.c (dos_get_tty_state): Likewise.
3192 (dos_copy_tty_state): Likewise.
3193 * ser-mingw.c (ser_windows_open): Likewise.
3194 (ser_console_wait_handle): Likewise.
3195 (ser_console_get_tty_state): Likewise.
3196 (make_pipe_state): Likewise.
3197 (net_windows_open): Likewise.
3198 * ser-unix.c (hardwire_get_tty_state): Likewise.
3199 (hardwire_copy_tty_state): Likewise.
3200 * solib-aix.c (solib_aix_new_lm_info): Likewise.
3201 * solib-dsbt.c (dsbt_current_sos): Likewise.
3202 (dsbt_relocate_main_executable): Likewise.
3203 * solib-frv.c (frv_current_sos): Likewise.
3204 (frv_relocate_main_executable): Likewise.
3205 * solib-spu.c (spu_bfd_fopen): Likewise.
3206 * solib-svr4.c (lm_info_read): Likewise.
3207 (svr4_copy_library_list): Likewise.
3208 (svr4_default_sos): Likewise.
3209 * source.c (find_source_lines): Likewise.
3210 (line_info): Likewise.
3211 (add_substitute_path_rule): Likewise.
3212 * spu-linux-nat.c (spu_bfd_open): Likewise.
3213 * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
3214 * stabsread.c (dbx_lookup_type): Likewise.
3215 (read_type): Likewise.
3216 (read_member_functions): Likewise.
3217 (read_struct_fields): Likewise.
3218 (read_baseclasses): Likewise.
3219 (read_args): Likewise.
3220 (_initialize_stabsread): Likewise.
3221 * stack.c (func_command): Likewise.
3222 * stap-probe.c (handle_stap_probe): Likewise.
3223 * symfile.c (addrs_section_sort): Likewise.
3224 (addr_info_make_relative): Likewise.
3225 (load_section_callback): Likewise.
3226 (add_symbol_file_command): Likewise.
3227 (init_filename_language_table): Likewise.
3228 * symtab.c (create_filename_seen_cache): Likewise.
3229 (sort_search_symbols_remove_dups): Likewise.
3230 (search_symbols): Likewise.
3231 * target.c (make_cleanup_restore_target_terminal): Likewise.
3232 * thread.c (new_thread): Likewise.
3233 (enable_thread_stack_temporaries): Likewise.
3234 (make_cleanup_restore_current_thread): Likewise.
3235 (thread_apply_all_command): Likewise.
3236 * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
3237 * top.c (gdb_readline_wrapper): Likewise.
3238 * tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
3239 * tracepoint.c (trace_find_line_command): Likewise.
3240 (all_tracepoint_actions_and_cleanup): Likewise.
3241 (make_cleanup_restore_current_traceframe): Likewise.
3242 (get_uploaded_tp): Likewise.
3243 (get_uploaded_tsv): Likewise.
3244 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
3245 (tui_alloc_win_info): Likewise.
3246 (tui_alloc_content): Likewise.
3247 (tui_add_content_elements): Likewise.
3248 * tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
3249 (tui_set_disassem_content): Likewise.
3250 * ui-file.c (ui_file_new): Likewise.
3251 (stdio_file_new): Likewise.
3252 (tee_file_new): Likewise.
3253 * utils.c (make_cleanup_restore_integer): Likewise.
3254 (add_internal_problem_command): Likewise.
3255 * v850-tdep.c (v850_gdbarch_init): Likewise.
3256 * valops.c (find_oload_champ): Likewise.
3257 * value.c (allocate_value_lazy): Likewise.
3258 (record_latest_value): Likewise.
3259 (create_internalvar): Likewise.
3260 * varobj.c (install_variable): Likewise.
3261 (new_variable): Likewise.
3262 (new_root_variable): Likewise.
3263 (cppush): Likewise.
3264 (_initialize_varobj): Likewise.
3265 * windows-nat.c (windows_make_so): Likewise.
3266 * x86-nat.c (x86_add_process): Likewise.
3267 * xcoffread.c (arrange_linetable): Likewise.
3268 (allocate_include_entry): Likewise.
3269 (process_linenos): Likewise.
3270 (SYMBOL_DUP): Likewise.
3271 (xcoff_start_psymtab): Likewise.
3272 (xcoff_end_psymtab): Likewise.
3273 * xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
3274 * xtensa-tdep.c (xtensa_register_type): Likewise.
3275 * gdbarch.c: Regenerate.
3276 * gdbarch.h: Regenerate.
3277
3278 2015-08-25 Don Breazeal <donb@codesourcery.com>
3279
3280 * infrun.c (follow_exec): Re-order operations for
3281 handling follow-exec-mode "new".
3282 (handle_inferior_event_1): Assign ecs->event_thread
3283 to the current thread.
3284 * remote.c (get_remote_arch_state): Add an assertion.
3285
3286 2015-08-26 Pedro Alves <palves@redhat.com>
3287
3288 * MAINTAINERS: Add Markus Metzger as btrace maintainer.
3289
3290 2015-08-25 Pedro Alves <palves@redhat.com>
3291
3292 PR gdb/18804
3293 * defs.h (maybe_quit): Declare.
3294 (QUIT): Now calls maybe_quit.
3295 * event-loop.c (clear_async_signal_handler)
3296 (async_signal_handler_is_marked): New functions.
3297 * event-loop.h (async_signal_handler_is_marked)
3298 (clear_async_signal_handler): New declarations.
3299 * remote.c (remote_check_pending_interrupt): New function.
3300 (interrupt_query): Use make_cleanup_restore_target_terminal. No
3301 longer check whether the target is async. If waiting for a stop
3302 reply, and a Ctrl-C as been sent to the target, offer to
3303 disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
3304 Otherwise do not disconnect and throw a quit.
3305 (_initialize_remote): Install remote_check_pending_interrupt as
3306 to_check_pending_interrupt.
3307 * target.c (target_check_pending_interrupt): New function.
3308 * target.h (struct target_ops) <to_check_pending_interrupt>: New
3309 field.
3310 (target_check_pending_interrupt): New declaration.
3311 * utils.c (maybe_quit): New function.
3312 * target-delegates.c: Regenerate.
3313
3314 2015-08-25 Yao Qi <yao.qi@linaro.org>
3315
3316 * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
3317 Rename local variable pid to tid, and get lwpid of lwp. Update
3318 debug output.
3319
3320 2015-08-25 Pierre-Marie de Rodat <derodat@adacore.com>
3321
3322 * ada-lang.c (ada_read_var_value): Add a var_block argument
3323 and pass it to default_read_var_value.
3324 * block.c (block_static_link): New accessor.
3325 * block.h (block_static_link): Declare it.
3326 * buildsym.c (finish_block_internal): Add a static_link
3327 argument. If there is a static link, associate it to the new
3328 block.
3329 (finish_block): Add a static link argument and pass it to
3330 finish_block_internal.
3331 (end_symtab_get_static_block): Update calls to finish_block and
3332 to finish_block_internal.
3333 (end_symtab_with_blockvector): Update call to
3334 finish_block_internal.
3335 * buildsym.h: Forward-declare struct dynamic_prop.
3336 (struct context_stack): Add a static_link field.
3337 (finish_block): Add a static link argument.
3338 * c-exp.y: Remove an obsolete comment (evaluation of variables
3339 already start from the selected frame, and now they climb *up*
3340 the call stack) and propagate the block information to the
3341 produced expression.
3342 * d-exp.y: Likewise.
3343 * f-exp.y: Likewise.
3344 * go-exp.y: Likewise.
3345 * jv-exp.y: Likewise.
3346 * m2-exp.y: Likewise.
3347 * p-exp.y: Likewise.
3348 * coffread.c (coff_symtab_read): Update calls to finish_block.
3349 * dbxread.c (process_one_symbol): Likewise.
3350 * xcoffread.c (read_xcoff_symtab): Likewise.
3351 * compile/compile-c-symbols.c (convert_one_symbol): Promote the
3352 "sym" parameter to struct block_symbol, update its uses and pass
3353 its block to calls to read_var_value.
3354 (convert_symbol_sym): Update the calls to convert_one_symbol.
3355 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
3356 call to read_var_value.
3357 * dwarf2loc.c (block_op_get_frame_base): New.
3358 (dwarf2_block_frame_base_locexpr_funcs): Implement the
3359 get_frame_base method.
3360 (dwarf2_block_frame_base_loclist_funcs): Likewise.
3361 (dwarf2locexpr_baton_eval): Add a frame argument and use it
3362 instead of the selected frame in order to evaluate the
3363 expression.
3364 (dwarf2_evaluate_property): Add a frame argument. Update call
3365 to dwarf2_locexpr_baton_eval to provide a frame in available and
3366 to handle the absence of address stack.
3367 * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
3368 * dwarf2read.c (attr_to_dynamic_prop): Add a forward
3369 declaration.
3370 (read_func_scope): Record any available static link description.
3371 Update call to finish_block.
3372 (read_lexical_block_scope): Update call to finish_block.
3373 * findvar.c (follow_static_link): New.
3374 (get_hosting_frame): New.
3375 (default_read_var_value): Add a var_block argument. Use
3376 get_hosting_frame to handle non-local references.
3377 (read_var_value): Add a var_block argument and pass it to the
3378 LA_READ_VAR_VALUE method.
3379 * gdbtypes.c (resolve_dynamic_range): Update calls to
3380 dwarf2_evaluate_property.
3381 (resolve_dynamic_type_internal): Likewise.
3382 * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
3383 read_var_value, passing it the block coming from symbol lookup.
3384 * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
3385 read_var_value (TODO).
3386 * infcmd.c (finish_command_continuation): Update call to
3387 read_var_value, passing it the block coming from symbol lookup.
3388 * infrun.c (insert_exception_resume_breakpoint): Likewise.
3389 * language.h (struct language_defn): Add a var_block argument to
3390 the LA_READ_VAR_VALUE method.
3391 * objfiles.c (struct static_link_htab_entry): New.
3392 (static_link_htab_entry_hash): New.
3393 (static_link_htab_entry_eq): New.
3394 (objfile_register_static_link): New.
3395 (objfile_lookup_static_link): New.
3396 (free_objfile): Free the STATIC_LINKS hashed map if needed.
3397 * objfiles.h: Include hashtab.h.
3398 (struct objfile): Add a static_links field.
3399 (objfile_register_static_link): New.
3400 (objfile_lookup_static_link): New.
3401 * printcmd.c (print_variable_and_value): Update call to
3402 read_var_value.
3403 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
3404 * python/py-frame.c (frapy_read_var): Update call to
3405 read_var_value, passing it the block coming from symbol lookup.
3406 * python/py-framefilter.c (extract_sym): Add a sym_block
3407 parameter and set the pointed value to NULL (TODO).
3408 (enumerate_args): Update call to extract_sym.
3409 (enumerate_locals): Update calls to extract_sym and to
3410 read_var_value.
3411 * python/py-symbol.c (sympy_value): Update call to
3412 read_var_value (TODO).
3413 * stack.c (read_frame_local): Update call to read_var_value.
3414 (read_frame_arg): Likewise.
3415 (return_command): Likewise.
3416 * symtab.h (struct symbol_block_ops): Add a get_frame_base
3417 method.
3418 (struct symbol): Add a block field.
3419 (SYMBOL_BLOCK): New accessor.
3420 * valops.c (value_of_variable): Remove frame/block handling and
3421 pass the block argument to read_var_value, which does this job
3422 now.
3423 (value_struct_elt_for_reference): Update calls to
3424 read_var_value.
3425 (value_of_this): Pass the block found to read_var_value.
3426 * value.h (read_var_value): Add a var_block argument.
3427 (default_read_var_value): Likewise.
3428
3429 2015-08-25 Yao Qi <yao.qi@linaro.org>
3430
3431 * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
3432 * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
3433 * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
3434
3435 2015-08-25 Yao Qi <yao.qi@linaro.org>
3436
3437 * Makefile.in (aarch64-liunx.o): New rule.
3438 (HFILES_NO_SRCDIR): Add aarch64-linux.h.
3439 * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
3440 * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
3441 * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
3442 extern.
3443 (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
3444 * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
3445 * nat/aarch64-linux.c: New file.
3446 * nat/aarch64-linux.h: New file.
3447
3448 2015-08-25 Yao Qi <yao.qi@linaro.org>
3449
3450 * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
3451 lwp_arch_private_info and ptid_of_lwp.
3452
3453 2015-08-25 Yao Qi <yao.qi@linaro.org>
3454
3455 * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
3456 Move it to nat/aarch64-linux-hw-point.c.
3457 (debug_reg_change_callback): Likewise.
3458 (aarch64_notify_debug_reg_change): :Likewise.
3459 * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
3460 (aarch64_dr_update_callback_param): New.
3461 (debug_reg_change_callback): New function.
3462 (aarch64_notify_debug_reg_change): Likewise.
3463 * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
3464 Remove the declaration.
3465
3466 2015-08-25 Yao Qi <yao.qi@linaro.org>
3467
3468 * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
3469 Call current_lwp_ptid.
3470
3471 2015-08-25 Yao Qi <yao.qi@linaro.org>
3472
3473 * aarch64-linux-nat.c (debug_reg_change_callback): Use
3474 debug_printf.
3475
3476 2015-08-25 Yao Qi <yao.qi@linaro.org>
3477
3478 * aarch64-linux-nat.c (debug_reg_change_callback): Call
3479 ptid_get_pid rather than ptid_get_lwp.
3480
3481 2015-08-24 Pedro Alves <palves@redhat.com>
3482
3483 * NEWS (New commands): Mention set/show remote
3484 multiprocess-extensions-packet.
3485 * remote.c (remote_query_supported): Only tell the server to use
3486 the multiprocess extensions if the user hasn't force-disabled them
3487 with "set remote multiprocess-extensions-packet off".
3488
3489 2015-08-24 Pedro Alves <palves@redhat.com>
3490
3491 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
3492 1029a8112290f6eee9d7878a391c49db42c999bd.
3493 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
3494 Regenerate.
3495 * gnulib/import/Makefile.am: Update.
3496 * gnulib/import/Makefile.in: Update.
3497 * gnulib/import/alloca.in.h: Update.
3498 * gnulib/import/basename-lgpl.c: Update.
3499 * gnulib/import/canonicalize-lgpl.c: Update.
3500 * gnulib/import/config.charset: Update.
3501 * gnulib/import/dirent.in.h: Update.
3502 * gnulib/import/dirfd.c: Update.
3503 * gnulib/import/dirname-lgpl.c: Update.
3504 * gnulib/import/dirname.h: Update.
3505 * gnulib/import/dosname.h: Update.
3506 * gnulib/import/errno.in.h: Update.
3507 * gnulib/import/extra/snippet/arg-nonnull.h: Update.
3508 * gnulib/import/extra/snippet/c++defs.h: Update.
3509 * gnulib/import/extra/snippet/warn-on-use.h: Update.
3510 * gnulib/import/extra/update-copyright: Update.
3511 * gnulib/import/float+.h: Update.
3512 * gnulib/import/float.c: Update.
3513 * gnulib/import/float.in.h: Update.
3514 * gnulib/import/fnmatch.c: Update.
3515 * gnulib/import/fnmatch.in.h: Update.
3516 * gnulib/import/fnmatch_loop.c: Update.
3517 * gnulib/import/fpucw.h: Update.
3518 * gnulib/import/frexp.c: Update.
3519 * gnulib/import/frexpl.c: Update.
3520 * gnulib/import/gettimeofday.c: Update.
3521 * gnulib/import/inttypes.in.h: Update.
3522 * gnulib/import/isnan.c: Update.
3523 * gnulib/import/isnand-nolibm.h: Update.
3524 * gnulib/import/isnand.c: Update.
3525 * gnulib/import/isnanl-nolibm.h: Update.
3526 * gnulib/import/isnanl.c: Update.
3527 * gnulib/import/itold.c: Update.
3528 * gnulib/import/localcharset.c: Update.
3529 * gnulib/import/localcharset.h: Update.
3530 * gnulib/import/lstat.c: Update.
3531 * gnulib/import/m4/00gnulib.m4: Update.
3532 * gnulib/import/m4/absolute-header.m4: Update.
3533 * gnulib/import/m4/alloca.m4: Update.
3534 * gnulib/import/m4/canonicalize.m4: Update.
3535 * gnulib/import/m4/codeset.m4: Update.
3536 * gnulib/import/m4/configmake.m4: Update.
3537 * gnulib/import/m4/dirent_h.m4: Update.
3538 * gnulib/import/m4/dirfd.m4: Update.
3539 * gnulib/import/m4/dirname.m4: Update.
3540 * gnulib/import/m4/double-slash-root.m4: Update.
3541 * gnulib/import/m4/eealloc.m4: Update.
3542 * gnulib/import/m4/errno_h.m4: Update.
3543 * gnulib/import/m4/exponentd.m4: Update.
3544 * gnulib/import/m4/exponentl.m4: Update.
3545 * gnulib/import/m4/extensions.m4: Update.
3546 * gnulib/import/m4/extern-inline.m4: Update.
3547 * gnulib/import/m4/fcntl-o.m4: Update.
3548 * gnulib/import/m4/float_h.m4: Update.
3549 * gnulib/import/m4/fnmatch.m4: Update.
3550 * gnulib/import/m4/fpieee.m4: Update.
3551 * gnulib/import/m4/frexp.m4: Update.
3552 * gnulib/import/m4/frexpl.m4: Update.
3553 * gnulib/import/m4/gettimeofday.m4: Update.
3554 * gnulib/import/m4/glibc21.m4: Update.
3555 * gnulib/import/m4/gnulib-cache.m4: Update.
3556 * gnulib/import/m4/gnulib-common.m4: Update.
3557 * gnulib/import/m4/gnulib-comp.m4: Update.
3558 * gnulib/import/m4/gnulib-tool.m4: Update.
3559 * gnulib/import/m4/include_next.m4: Update.
3560 * gnulib/import/m4/inttypes-pri.m4: Update.
3561 * gnulib/import/m4/inttypes.m4: Update.
3562 * gnulib/import/m4/isnand.m4: Update.
3563 * gnulib/import/m4/isnanl.m4: Update.
3564 * gnulib/import/m4/largefile.m4: Update.
3565 * gnulib/import/m4/localcharset.m4: Update.
3566 * gnulib/import/m4/locale-fr.m4: Update.
3567 * gnulib/import/m4/locale-ja.m4: Update.
3568 * gnulib/import/m4/locale-zh.m4: Update.
3569 * gnulib/import/m4/longlong.m4: Update.
3570 * gnulib/import/m4/lstat.m4: Update.
3571 * gnulib/import/m4/malloc.m4: Update.
3572 * gnulib/import/m4/malloca.m4: Update.
3573 * gnulib/import/m4/math_h.m4: Update.
3574 * gnulib/import/m4/mbrtowc.m4: Update.
3575 * gnulib/import/m4/mbsinit.m4: Update.
3576 * gnulib/import/m4/mbsrtowcs.m4: Update.
3577 * gnulib/import/m4/mbstate_t.m4: Update.
3578 * gnulib/import/m4/memchr.m4: Update.
3579 * gnulib/import/m4/memmem.m4: Update.
3580 * gnulib/import/m4/mmap-anon.m4: Update.
3581 * gnulib/import/m4/multiarch.m4: Update.
3582 * gnulib/import/m4/nocrash.m4: Update.
3583 * gnulib/import/m4/off_t.m4: Update.
3584 * gnulib/import/m4/pathmax.m4: Update.
3585 * gnulib/import/m4/readlink.m4: Update.
3586 * gnulib/import/m4/rename.m4: Update.
3587 * gnulib/import/m4/rmdir.m4: Update.
3588 * gnulib/import/m4/ssize_t.m4: Update.
3589 * gnulib/import/m4/stat.m4: Update.
3590 * gnulib/import/m4/stdbool.m4: Update.
3591 * gnulib/import/m4/stddef_h.m4: Update.
3592 * gnulib/import/m4/stdint.m4: Update.
3593 * gnulib/import/m4/stdio_h.m4: Update.
3594 * gnulib/import/m4/stdlib_h.m4: Update.
3595 * gnulib/import/m4/string_h.m4: Update.
3596 * gnulib/import/m4/strstr.m4: Update.
3597 * gnulib/import/m4/strtok_r.m4: Update.
3598 * gnulib/import/m4/sys_socket_h.m4: Update.
3599 * gnulib/import/m4/sys_stat_h.m4: Update.
3600 * gnulib/import/m4/sys_time_h.m4: Update.
3601 * gnulib/import/m4/sys_types_h.m4: Update.
3602 * gnulib/import/m4/time_h.m4: Update.
3603 * gnulib/import/m4/unistd_h.m4: Update.
3604 * gnulib/import/m4/warn-on-use.m4: Update.
3605 * gnulib/import/m4/wchar_h.m4: Update.
3606 * gnulib/import/m4/wchar_t.m4: Update.
3607 * gnulib/import/m4/wctype_h.m4: Update.
3608 * gnulib/import/m4/wint_t.m4: Update.
3609 * gnulib/import/malloc.c: Update.
3610 * gnulib/import/malloca.c: Update.
3611 * gnulib/import/malloca.h: Update.
3612 * gnulib/import/math.in.h: Update.
3613 * gnulib/import/mbrtowc.c: Update.
3614 * gnulib/import/mbsinit.c: Update.
3615 * gnulib/import/mbsrtowcs-impl.h: Update.
3616 * gnulib/import/mbsrtowcs-state.c: Update.
3617 * gnulib/import/mbsrtowcs.c: Update.
3618 * gnulib/import/memchr.c: Update.
3619 * gnulib/import/memmem.c: Update.
3620 * gnulib/import/pathmax.h: Update.
3621 * gnulib/import/readlink.c: Update.
3622 * gnulib/import/ref-add.sin: Update.
3623 * gnulib/import/ref-del.sin: Update.
3624 * gnulib/import/rename.c: Update.
3625 * gnulib/import/rmdir.c: Update.
3626 * gnulib/import/same-inode.h: Update.
3627 * gnulib/import/stat.c: Update.
3628 * gnulib/import/stdbool.in.h: Update.
3629 * gnulib/import/stddef.in.h: Update.
3630 * gnulib/import/stdint.in.h: Update.
3631 * gnulib/import/stdio.c: Update.
3632 * gnulib/import/stdio.in.h: Update.
3633 * gnulib/import/stdlib.in.h: Update.
3634 * gnulib/import/str-two-way.h: Update.
3635 * gnulib/import/streq.h: Update.
3636 * gnulib/import/string.in.h: Update.
3637 * gnulib/import/stripslash.c: Update.
3638 * gnulib/import/strnlen1.c: Update.
3639 * gnulib/import/strnlen1.h: Update.
3640 * gnulib/import/strstr.c: Update.
3641 * gnulib/import/strtok_r.c: Update.
3642 * gnulib/import/sys_stat.in.h: Update.
3643 * gnulib/import/sys_time.in.h: Update.
3644 * gnulib/import/sys_types.in.h: Update.
3645 * gnulib/import/time.in.h: Update.
3646 * gnulib/import/unistd.in.h: Update.
3647 * gnulib/import/verify.h: Update.
3648 * gnulib/import/wchar.in.h: Update.
3649 * gnulib/import/wctype.in.h: Update.
3650 * gnulib/import/gettimeofday.c: New file.
3651 * gnulib/import/m4/absolute-header.m4: New file.
3652 * gnulib/import/m4/gettimeofday.m4: New file.
3653 * gnulib/import/m4/sys_socket_h.m4: New file.
3654 * gnulib/import/m4/sys_time_h.m4: New file.
3655 * gnulib/import/stdio.c: Delete file.
3656 * gnulib/import/sys_time.in.h: New file.
3657
3658 2015-08-24 Pedro Alves <palves@redhat.com>
3659
3660 * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
3661 * common/gdb_sys_time.h: New file.
3662 * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
3663 * gdb_select.h: Likewise.
3664 * gdb_usleep.c: Likewise.
3665 * maint.c: Likewise.
3666 * mi/mi-main.c: Likewise.
3667 * mi/mi-parse.h: Likewise.
3668 * remote-fileio.c: Likewise.
3669 * remote-m32r-sdi.c: Likewise.
3670 * remote.c: Likewise.
3671 * ser-base.c: Likewise.
3672 * ser-pipe.c: Likewise.
3673 * ser-tcp.c: Likewise.
3674 * ser-unix.c: Likewise.
3675 * symfile.c: Likewise.
3676 * symfile.c: Likewise. Rename OSIZE to SIZE throughout.
3677 * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
3678 * utils.c: Likewise.
3679
3680 2015-08-24 Pedro Alves <palves@redhat.com>
3681
3682 * NEWS: Mention removed support for the various ROM monitors.
3683 * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
3684 ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
3685 * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
3686 gdb_target_obs.
3687 (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
3688 gdb_target_obs.
3689 (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
3690 dsrec.o from gdb_target_obs.
3691 (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
3692 from gdb_target_obs.
3693 (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
3694 gdb_target_obs.
3695 (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
3696 dink32-rom.o from gdb_target_obs.
3697 (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
3698 (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
3699 * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
3700 monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
3701
3702 2015-08-21 Pedro Alves <palves@redhat.com>
3703
3704 * frame.c (null_frame_id): Explicitly zero-initialize.
3705
3706 2015-08-21 Tom Tromey <tromey@redhat.com>
3707
3708 * dwarf2read.c (struct dwarf2_section_info): Rename field
3709 'asection' to 'section'.
3710 (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
3711 (dwarf2_locate_sections, dwarf2_locate_sections)
3712 (locate_dwz_sections, locate_v1_virtual_dwo_sections)
3713 (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
3714 (dwarf2_locate_v2_dwp_sections): Adjust.
3715
3716 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3717
3718 * top.h (gdb_in_secondary_prompt_p): Declare.
3719 * top.c (gdb_secondary_prompt_depth): Define.
3720 (gdb_in_secondary_prompt_p): Define.
3721 (gdb_readline_wrapper_cleanup): Decrement
3722 gdb_secondary_prompt_depth.
3723 (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
3724 * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
3725 are in a secondary prompt.
3726
3727 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3728
3729 * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
3730 emit the newline.
3731
3732 2015-08-21 Gary Benson <gbenson@redhat.com>
3733
3734 * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
3735
3736 2015-08-21 Gary Benson <gbenson@redhat.com>
3737
3738 * target.h (struct target_ops) <to_fileio_open>: New argument
3739 warn_if_slow. Update comment. All implementations updated.
3740 (target_fileio_open_warn_if_slow): New declaration.
3741 * target.c (target_fileio_open): Renamed as...
3742 (target_fileio_open_1): ...this. New argument warn_if_slow.
3743 Pass warn_if_slow to implementation. Update debug printing.
3744 (target_fileio_open): New function.
3745 (target_fileio_open_warn_if_slow): Likewise.
3746 * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
3747 target_fileio_open_warn_if_slow.
3748
3749 2015-08-21 Gary Benson <gbenson@redhat.com>
3750
3751 * nat/linux-namespaces.c (linux_mntns_access_fs):
3752 Do not overwrite old_chain.
3753
3754 2015-08-20 Max Filippov <jcmvbkbc@gmail.com>
3755
3756 * arch/xtensa.h: New file.
3757 * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
3758 (ps_get_thread_area): New function.
3759 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
3760 set_gdbarch_fetch_tls_load_module_address to enable TLS support.
3761 * xtensa-tdep.c (osabi.h): New #include.
3762 (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
3763 xtensa-specific hooks.
3764 * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
3765 member and move the structure to arch/xtensa.h.
3766
3767 2015-08-21 Pedro Alves <palves@redhat.com>
3768
3769 * remote.c (struct readahead_cache): New.
3770 (struct remote_state) <readahead_cache>: New field.
3771 (remote_open_1): Invalidate the cache.
3772 (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
3773 functions.
3774 (remote_hostio_pwrite): Invalidate the readahead cache.
3775 (remote_hostio_pread): Rename to ...
3776 (remote_hostio_pread_vFile): ... this.
3777 (remote_hostio_pread_from_cache): New function.
3778 (remote_hostio_pread): Reimplement.
3779 (remote_hostio_close): Invalidate the readahead cache.
3780
3781 2015-08-21 Marcin Cieślak <saper@saper.info> (tiny patch)
3782
3783 PR build/18843
3784 * procfs.c: Include "filestuff.h".
3785
3786 2015-08-21 Patrick Palka <patrick@parcs.ath.cx>
3787
3788 * tui/tui-data.h (tui_command_info): Remove fields cur_line and
3789 curch.
3790 * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
3791 cur_line or curch, instead call wmove().
3792 (init_win_info) [CMD_WIN]: Likewise.
3793 * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
3794 instead call getcury().
3795 (tui_redisplay_readline): Don't set cur_line or curch.
3796 (tui_mld_erase_entire_line): Don't read cur_line, instead call
3797 getcury().
3798 (tui_cont_sig): Remove call to wmove.
3799 (tui_getc): Don't read cur_line or curch, instead call getcury()
3800 or getyx(). Don't set curch.
3801 * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
3802 set cur_line or curch. Always move cursor to (0,0).
3803
3804 2015-08-20 Pedro Alves <palves@redhat.com>
3805
3806 * infrun.c (print_target_wait_results): Make extern.
3807 * infrun.h (print_target_wait_results): Declare.
3808 * remote.c (set_stop_requested_callback): Delete.
3809 (process_initial_stop_replies): New function.
3810 (remote_start_remote): Use it.
3811 (stop_reply_queue_length): New function.
3812
3813 2015-08-20 Pedro Alves <palves@redhat.com>
3814
3815 * dwarf2read.c (process_full_comp_unit): To tell whether
3816 start_subfile managed to deduce a language, test for
3817 language_unknown instead of language_c.
3818
3819 2015-08-20 Pierre-Marie de Rodat <derodat@adacore.com>
3820
3821 * ada-lex.l: Reset the start condition to INITIAL in the rule that
3822 matches attributes.
3823
3824 2015-08-19 Kevin Buettner <kevinb@redhat.com>
3825
3826 * dwarf2read.c (dwarf2_string_attr): New function.
3827 (lookup_dwo_unit, process_psymtab_comp_unit_reader)
3828 (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
3829 (read_call_site_scope, namespace_name, guess_full_die_structure_name)
3830 (anonymous_struct_prefix, prepare_one_comp_unit): Use
3831 dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
3832
3833 2015-08-18 Doug Evans <dje@google.com>
3834 Adrian Sendroiu <adrian.sendroiu@freescale.com>
3835
3836 PR mi/18833
3837 * cli/cli-logging.c (pop_output_files): Don't restore redirection
3838 if MI-like.
3839 * mi/mi-out.c: #include "vec.h".
3840 (ui_filep): New type.
3841 (DEV_VEC_P (ui_filep)): New type.
3842 (struct ui_out_data) <buffer, original_buffer>: Delete.
3843 (struct ui_out_data) <streams>: New member.
3844 (mi_ui_out_impl): Add data_destroy field.
3845 (mi_field_string, mi_field_fmt): Update.
3846 (mi_flush, mi_redirect, field_separator): Update.
3847 (mi_open, mi_close): Update.
3848 (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
3849 (mi_out_data_ctor, mi_out_data_dtor): New functions.
3850 (mi_out_new): Call mi_out_data_ctor.
3851
3852 2015-08-18 Sandra Loosemore <sandra@codesourcery.com>
3853
3854 * remote.c (strprefix): New.
3855 (remote_parse_stop_reply): Use strprefix instead of strncmp
3856 to ensure exact match of keyword.
3857
3858 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
3859
3860 * gdb_bfd.c (debug_bfd_cache): New variable.
3861 (show_bfd_cache_debug): New function.
3862 (gdb_bfd_open): Add debug logging.
3863 (gdb_bfd_ref): Likewise.
3864 (gdb_bfd_unref): Likewise.
3865 (_initialize_gdb_bfd): Add new set/show command.
3866 * NEWS: Mention new command.
3867
3868 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
3869
3870 * gdb_bfd.c (bfd_sharing): New variable.
3871 (show_bfd_sharing): New function.
3872 (gdb_bfd_open): Check bfd_sharing variable.
3873 (_initialize_gdb_bfd): Add new set/show command.
3874 * NEWS: Mention new command.
3875
3876 2015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
3877
3878 * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
3879 field.
3880 (struct gdb_bfd_cache_search): Likewise.
3881 (eq_bfd): Compare the size, inode, and device id fields.
3882 (gdb_bfd_open): Initialise the size, inode, and device id fields.
3883 (gdb_bfd_ref): Likewise.
3884 (gdb_bfd_unref): Likewise.
3885
3886 2015-08-18 Pedro Alves <palves@redhat.com>
3887
3888 * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
3889 target implements to_always_non_stop_p, call it.
3890 * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
3891 (x86_linux_create_target): Install it as to_always_non_stop_p
3892 method.
3893
3894 2015-08-17 Doug Evans <dje@google.com>
3895
3896 * ui-out.c (default_ui_out_impl): Add comment.
3897
3898 2015-08-17 Iain Buclaw <ibuclaw@gdcproject.org>
3899
3900 * d-exp.y (type_aggregate_p): New function.
3901 (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
3902 (classify_inner_name): Likewise.
3903 * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
3904
3905 2015-08-15 Doug Evans <xdje42@gmail.com>
3906
3907 * psymtab.c (add_psymbol_to_bcache): Remove "val" arg. All callers
3908 updated.
3909 (add_psymbol_to_list): Ditto.
3910
3911 2015-08-15 Doug Evans <xdje42@gmail.com>
3912
3913 * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab. All callers
3914 updated. Call end_psymtab_common.
3915 * dwarf2read.c (process_psymtab_comp_unit_reader): Call
3916 end_psymtab_common.
3917 (build_type_psymtabs_reader): Ditto.
3918 * psympriv.h (sort_pst_symbols): Delete.
3919 (end_psymtab_common): Declare.
3920 * psymtab.c (sort_pst_symbols): Make static.
3921 (end_psymtab_common): New function.
3922 * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
3923
3924 2015-08-15 Doug Evans <xdje42@gmail.com>
3925
3926 * defs.h (LANGUAGE_BITS): Define.
3927 * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
3928 (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
3929 * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
3930 (minimal_symbol_type): Add nr_minsym_types.
3931 (MINSYM_TYPE_BITS): Define.
3932 (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
3933 (domain_enum_tag): Add NR_DOMAINS.
3934 (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
3935 (SYMBOL_ACLASS_BITS): Define from 6 to 5.
3936
3937 2015-08-15 Doug Evans <xdje42@gmail.com>
3938
3939 * objfiles.h: Whitespace cleanup.
3940 * psympriv.h: Whitespace cleanup.
3941 * psymtab.c: Whitespace/coding convention cleanup.
3942
3943 2015-08-15 Patrick Palka <patrick@parcs.ath.cx>
3944
3945 * inferior.c (detach_inferior_command): Don't call
3946 any_thread_of_process when pid is 0.
3947 (kill_inferior_command): Likewise.
3948
3949 2015-08-14 Doug Evans <xdje42@gmail.com>
3950
3951 PR gdb/11833
3952 * NEWS: Document new /s modifier for the disassemble command.
3953 * cli/cli-cmds.c (disassemble_command): Add support for /s.
3954 (_initialize_cli_cmds): Update online docs of disassemble command.
3955 * disasm.c: #include "source.h".
3956 (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
3957 All uses updated.
3958 (dis_line_entry): New struct.
3959 (hash_dis_line_entry, eq_dis_line_entry): New functions.
3960 (allocate_dis_line_table): New functions.
3961 (maybe_add_dis_line_entry, line_has_code_p): New functions.
3962 (dump_insns): New arg end_pc. All callers updated.
3963 (do_mixed_source_and_assembly_deprecated): Renamed from
3964 do_mixed_source_and_assembly. All callers updated.
3965 (do_mixed_source_and_assembly): New function.
3966 (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
3967 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
3968 DISASSEMBLY_SOURCE. All uses updated.
3969 (DISASSEMBLY_SOURCE): New macro.
3970 * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
3971
3972 2015-08-14 Keith Seitz <keiths@redhat.com>
3973
3974 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
3975 `typename' to `type_name' to avoid C++ reserved word.
3976
3977 2015-08-14 Keith Seitz <keiths@redhat.com>
3978
3979 * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
3980 (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
3981 silence ARI errors.
3982
3983 2015-08-14 Iain Buclaw <ibuclaw@gdcproject.org>
3984
3985 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
3986 xstrprintf instead of malloc and sprintf.
3987 (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
3988 (lex_one_token): Likewise.
3989
3990 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
3991
3992 * solib-svr4.c (read_program_header): Add base_addr argument to
3993 report the runtime address of the segment.
3994 (find_program_interpreter): Update read_program_header call to pass
3995 a NULL pointer for the new argument.
3996 (scan_dyntag): Add ptr_addr argument to report the runtime address
3997 of the tag payload.
3998 (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
3999 read_program_header to get the base address of the dynamic segment.
4000 (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
4001 read_program_header.
4002 (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
4003
4004 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
4005
4006 * MAINTAINERS (Write After Approval): Add Matthew Fortune.
4007
4008 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
4009
4010 * d-exp.y (%union): Add voidval.
4011 (%token): Add UNKNOWN_NAME as a token to represent an unclassified
4012 name in the lexing stage.
4013 (PostfixExpression): Move symbol completion handling in grammar here
4014 from PrimaryExpression.
4015 (PrimaryExpression): Move routines to handle resolving identifier
4016 tokens in the grammar here from push_expression_name.
4017 (IdentifierExp): Remove the handling of alternating '.' and identifier
4018 tokens.
4019 (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
4020 (BasicType): Remove C-style typename rules.
4021 (d_type_from_name, d_module_from_name, push_variable)
4022 (push_fieldnames, push_type_name, push_module_name)
4023 (push_expression_name): Remove.
4024 (lex_one_token): Rename from yylex. Replace pstate with par_state.
4025 (token_and_value): New type.
4026 (token_fifo, popping, name_obstack): New globals.
4027 (classify_name): New function.
4028 (classify_inner_name): Likewise.
4029 (yylex): Likewise.
4030 (d_parse): Initialize token_fifo, popping and name_obstack.
4031
4032 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
4033
4034 * Makefile.in (SFILES): Add d-namespace.c.
4035 (COMMON_OBS): Add d-namespace.o.
4036 * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
4037 la_lookup_symbol_nonlocal callback function pointer.
4038 * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
4039 (d_lookup_nested_symbol): New declaration.
4040 * d-namespace.c: New file.
4041
4042 2015-08-13 Pedro Alves <palves@redhat.com>
4043
4044 * python/py-unwind.c (pyuw_sniffer): Install the invalidate
4045 cleanup after the decref cleanup, not before.
4046
4047 2015-08-13 Pierre-Marie de Rodat <derodat@adacore.com>
4048
4049 * ada-lang.c: Include namespace.h
4050 (aux_add_nonlocal_symbols): Fix a function name in comment.
4051 (ada_add_block_renamings): New.
4052 (add_nonlocal_symbols): Add global renamings handling.
4053 (ada_lookup_symbol_list_worker): Move the symbol lookup part
4054 to...
4055 (ada_add_all_symbols): ... this new function.
4056 (ada_add_block_symbols): Try to match the input name against the
4057 "using directives list", perform a recursive symbol lookup on
4058 the matched declarations.
4059 * block.h (struct block): Move the_namespace to top-level as
4060 namespace_info. Remove the language_specific field.
4061 (BLOCK_NAMESPACE): Update access to the namespace_info field.
4062 * buildsym.h (using_directives): Rename into...
4063 (local_using_directives): ... this.
4064 (global_using_directives): New.
4065 (struct context_stack): Rename the using_directives field into
4066 local_using_directives.
4067 * buildsym.c (finish_block_internal): Deal with the proper
4068 using directives repository (local or global).
4069 (prepare_for_building): Reset local_using_directives. Assert
4070 that there is no pending global using directive.
4071 (reset_symtab_globals): Reset global_using_directives and
4072 local_using_directives.
4073 (end_symtab_get_static_block): Don't ignore symtabs that have
4074 only using directives.
4075 (push_context): Update references to local_using_directives.
4076 (buildsym_init): Do not reset using_directives.
4077 * cp-support.c: Include namespace.h.
4078 * cp-support.h (struct using_direct): Move to namespace.h.
4079 (cp_add_using_directives): Move to namespace.h.
4080 * cp-namespace.c: Include namespace.h
4081 (cp_add_using_directive): Move to namespace.c, rename it to
4082 add_using_directive, add a "using_directives" argument and use
4083 it as the pending using directives repository. All callers
4084 updated.
4085 * dwarf2read.c (using_directives): New.
4086 (read_import_statement): Call using_directives.
4087 (read_func_scope): Update references to local_using_directives.
4088 (read_lexical_block_scope): Likewise.
4089 (read_namespace): Update the heading comment, call
4090 using_directives.
4091 * namespace.h: New file.
4092 * namespace.c: New file.
4093 * Makefile.in (SFILES): Add namespace.c.
4094 (COMMON_OBS): Add namespace.o
4095
4096 2015-08-12 Joel Brobecker <brobecker@adacore.com>
4097
4098 * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
4099 compute RETADDR.
4100
4101 2015-08-12 Keith Seitz <keiths@redhat.com>
4102
4103 * break-catch-throw.c (re_set_exception_catchpoint) Rename
4104 reserved C++ keyword "explicit" to "explicit_loc".
4105 * breakpoint.c (create_overlay_event_breakpoint)
4106 (create_longjmp_master_breakpoint)
4107 (create_std_terminate_master_breakpoint)
4108 (create_exception_master_breakpoint, update_static_tracepoint):
4109 Rename reserved C++ keyword "explicit" to "explicit_loc".
4110 * completer.c (collect_explicit_location_matches)
4111 (explicit_location_completer): Rename reserved C++ keyword
4112 "explicit" to "explicit_loc".
4113 * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
4114 (canonicalize_linespec, create_sals_line_offset)
4115 (convert_linespec_to_sals, convert_explicit_location_to_sals)
4116 (event_location_to_sals, decode_objc): Rename reserved C++ keyword
4117 "explicit" to "explicit_loc".
4118 * location.c (struct event_location) <explicit>: Rename to
4119 "explicit_loc".
4120 (initialize_explicit_location, new_explicit_location)
4121 (explicit_location_to_string_internal, explicit_location_to_linespec):
4122 Rename reserved C++ keyword "explicit" to "explicit_loc".
4123 * location.h (explicit_location_to_string)
4124 (explicit_location_to_linespec, initialize_explicit_location)
4125 (new_explicit_location): Rename reserved C++ keyword "explicit"
4126 to "explicit_loc".
4127 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
4128 keyword "explicit" to "explicit_loc".
4129
4130 2015-08-12 Keith Seitz <keiths@redhat.com>
4131
4132 * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
4133 and only call decode_line_1 when it is non-NULL.
4134
4135 2015-08-12 Luis Machado <lgustavo@codesourcery.com>
4136
4137 * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
4138 location address is not meaningful.
4139 (breakpoint_address_is_meaningful): Update comment.
4140
4141 2015-08-11 Keith Seitz <keiths@redhat.com>
4142
4143 * NEWS: Mention explicit locations.
4144 * breakpoint.c [LOCATION_HELP_STRING]: New macro.
4145 [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
4146 (_initialize_breakpoint): Update documentation for
4147 "clear", "break", "trace", "strace", "ftrace", and "dprintf".
4148
4149 2015-08-11 Keith Seitz <keiths@redhat.com>
4150
4151 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
4152 explicit locations, options "--source", "--function",
4153 "--label", and "--line".
4154
4155 2015-08-11 Keith Seitz <keiths@redhat.com>
4156
4157 * completer.c: Include location.h.
4158 (enum match_type): New enum.
4159 (location_completer): Rename to ...
4160 (linespec_completer): ... this.
4161 (collect_explicit_location_matches, backup_text_ptr)
4162 (explicit_location_completer): New functions.
4163 (location_completer): "New" function; handle linespec
4164 and explicit location completions.
4165 (complete_line_internal): Remove all location completer-specific
4166 handling.
4167 * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
4168 (find_toplevel_char): Export.
4169 (linespec_parse_line_offset): Export.
4170 Issue error if STRING is not numerical.
4171 (gdb_get_linespec_parser_quote_characters): New function.
4172 * linespec.h (linespec_parse_line_offset): Declare.
4173 (get_gdb_linespec_parser_quote_characters): Declare.
4174 (is_ada_operator): Declare.
4175 (find_toplevel_char): Declare.
4176 (linespec_lexer_lex_keyword): Declare.
4177 * location.c (explicit_to_event_location): New function.
4178 (explicit_location_lex_one): New function.
4179 (string_to_explicit_location): New function.
4180 (string_to_event_location): Handle explicit locations.
4181 * location.h (explicit_to_event_location): Declare.
4182 (string_to_explicit_location): Declare.
4183
4184 2015-08-11 Keith Seitz <keiths@redhat.com>
4185
4186 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4187 linespec into explicit location.
4188 * breakpoint.c (create_overlay_breakpoint)
4189 (create_longjmp_master_breakpoint)
4190 (create_std_terminate_master_breakpoint)
4191 (create_exception_master_breakpoint): Convert linespec into explicit
4192 location.
4193 (update_static_tracepoint): Convert linespec into explicit location.
4194 * linespec.c (enum offset_relative_sign, struct line_offset): Move
4195 location.h.
4196 (struct linespec) <expression, expr_pc, source_filename>
4197 <function_name, label_name, line_offset>: Replace with ...
4198 <explicit>: ... this.
4199 <is_linespec>: New member.
4200 (PARSER_EXPLICIT): New accessor macro.
4201 (undefined_label_error): New function.
4202 (source_file_not_found_error): New function.
4203 (linespec_parse_basic): The parser result is now an explicit location.
4204 Use PARSER_EXPLICIT to access it.
4205 Use undefined_label_error.
4206 (canonicalize_linespec): Convert canonical linespec into explicit
4207 location.
4208 Move string representation of location to explicit_location_to_linespec
4209 and use it and explicit_location_to_string to save string
4210 representations of the canonical location.
4211 (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
4212 explicit location. Update all references.
4213 (convert_explicit_location_to_sals): New function.
4214 (parse_linespec): Use PARSER_EXPLICIT to access the parser
4215 result's explicit location.
4216 (linespec_state_constructor): Initialize is_linespec.
4217 Use PARSER_EXPLICIT.
4218 (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
4219 result.
4220 (event_location_to_sals): For linespec locations, set is_linespec.
4221 Handle explicit locations.
4222 (decode_objc): 'ls' contains an explicit location now. Update all
4223 references.
4224 (symtabs_from_filename): Use source_file_not_found_error.
4225 * location.c (struct event_location.u) <explicit>: New member.
4226 (initialize_explicit_location): New function.
4227 (initialize_event_location): Initialize explicit locations.
4228 (new_explicit_location, get_explicit_location)
4229 (get_explicit_location_const): New functions.
4230 (explicit_to_string_internal): New function; most of contents moved
4231 from canonicalize_linespec.
4232 (explicit_location_to_string): New function.
4233 (explicit_location_to_linespec): New function.
4234 (copy_event_location, delete_event_location)
4235 (event_location_to_string_const, event_location_empty_p): Handle
4236 explicit locations.
4237 * location.h (enum offset_relative_sign, struct line_offset): Move
4238 here from linespec.h.
4239 (enum event_location_type): Add EXPLICIT_LOCATION.
4240 (struct explicit_location): New structure.
4241 (explicit_location_to_string): Declare.
4242 (explicit_location_to_linespec): Declare.
4243 (new_explicit_location, get_explicit_locationp
4244 (get_explicit_location_const, initialize_explicit_location): Declare.
4245
4246 2015-08-11 Keith Seitz <keiths@redhat.com>
4247
4248 * break-catch-throw.c (re_set_exception_catchpoint): Convert
4249 linespec for stap probe to probe location.
4250 * breakpoint.c (create_longjmp_master_breakpoint)
4251 (create_exception_master_breakpoint): Likewise.
4252 (break_command_1): Remove local variable `arg_cp'.
4253 Check location type to set appropriate breakpoint ops methods.
4254 (trace_command): Likewise.
4255 * linespec.c (event_location_to_sals): Assert on probe locations.
4256 * location.c (EL_PROBE): Add macro definition.
4257 (new_probe_location, get_probe_location): New functions.
4258 (copy_event_location, delete_event_location, event_location_to_string)
4259 (string_to_event_location, event_location_empty_p): Handle probe
4260 locations.
4261 * location.h (enum event_location_type): Add PROBE_LOCATION.
4262 (new_probe_location, get_probe_location): Declare.
4263 * probe.c (parse_probes): Assert that LOCATION is a probe location.
4264 Convert linespec into probe location.
4265
4266 2015-08-11 Keith Seitz <keiths@redhat.com>
4267
4268 * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
4269 Convert linespec to address location.
4270 * linespec.c (canonicalize_linespec): Do not handle address
4271 locations here.
4272 (convert_address_location_to_sals): New function; contents moved
4273 from ...
4274 (convert_linespc_to_sals): ... here.
4275 (parse_linespec): Remove address locations from linespec grammar.
4276 Remove handling of address locations.
4277 (linespec_lex_to_end): Remove handling of address linespecs.
4278 (event_location_to_sals): Handle ADDRESS_LOCATION.
4279 (linespec_expression_to_pc): Export.
4280 * linespec.h (linespec_expression_to_pc): Add declaration.
4281 * location.c (struct event_location.u) <address>: New member.
4282 (new_address_location, get_address_location): New functions.
4283 (copy_event_location, delete_event_location, event_location_to_string)
4284 (string_to_event_location, event_location_empty_p): Handle address
4285 locations.
4286 * location.h (enum event_location_type): Add ADDRESS_LOCATION.
4287 (new_address_location, get_address_location): Declare.
4288 * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
4289 to address location.
4290 * spu-tdep.c (spu_catch_start): Likewise.
4291
4292 2015-08-11 Keith Seitz <keiths@redhat.com>
4293
4294 * ax-gdb.c: Include location.h.
4295 (agent_command_1) Use linespec location instead of address
4296 string.
4297 * break-catch-throw.c: Include location.h.
4298 (re_set_exception_catchpoint): Use linespec locations instead
4299 of address strings.
4300 * breakpoint.c: Include location.h.
4301 (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
4302 (create_std_terminate_master_breakpoint)
4303 (create_exception_master_breakpoint, update_breakpoints_after_exec):
4304 Use linespec location instead of address string.
4305 (print_breakpoint_location): Use locations and
4306 event_location_to_string.
4307 Print extra_string for pending locations for non-MI streams.
4308 (print_one_breakpoint_location): Use locations and
4309 event_location_to_string.
4310 (init_raw_breakpoint_without_location): Initialize b->location.
4311 (create_thread_event_breakpoint): Use linespec location instead of
4312 address string.
4313 (init_breakpoint_sal): Likewise.
4314 Only save extra_string if it is non-NULL and not the empty string.
4315 Use event_location_to_string instead of `addr_string'.
4316 Constify `p' and `endp'.
4317 Use skip_spaces_const/skip_space_const instead of non-const versions.
4318 Copy the location into the breakpoint.
4319 If LOCATION is NULL, save the breakpoint address as a linespec location
4320 instead of an address string.
4321 (create_breakpoint_sal): Change `addr_string' parameter to a struct
4322 event_location. All uses updated.
4323 (create_breakpoints_sal): Likewise for local variable `addr_string'.
4324 (parse_breakpoint_sals): Use locations instead of address strings.
4325 Remove check for empty linespec with conditional.
4326 Refactor.
4327 (decode_static_tracepoint_spec): Make argument const and update
4328 function.
4329 (create_breakpoint): Change `arg' to a struct event_location and
4330 rename.
4331 Remove `copy_arg' and `addr_start'.
4332 If EXTRA_STRING is empty, set it to NULL.
4333 Don't populate `canonical' for pending breakpoints.
4334 Pass `extra_string' to find_condition_and_thread.
4335 Clear `extra_string' if `rest' was NULL.
4336 Do not error with "garbage after location" if setting a dprintf
4337 breakpoint.
4338 Copy the location into the breakpoint instead of an address string.
4339 (break_command_1): Use string_to_event_location and pass this to
4340 create_breakpoint instead of an address string.
4341 Check against `arg_cp' for a probe linespec.
4342 (dprintf_command): Use string_to_event_location and pass this to
4343 create_breakpoint instead of an address string.
4344 Throw an exception if no format string was specified.
4345 (print_recreate_ranged_breakpoint): Use event_location_to_string
4346 instead of address strings.
4347 (break_range_command, until_break_command)
4348 (init_ada_exception_breakpoint): Use locations instead
4349 of address strings.
4350 (say_where): Print out extra_string for pending locations.
4351 (base_breakpoint_dtor): Delete `location' and `location_range_end' of
4352 the breakpoint.
4353 (base_breakpoint_create_sals_from_location): Use struct event_location
4354 instead of address string.
4355 Remove `addr_start' and `copy_arg' parameters.
4356 (base_breakpoint_decode_location): Use struct event_location instead of
4357 address string.
4358 (bkpt_re_set): Use locations instead of address strings.
4359 Use event_location_empty_p to check for unset location.
4360 (bkpt_print_recreate): Use event_location_to_string instead of
4361 an address string.
4362 Print out extra_string for pending locations.
4363 (bkpt_create_sals_from_location, bkpt_decode_location)
4364 (bkpt_probe_create_sals_from_location): Use struct event_location
4365 instead of address string.
4366 (bkpt_probe_decode_location): Use struct event_location instead of
4367 address string.
4368 (tracepoint_print_recreate): Use event_location_to_string to
4369 recreate the tracepoint.
4370 (tracepoint_create_sals_from_location, tracepoint_decode_location)
4371 (tracepoint_probe_create_sals_from_location)
4372 (tracepoint_probe_decode_location): Use struct event_location
4373 instead of address string.
4374 (dprintf_print_recreate): Use event_location_to_string to recreate
4375 the dprintf.
4376 (dprintf_re_set): Remove check for valid/missing format string.
4377 (strace_marker_create_sals_from_location)
4378 (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
4379 (update_static_tracepoint): Use struct event_location instead of
4380 address string.
4381 (location_to_sals): Likewise.
4382 Pass `extra_string' to find_condition_and_thread.
4383 For newly resolved pending breakpoint locations, clear the location's
4384 string representation.
4385 Assert that the breakpoint's condition string is NULL when
4386 condition_not_parsed.
4387 (breakpoint_re_set_default, create_sals_from_location_default)
4388 (decode_location_default, trace_command, ftrace_command)
4389 (strace_command, create_tracepoint_from_upload): Use locations
4390 instead of address strings.
4391 * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
4392 Use struct event_location instead of address string.
4393 Update all uses.
4394 <decode_location>: Likewise.
4395 (struct breakpoint) <addr_string>: Change to struct event_location
4396 and rename `location'.
4397 <addr_string_range_end>: Change to struct event_location and rename
4398 `location_range_end'.
4399 (create_breakpoint): Use struct event_location instead of address
4400 string.
4401 * cli/cli-cmds.c: Include location.h.
4402 (edit_command, list_command): Use locations instead of address strings.
4403 * elfread.c: Include location.h.
4404 (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
4405 * guile/scm-breakpoint.c: Include location.h.
4406 (bpscm_print_breakpoint_smob): Use event_location_to_string.
4407 (gdbscm_register_breakpoint): Use locations instead of address
4408 strings.
4409 * linespec.c: Include location.h.
4410 (struct ls_parser) <stream>: Change to const char *.
4411 (PARSER_STREAM): Update.
4412 (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
4413 keywords must be followed by whitespace.
4414 (canonicalize_linespec): Save a linespec location into `canonical'.
4415 Save a canonical linespec into `canonical'.
4416 (parse_linespec): Change `argptr' to const char * and rename `arg'.
4417 All uses updated.
4418 Update function description.
4419 (linespec_parser_new): Initialize `parser'.
4420 Update initialization of parsing stream.
4421 (event_location_to_sals): New function.
4422 (decode_line_full): Change `argptr' to a struct event_location and
4423 rename it `location'.
4424 Use locations instead of address strings.
4425 Call event_location_to_sals instead of parse_linespec.
4426 (decode_line_1): Likewise.
4427 (decode_line_with_current_source, decode_line_with_last_displayed)
4428 Use locations instead of address strings.
4429 (decode_objc): Likewise.
4430 Change `argptr' to const char * and rename `arg'.
4431 (destroy_linespec_result): Delete the linespec result's location
4432 instead of freeing the address string.
4433 * linespec.h (struct linespec_result) <addr_string>: Change to
4434 struct event_location and rename to ...
4435 <location>: ... this.
4436 (decode_line_1, decode_line_full): Change `argptr' to struct
4437 event_location. All callers updated.
4438 * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
4439 (mi_cmd_break_insert_1): Use locations instead of address strings.
4440 Throw an error if there was "garbage" at the end of the specified
4441 linespec.
4442 * probe.c: Include location.h.
4443 (parse_probes): Change `argptr' to struct event_location.
4444 Use event locations instead of address strings.
4445 * probe.h (parse_probes): Change `argptr' to struct event_location.
4446 * python/py-breakpoint.c: Include location.h.
4447 (bppy_get_location): Constify local variable `str'.
4448 Use event_location_to_string.
4449 (bppy_init): Use locations instead of address strings.
4450 * python/py-finishbreakpoint.c: Include location.h.
4451 (bpfinishpy_init): Remove local variable `addr_str'.
4452 Use locations instead of address strings.
4453 * python/python.c: Include location.h.
4454 (gdbpy_decode_line): Use locations instead of address strings.
4455 * remote.c: Include location.h.
4456 (remote_download_tracepoint): Use locations instead of address
4457 strings.
4458 * spu-tdep.c: Include location.h.
4459 (spu_catch_start): Remove local variable `buf'.
4460 Use locations instead of address strings.
4461 * tracepoint.c: Include location.h.
4462 (scope_info): Use locations instead of address strings.
4463 (encode_source_string): Constify parameter `src'.
4464 * tracepoint.h (encode_source_string): Likewise.
4465
4466 2015-08-11 Keith Seitz <keiths@redhat.com>
4467
4468 * Makefile.in (SFILES): Add location.c.
4469 (HFILES_NO_SRCDIR): Add location.h.
4470 (COMMON_OBS): Add location.o.
4471 * linespec.c (linespec_lex_to_end): New function.
4472 * linespec.h (linespec_lex_to_end): Declare.
4473 * location.c: New file.
4474 * location.h: New file.
4475
4476 2015-08-11 Keith Seitz <keiths@redhat.com>
4477
4478 * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
4479 Renamed to create_sals_from_location.
4480 <decode_linespec>: Renamed to decode_location.
4481 Update all callers.
4482 * breakpoint.c (create_sals_from_address_default): Renamed to ...
4483 (create_sals_from_location_default): ... this.
4484 (addr_string_to_sals): Renamed to ...
4485 (location_to_sals): ... this.
4486 (decode_linespec_default): Renamed to ...
4487 (decode_location_default): ... this.
4488 (base_breakpoint_create_sals_from_address): Renamed to ...
4489 (base_breakpoint_create_sals_from_location): ... this.
4490 (bkpt_create_sals_from_address): Renamed to ...
4491 (bkpt_create_sals_from_location): ... this.
4492 (bkpt_decode_linespec): Renamed to ...
4493 (bkpt_decode_location): ... this.
4494 (bkpt_probe_create_sals_from_address): Renamed to ...
4495 (bkpt_probe_create_sals_from_location): ... this.
4496 (tracepoint_create_sals_from_address): Renamed to ...
4497 (tracepoint_create_sals_from_location): ... this.
4498 (tracepoint_decode_linespec): Renamed to ...
4499 (tracepoint_decode_location): ... this.
4500 (tracepoint_probe_create_sals_from_address): Renamed to ...
4501 (tracepoint_probe_create_sals_from_location): ... this.
4502 (tracepoint_probe_decode_linespec): Renamed to ...
4503 (tracepoint_probe_decode_location): ... this.
4504 (strace_marker_create_sals_from_address): Renamed to ...
4505 (strace_marker_create_sals_from_location): ... this.
4506 (decode_linespec_default): Renamed to ...
4507 (decode_location_default): ... this.
4508
4509 2015-08-10 Doug Evans <dje@google.com>
4510 Keith Seitz <keiths@redhat.com>
4511
4512 PR gdb/17960
4513 * symtab.c (make_file_symbol_completion_list_1): Renamed from
4514 make_file_symbol_completion_list and made static.
4515 (make_file_symbol_completion_list): New function.
4516
4517 2015-08-10 Joel Brobecker <brobecker@adacore.com>
4518
4519 * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
4520 trailing new-line at end of warning message.
4521 (proceed): Add i18n marker to error messages.
4522
4523 2015-08-07 Pedro Alves <palves@redhat.com>
4524
4525 * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
4526
4527 2015-08-07 Pedro Alves <palves@redhat.com>
4528
4529 * s390-linux-tdep.c (is_non_branch_ril)
4530 (s390_displaced_step_copy_insn): New functions.
4531 (s390_displaced_step_fixup): Update comment.
4532 (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
4533 gdbarch_displaced_step_copy_insn hook.
4534
4535 2015-08-07 Pedro Alves <palves@redhat.com>
4536
4537 * infrun.c (displaced_step_prepare_throw): Return -1 if
4538 gdbarch_displaced_step_copy_insn returns NULL. Update intro
4539 comment.
4540 * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
4541 (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
4542 in file.
4543 (ppc_displaced_step_copy_insn): New function.
4544 (ppc_displaced_step_fixup): Update comment.
4545 (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
4546 gdbarch_displaced_step_copy_insn hook.
4547 * gdbarch.sh (displaced_step_copy_insn): Document what happens on
4548 NULL return.
4549 * gdbarch.h: Regenerate.
4550
4551 2015-08-07 Pedro Alves <palves@redhat.com>
4552
4553 * inferior.h (struct inferior) <displaced_stepping_failed>: New
4554 field.
4555 * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
4556 Return false if dispaced stepping failed before.
4557 (resume): Pass the current inferior to
4558 use_displaced_stepping_now_p. Wrap displaced_step_prepare in
4559 TRY/CATCH. If we get a MEMORY_ERROR, set the inferior's
4560 displaced_stepping_failed flag, and fall back to an in-line
4561 step-over.
4562
4563 2015-08-07 Pedro Alves <palves@redhat.com>
4564
4565 * darwin-nat.c (darwin_stop): Rename to ...
4566 (darwin_interrupt): ... this.
4567 (_initialize_darwin_inferior): Adjust.
4568 * gnu-nat.c (gnu_stop): Delete.
4569 (gnu_target): Don't install gnu_stop.
4570 * inf-ptrace.c (inf_ptrace_stop): Rename to ...
4571 (inf_ptrace_interrupt): ... this.
4572 (inf_ptrace_target): Adjust.
4573 * infcmd.c (interrupt_target_1): Use target_interrupt instead of
4574 target_stop.
4575 * linux-nat (linux_nat_stop): Rename to ...
4576 (linux_nat_interrupt): ... this.
4577 (linux_nat_stop): Reimplement.
4578 (linux_nat_add_target): Install linux_nat_interrupt.
4579 * nto-procfs.c (nto_interrupt_twice): Rename to ...
4580 (nto_handle_sigint_twice): ... this.
4581 (nto_interrupt): Rename to ...
4582 (nto_handle_sigint): ... this. Call target_interrupt instead of
4583 target_stop.
4584 (procfs_wait): Adjust.
4585 (procfs_stop): Rename to ...
4586 (procfs_interrupt): ... this.
4587 (init_procfs_targets): Adjust.
4588 * procfs.c (procfs_stop): Rename to ...
4589 (procfs_interrupt): ... this.
4590 (procfs_target): Adjust.
4591 * remote-m32r-sdi.c (m32r_stop): Rename to ...
4592 (m32r_interrupt): ... this.
4593 (init_m32r_ops): Adjust.
4594 * remote-sim.c (gdbsim_stop_inferior): Rename to ...
4595 (gdbsim_interrupt_inferior): ... this.
4596 (gdbsim_stop): Rename to ...
4597 (gdbsim_interrupt): ... this.
4598 (gdbsim_cntrl_c): Adjust.
4599 (init_gdbsim_ops): Adjust.
4600 * remote.c (sync_remote_interrupt): Adjust comments.
4601 (remote_stop_as): Rename to ...
4602 (remote_interrupt_as): ... this.
4603 (remote_stop): Adjust comment.
4604 (remote_interrupt): New function.
4605 (init_remote_ops): Install remote_interrupt.
4606 * target.c (target_interrupt): New function.
4607 * target.h (struct target_ops) <to_interrupt>: New field.
4608 (target_interrupt): New declaration.
4609 * windows-nat.c (windows_stop): Rename to ...
4610 (windows_interrupt): ... this.
4611 * target-delegates.c: Regenerate.
4612
4613 2015-08-07 Pedro Alves <palves@redhat.com>
4614
4615 * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
4616 threads" as alternative to "switching back to stepped thread".
4617
4618 2015-08-07 Pedro Alves <palves@redhat.com>
4619
4620 * NEWS: Mention "maint set/show target-non-stop".
4621 * breakpoint.c (update_global_location_list): Check
4622 target_is_non_stop_p instead of non_stop.
4623 * infcmd.c (attach_command_post_wait, attach_command): Likewise.
4624 * infrun.c (show_can_use_displaced_stepping)
4625 (can_use_displaced_stepping_p, start_step_over_inferior):
4626 Likewise.
4627 (internal_resume_ptid): New function.
4628 (resume): Use it.
4629 (proceed): Check target_is_non_stop_p instead of non_stop. If in
4630 all-stop mode but the target is always in non-stop mode, start all
4631 the other threads that are implicitly resumed too.
4632 (for_each_just_stopped_thread, fetch_inferior_event)
4633 (adjust_pc_after_break, stop_all_threads): Check
4634 target_is_non_stop_p instead of non_stop.
4635 (handle_inferior_event): Likewise. Handle detach-fork in all-stop
4636 with the target always in non-stop mode.
4637 (handle_signal_stop) <random signal>: Check target_is_non_stop_p
4638 instead of non_stop.
4639 (switch_back_to_stepped_thread): Check target_is_non_stop_p
4640 instead of non_stop.
4641 (keep_going_stepped_thread): Use internal_resume_ptid.
4642 (stop_waiting): If in all-stop mode, and the target is in non-stop
4643 mode, stop all threads.
4644 (keep_going_pass): Likewise, when starting a new in-line step-over
4645 sequence.
4646 * linux-nat.c (get_pending_status, select_event_lwp)
4647 (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
4648 target_is_non_stop_p instead of non_stop.
4649 (linux_nat_always_non_stop_p): New function.
4650 (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
4651 (linux_nat_add_target): Install linux_nat_always_non_stop_p.
4652 * target-delegates.c: Regenerate.
4653 * target.c (target_is_non_stop_p): New function.
4654 (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
4655 (maint_set_target_non_stop_command)
4656 (maint_show_target_non_stop_command): New functions.
4657 (_initilize_target): Install "maint set/show target-non-stop"
4658 commands.
4659 * target.h (struct target_ops) <to_always_non_stop_p>: New field.
4660 (target_non_stop_enabled): New declaration.
4661 (target_is_non_stop_p): New declaration.
4662
4663 2015-08-07 Pedro Alves <pedro@codesourcery.com>
4664
4665 * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
4666 has a pending status, return true.
4667 * gdbthread.h: Include target/waitstatus.h.
4668 (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
4669 stop_pc>: New fields.
4670 (struct thread_info) <resumed>: New field.
4671 (set_resumed): Declare.
4672 * infrun.c: Include "event-loop.h".
4673 (infrun_async_inferior_event_token, infrun_is_async): New globals.
4674 (infrun_async): New function.
4675 (clear_step_over_info): Add debug output.
4676 (displaced_step_in_progress_any_inferior): New function.
4677 (displaced_step_fixup): New returns int.
4678 (start_step_over): Handle in-line step-overs too. Assert the
4679 thread is marked resumed.
4680 (resume_cleanups): Clear the thread's resumed flag.
4681 (resume): Set the thread's resumed flag. Return early if the
4682 thread has a pending status. Allow stepping a breakpoint with no
4683 signal.
4684 (proceed): Adjust to check 'resumed' instead of 'executing'.
4685 (clear_proceed_status_thread): If the thread has a pending status,
4686 and that status is a finished step, discard the pending status.
4687 (clear_proceed_status): Don't clear step_over_info here.
4688 (random_pending_event_thread, do_target_wait): New functions.
4689 (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
4690 do_target_wait.
4691 (wait_one): New function.
4692 (THREAD_STOPPED_BY): New macro.
4693 (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
4694 (thread_stopped_by_hw_breakpoint): New functions.
4695 (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
4696 functions.
4697 (handle_inferior_event): Also call set_resumed(false) on all
4698 threads implicitly stopped by the event.
4699 (restart_threads, resumed_thread_with_pending_status): New
4700 functions.
4701 (finish_step_over): If we were doing an in-line step-over before,
4702 and no longer are after trying to start a new step-over, restart
4703 all threads. If we have multiple threads with pending events,
4704 save the current event and go through the event loop again.
4705 (handle_signal_stop): Return early if finish_step_over returns
4706 false.
4707 <random signal>: If we get a signal while stepping over a
4708 breakpoint in-line in non-stop mode, restart all threads. Clear
4709 step_over_info before delivering the signal.
4710 (keep_going_stepped_thread): Use internal_error instead of
4711 gdb_assert. Mark the thread as resumed.
4712 (keep_going_pass_signal): Assert the thread isn't already resumed.
4713 If some other thread is doing an in-line step-over, defer the
4714 resume. If we just started a new in-line step-over, stop all
4715 threads. Don't clear step_over_info.
4716 (infrun_async_inferior_event_handler): New function.
4717 (_initialize_infrun): Create async event handler with
4718 infrun_async_inferior_event_handler as callback.
4719 (infrun_async): New declaration.
4720 * target.c (target_async): New function.
4721 * target.h (target_async): Declare macro and readd as function
4722 declaration.
4723 * target/waitstatus.h (enum target_stop_reason)
4724 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
4725 * thread.c (new_thread): Clear the new waitstatus field.
4726 (set_resumed): New function.
4727
4728 2015-08-07 Pedro Alves <palves@redhat.com>
4729
4730 * infrun.c (keep_going_stepped_thread): New function, factored out
4731 from ...
4732 (switch_back_to_stepped_thread): ... here.
4733
4734 2015-08-07 Pedro Alves <palves@redhat.com>
4735
4736 * infrun.c (currently_stepping): Extend intro comment.
4737 * target.h (target_resume): Extend intro comment.
4738
4739 2015-08-07 Pedro Alves <palves@redhat.com>
4740
4741 * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
4742 of inferior_ptid. If the stepped thread vanished, return 0
4743 instead of resuming here. Use reset_ecs. Print the prev_pc and
4744 the current stop_pc in log message. Clear trap_expected if the
4745 thread advanced. Don't pass currently_stepping to
4746 do_target_resume.
4747
4748 2015-08-07 Pedro Alves <palves@redhat.com>
4749
4750 * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
4751 * infrun.c (struct execution_control_state): Move higher up in the
4752 file.
4753 (reset_ecs): New function.
4754 (start_step_over): Now returns int. Rewrite to use
4755 keep_going_pass_signal instead of manually starting a displaced step.
4756 (resume): Don't call set_running here. If displaced stepping
4757 can't start now, clear trap_expected.
4758 (find_thread_needs_step_over): Delete function.
4759 (proceed): Set up finish_thread_state_cleanup. Call set_running.
4760 If the current thread needs a step over, push it in the step-over
4761 chain. Don't set insert breakpoints nor call resume directly
4762 here. Instead rewrite to use start_step_over and
4763 keep_going_pass_signal.
4764 (finish_step_over): New function.
4765 (handle_signal_stop): Call finish_step_over instead of
4766 start_step_over.
4767 (switch_back_to_stepped_thread): If the event thread needs another
4768 step-over do that first. Use start_step_over.
4769 (keep_going_pass_signal): New function, factored out from ...
4770 (keep_going): ... here.
4771 (_initialize_infrun): Comment moved here.
4772 * thread.c (set_running_thread): New function.
4773 (set_running, finish_thread_state): Use set_running_thread.
4774
4775 2015-08-07 Pedro Alves <palves@redhat.com>
4776
4777 * gdbthread.h (struct thread_info) <step_over_prev,
4778 step_over_next>: New fields.
4779 (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
4780 (thread_step_over_chain_next, thread_is_in_step_over_chain): New
4781 declarations.
4782 * infrun.c (struct displaced_step_request): Delete.
4783 (struct displaced_step_inferior_state) <step_request_queue>:
4784 Delete field.
4785 (displaced_step_prepare): Assert that trap_expected is set. Use
4786 thread_step_over_chain_enqueue. Split starting a new displaced
4787 step to ...
4788 (start_step_over): ... this new function.
4789 (resume): Assert the thread isn't waiting for a step over already.
4790 (proceed): Assert the thread isn't waiting for a step over
4791 already.
4792 (infrun_thread_stop_requested): Adjust to remove threads from the
4793 embedded step-over chain.
4794 (handle_inferior_event) <fork/vfork>: Call start_step_over after
4795 displaced_step_fixup.
4796 (handle_signal_stop): Call start_step_over after
4797 displaced_step_fixup.
4798 * infrun.h (step_over_queue_head): New declaration.
4799 * thread.c (step_over_chain_enqueue, step_over_chain_remove)
4800 (thread_step_over_chain_next, thread_is_in_step_over_chain)
4801 (thread_step_over_chain_enqueue)
4802 (thread_step_over_chain_remove): New functions.
4803 (delete_thread_1): Remove thread from the step-over chain.
4804
4805 2015-08-07 Pedro Alves <palves@redhat.com>
4806
4807 * infrun.c (thread_still_needs_step_over): Rename to ...
4808 (thread_still_needs_step_over_bp): ... this.
4809 (enum step_over_what): New.
4810 (thread_still_needs_step_over): Reimplement.
4811
4812 2015-08-07 Pedro Alves <palves@redhat.com>
4813
4814 * remote.c (remote_wait_as): If not waiting for a stop reply,
4815 return TARGET_WAITKIND_NO_RESUMED. If TARGET_WNOHANG is
4816 requested, don't block waiting forever.
4817
4818 2015-08-07 Pedro Alves <pedro@codesourcery.com>
4819
4820 * infrun.c (adjust_pc_after_break): Now takes thread_info and
4821 waitstatus pointers instead of an ecs. Adjust.
4822 (handle_inferior_event): Adjust caller.
4823
4824 2015-08-07 Pedro Alves <palves@redhat.com>
4825
4826 * infrun.c (handle_inferior_event): If we get
4827 TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
4828 mode, mark all threads of the exiting process as not-executing.
4829 (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
4830 TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
4831 exiting process, if inferior_ptid still points at a process.
4832 * thread.c (struct current_thread_cleanup) <next>: New field.
4833 (current_thread_cleanup_chain): New global.
4834 (restore_current_thread_ptid_changed): New function.
4835 (restore_current_thread_cleanup_dtor): Remove the cleanup from the
4836 current_thread_cleanup_chain list.
4837 (make_cleanup_restore_current_thread): Add the cleanup data to the
4838 current_thread_cleanup_chain list.
4839 (_initialize_thread): Install restore_current_thread_ptid_changed
4840 as thread_ptid_changed observer.
4841
4842 2015-08-07 Joel Brobecker <brobecker@adacore.com>
4843
4844 * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
4845 data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
4846 smaller than expected.
4847
4848 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
4849
4850 * stack.c (get_frame_language): Moved ...
4851 * frame.c (get_frame_language): ... to here.
4852 * language.h (get_frame_language): Declaration moved to frame.h.
4853 * frame.h: Add language.h include, for language enum.
4854 (get_frame_language): Declaration moved from language.h.
4855 * language.c: Add frame.h include.
4856 * top.c: Add frame.h include.
4857 * symtab.h (struct obj_section): Declare.
4858 (struct cmd_list_element): Declare.
4859
4860 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
4861
4862 * language.c (show_language_command): Find selected frame before
4863 asking for the language of that frame.
4864 (set_language_command): Likewise.
4865 * language.h (get_frame_language): Add frame parameter.
4866 * stack.c (get_frame_language): Add frame parameter, assert
4867 parameter is not NULL, update comment and reindent.
4868 * top.c (check_frame_language_change): Pass the selected frame
4869 into get_frame_language.
4870
4871 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
4872
4873 * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
4874 (pt_btrace_insn_flags): New.
4875 (ftrace_add_pt): Call pt_btrace_insn_flags.
4876 * btrace.h (btrace_insn_flag): New.
4877 (btrace_insn) <flags>: New.
4878 * record-btrace.c (btrace_insn_history): Print insn prefix.
4879 * NEWS: Announce it.
4880
4881 2015-08-07 Markus Metzger <markus.t.metzger@intel.com>
4882
4883 * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
4884 * configure: Regenerate.
4885
4886 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
4887
4888 * Makefile.in (LIBICONV): Define.
4889 (CLIBS): Add LIBICONV.
4890 * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
4891 * configure: Regenerate.
4892
4893 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
4894 Pedro Alves <palves@redhat.com>
4895
4896 * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
4897 (arm_set_abi): Likewise.
4898 * ax-general.c (ax_print): Likewise.
4899 * c-exp.y (exp : string_exp): Likewise.
4900 * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
4901 (do_compile_dwarf_expr_to_c): Likewise.
4902 * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
4903 Likewise.
4904 * dwarf2expr.c (execute_stack_op): Likewise.
4905 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
4906 (disassemble_dwarf_expression): Likewise.
4907 * dwarf2read.c (dwarf2_add_member_fn): Likewise.
4908 (read_array_order): Likewise.
4909 (abbrev_table_read_table): Likewise.
4910 (read_attribute_value): Likewise.
4911 (skip_unknown_opcode): Likewise.
4912 (dwarf_decode_macro_bytes): Likewise.
4913 (dwarf_decode_macros): Likewise.
4914 * eval.c (value_f90_subarray): Likewise.
4915 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
4916 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
4917 * infrun.c (handle_command): Likewise.
4918 * memory-map.c (memory_map_start_memory): Likewise.
4919 * osabi.c (set_osabi): Likewise.
4920 * parse.c (operator_length_standard): Likewise.
4921 * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
4922 single return point.
4923 * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
4924 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
4925 (gdbpy_lookup_global_symbol): Likewise.
4926 * record-full.c (record_full_restore): Likewise.
4927 * regcache.c (regcache_register_status): Likewise.
4928 (regcache_raw_read): Likewise.
4929 (regcache_cooked_read): Likewise.
4930 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
4931 * symtab.c (initialize_ordinary_address_classes): Likewise.
4932 * target-debug.h (target_debug_print_signals): Likewise.
4933 * utils.c (do_restore_current_language): Likewise.
4934
4935 2015-08-06 Clem Dickey <clemd@acm.org>
4936
4937 PR python/17136
4938 * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
4939
4940 2015-08-06 Simon Marchi <simon.marchi@ericsson.com>
4941
4942 * complaints.c (enum complaint_series): Add newlines and remove
4943 out of date comment.
4944 (struct complaints) <series>: Change type to enum
4945 complaint_series and remove out of date comment.
4946 (symfile_complaint_hook): Use equivalent enum value
4947 ISOLATED_MESSAGE instead of 0.
4948
4949 2015-08-06 Pedro Alves <palves@redhat.com>
4950
4951 * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
4952 returned > 0.
4953
4954 2015-08-06 Pierre Langlois <pierre.langlois@arm.com>
4955
4956 * common/agent.c (symbol_list) <required>: Remove.
4957
4958 2015-08-06 Pedro Alves <palves@redhat.com>
4959
4960 * target/waitstatus.h (enum target_stop_reason)
4961 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
4962
4963 2015-08-05 Pedro Alves <palves@redhat.com>
4964 Joel Brobecker <brobecker@adacore.com>
4965
4966 * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
4967 <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
4968 case where BS->STOP is not set.
4969
4970 2015-08-05 Ulrich Weigand <uweigand@de.ibm.com>
4971
4972 * nat/gdb_thread_db.h: Add copyright header.
4973 Protect against multiple inclusion.
4974
4975 2015-08-05 Yao Qi <yao.qi@linaro.org>
4976
4977 * aarch64-linux-nat.c (get_thread_id): Remove.
4978 (debug_reg_change_callback): Call ptid_get_lwp instead of
4979 get_thread_id.
4980 (fetch_gregs_from_thread): Likewise.
4981 (store_gregs_to_thread): Likewise.
4982 (fetch_fpregs_from_thread): Likewise.
4983 (store_fpregs_to_thread): Likewise.
4984 (aarch64_linux_get_debug_reg_capacity): Likewise.
4985 * arm-linux-nat.c (get_thread_id): Remove.
4986 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
4987 * xtensa-linux-nat.c (get_thread_id): Remove.
4988 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
4989 * arm-linux-nat.c (get_thread_id): Remove.
4990 (GET_THREAD_ID): Remove.
4991 (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
4992 (store_fpregs, fetch_regs, store_regs): Likewise.
4993 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
4994 (fetch_vfp_regs, store_vfp_regs): Likewise.
4995 (arm_linux_read_description): Likewise.
4996 (arm_linux_get_hwbp_cap): Likewise.
4997 * xtensa-linux-nat.c (get_thread_id): Remove.
4998 (GET_THREAD_ID): Remove.
4999 (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
5000 GET_THREAD_ID.
5001
5002 2015-08-04 Ciro Santilli <ciro.santilli@gmail.com> (obvious patch)
5003
5004 * python/py-linetable.c: Fix case of Linetable to LineTable
5005 in docstrings and code comments.
5006 * python/py-symtab.c: Same.
5007
5008 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5009
5010 * infcmd.c (signal_command): Call do_cleanups for args_chain.
5011
5012 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5013
5014 PR gdb/18767
5015 * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
5016 use.
5017
5018 2015-08-04 Pedro Alves <palves@redhat.com>
5019
5020 * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
5021 (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
5022 (td_ta_event_addr_ftype, td_ta_set_event_ftype)
5023 (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
5024 (td_thr_validate_ftype, td_thr_get_info_ftype)
5025 (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
5026 (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
5027 New typedefs.
5028 * linux-thread-db.c (struct thread_db_info): Use new typedefs.
5029 (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
5030 local macros and use them instead of verbose_dlsym and dlsym
5031 calls.
5032
5033 2015-08-03 Sandra Loosemore <sandra@codesourcery.com>
5034
5035 * nios2-tdep.h: Include opcode/nios2.h here.
5036 (NIOS2_CDX_OPCODE_SIZE): New.
5037 (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
5038 * nios2-tdep.c: Don't include opcode/nios2.h here.
5039 (nios2_fetch_insn): For R2, try reading 2-byte instruction if
5040 4-byte read fails.
5041 (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
5042 (nios2_match_addi, nios2_match_orhi): Likewise.
5043 (nios2_match_stw, nios2_match_ldw): Likewise.
5044 (nios2_match_rdctl): Likewise.
5045 (nios2_match_stwm, nios2_match_ldwm): New.
5046 (nios2_match_branch): Add cases for R2 encodings.
5047 (nios2_match_jmpi, nios2_match_calli): Likewise.
5048 (nios2_match_jmpr, nios2_match_callr): Likewise.
5049 (nios2_match_break, nios2_match_trap): Likewise.
5050 (nios2_in_epilogue_p): Add R2 support.
5051 (nios2_analyze_prologue): Update comments. Recognize R2 CDX
5052 prologues.
5053 (nios2_breakpoint_from_pc): Handle R2 instructions.
5054 (nios2_get_next_pc): Likewise. Adjust call to
5055 tdep->syscall_next_pc.
5056 * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
5057 Renamed from nios2_linux_rt_sigreturn_tramp_frame. Use
5058 instruction field macros instead of literal hex values.
5059 (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
5060 (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
5061 Use size field from OP instead of assuming all instructions
5062 are the same size.
5063 (nios2_linux_init_abi): Register appropriate unwinder for mach.
5064
5065 2015-08-03 Ulrich Weigand <uweigand@de.ibm.com>
5066
5067 * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
5068 variable warning with some compilers.
5069
5070 2015-08-03 Yao Qi <yao.qi@linaro.org>
5071
5072 * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
5073 in comment. Replace "rw" with "type".
5074 (arm_linux_remove_watchpoint): Change type of "rw" to
5075 "enum target_hw_bp_type".
5076
5077 2015-08-02 Pierre-Marie de Rodat <derodat@adacore.com>
5078
5079 * alpha-mdebug-tdep.c (find_proc_desc): Update call to
5080 lookup_symbol.
5081 * ft32-tdep.c (ft32_skip_prologue): Likewise.
5082 * moxie-tdep.c (moxie_skip_prologue): Likewise.
5083 * mt-tdep.c (mt_skip_prologue): Likewise.
5084 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
5085
5086 2015-08-01 Pierre-Marie de Rodat <derodat@adacore.com>
5087
5088 * ada-exp.y (write_object_renaming): Replace struct
5089 ada_symbol_info with struct block_symbol. Update field
5090 references accordingly.
5091 (block_lookup, select_possible_type_sym): Likewise.
5092 (find_primitive_type): Likewise. Also update call to
5093 ada_lookup_symbol to extract the symbol itself.
5094 (write_var_or_type, write_name_assoc): Likewise.
5095 * ada-lang.h (struct ada_symbol_info): Remove.
5096 (ada_lookup_symbol_list): Replace struct ada_symbol_info with
5097 struct block_symbol.
5098 (ada_lookup_encoded_symbol, user_select_syms): Likewise.
5099 (ada_lookup_symbol): Return struct block_symbol instead of a
5100 mere symbol.
5101 * ada-lang.c (defns_collected): Replace struct ada_symbol_info
5102 with struct block_symbol.
5103 (resolve_subexp, ada_resolve_function, sort_choices,
5104 user_select_syms, is_nonfunction, add_defn_to_vec,
5105 num_defns_collected, defns_collected,
5106 symbols_are_identical_enums, remove_extra_symbols,
5107 remove_irrelevant_renamings, add_lookup_symbol_list_worker,
5108 ada_lookup_symbol_list, ada_iterate_over_symbols,
5109 ada_lookup_encoded_symbol, get_var_value): Likewise.
5110 (ada_lookup_symbol): Return a block_symbol instead of a mere
5111 symbol. Replace struct ada_symbol_info with struct
5112 block_symbol.
5113 (ada_lookup_symbol_nonlocal): Likewise.
5114 (standard_lookup): Make block passing explicit through
5115 lookup_symbol_in_language.
5116 * ada-tasks.c (get_tcb_types_info): Update the calls to
5117 lookup_symbol_in_language to extract the mere symbol out of the
5118 returned value.
5119 (ada_tasks_inferior_data_sniffer): Likewise.
5120 * ax-gdb.c (gen_static_field): Likewise for the call to
5121 lookup_symbol.
5122 (gen_maybe_namespace_elt): Deal with struct block_symbol from
5123 lookup functions.
5124 (gen_expr): Likewise.
5125 * c-exp.y: Likewise. Remove uses of block_found.
5126 (lex_one_token, classify_inner_name, c_print_token): Likewise.
5127 (classify_name): Likewise. Rename the "sym" local variable to
5128 "bsym".
5129 * c-valprint.c (print_unpacked_pointer): Likewise.
5130 * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
5131 "sym" parameter from struct symbol * to struct block_symbol.
5132 Use it to remove uses of block_found. Deal with struct
5133 block_symbol from lookup functions.
5134 (gcc_convert_symbol): Likewise. Update the call to
5135 convert_symbol_sym.
5136 * compile/compile-object-load.c (compile_object_load): Deal with
5137 struct block_symbol from lookup functions.
5138 * cp-namespace.c (cp_lookup_nested_symbol_1,
5139 cp_lookup_nested_symbol, cp_lookup_bare_symbol,
5140 cp_search_static_and_baseclasses,
5141 cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
5142 cp_lookup_symbol_imports_or_template,
5143 cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
5144 lookup_namespace_scope, cp_lookup_nonlocal,
5145 find_symbol_in_baseclass): Return struct block_symbol instead of
5146 mere symbols and deal with struct block_symbol from lookup
5147 functions.
5148 * cp-support.c (inspect_type, replace_typedefs,
5149 cp_lookup_rtti_type): Deal with struct block_symbol from
5150 lookup functions.
5151 * cp-support.h (cp_lookup_symbol_nonlocal,
5152 cp_lookup_symbol_from_namespace,
5153 cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
5154 Return struct block_symbol instead of mere symbols.
5155 * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
5156 push_module_name):
5157 Deal with struct block_symbol from lookup functions. Remove
5158 uses of block_found.
5159 * eval.c (evaluate_subexp_standard): Update call to
5160 cp_lookup_symbol_namespace.
5161 * f-exp.y: Deal with struct block_symbol from lookup functions.
5162 Remove uses of block_found.
5163 (yylex): Likewise.
5164 * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
5165 lookup_enum, lookup_template_type, check_typedef): Deal with
5166 struct block_symbol from lookup functions.
5167 * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
5168 * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
5169 (gdbscm_lookup_global_symbol): Likewise.
5170 * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
5171 * go-exp.y: Likewise. Remove uses of block_found.
5172 (package_name_p, classify_packaged_name, classify_name):
5173 Likewise.
5174 * infrun.c (insert_exception_resume_breakpoint): Likewise.
5175 * jv-exp.y (push_variable): Likewise.
5176 * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
5177 * language.c (language_bool_type): Likewise.
5178 * language.h (struct language_defn): Update
5179 la_lookup_symbol_nonlocal to return a struct block_symbol rather
5180 than a mere symbol.
5181 * linespec.c (find_label_symbols): Deal with struct block_symbol
5182 from lookup functions.
5183 * m2-exp.y: Likewise. Remove uses of block_found.
5184 (yylex): Likewise.
5185 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
5186 * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
5187 * p-exp.y: Likewise. Remove uses of block_found.
5188 (yylex): Likewise.
5189 * p-valprint.c (pascal_val_print): Likewise.
5190 * parse.c (write_dollar_variable): Likewise. Remove uses of
5191 block_found.
5192 * parser-defs.h (struct symtoken): Turn the SYM field into a
5193 struct block_symbol.
5194 * printcmd.c (address_info): Deal with struct block_symbol from
5195 lookup functions.
5196 * python/py-frame.c (frapy_read_var): Likewise.
5197 * python/py-symbol.c (gdbpy_lookup_symbol,
5198 gdbpy_lookup_global_symbol): Likewise.
5199 * skip.c (skip_function_command): Likewise.
5200 * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
5201 block_symbol instead of a mere symbol.
5202 * solib-spu.c (spu_lookup_lib_symbol): Likewise.
5203 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
5204 * solib.c (solib_global_lookup): Likewise.
5205 * solist.h (solib_global_lookup): Likewise.
5206 (struct target_so_ops): Update lookup_lib_global_symbol to
5207 return a struct block_symbol rather than a mere symbol.
5208 * source.c (select_source_symtab): Deal with struct block_symbol
5209 from lookup functions.
5210 * stack.c (print_frame_args, iterate_over_block_arg_vars):
5211 Likewise.
5212 * symfile.c (set_initial_language): Likewise.
5213 * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
5214 block_symbol.
5215 (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
5216 (struct symbol_cache_slot): Turn the FOUND field into a struct
5217 block_symbol.
5218 (block_found): Remove.
5219 (eq_symbol_entry): Update to deal with struct block_symbol in
5220 cache slots.
5221 (symbol_cache_lookup): Return a struct block_symbol rather than
5222 a mere symbol.
5223 (symbol_cache_mark_found): Add a BLOCK parameter to fill
5224 appropriately the cache slots. Update callers.
5225 (symbol_cache_dump): Update cache slots handling to the type
5226 change.
5227 (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
5228 lookup_symbol_aux, lookup_local_symbol,
5229 lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
5230 lookup_symbol_in_objfile_symtabs,
5231 lookup_symbol_in_objfile_from_linkage_name,
5232 lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
5233 lookup_symbol_in_static_block, lookup_static_symbol,
5234 lookup_global_symbol):
5235 Return a struct block_symbol rather than a mere symbol. Deal
5236 with struct block_symbol from other lookup functions. Remove
5237 uses of block_found.
5238 (lookup_symbol_in_block): Remove uses of block_found.
5239 (struct global_sym_lookup_data): Turn the RESULT field into a
5240 struct block_symbol.
5241 (lookup_symbol_global_iterator_cb): Update references to the
5242 RESULT field.
5243 (search_symbols): Deal with struct block_symbol from lookup
5244 functions.
5245 * symtab.h (struct block_symbol): New structure.
5246 (block_found): Remove.
5247 (lookup_symbol_in_language, lookup_symbol,
5248 basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
5249 lookup_static_symbol, lookup_global_symbol, lookup_language_this,
5250 lookup_global_symbol_from_objfile): Return a struct block_symbol
5251 rather than just a mere symbol. Update comments to remove
5252 mentions of block_found.
5253 * valops.c (find_function_in_inferior,
5254 value_struct_elt_for_reference, value_maybe_namespace_elt,
5255 value_of_this): Deal with struct block_symbol from lookup
5256 functions.
5257 * value.c (value_static_field, value_fn_field): Likewise.
5258
5259 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5260
5261 * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
5262 instead of integer.
5263
5264 2015-07-31 Simon Marchi <simon.marchi@ericsson.com>
5265 Pedro Alves <palves@redhat.com>
5266
5267 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
5268 type or value instead of integer.
5269 (aarch64_linux_insert_watchpoint): Likewise.
5270 (aarch64_linux_remove_watchpoint): Likewise.
5271 * ada-lang.c (ada_op_print_tab): Likewise.
5272 * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
5273 (amd64_linux_syscall_record_common): Likewise.
5274 * arch-utils.c (target_byte_order_user): Likewise.
5275 (default_byte_order): Likewise.
5276 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
5277 (arm_linux_get_hwbp_type): Likewise.
5278 (arm_linux_hw_watchpoint_initialize): Likewise.
5279 (arm_linux_insert_watchpoint): Likewise.
5280 * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
5281 (arm_linux_syscall_record): Likewise.
5282 * breakpoint.c (update_watchpoint): Likewise.
5283 (breakpoint_here_p): Likewise.
5284 (bpstat_print): Likewise.
5285 (enable_breakpoint_disp): Likewise.
5286 * c-lang.c (c_op_print_tab): Likewise.
5287 * cli/cli-decode.c (add_info_alias): Likewise.
5288 * d-lang.c (d_op_print_tab): Likewise.
5289 * eval.c (evaluate_subexp_standard): Likewise.
5290 * f-exp.y (dot_ops): Likewise.
5291 (f77_keywords): Likewise.
5292 * f-lang.c (f_op_print_tab): Likewise.
5293 * go-lang.c (go_op_print_tab): Likewise.
5294 * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
5295 * guile/scm-cmd.c (gdbscm_make_command): Likewise.
5296 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5297 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
5298 * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
5299 (struct scm_from_stringn_data): Likewise.
5300 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5301 * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
5302 (ia64_linux_remove_watchpoint): Likewise.
5303 (ia64_linux_can_use_hw_breakpoint): Likewise.
5304 * infrun.c (print_stop_event): Likewise.
5305 * jv-lang.c (java_op_print_tab): Likewise.
5306 * linux-nat.c (linux_proc_xfer_partial): Likewise.
5307 * linux-nat.h (struct lwp_info): Likewise.
5308 * linux-thread-db.c (enable_thread_event): Likewise.
5309 * m2-lang.c (m2_op_print_tab): Likewise.
5310 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
5311 (mi_cmd_stack_list_variables): Likewise.
5312 * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
5313 * mi/mi-out.c (mi_table_begin): Likewise.
5314 (mi_table_header): Likewise.
5315 * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
5316 (mips_linux_insert_watchpoint): Likewise.
5317 (mips_linux_remove_watchpoint): Likewise.
5318 * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
5319 * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
5320 (mips_linux_watch_type_to_irw): Likewise.
5321 * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5322 (procfs_insert_hw_watchpoint): Likewise.
5323 (procfs_remove_hw_watchpoint): Likewise.
5324 (procfs_hw_watchpoint): Likewise.
5325 (procfs_can_use_hw_breakpoint): Likewise.
5326 (procfs_remove_hw_watchpoint): Likewise.
5327 (procfs_insert_hw_watchpoint): Likewise.
5328 * p-lang.c (pascal_op_print_tab): Likewise.
5329 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
5330 * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
5331 * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
5332 * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5333 (procfs_insert_watchpoint): Likewise.
5334 (procfs_remove_watchpoint): Likewise.
5335 * psymtab.c (recursively_search_psymtabs): Likewise.
5336 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
5337 (m32r_insert_watchpoint): Likewise.
5338 * remote-mips.c (mips_can_use_watchpoint): Likewise.
5339 (mips_insert_watchpoint): Likewise.
5340 (mips_remove_watchpoint): Likewise.
5341 * remote.c (watchpoint_to_Z_packet): Likewise.
5342 (remote_insert_watchpoint): Likewise.
5343 (remote_remove_watchpoint): Likewise.
5344 (remote_check_watch_resources): Likewise.
5345 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
5346 (s390_remove_watchpoint): Likewise.
5347 (s390_can_use_hw_breakpoint): Likewise.
5348 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
5349 * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
5350 * target.h (struct target_ops): Likewise.
5351 * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
5352 * ui-out.c (struct ui_out_hdr): Likewise.
5353 (append_header_to_list): Likewise.
5354 (get_next_header): Likewise.
5355 (verify_field): Likewise.
5356 (ui_out_begin): Likewise.
5357 (ui_out_field_int): Likewise.
5358 (ui_out_field_fmt_int): Likewise.
5359 (ui_out_field_skip): Likewise.
5360 (ui_out_field_string): Likewise.
5361 (ui_out_field_fmt): Likewise.
5362 * varobj.c (new_variable): Likewise.
5363 * x86-nat.c (x86_insert_watchpoint): Likewise.
5364 (x86_remove_watchpoint): Likewise.
5365 (x86_can_use_hw_breakpoint): Likewise.
5366 * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
5367 * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
5368 previously anonymous enumeration type..
5369 * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
5370 value.
5371 * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
5372 (target_debug_print_enum_bptype): New.
5373 * target-delegates.c: Regenerate.
5374
5375 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5376
5377 * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
5378 already says and disallow non-stack memory writes in the prologue.
5379
5380 2015-07-30 Sandra Loosemore <sandra@codesourcery.com>
5381
5382 * nios2-tdep.c (nios2_analyze_prologue): Update comments to
5383 reflect how current GCC emits stack overflow checks. Match
5384 both trap and break instructions for backward compatbility.
5385 Disallow other trap and break instructions in the prologue.
5386
5387 2015-07-30 Pedro Alves <palves@redhat.com>
5388
5389 PR threads/18600
5390 * linux-nat.c (wait_lwp): Report to the core when thread group
5391 leader exits.
5392
5393 2015-07-30 Pedro Alves <palves@redhat.com>
5394 Simon Marchi <simon.marchi@ericsson.com>
5395
5396 PR threads/18600
5397 * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
5398 mark the new thread as resumed. Remove STOPPING parameter.
5399 (wait_lwp): Adjust call to linux_handle_extended_wait.
5400 (linux_nat_filter_event): Adjust call to
5401 linux_handle_extended_wait.
5402 (resume_stopped_resumed_lwps): Add debug output.
5403
5404 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5405
5406 * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
5407 isize argument.
5408 * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
5409 * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
5410 gdbarch_fast_tracepoint_valid_at.
5411 * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
5412 * gdbarch.h: Regenerate.
5413 * gdbarch.c: Regenerate.
5414 * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
5415 argument. Do not set it.
5416 * remote.c (remote_download_tracepoint): Adjust call to
5417 gdbarch_fast_tracepoint_valid_at. Call gdb_insn_length to get
5418 the instruction length.
5419
5420 2015-07-30 Yao Qi <yao.qi@linaro.org>
5421
5422 * arm-tdep.h (enum gdb_regnum): Move it to ...
5423 * arch/arm.h: ... here. New file.
5424 * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
5425
5426 2015-07-30 Pierre Langlois <pierre.langlois@arm.com>
5427
5428 * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
5429 Change its type to int *.
5430 (decode_br): Rename link argument to is_blr. Change its type to
5431 int *.
5432 (decode_cb): Rename op argument to is_cbnz. Change its type to
5433 int *.
5434 (decode_tb): Rename op argument to is_tbnz. Change its type to
5435 int *. Set is_tbnz to either 1 or 0.
5436 (aarch64_analyze_prologue): Change type of is_link to int. Add
5437 new variables is_cbnz and is_tbnz. Adjust call to
5438 aarch64_decode_cb and aarch64_decode_tb.
5439
5440 2015-07-29 Simon Marchi <simon.marchi@ericsson.com>
5441
5442 * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
5443 parameter.
5444 (mips_linux_new_thread): Likewise.
5445 * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
5446
5447 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5448
5449 * top.c: Include "tui/tui.h".
5450 (undo_terminal_modifications_before_exit): New static function.
5451 (quit_force): Use it.
5452
5453 2015-07-29 Patrick Palka <patrick@parcs.ath.cx>
5454
5455 * target.c (terminal_state): Initialize to terminal_is_ours.
5456
5457 2015-07-29 Yao Qi <yao.qi@linaro.org>
5458
5459 PR record/18691
5460 * dcache.c (dcache_read_memory_partial): Call
5461 raw_memory_xfer_partial.
5462 * target.c (raw_memory_xfer_partial): Make it non-static.
5463 * target.h (raw_memory_xfer_partial): Declare.
5464
5465 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5466
5467 * c-valprint.c (c_val_print_array): Consider addressable memory
5468 unit size.
5469 (c_val_print_ptr): Likewise.
5470 (c_val_print_int): Likewise.
5471 * findvar.c (read_frame_register_value): Likewise.
5472 * valarith.c (find_size_for_pointer_math): Likewise.
5473 (value_ptrdiff): Likewise.
5474 (value_subscripted_rvalue): Likewise.
5475 * valops.c (read_value_memory): Likewise (and rename variables).
5476 (value_assign): Likewise.
5477 (value_repeat): Likewise.
5478 (value_array): Likewise.
5479 (value_slice): Likewise.
5480 * valprint.c (generic_val_print_ptr): Likewise.
5481 (generic_val_print_enum): Likewise.
5482 (generic_val_print_bool): Likewise.
5483 (generic_val_print_int): Likewise.
5484 (generic_val_print_char): Likewise.
5485 (generic_val_print_float): Likewise.
5486 (generic_val_print_decfloat): Likewise.
5487 (generic_val_print_complex): Likewise.
5488 (val_print_scalar_formatted): Likewise.
5489 (val_print_array_elements): Likewise.
5490 * value.c (set_value_parent): Likewise.
5491 (value_contents_copy_raw): Likewise.
5492 (set_internalvar_component): Likewise.
5493 (value_primitive_field): Likewise.
5494 (value_fetch_lazy): Likewise.
5495 * value.h (read_value_memory): Update comment.
5496
5497 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5498
5499 * value.c (get_value_arch): New function.
5500 * value.h (get_value_arch): New declaration.
5501
5502 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5503
5504 * value.c (struct value): Update comments.
5505
5506 2015-07-28 Simon Marchi <simon.marchi@ericsson.com>
5507
5508 * gdbtypes.c (type_length_units): New function.
5509 * gdbtypes.h (type_length_units): New declaration.
5510 (struct type) <length>: Update comment.
5511
5512 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5513
5514 * valprint.c (generic_val_print): Factor out complex
5515 printing code to ...
5516 (generic_val_print_complex): ... this new function.
5517
5518 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5519
5520 * valprint.c (generic_val_print): Factor out decfloat
5521 printing code to ...
5522 (generic_val_print_decfloat): ... this new function.
5523
5524 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5525
5526 * valprint.c (generic_val_print): Factor out float
5527 printing code to ...
5528 (generic_val_print_float): ... this new function.
5529
5530 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5531
5532 * valprint.c (generic_val_print): Factor out char
5533 printing code to ...
5534 (generic_val_print_char): ... this new function.
5535
5536 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5537
5538 * valprint.c (generic_val_print): Factor out integer
5539 printing code to ...
5540 (generic_val_print_int): ... this new function.
5541
5542 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5543
5544 * valprint.c (generic_val_print): Factor out bool
5545 printing code to ...
5546 (generic_val_print_bool): ... this new function.
5547
5548 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5549
5550 * valprint.c (generic_val_print): Factor out function/method
5551 printing code to ...
5552 (generic_val_print_func): ... this new function.
5553
5554 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5555
5556 * valprint.c (generic_val_print): Factor out flags
5557 printing code to ...
5558 (generic_val_print_flags): ... this new function.
5559
5560 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5561
5562 * valprint.c (generic_val_print): Factor out enum
5563 printing code to ...
5564 (generic_val_print_enum): ... this new function.
5565
5566 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5567
5568 * valprint.c (generic_val_print): Factor out reference
5569 printing code to ...
5570 (generic_val_print_ref): ... this new function.
5571
5572 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5573
5574 * valprint.c (generic_val_print): Factor out memberptr
5575 printing code to ...
5576 (generic_val_print_memberptr): ... this new function.
5577
5578 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5579
5580 * valprint.c (generic_val_print): Factor out pointer
5581 printing code to ...
5582 (generic_val_print_ptr): ... this new function.
5583
5584 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5585
5586 * valprint.c (generic_val_print): Factor out array
5587 printing code to ...
5588 (generic_val_print_array): ... this new function.
5589
5590 2015-07-27 Simon Marchi <simon.marchi@ericsson.com>
5591
5592 * valprint.c (generic_val_print): Factor out
5593 print_unpacked_pointer code to ...
5594 (print_unpacked_pointer): ... this new function.
5595
5596 2015-07-27 Patrick Palka <patrick@parcs.ath.cx>
5597
5598 * event-top.c (handle_sigterm): Don't inspect
5599 target_can_async_p. Always set the quit flag and always mark
5600 the async signal handler.
5601
5602 2015-07-27 Yao Qi <yao.qi@linaro.org>
5603
5604 * Makefile.in (REMOTE_EXAMPLES): Remove it.
5605
5606 2015-07-25 Kevin Buettner <kevinb@redhat.com>
5607
5608 * remote.c (read_ptid): Return null_ptid when no thread id
5609 is found.
5610 (remote_current_thread): Add log warning for malformed
5611 qC reply.
5612 (remote_start_remote): Add log warning when current thread
5613 not found.
5614
5615 2015-07-24 Pedro Alves <palves@redhat.com>
5616
5617 * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
5618 (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
5619 forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
5620
5621 2015-07-24 Pedro Alves <palves@redhat.com>
5622
5623 PR gdb/18717
5624 * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
5625 is resumed, and extend the debug log.
5626
5627 2015-07-24 Pedro Alves <palves@redhat.com>
5628
5629 * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
5630
5631 2015-07-24 Pedro Alves <palves@redhat.com>
5632
5633 * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
5634 sys/ptrace.h.
5635 * alpha-linux-nat.c: Likewise.
5636 * amd64-linux-nat.c: Likewise.
5637 * arm-linux-nat.c: Likewise.
5638 * hppa-linux-nat.c: Likewise.
5639 * i386-linux-nat.c: Likewise.
5640 * ia64-linux-nat.c: Likewise.
5641 * linux-fork.c: Likewise.
5642 * linux-nat.c: Likewise.
5643 * m32r-linux-nat.c: Likewise.
5644 * m68klinux-nat.c: Likewise.
5645 * mips-linux-nat.c: Likewise.
5646 * nat/linux-btrace.c: Likewise.
5647 * nat/linux-ptrace.c: Likewise.
5648 * nat/linux-ptrace.h
5649 * nat/mips-linux-watch.c: Likewise.
5650 * nat/x86-linux-dregs.c: Likewise.
5651 * ppc-linux-nat.c: Likewise.
5652 * s390-linux-nat.c: Likewise.
5653 * spu-linux-nat.c: Likewise.
5654 * tilegx-linux-nat.c: Likewise.
5655 * x86-linux-nat.c: Likewise.
5656 * xtensa-linux-nat.c: Likewise.
5657
5658 2015-07-24 Pedro Alves <palves@redhat.com>
5659
5660 * ptrace.m4 (ptrace tests): Test in C++ mode. Try with 'enum
5661 __ptrace_request as first parameter type instead of int.
5662 (PTRACE_TYPE_ARG1): Define.
5663 * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
5664 that casts first argument to PTRACE_TYPE_ARG1.
5665 * config.in: Regenerate.
5666 * configure: Regenerate.
5667
5668 2015-07-24 Pedro Alves <palves@redhat.com>
5669
5670 * gdb_ptrace.h: Move ...
5671 * nat/gdb_ptrace.h: ... here.
5672 * inf-ptrace.c: Adjust.
5673
5674 2015-07-24 Pedro Alves <palves@redhat.com>
5675
5676 * acinclude.m4: Include ptrace.m4.
5677 * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
5678 * ptrace.m4: ... to this new file.
5679
5680 2015-07-23 Doug Evans <dje@google.com>
5681
5682 * dwarf2read.c (dwarf2_per_cu_data): Add comment.
5683 (load_cu): Handle dummy CUs.
5684 (dw2_do_instantiate_symtab, process_queuef): Ditto.
5685 (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
5686
5687 2015-07-23 Ciro Santilli <ciro.santilli@gmail.com> (tiny patch)
5688
5689 * py-linetable.c (ltpy_get_all_source_lines): Adjust function
5690 documentation to say that it returns a list rather than
5691 a FrozenSet.
5692 (linetable_object_methods): Update the docstring of the
5693 "source_line" entry.
5694
5695 2015-07-23 Pierre-Marie de Rodat <derodat@adacore.com>
5696
5697 * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
5698 type to the recursive call instead of the original (maybe
5699 TYPE_CODE_TYPEDEF) type.
5700
5701 2015-07-23 Yao Qi <yao.qi@linaro.org>
5702
5703 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
5704 TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
5705 If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
5706
5707 2015-07-21 Yao Qi <yao.qi@linaro.org>
5708
5709 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
5710 Move it to nat/aarch64-linux-hw-point.c.
5711 (aarch64_linux_child_post_startup_inferior): Update.
5712 * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
5713 New function.
5714 * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
5715 Declare it.
5716
5717 2015-07-21 Markus Metzger <markus.t.metzger@intel.com>
5718
5719 * common/btrace-common.c (btrace_data_append): Change case label.
5720
5721 2015-07-20 Yao Qi <yao.qi@linaro.org>
5722
5723 * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
5724 Re-indent the code.
5725 * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
5726 "unsigned long long".
5727
5728 2015-07-18 Kevin Buettner <kevinb@redhat.com>
5729
5730 * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
5731 to be set for SEC_ALLOC sections too.
5732
5733 2015-07-17 Yao Qi <yao.qi@linaro.org>
5734
5735 * Makefile.in (HFILES_NO_SRCDIR): Add
5736 nat/aarch64-linux-hw-point.h.
5737 (aarch64-linux-hw-point.o): New rule.
5738 * nat/aarch64-linux-hw-point.h: New file.
5739 * nat/aarch64-linux-hw-point.c: New file.
5740 * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
5741 (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
5742 (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
5743 (AARCH64_HWP_ALIGNMENT): Likewise.
5744 (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
5745 (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
5746 (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
5747 (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
5748 (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
5749 (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
5750 (struct aarch64_debug_reg_state): Likewise.
5751 (struct arch_lwp_info): Likewise.
5752 (aarch64_linux_set_debug_regs): Likewise.
5753 (aarch64_notify_debug_reg_change): Remove static.
5754 (aarch64_align_watchpoint): Likewise.
5755 (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
5756 (aarch64_watchpoint_length): Likewise.
5757 (aarch64_point_encode_ctrl_reg): Likewise
5758 (aarch64_point_is_aligned): Likewise.
5759 (aarch64_dr_state_insert_one_point): Likewise.
5760 (aarch64_dr_state_remove_one_point): Likewise.
5761 (aarch64_handle_breakpoint): Likewise.
5762 (aarch64_handle_aligned_watchpoint): Likewise.
5763 (aarch64_handle_unaligned_watchpoint): Likewise.
5764 (aarch64_handle_watchpoint): Likewise.
5765 * config/aarch64/linux.mh (NAT_FILE): Add
5766 aarch64-linux-hw-point.o.
5767
5768 2015-07-17 Yao Qi <yao.qi@linaro.org>
5769
5770 * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
5771 state and don't call aarch64_get_debug_reg_state. All callers
5772 update.
5773 (aarch64_linux_insert_hw_breakpoint): Call
5774 aarch64_get_debug_reg_state earlier.
5775 (aarch64_linux_remove_hw_breakpoint): Likewise.
5776 (aarch64_handle_aligned_watchpoint): Add argument state and
5777 don't call aarch64_get_debug_reg_state. All callers update.
5778 (aarch64_handle_unaligned_watchpoint): Likewise.
5779 (aarch64_handle_watchpoint): Add argument state.
5780 (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
5781 earlier.
5782 (aarch64_linux_remove_watchpoint): Likewise.
5783
5784 2015-07-17 Yao Qi <yao.qi@linaro.org>
5785
5786 * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
5787 debug_printf.
5788 (aarch64_handle_unaligned_watchpoint): Likewise.
5789
5790 2015-07-17 Yao Qi <yao.qi@linaro.org>
5791
5792 * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
5793 argument type's type to 'enum target_hw_bp_type'.
5794 (aarch64_dr_state_remove_one_point): Likewise.
5795 (aarch64_handle_breakpoint): Likewise.
5796 (aarch64_linux_insert_hw_breakpoint): Likewise.
5797 (aarch64_linux_remove_hw_breakpoint): Likewise.
5798 (aarch64_handle_aligned_watchpoint): Likewise.
5799
5800 2015-07-17 Yao Qi <yao.qi@linaro.org>
5801
5802 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
5803 ptid_get_pid instead of get_thread_id.
5804
5805 2015-07-17 Yao Qi <yao.qi@linaro.org>
5806
5807 * remote.c (get_current_thread): Initialise ptid to null_ptid.
5808 (add_current_inferior_and_thread): Don't initialise ptid.
5809
5810 2015-07-16 Pierre Langlois <pierre.langlois@arm.com>
5811
5812 * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
5813 unavailable if invalid.
5814
5815 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5816
5817 Revert the previous 6 commits:
5818 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
5819 Move gdb_regex* to common/
5820 Prepare linux_find_memory_regions_full & co. for move
5821 Move linux_find_memory_regions_full & co.
5822 gdbserver build-id attribute generator
5823 Validate symbol file using build-id
5824
5825 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5826 Jan Kratochvil <jan.kratochvil@redhat.com>
5827
5828 Validate symbol file using build-id.
5829 * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
5830 and 'show validate-build-id'. Add build-id attribute.
5831 * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
5832 * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
5833 * solib-frv.c (_initialize_frv_solib): Ditto.
5834 * solib-spu.c (set_spu_solib_ops): Ditto.
5835 * solib-svr4.c: Include rsp-low.h.
5836 (NOTE_GNU_BUILD_ID_NAME): New define.
5837 (svr4_validate): New function.
5838 (svr4_copy_library_list): Duplicate field build_id.
5839 (library_list_start_library): Parse 'build-id' attribute.
5840 (svr4_library_attributes): Add 'build-id' attribute.
5841 (_initialize_svr4_solib): Assign validate value.
5842 * solib-target.c (solib.h): Include.
5843 (_initialize_solib_target): Assign validate value.
5844 * solib.c (validate_build_id, show_validate_build_id): New.
5845 (solib_map_sections): Use ops->validate.
5846 (clear_so): Free build_id.
5847 (default_solib_validate): New function.
5848 (_initialize_solib): Add "validate-build-id".
5849 * solib.h (default_solib_validate): New declaration.
5850 * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
5851 (target_so_ops): New field 'validate'.
5852
5853 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5854 Jan Kratochvil <jan.kratochvil@redhat.com>
5855
5856 gdbserver build-id attribute generator.
5857 * features/library-list-svr4.dtd (library-list-svr4): New
5858 'build-id' attribute.
5859
5860 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5861 Jan Kratochvil <jan.kratochvil@redhat.com>
5862
5863 Move linux_find_memory_regions_full & co.
5864 * linux-tdep.c (nat/linux-maps.h): Include.
5865 (gdb_regex.h): Remove the include.
5866 (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
5867 (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
5868 (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
5869 (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
5870 * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
5871 and target/target.h.
5872 (struct smaps_vmflags, read_mapping, decode_vmflags)
5873 (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
5874 (linux_find_memory_regions_full): Move from linux-tdep.c.
5875 * nat/linux-maps.h (read_mapping): New declaration.
5876 (linux_find_memory_region_ftype, enum filterflags): Moved from
5877 linux-tdep.c.
5878 (linux_find_memory_regions_full): New declaration.
5879 * target.c (target/target-utils.h): Include.
5880 (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
5881 (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
5882 definitions to target/target-utils.c.
5883 * target.h (target_fileio_read_stralloc): Move it to target/target.h.
5884 * target/target-utils.c (read_alloc, read_stralloc): Move definitions
5885 from target.c.
5886 * target/target-utils.h (read_alloc_pread_ftype): New typedef.
5887 (read_alloc): New declaration.
5888 (read_stralloc_func_ftype): New typedef.
5889 (read_stralloc): New declaration.
5890 * target/target.h (target_fileio_read_stralloc): Move it from target.h.
5891
5892 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5893 Jan Kratochvil <jan.kratochvil@redhat.com>
5894
5895 Prepare linux_find_memory_regions_full & co. for move.
5896 * linux-tdep.c (linux_find_memory_region_ftype): Comment.
5897 (linux_find_memory_regions_full): Change signature and prepare
5898 for moving to linux-maps.
5899 (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
5900 (linux_find_memory_regions_thunk): New.
5901 (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
5902 (linux_find_memory_regions_gdb): New.
5903 (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
5904 (linux_make_mappings_corefile_notes): Use
5905 linux_find_memory_regions_gdb.
5906 * target.c (read_alloc_pread_ftype): New typedef.
5907 (target_fileio_read_alloc_1_pread): New function.
5908 (read_alloc): Refactor from target_fileio_read_alloc_1.
5909 (read_stralloc_func_ftype): New typedef.
5910 (target_fileio_read_alloc_1): New implementation. Use read_alloc.
5911 (read_stralloc): Refactored from target_fileio_read_stralloc.
5912 (target_fileio_read_stralloc): New implementation, use read_stralloc.
5913
5914 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5915
5916 * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
5917 common/gdb_regex.h.
5918 (COMMON_OBS): Add gdb_regex.o.
5919 (gdb_regex.o): New.
5920 * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
5921 --without-included-regex and USE_INCLUDED_REGEX.
5922 * common/gdb_regex.c: New file from utils.c functions.
5923 * common/gdb_regex.h: Move it here from gdb_regex.h, update include
5924 file wrapping define name.
5925 * configure: Rebuilt.
5926 * configure.ac (gdb_use_included_regex, --without-included-regex)
5927 (USE_INCLUDED_REGEX): Move them to common/common.m4.
5928 * gdb_regex.h: Move it to common/gdb_regex.h.
5929 * utils.c: Remove include gdb_regex.h.
5930 (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
5931 (compile_rx_or_error): Move them to common/gdb_regex.c.
5932
5933 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com
5934 Jan Kratochvil <jan.kratochvil@redhat.com>
5935
5936 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
5937 * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
5938 common/target-utils.h.
5939 (COMMON_OBS): Add target-utils.o.
5940 (linux-maps.o, target-utils.o): New.
5941 * target/target-utils.c: New file.
5942 * target/target-utils.h: New file.
5943 * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
5944 * config/i386/linux64.mh (NATDEPFILES): Ditto.
5945 * nat/linux-maps.c: New file.
5946 * nat/linux-maps.h: New file.
5947
5948 2015-07-15 Markus Metzger <markus.t.metzger@intel.com>
5949 Pedro Alves <palves@redhat.com>
5950
5951 * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
5952 (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
5953 (perf_event_read_bts): Change the type of SIZE and READ.
5954 (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
5955 and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size
5956 to UINT_MAX. Check for overflows when using DATA_HEAD from the perf
5957 mmap page.
5958 (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the
5959 buffer size to UINT_MAX.
5960 (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
5961 DATA_TAIL.
5962 * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
5963 <last_head>: Change type.
5964 * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
5965 * common/btrace-common.c (btrace_data_append): Change the type of
5966 SIZE.
5967 * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness
5968 check.
5969
5970 2015-07-14 Simon Marchi <simon.marchi@ericsson.com>
5971
5972 * gdbtypes.h (CHECK_TYPEDEF): Remove.
5973 * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
5974 with check_typedef.
5975 * ada-lang.c (decode_constrained_packed_array_type): Likewise.
5976 (ada_array_length): Likewise.
5977 (find_parallel_type_by_descriptive_type): Likewise.
5978 (ada_check_typedef): Likewise.
5979 * arm-tdep.c (arm_return_in_memory): Likewise.
5980 * ax-gdb.c (gen_trace_static_fields): Likewise.
5981 (gen_struct_ref_recursive): Likewise.
5982 * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
5983 (variable: block COLONCOLON name): Likewise.
5984 (qualified_name: TYPENAME COLONCOLON name): Likewise.
5985 * c-lang.c (classify_type): Likewise.
5986 * c-typeprint.c (c_print_type): Likewise.
5987 (c_print_typedef): Likewise.
5988 (c_type_print_base): Likewise.
5989 * c-valprint.c (c_val_print): Likewise.
5990 * compile/compile-c-types.c (convert_type): Likewise.
5991 * compile/compile-object-load.c (get_out_value_type): Likewise.
5992 * completer.c (add_struct_fields): Likewise.
5993 (expression_completer): Likewise.
5994 * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
5995 (cp_lookup_nested_symbol_1): Likewise.
5996 (cp_lookup_nested_symbol): Likewise.
5997 * cp-valprint.c (cp_print_value_fields): Likewise.
5998 (cp_print_static_field): Likewise.
5999 * d-valprint.c (d_val_print): Likewise.
6000 * eval.c (evaluate_subexp_standard): Likewise.
6001 (evaluate_subexp_for_sizeof): Likewise.
6002 * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
6003 * f-typeprint.c (f_type_print_base): Likewise.
6004 * f-valprint.c (f_val_print): Likewise.
6005 * gdbtypes.c (get_discrete_bounds): Likewise.
6006 (create_array_type_with_stride): Likewise.
6007 (type_name_no_tag_or_error): Likewise.
6008 (lookup_struct_elt_type): Likewise.
6009 (get_unsigned_type_max): Likewise.
6010 (internal_type_vptr_fieldno): Likewise.
6011 (set_type_vptr_fieldno): Likewise.
6012 (internal_type_vptr_basetype): Likewise.
6013 (set_type_vptr_basetype): Likewise.
6014 (get_vptr_fieldno): Likewise.
6015 (is_integral_type): Likewise.
6016 (is_scalar_type): Likewise.
6017 (is_scalar_type_recursive): Likewise.
6018 (distance_to_ancestor): Likewise.
6019 (is_unique_ancestor_worker): Likewise.
6020 (check_types_equal): Likewise.
6021 * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
6022
6023 2015-07-14 Iain Buclaw <ibuclaw@gdcproject.org>
6024
6025 * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
6026 also test for language_d.
6027 (dwarf2_compute_name): Likewise.
6028 (read_func_scope): Likewise.
6029 (read_structure_type): Likewise.
6030 (new_symbol_full): Likewise.
6031 (determine_prefix): Likewise.
6032 (read_import_statement): Use dot as the separator for language_d.
6033 (typename_concat): Likewise, but don't prefix the D main function.
6034
6035 2015-07-14 Peter Bergner <bergner@vnet.ibm.com>
6036
6037 * nat/linux-namespaces.c (setns): Rename from this ...
6038 (do_setns): ... to this. Support calling setns if it exists.
6039 (mnsh_handle_setns): Call do_setns.
6040
6041 2015-07-13 Yao Qi <yao.qi@linaro.org>
6042
6043 * exec.c (exec_file_attach): Add period at the end of error
6044 message.
6045
6046 2015-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
6047
6048 * tui/tui-win.c (window_name_completer): New function.
6049 (focus_completer): Call window_name_completer. All old content
6050 moved into window_name_completer.
6051 (winheight_completer): New function.
6052 (_initialize_tui_win): Rename variable. Add completer to
6053 winheight command. Update doc string on winheight.
6054
6055 2015-07-12 Sandra Loosemore <sandra@codesourcery.com>
6056
6057 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
6058 all nios2 mach variants.
6059
6060 2015-07-10 Kevin Buettner <kevinb@redhat.com>
6061
6062 * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
6063 of target_read_memory.
6064
6065 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6066
6067 * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
6068 string copy.
6069 (parse_scrolling_args): Likewise.
6070
6071 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6072
6073 * tui/tui-win.c (focus_completer): Don't duplicate the tui window
6074 names in this function.
6075
6076 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6077
6078 * tui/tui-data.h (SRC_NAME): Convert to lower case.
6079 (CMD_NAME): Likewise.
6080 (DATA_NAME): Likewise.
6081 (DISASSEM_NAME): Likewise.
6082 * tui/tui-win.c (tui_set_focus): Window names are now lower case.
6083 (tui_set_win_height): Likewise.
6084 (parse_scrolling_args): Likewise.
6085
6086 2015-07-10 Markus Metzger <markus.t.metzger@intel.com>
6087
6088 * record-btrace.c (record_btrace_goto_begin)
6089 (record_btrace_goto_end, record_btrace_goto): Move call to
6090 print_stack_frame ...
6091 (record_btrace_set_replay): ... here. Set stop_pc.
6092 * record-full.c (record_full_goto_entry): Set stop_pc.
6093
6094 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6095
6096 * NEWS: Mention support for tracepoints on aarch64-linux.
6097
6098 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6099
6100 * linux-aarch64-low.c (aarch64_supports_tracepoints): New
6101 function. Return 1.
6102 (the_low_target): Install it.
6103
6104 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6105
6106 * gdb.trace/backtrace.exp: Set registers for aarch64 target.
6107 * gdb.trace/collection.exp: Likewise.
6108 * gdb.trace/mi-trace-frame-collected.exp: Likewise.
6109 * gdb.trace/mi-trace-unavailable.exp: Likewise.
6110 * gdb.trace/report.exp: Likewise.
6111 * gdb.trace/trace-break.exp: Likewise.
6112 * gdb.trace/unavailable.exp: Likewise.
6113 * gdb.trace/while-dyn.exp: Likewise.
6114
6115 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6116
6117 * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
6118 (aarch64_gen_return_address): New function.
6119 (aarch64_gdbarch_init): Hook it.
6120
6121 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6122
6123 * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
6124 swallow NOT_AVAILABLE_ERROR.
6125 (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
6126 available_p is not set.
6127 (aarch64_stub_frame_unwind_stop_reason): New function.
6128 (aarch64_stub_unwind): Install it.
6129
6130 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6131
6132 * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
6133 field.
6134 (aarch64_make_prologue_cache_1): New function, factored out from
6135 aarch64_make_prologue_cache. Do not allocate cache. Set
6136 available_p.
6137 (aarch64_make_prologue_cache): Reimplement wrapping
6138 aarch64_make_prologue_cache_1, and swallowing
6139 NOT_AVAILABLE_ERROR.
6140 (aarch64_prologue_frame_unwind_stop_reason): New function.
6141 Return UNWIND_UNAVAILABLE if available_p is not set.
6142 (aarch64_prologue_unwind): Install it.
6143 (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
6144 checks into aarch64_prologue_frame_unwind_stop_reason. Call
6145 frame_id_build_unavailable_stack if available_p is not set.
6146
6147 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6148
6149 * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
6150 fields.
6151 (aarch64_scan_prologue): Set prev_pc.
6152 (aarch64_make_prologue_cache): Set func.
6153 (aarch64_make_stub_cache): Set prev_pc.
6154 (aarch64_prologue_this_id): Remove local variables id, pc and
6155 func. Read prev_pc and func from cache.
6156 (aarch64_stub_this_id): Read prev_pc from cache.
6157
6158 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6159
6160 * aarch64-tdep.c (aarch64_make_stub_cache): Update comment. New
6161 argument this_cache. Remove unused local variables reg and
6162 unwound_fp. Return early if this_cache is already set. Set
6163 this_cache.
6164 (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
6165
6166 2015-07-09 Pierre Langlois <pierre.langlois@arm.com>
6167
6168 * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
6169 New argument this_cache. Return early if this_cache is already
6170 set. Set this_cache.
6171 (aarch64_prologue_this_id): Update call to
6172 aarch64_make_prologue_cache.
6173 (aarch64_prologue_prev_register): Likewise.
6174 (aarch64_normal_frame_base): Likewise.
6175
6176 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6177
6178 * c-valprint.c (c_val_print): Factor out memberptr printing code
6179 from c_val_print to ...
6180 (c_val_print_memberptr): ... this new function.
6181
6182 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6183
6184 * c-valprint.c (c_val_print): Factor out int printing code to ...
6185 (c_val_print_int): ... this new function.
6186
6187 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6188
6189 * c-valprint.c (c_val_print): Factor out struct and union
6190 printing code to ...
6191 (c_val_print_struct): ... this new function ...
6192 (c_val_print_union): ... and this new function.
6193
6194 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6195
6196 * c-valprint.c (c_val_print): Factor out pointer printing code
6197 to ...
6198 (c_val_print_ptr): ... this new function.
6199
6200 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6201
6202 * c-valprint.c (c_valprint): Factor our array printing code from
6203 c_val_print to ...
6204 (c_val_print_array): ... this new function.
6205
6206 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6207
6208 * c-valprint.c (c_val_print): Factor out pointer printing code
6209 to ...
6210 (print_unpacked_pointer): ... this new function.
6211
6212 2015-07-09 Simon Marchi <simon.marchi@ericsson.com>
6213
6214 * c-valprint.c (c_val_print): Remove an assignment to i and move
6215 its declaration.
6216
6217 2015-07-09 Yao Qi <yao.qi@linaro.org>
6218
6219 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
6220 argument ptid. Update comments. Caller update.
6221
6222 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6223
6224 * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
6225 mnt packets.
6226
6227 2015-07-09 Markus Metzger <markus.t.metzger@intel.com>
6228
6229 * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
6230
6231 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6232
6233 * progspace.c (delete_program_space): Add missing spaces.
6234
6235 2015-07-08 Simon Marchi <simon.marchi@ericsson.com>
6236
6237 * inferior.c (delete_inferior_1): Rename to ...
6238 (delete_inferior): ..., remove 'silent' parameter, delete
6239 program space when unused and remove call to prune_program_spaces.
6240 Remove the old, unused, delete_inferior.
6241 (delete_inferior_silent): Remove.
6242 (prune_inferiors): Change call from delete_inferior_1 to
6243 delete_inferior and remove 'silent' parameter. Remove call to
6244 prune_program_spaces.
6245 (remove_inferior_command): Idem.
6246 * inferior.h (delete_inferior_1): Rename to...
6247 (delete_inferior): ..., remove 'silent' parameter and remove the
6248 original delete_inferior.
6249 (delete_inferior_silent): Remove.
6250 * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
6251 delete_inferior_1 to delete_inferior and remove 'silent'
6252 parameter.
6253 * progspace.c (prune_program_spaces): Remove.
6254 (pspace_empty_p): Rename to...
6255 (program_space_empty_p): ... and make non-static.
6256 (delete_program_space): New.
6257 * progspace.h (prune_program_spaces): Remove declaration.
6258 (program_space_empty_p): New declaration.
6259 (delete_program_space): New declaration.
6260 * monitor.c (monitor_close): Replace call to
6261 delete_thread_silent and delete_inferior_silent with
6262 discard_all_inferiors.
6263
6264 2015-07-08 Patrick Palka <patrick@parcs.ath.cx>
6265
6266 * defs.h (deprecated_register_changed_hook): Remove prototype.
6267 * interps.c (clear_iterpreter_hooks): Remove reference to
6268 deprecated_register_changed_hook.
6269 * top.c (deprecated_register_changed_hook): Remove prototype.
6270 * valops.c (value_assign): Remove reference to
6271 deprecated_register_changed_hook.
6272 * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
6273 Add comment documenting the function.
6274 (tui_register_changed_observer): Define.
6275 (tui_install_hooks): Remove reference to
6276 deprecated_register_changed_hook. Set
6277 tui_register_changed_observer.
6278 (tui_remove_hooks): Remove reference to
6279 deprecated_register_changed_hook. Unset
6280 tui_register_changed_observer.
6281
6282 2015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6283
6284 PR compile/18484
6285 * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
6286
6287 2015-07-08 Robert O'Callahan <robert@ocallahan.org>
6288
6289 PR exp/18617
6290 * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
6291
6292 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6293
6294 * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
6295
6296 2015-07-08 Markus Metzger <markus.t.metzger@intel.com>
6297
6298 * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
6299 Use safe_strerror() instead of strerror().
6300
6301 2015-07-07 Yao Qi <yao.qi@linaro.org>
6302
6303 * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
6304 * features/arm-with-m-fpa-layout.c: Regenerated.
6305 * features/arm-with-m-vfp-d16.xml: Likewise.
6306 * features/arm-with-m-vfp-d16.c: Regenerated.
6307 * features/arm-with-m.xml: Likewise.
6308 * features/arm-with-m.c: Regenerated.
6309 * features/arm-with-neon.xml: Likewise.
6310 * features/arm-with-neon.c: Regenerated.
6311 * features/arm-with-vfpv2.xml: Likewise.
6312 * features/arm-with-vfpv2.c: Regenerated.
6313 * features/arm-with-vfpv3.xml: Likewise.
6314 * features/arm-with-vfpv3.c: Regenerated.
6315
6316 2015-07-07 Yao Qi <yao.qi@linaro.org>
6317
6318 * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
6319 arm-linux-nat.c.
6320 * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
6321 elf/external.h.
6322 (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
6323 if target is 32-bit.
6324 (store_gregs_to_thread): Call aarch32_gp_regcache_collect
6325 if target is 32-bit.
6326 (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
6327 if target is 32-bit.
6328 (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
6329 if target is 32-bit.
6330 (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
6331 (aarch64_linux_read_description): Return the right target
6332 description.
6333 * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
6334 * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6335 * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
6336 arm-linux-tdep.o.
6337
6338 2015-07-07 Yao Qi <yao.qi@linaro.org>
6339
6340 * aarch32-linux-nat.c: New file.
6341 * aarch32-linux-nat.h: New file.
6342 * arm-linux-nat.c: Include aarch32-linux-nat.h.
6343 (fetch_regs): Move code to aarch32-linux-nat.c. Call
6344 aarch32_gp_regcache_supply.
6345 (store_regs): Move code to aarch32-linux-nat.c. Call
6346 aarch32_gp_regcache_collect.
6347 (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call
6348 aarch32_vfp_regcache_supply.
6349 (store_vfp_regs): Move code to aarch32-linux-nat.c. Call
6350 aarch32_vfp_regcache_collect.
6351 * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6352
6353 2015-07-07 Yao Qi <yao.qi@linaro.org>
6354
6355 * arm-linux-nat.c (store_fpregister): Remove.
6356 (store_register): Likewise.
6357 (fetch_fpregister): Likewise.
6358 (fetch_register): Likewise.
6359 (arm_linux_store_inferior_registers): Call store_regs and
6360 store_fpregs instead.
6361 (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
6362 fetch_regs instead.
6363
6364 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6365
6366 * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
6367 and focus commands.
6368
6369 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6370
6371 * NEWS: Create a new section for the next release branch.
6372 Rename the section of the current branch, now that it has
6373 been cut.
6374
6375 2015-07-06 Joel Brobecker <brobecker@adacore.com>
6376
6377 GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
6378 * version.in: Bump version to 7.10.50.DATE-cvs.
6379
6380 2015-07-06 Luis Machado <lgustavo@codesourcery.com>
6381
6382 * breakpoint.c (remove_breakpoint_1): Don't handle permanent
6383 breakpoints in a special way.
6384 (remove_breakpoint): Likewise.
6385 (mark_breakpoints_out): Likewise.
6386
6387 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6388
6389 * doc/gdb.texinfo (TUI): Add comma after @xref.
6390
6391 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6392
6393 * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
6394 instead of casting the structure type.
6395
6396 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6397
6398 * valops.c (search_struct_field): Remove OFFSET parameter.
6399 (value_cast_structs): Adjust calls to search_struct_field.
6400 (value_struct_elt): Same.
6401 (find_overload_match): Same.
6402
6403 2015-07-06 Simon Marchi <simon.marchi@ericsson.com>
6404
6405 * value.c (value_fetch_lazy): Update comment, change return
6406 value to void.
6407 * value.h (value_fetch_lazy): Change return value to void.
6408
6409 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
6410
6411 * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
6412 (tui_win_name): Make parameter and result const.
6413 * tui/tui-data.h (tui_win_name): Make parameter and result const.
6414
6415 2015-07-06 Patrick Palka <patrick@parcs.ath.cx>
6416
6417 * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
6418 use printf_unfiltered.
6419 (set_mpx_cmd): Add missing trailing space to command string
6420 literal.
6421 (_initialize_i386_tdep): Give the "mpx" prefix command its
6422 correct name.
6423
6424 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6425
6426 * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
6427 (enum rx_frame_type): New.
6428 (struct rx_prologue): Add new field `frame_type'.
6429 (rx_analyze_prologue): Add `frame_type' parameter. Cache this
6430 parameter in the prologue struct. Add code for recording
6431 locations of PC and PSW for fast interrupt and exception frames.
6432 (rx_skip_prologue): Adjust call to rx_analyze_prologue.
6433 (rx_analyze_frame_prologue): Add `frame_type' parameter.
6434 (rx_frame_type): New function.
6435 (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
6436 (rx_frame_this_id): Rename parameter `this_prologue_cache' to
6437 `this_cache'.
6438 (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
6439 `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and
6440 RX_FRAME_TYPE_FAST_INTERRUPT.
6441 (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
6442 (rx_frame_sniffer, rx_exception_sniffer): New functions.
6443 (rx_frame_unwind): Use rx_frame_sniffer instead of
6444 default_frame_sniffer.
6445 (rx_frame_unwind): New unwinder.
6446 (rx_gdbarch_init): Register new unwinder.
6447
6448 2015-07-02 Kevin Buettner <kevinb@redhat.com>
6449
6450 * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
6451 (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
6452 (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
6453 and RX_FPSW_REGNUM.
6454 (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
6455
6456 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6457
6458 Fix GCC false warning.
6459 * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
6460
6461 2015-07-02 Yao Qi <yao.qi@linaro.org>
6462
6463 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
6464 typo in the debugging message.
6465
6466 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6467
6468 * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
6469 (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
6470 (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
6471 (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
6472 (btrace_maint_clear): New.
6473 (btrace_fetch, btrace_clear): Call btrace_maint_clear.
6474 (pt_print_packet, btrace_maint_decode_pt)
6475 (btrace_maint_update_pt_packets, btrace_maint_update_packets)
6476 (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
6477 (maint_btrace_packet_history_cmd)
6478 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
6479 (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
6480 (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
6481 (maint_info_btrace_cmd, _initialize_btrace): New.
6482 * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
6483 (btrace_maint_packet_history, btrace_maint_info): New.
6484 (btrace_thread_info) <maint>: New.
6485 * NEWS: Announce it.
6486
6487 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6488
6489 * btrace.c (btrace_fetch): Append the new trace data.
6490 (btrace_clear): Clear the stored trace data.
6491 * btrace.h (btrace_thread_info) <data>: New.
6492 * common/btrace-common.h (btrace_data_clear)
6493 (btrace_data_append): New.
6494 * common/btrace-common.c (btrace_data_clear)
6495 (btrace_data_append): New.
6496
6497 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6498
6499 * nat/linux-btrace.c (linux_enable_bts): Check for
6500 PERF_ATTR_SIZE_VER5.
6501 Check for data_offset and data_size fields. Use them.
6502
6503 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6504
6505 * NEWS: Announce new commands "record btrace pt" and "record pt".
6506 Announce new options "set|show record btrace pt buffer-size".
6507 * btrace.c: Include "rsp-low.h".
6508 Include "inttypes.h".
6509 (btrace_add_pc): Add forward declaration.
6510 (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
6511 (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
6512 (btrace_compute_ftrace_pt): New.
6513 (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
6514 (check_xml_btrace_version): Update version check.
6515 (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
6516 (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
6517 (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
6518 (btrace_pt_children): New.
6519 (btrace_children): Add support for "pt".
6520 (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
6521 (btrace_conf_children): Add support for "pt".
6522 * btrace.h: Include "intel-pt.h".
6523 (btrace_pt_error): New.
6524 * common/btrace-common.c (btrace_format_string, btrace_data_fini)
6525 (btrace_data_empty): Support BTRACE_FORMAT_PT.
6526 * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
6527 (struct btrace_config_pt): New.
6528 (struct btrace_config)<pt>: New.
6529 (struct btrace_data_pt_config, struct btrace_data_pt): New.
6530 (struct btrace_data)<pt>: New.
6531 * features/btrace-conf.dtd (btrace-conf)<pt>: New.
6532 (pt): New.
6533 * features/btrace.dtd (btrace)<pt>: New.
6534 (pt, pt-config, cpu): New.
6535 * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
6536 (perf_event_pt_event_type, kernel_supports_pt)
6537 (linux_supports_pt): New.
6538 (linux_supports_btrace): Support BTRACE_FORMAT_PT.
6539 (linux_enable_bts): Free tinfo on error.
6540 (linux_enable_pt): New.
6541 (linux_enable_btrace): Support BTRACE_FORMAT_PT.
6542 (linux_disable_pt): New.
6543 (linux_disable_btrace): Support BTRACE_FORMAT_PT.
6544 (linux_fill_btrace_pt_config, linux_read_pt): New.
6545 (linux_read_btrace): Support BTRACE_FORMAT_PT.
6546 * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
6547 (struct btrace_target_info)<pt>: New.
6548 * record-btrace.c (set_record_btrace_pt_cmdlist)
6549 (show_record_btrace_pt_cmdlist): New.
6550 (record_btrace_print_pt_conf): New.
6551 (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
6552 (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
6553 (cmd_record_btrace_pt_start): New.
6554 (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
6555 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
6556 (_initialize_record_btrace): Add new commands.
6557 * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
6558 (remote_protocol_features): Add "Qbtrace:pt".
6559 Add "Qbtrace-conf:pt:size".
6560 (remote_supports_btrace): Support BTRACE_FORMAT_PT.
6561 (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
6562 (remote_enable_btrace): Support BTRACE_FORMAT_PT.
6563 (_initialize_remote): Add new commands.
6564
6565 2015-07-02 Markus Metzger <markus.t.metzger@intel.com>
6566
6567 * configure.ac: check for libipt
6568 * configure: Regenerate.
6569 * config.in: Regenerate.
6570 * Makefile.in (LIBIPT): New.
6571 (CLIBS): Add $LIBIPT.
6572 * NEWS: document new configure options
6573
6574 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6575
6576 * compile/compile-object-load.c (compile_object_load): Replace debug
6577 message "lookup undefined ELF symbol" by 3 more specific messages.
6578
6579 2015-07-01 Kevin Buettner <kevinb@redhat.com>
6580
6581 * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
6582 (rl78_register_type): Add case for RL78_PSW_REGNUM.
6583 (rl78_gdbarch_init): Initialize rl78_psw_type.
6584
6585 2015-07-01 Patrick Palka <patrick@parcs.ath.cx>
6586
6587 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
6588 Update commentary. Always refresh the registers when frame
6589 information has changed.
6590 * tui/tui-stack.c (tui_show_frame_info): Update commentary.
6591 Change return type to int. Return 1 if frame information has
6592 changed, 0 otherwise.
6593 (tui_before_prompt): Update commentary.
6594 * tui/tui-stack.h (tui_show_frame_info): Change return type to
6595 int.
6596
6597 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6598
6599 PR tui/13378
6600 * frame.c (select_frame): Remove reference to
6601 deprecated_selected_frame_level_changed_hook.
6602 * frame.h (deprecated_selected_frame_level_changed_hook): Remove
6603 declaration.
6604 * stack.c (deprecated_selected_frame_level_changed_hook):
6605 Likewise.
6606 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
6607 Rename to ...
6608 (tui_refresh_frame_and_register_information): ... this. Bail
6609 out if there is no stack. Don't update register information
6610 unless registers_too_p is true.
6611 (tui_print_frame_info_listing_hook): Rename to ...
6612 (tui_dummy_print_frame_info_listing_hook): ... this.
6613 (tui_before_prompt): New function.
6614 (tui_normal_stop): New function.
6615 (tui_before_prompt_observer): New observer.
6616 (tui_normal_stop_observer): New observer.
6617 (tui_install_hooks): Set
6618 deprecated_print_frame_info_listing_hook to
6619 tui_dummy_print_frame_info_listing_hook. Register
6620 tui_before_prompt_observer to call tui_before_prompt and
6621 tui_normal_stop_observer to call tui_normal_stop. Remove
6622 reference to deprecated_selected_frame_level_changed_hook.
6623 (tui_remove_hooks): Detach and unset tui_before_prompt_observer
6624 and tui_normal_stop_observer. Remove reference to
6625 deprecated_selected_frame_level_changed_hook.
6626
6627 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6628
6629 PR tui/13378
6630 * tui/tui-stack.c (tui_set_locator_info): Change prototype to
6631 return an int instead of void. Return whether the locator
6632 window has changed.
6633 (tui_show_frame_info): If the locator info has not changed, then
6634 bail out early to avoid refreshing the windows.
6635
6636 2015-06-30 Patrick Palka <patrick@parcs.ath.cx>
6637
6638 * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
6639 LOCATOR_WIN to tui_alloc_content.
6640
6641 2015-06-30 Yao Qi <yao.qi@linaro.org>
6642
6643 PR tdep/18605
6644 * arm-tdep.c (arm_get_next_pc_raw): Break for media
6645 instructions.
6646
6647 2015-06-29 Kevin Buettner <kevinb@redhat.com>
6648
6649 * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
6650 (rx_dwarf_reg_to_regnum): New function.
6651 (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2
6652 unwinding.
6653
6654 2015-06-29 Pedro Alves <palves@redhat.com>
6655
6656 PR threads/18127
6657 * infcall.c (run_inferior_call): On infcall success, if the thread
6658 was marked stopped before, reset it back to stopped.
6659 * infrun.c (resume): Don't suppress the set_running calls when
6660 doing an infcall.
6661 (normal_stop): Only discard the finish_thread_state cleanup if the
6662 infcall succeeded.
6663
6664 2015-06-29 Pierre Langlois <pierre.langlois@arm.com>
6665
6666 * MAINTAINERS (Write After Approval): Update my email address.
6667
6668 2015-06-26 Keith Seitz <keiths@redhat.com>
6669 Doug Evans <dje@google.com>
6670
6671 PR 16253
6672 * block.c (block_lookup_symbol): For non-function blocks,
6673 continue to search for a symbol with an exact domain match
6674 Otherwise, return any previously found "best domain" symbol.
6675 (block_lookup_symbol_primary): Likewise.
6676
6677 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
6678
6679 * NEWS: Mention the new option "history remove-duplicates".
6680 * top.c (history_remove_duplicates): New static variable.
6681 (show_history_remove_duplicates): New static function.
6682 (gdb_add_history): Conditionally remove duplicate history
6683 entries.
6684 (init_main): Add "history remove-duplicates" option.
6685
6686 2015-06-26 Patrick Palka <patrick@parcs.ath.cx>
6687
6688 * tui/tui-win.c (focus_completer): New static function.
6689 (_initialize_tui_win): Set the completion function of the
6690 "focus" command to focus_completer.
6691
6692 2015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6693
6694 * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
6695 and language_asm..
6696 * symtab.c (find_function_start_sal): Likewise.
6697
6698 2015-06-25 Gary Benson <gbenson@redhat.com>
6699
6700 * solib.c (solib_find_1): Set local variable sysroot to NULL if
6701 it is the empty string after trailing slashes have been stripped.
6702
6703 2015-06-25 Gary Benson <gbenson@redhat.com>
6704
6705 * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
6706 * infrun.c (follow_exec): Likewise.
6707 * remote.c (remote_filesystem_is_local): Likewise.
6708 * solib.c (solib_find_1): Likewise.
6709
6710 2015-06-24 Keith Seitz <keiths@redhat.com>
6711
6712 * build-id.c (build_id_to_debug_bfd): Add cleanup to free
6713 return value from lrealpath.
6714
6715 2015-06-24 Mike Frysinger <vapier@gentoo.org>
6716
6717 * remote-sim.c (gdbsim_open): Move sysroot update to the top.
6718
6719 2015-06-24 Mike Frysinger <vapier@gentoo.org>
6720
6721 * remote-sim.c: Include gdb_bfd.h.
6722 (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
6723 Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
6724
6725 2015-06-24 Yao Qi <yao.qi@linaro.org>
6726
6727 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
6728 set_gdbarch_get_siginfo_type.
6729 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
6730 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
6731 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
6732 * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
6733 * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
6734 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
6735 * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
6736 * linux-tdep.c (linux_get_siginfo_type): Change it to static.
6737 (linux_init_abi): Call set_gdbarch_get_siginfo_type.
6738 * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
6739
6740 2015-06-24 Gary Benson <gbenson@redhat.com>
6741
6742 * common/buffer.c (stdint.h): Do not include.
6743 * common/print-utils.c (stdint.h): Likewise.
6744 * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
6745 * compile/compile-c-types.c (gdb_assert.h): Likewise.
6746 * ft32-tdep.c (gdb_assert.h): Likewise.
6747 * guile/scm-utils.c (stdint.h): Likewise.
6748 * i386-linux-tdep.c (stdint.h): Likewise.
6749 * i386-tdep.c (stdint.h): Likewise.
6750 * nat/linux-btrace.c (stdint.h): Likewise.
6751 * nat/linux-btrace.h (stdint.h): Likewise.
6752 * nat/linux-ptrace.c (stdint.h): Likewise.
6753 * nat/mips-linux-watch.h (stdint.h): Likewise.
6754 * ppc-linux-nat.c (stdint.h): Likewise.
6755 * python/python-internal.h (stdint.h): Likewise.
6756 * stub-termcap.c (stdlib.h): Likewise.
6757 * target/target.h (stdint.h): Likewise.
6758 * xtensa-linux-nat.c (stdint.h): Likewise.
6759
6760 2015-06-23 Patrick Palka <patrick@parcs.ath.cx>
6761
6762 * top.c (init_history): Look at errno after calling strtol to
6763 properly map large GDBHISTSIZE values to infinity.
6764
6765 2015-06-23 Doug Evans <dje@google.com>
6766
6767 * inferior.h (struct inferior_suspend_state): Delete, unused.
6768 All references deleted.
6769
6770 2015-06-23 Mike Frysinger <vapier@gentoo.org>
6771
6772 * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
6773 (microblaze_push_dummy_call): Likewise.
6774 (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
6775 and set_gdbarch_push_dummy_call.
6776
6777 2015-06-23 Yao Qi <yao.qi@linaro.org>
6778
6779 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
6780 Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
6781 (amd64_linux_store_inferior_registers): Likewise.
6782 * arm-linux-nat.c (fetch_fpregister): Likewise.
6783 (fetch_fpregs, store_fpregister): Likewise.
6784 (store_fpregister, store_fpregs): Likewise.
6785 (fetch_register, fetch_regs): Likewise.
6786 (store_register, store_regs): Likewise.
6787 (fetch_vfp_regs, store_vfp_regs): Likewise.
6788 (arm_linux_read_description): Check have_ptrace_getregset is
6789 TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE
6790 or TRIBOOL_FALSE.
6791 * i386-linux-nat.c (fetch_xstateregs): Check
6792 have_ptrace_getregset is not TRIBOOL_TRUE.
6793 (store_xstateregs): Likewise.
6794 * linux-nat.c (have_ptrace_getregset): Change its type to
6795 enum tribool.
6796 * linux-nat.h (tribool): New enum.
6797 * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
6798 Check whether have_ptrace_getregset is TRIBOOL_TRUE.
6799
6800 2015-06-19 Doug Evans <dje@google.com>
6801
6802 * NEWS: Mention Sun's version of stabs is no longer supported.
6803 * elfread.c (free_elfinfo): Delete. All uses updated.
6804 (elfstab_offset_sections): Delete. All uses updated.
6805 * gdb-stabs.h (stab_section_info): Delete. All uses updated.
6806 * psympriv.h (partial_symtab) <section_offsets>: Delete.
6807 All uses updated.
6808 * psymtab.c (start_psymtab_common): Delete arg section_offsets.
6809 All callers updated.
6810
6811 2015-06-18 Simon Marchi <simon.marchi@ericsson.com>
6812
6813 * common/rsp-low.c (needs_escaping): New.
6814 (remote_escape_output): Add unit_size parameter. Refactor to
6815 support multi-byte addressable units. Rename parameters.
6816 * common/rsp-low.h (remote_escape_output): Add unit_size
6817 parameter and rename others. Update doc.
6818 * remote.c (align_for_efficient_write): New.
6819 (remote_write_bytes_aux): Add unit_size parameter and use it.
6820 Rename some variables. Update doc.
6821 (remote_xfer_partial): Get unit size and use it.
6822 (remote_read_bytes_1): Add unit_size parameter and use it.
6823 Rename some variables. Update doc.
6824 (remote_write_bytes): Same.
6825 (remote_xfer_live_readonly_partial): Same.
6826 (remote_read_bytes): Same.
6827 (remote_flash_write): Update call to remote_write_bytes_aux.
6828 (remote_write_qxfer): Update call to remote_escape_output.
6829 (remote_search_memory): Same.
6830 (remote_hostio_pwrite): Same.
6831
6832 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
6833
6834 * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
6835 locations as inserted.
6836 Update and expand comment about permanent locations.
6837 (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
6838 Move comment to add_location_to_breakpoint.
6839 (update_global_location_list): Don't error out if a permanent
6840 breakpoint is not marked inserted.
6841 Don't error out if a non-permanent breakpoint location is inserted on
6842 top of a permanent breakpoint.
6843
6844 2015-06-17 Luis Machado <lgustavo@codesourcery.com>
6845
6846 * breakpoint.c (make_breakpoint_permanent): Remove unused
6847 function.
6848 * breakpoint.h (make_breakpoint_permanent): Remove declaration.
6849
6850 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
6851
6852 PR gdb/16999
6853 * NEWS: Mention new GDBHISTSIZE behavior.
6854 * top.c (init_history): For null or out-of-range GDBHISTSIZE,
6855 set history size to unlimited. Ignore non-numeric GDBHISTSIZE.
6856
6857 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
6858
6859 * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
6860 * top.c (init_history): Read from GDBHISTSIZE instead of
6861 HISTSIZE.
6862 (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
6863
6864 2015-06-17 Patrick Palka <patrick@parcs.ath.cx>
6865
6866 * top.c (gdb_safe_append_history): Do not call
6867 history_truncate_file if the history is not stifled.
6868
6869 2015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
6870
6871 * syscalls/s390-linux.xml: Add syscalls 344 through 354.
6872 * syscalls/s390x-linux.xml: Likewise.
6873
6874 2015-06-16 Michael Eager <eager@eagercon.com>
6875
6876 * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
6877
6878 2015-06-16 Patrick Palka <patrick@parcs.ath.cx>
6879
6880 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
6881 target_terminal_ours_for_output() before calling
6882 tui_show_frame_info(), and restore the original terminal
6883 settings afterwards.
6884
6885 2015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch)
6886
6887 * arm-linux-nat.c: Include nat/linux-ptrace.h.
6888
6889 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
6890
6891 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
6892 memory unit size.
6893 (mi_cmd_data_write_memory_bytes): Same.
6894
6895 2015-06-15 Simon Marchi <simon.marchi@ericsson.com>
6896
6897 * corefile.c (write_memory): Update doc.
6898 * gdbcore.h (write_memory): Same.
6899
6900 2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6901
6902 * linux-tdep.c (enum filterflags): Make it from anonymous enum.
6903 (dump_mapping_p): Use it for parameter filterflags.
6904 (linux_find_memory_regions_full): Use it for variable filterflags.
6905
6906 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
6907 Jan Kratochvil <jan.kratochvil@redhat.com>
6908
6909 Merge multiple hex conversions.
6910 * monitor.c: Include rsp-low.h.
6911 (fromhex): Remove definition.
6912
6913 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com
6914 Jan Kratochvil <jan.kratochvil@redhat.com>
6915
6916 Move utility functions to common/.
6917 * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
6918 Move defs to common/common-utils.c.
6919 * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
6920 (skip_to_space_const): Move decls to common/common-utils.h.
6921 * common/common-defs.h: Move include of common-types.h before
6922 common-utils.h.
6923 * common/common-utils.c: Include host-defs.h and ctype.h.
6924 (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
6925 from utils.c.
6926 (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
6927 cli/cli-utils.c.
6928 * common/common-utils.h (strtoulst): Move decl from utils.h.
6929 (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
6930 Move from cli/cli-utils.h.
6931 * common/host-defs.h: Include limits.h.
6932 (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
6933 (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
6934 * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
6935 common/common-utils.h.
6936 * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
6937 (strtoulst): Move to common/common-utils.c.
6938 * utils.h (strtoulst): Moved decl to common/common-utils.h.
6939
6940 2015-06-15 Yao Qi <yao.qi@linaro.org>
6941
6942 * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
6943
6944 2015-06-10 Jon Turney <jon.turney@dronecode.org.uk>
6945
6946 * build-id.c: Don't include elf-bfd.h.
6947 (build_id_bfd_get): Use bfd_build_id.
6948 (build_id_verify): Ditto.
6949 * build-id.h: Ditto.
6950 (find_separate_debug_file_by_buildid): Ditto.
6951 * python/py-objfile.c: Don't include elf-bfd.h.
6952 (objfpy_get_build_id) Use bfd_build_id.
6953 (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
6954 * coffread.c: Include build-id.h.
6955 (coff_symfile_read): Try find_separate_debug_file_by_buildid.
6956
6957 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
6958
6959 * windows-nat.c (do_windows_fetch_inferior_registers)
6960 (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
6961 conditional with __CYGWIN__.
6962
6963 2015-06-13 Andrew Burgess <andrew.burgess@embecosm.com>
6964
6965 * completer.c: Add arch-utils.h include.
6966 (enum reg_completer_targets): New enum.
6967 (reg_or_group_completer_1): New function containing old
6968 reg_or_group_completer, add and use new parameter to control what
6969 is completed on. Use get_current_arch rather than architecture of
6970 currently selected frame.
6971 (reg_or_group_completer): Call new reg_or_group_completer_1.
6972 (reggroup_completer): Call new reg_or_group_completer_1.
6973 * completer.h (reggroup_completer): Add declaration.
6974 * tui/tui-regs.c: Add 'completer.h' include.
6975 (tui_reg_next_command): Renamed to...
6976 (tui_reg_next): ...this. Adjust parameters and return rather than
6977 display new group.
6978 (tui_reg_prev_command): Renamed to...
6979 (tui_reg_prev): ...this. Adjust parameters and return rather than
6980 display new group.
6981 (tui_reg_float_command): Delete.
6982 (tui_reg_general_command): Delete.
6983 (tui_reg_system_command): Delete.
6984 (tui_reg_command): Rewrite to perform switching of register group.
6985 Add header comment.
6986 (tuireglist): Remove.
6987 (tui_reggroup_completer): New function.
6988 (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
6989 creation of 'tui reg' command.
6990 * NEWS: Add comment about 'tui reg' changes.
6991
6992 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
6993
6994 * target.c (target_read): Consider addressable unit size when
6995 reading from a memory object.
6996 (read_memory_robust): Same.
6997 (read_whatever_is_readable): Same.
6998 (target_write_with_progress): Consider addressable unit size
6999 when writing to a memory object.
7000 * target.h (target_read): Update documentation.
7001 (target_write): Add documentation.
7002
7003 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7004
7005 * arch-utils.h (default_addressable_memory_unit_size): New.
7006 * arch-utils.c (default_addressable_memory_unit_size): New.
7007 * gdbarch.sh (addressable_memory_unit_size): New.
7008 * gdbarch.h: Re-generate.
7009 * gdbarch.c: Re-generate.
7010
7011 2015-06-12 Simon Marchi <simon.marchi@ericsson.com>
7012
7013 * target.c (target_read): Rename variables and use
7014 TARGET_XFER_E_IO.
7015 (target_read_with_progress): Same.
7016 (read_memory_robust): Constify parameters and rename
7017 variables.
7018 (read_whatever_is_readable): Constify parameters,
7019 rename variables, adjust formatting.
7020 * target.h (read_memory_robust): Constify parameters.
7021
7022 2015-06-12 Ulrich Weigand <uweigand@de.ibm.com>
7023
7024 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
7025 synthetic (non-AltiVec) vector types.
7026 (ppc64_sysv_abi_return_value): Likewise.
7027
7028 2015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com>
7029
7030 PR breakpoints/16465
7031 * breakpoint.c (create_breakpoint): Save extra_string for
7032 pending breakpoints.
7033
7034 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
7035
7036 * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
7037 and bt_mask to CORE_ADDR.
7038
7039 2015-06-11 Gary Benson <gbenson@redhat.com>
7040
7041 * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
7042 (mnsh_recv_message): Likewise.
7043
7044 2015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com>
7045
7046 * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
7047 long long int and plongest instead of %ll.
7048
7049 2015-06-11 Gary Benson <gbenson@redhat.com>
7050
7051 * nat/linux-namespaces.c (gdb_wait.h): New include.
7052 (sys/wait.h): Do not include.
7053
7054 2015-06-10 Simon Marchi <simon.marchi@ericsson.com>
7055
7056 * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
7057 end_sequence is true.
7058
7059 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7060
7061 Code cleanup.
7062 * solib-target.c (library_list_start_list): Use explicit NULL
7063 comparison.
7064
7065 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7066
7067 * solib-target.c (library_list_start_list): Do not dereference
7068 variable version in its initialization. Make the VERSION check handle
7069 NULL.
7070 (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
7071
7072 2015-06-10 Gary Benson <gbenson@redhat.com>
7073
7074 * NEWS: Announce support for direct access of executable and
7075 shared library files when attaching to inferiors in containers
7076 on GNU/Linux systems.
7077
7078 2015-06-10 Gary Benson <gbenson@redhat.com>
7079
7080 * remote.c (struct remote_state) <fs_pid>: New field.
7081 (new_remote_state): Initialize the above.
7082 (PACKET_vFile_setfs): New enum value.
7083 (remote_hostio_set_filesystem): New function.
7084 (remote_hostio_open): Call the above.
7085 (remote_hostio_unlink): Likewise.
7086 (remote_hostio_readlink): Likewise.
7087 (_initialize_remote): Register new "set/show remote
7088 hostio-setfs-packet" command.
7089 * NEWS: Announce new vFile:setfs packet.
7090
7091 2015-06-10 Gary Benson <gbenson@redhat.com>
7092
7093 * linux-nat.c (nat/linux-namespaces.h): New include.
7094 (fileio.h): Likewise.
7095 (linux_nat_filesystem_is_local): New function.
7096 (linux_nat_fileio_pid_of): Likewise.
7097 (linux_nat_fileio_open): Likewise.
7098 (linux_nat_fileio_readlink): Likewise.
7099 (linux_nat_fileio_unlink): Likewise.
7100 (linux_nat_add_target): Initialize to_filesystem_is_local,
7101 to_fileio_open, to_fileio_readlink and to_fileio_unlink.
7102 (_initialize_linux_nat): New "set/show debug linux-namespaces"
7103 commands.
7104 * NEWS: Mention new "set/show debug linux-namespaces" commands.
7105
7106 2015-06-10 Gary Benson <gbenson@redhat.com>
7107
7108 * target.h (struct inferior): New forward declaration.
7109 (struct target_ops) <to_filesystem_is_local>: Update comment.
7110 (struct target_ops) <to_fileio_open>: New argument inf.
7111 Update comment. All implementations updated.
7112 (struct target_ops) <to_fileio_unlink>: Likewise.
7113 (struct target_ops) <to_fileio_readlink>: Likewise.
7114 (target_filesystem_is_local): Update comment.
7115 (target_fileio_open): New argument inf. Update comment.
7116 (target_fileio_unlink): Likewise.
7117 (target_fileio_readlink): Likewise.
7118 (target_fileio_read_alloc): Likewise.
7119 (target_fileio_read_stralloc): Likewise.
7120 * target.c (target_fileio_open): New argument inf.
7121 Pass inf to implementation. Update debug printing.
7122 (target_fileio_unlink): Likewise.
7123 (target_fileio_readlink): Likewise.
7124 (target_fileio_read_alloc_1): New argument inf. Pass inf
7125 to target_fileio_open.
7126 (target_fileio_read_alloc): New argument inf. Pass inf to
7127 target_fileio_read_alloc_1.
7128 (target_fileio_read_stralloc): Likewise.
7129 * gdb_bfd.c (inferior.h): New include.
7130 (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
7131 argument with new argument "inferior". Pass inferior to
7132 target_fileio_open.
7133 (gdb_bfd_open): Supply inferior argument to
7134 gdb_bfd_iovec_fileio_open.
7135 * linux-tdep.c (linux_info_proc): Supply inf argument to
7136 relevant target_fileio calls.
7137 (linux_find_memory_regions_full): Likewise.
7138 (linux_fill_prpsinfo): Likewise.
7139 * remote.c (remote_filesystem_is_local): Supply inf
7140 argument to remote_hostio_open.
7141 (remote_file_put): Likewise.
7142 (remote_file_get): Likewise.
7143 (remote_file_delete): Supply inf argument to
7144 remote_hostio_unlink.
7145
7146 2015-06-10 Gary Benson <gbenson@redhat.com>
7147
7148 * inf-child.c (inf_child_fileio_open): Replace comment.
7149 (inf_child_fileio_pwrite): Likewise.
7150 (inf_child_fileio_pread): Likewise.
7151 (inf_child_fileio_fstat): Insert blank line before comment.
7152 (inf_child_fileio_close): Replace comment.
7153 (inf_child_fileio_unlink): Likewise.
7154 (inf_child_fileio_readlink): Likewise.
7155 * remote.c (remote_hostio_open): Likewise.
7156 (remote_hostio_pread): Likewise.
7157 (remote_hostio_pwrite): Likewise.
7158 (remote_hostio_close): Likewise.
7159 (remote_hostio_unlink): Likewise.
7160 (remote_hostio_readlink): Likewise.
7161 (remote_hostio_fstat): Likewise.
7162 (remote_filesystem_is_local): Likewise.
7163 * target.c (target_fileio_open): Likewise.
7164 (target_fileio_pwrite): Likewise.
7165 (target_fileio_pread): Likewise.
7166 (target_fileio_fstat): Insert blank line before comment.
7167 (target_fileio_close): Replace comment.
7168 (target_fileio_unlink): Likewise.
7169 (target_fileio_readlink): Likewise.
7170 (target_fileio_read_alloc): Likewise.
7171 (target_fileio_read_stralloc): Likewise.
7172
7173 2015-06-10 Gary Benson <gbenson@redhat.com>
7174
7175 * linux-thread-db.c (nat/linux-namespaces.h): New include.
7176 (check_pid_namespace_match): Use linux_ns_same rather than
7177 linux_proc_pid_get_ns to spot PID namespace mismatches.
7178 * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
7179 * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
7180
7181 2015-06-10 Gary Benson <gbenson@redhat.com>
7182
7183 * configure.ac (AC_CHECK_FUNCS): Add setns.
7184 * config.in: Regenerate.
7185 * configure: Likewise.
7186 * nat/linux-namespaces.h: New file.
7187 * nat/linux-namespaces.c: Likewise.
7188 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
7189 (linux-namespaces.o): New rule.
7190 * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
7191 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
7192 * config/arm/linux.mh (NATDEPFILES): Likewise.
7193 * config/i386/linux.mh (NATDEPFILES): Likewise.
7194 * config/i386/linux64.mh (NATDEPFILES): Likewise.
7195 * config/ia64/linux.mh (NATDEPFILES): Likewise.
7196 * config/m32r/linux.mh (NATDEPFILES): Likewise.
7197 * config/m68k/linux.mh (NATDEPFILES): Likewise.
7198 * config/mips/linux.mh (NATDEPFILES): Likewise.
7199 * config/pa/linux.mh (NATDEPFILES): Likewise.
7200 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
7201 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
7202 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
7203 * config/s390/linux.mh (NATDEPFILES): Likewise.
7204 * config/sparc/linux.mh (NATDEPFILES): Likewise.
7205 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
7206 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
7207 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
7208
7209 2015-06-10 Gary Benson <gbenson@redhat.com>
7210
7211 * utils.h (make_cleanup_close): Moved to common/filestuff.h.
7212 * utils.c (do_close_cleanup): Moved to common/filestuff.c.
7213 (make_cleanup_close): Likewise.
7214 * common/filestuff.h (make_cleanup_close): Moved from utils.h.
7215 * common/filestuff.c (do_close_cleanup): Moved from utils.c.
7216 (make_cleanup_close): Likewise.
7217
7218 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7219
7220 * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
7221 from SuspendThread().
7222
7223 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
7224
7225 * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
7226 from OutputDebugString.
7227
7228 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
7229 Mircea Gherzan <mircea.gherzan@intel.com>
7230
7231 * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
7232 MPX_BT_MASK_32): New macros.
7233 (i386_mpx_set_bounds): New function that implements
7234 the command "set-mpx-bound".
7235 (i386_mpx_enabled): Helper function to test MPX availability.
7236 (i386_mpx_bd_base): Helper function to calculate the base directory
7237 address.
7238 (i386_mpx_get_bt_entry): Helper function to access a bound
7239 table entry.
7240 (i386_mpx_print_bounds): Effectively display bound information.
7241 (_initialize_i386_tdep): Add new commands to commands "set mpx" and
7242 "show mpx".
7243 (_initialize_i386_tdep):
7244 Add "bound" to the commands "show mpx" and "set mpx" commands.
7245 (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
7246 and "show mpx" commands.
7247 * NEWS: List new commands for MPX support.
7248
7249 2015-06-09 Gary Benson <gbenson@redhat.com>
7250
7251 * common/fileio.h (fileio_to_host_mode): New declaration.
7252 * common/fileio.c (fileio_to_host_mode): New Function.
7253 * inf-child.c (inf_child_fileio_open): Process mode argument
7254 with fileio_to_host_mode.
7255
7256 2015-06-09 Gary Benson <gbenson@redhat.com>
7257
7258 * common/fileio.c (fileio_mode_pack): Fix preprocessor
7259 conditional.
7260
7261 2015-06-05 Gary Benson <gbenson@redhat.com>
7262
7263 * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
7264 * remote.c (remote_filesystem_is_local): ...here.
7265
7266 2015-06-04 Yao Qi <yao.qi@linaro.org>
7267
7268 * gdbarch.c: Regenerate it.
7269
7270 2015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7271
7272 * arch-utils.c (default_infcall_munmap): New.
7273 * arch-utils.h (default_infcall_munmap): New declaration.
7274 * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
7275 (munmap_list_free, munmap_listp_free_cleanup): New.
7276 (struct setup_sections_data): Add field munmap_list_headp.
7277 (setup_sections): Call munmap_list_add.
7278 (compile_object_load): New variable munmap_list_head, initialize
7279 setup_sections_data.munmap_list_headp, return munmap_list_head.
7280 * compile/compile-object-load.h (struct munmap_list): New declaration.
7281 (struct compile_module): Add field munmap_list_head.
7282 (munmap_list_free): New declaration.
7283 * compile/compile-object-run.c (struct do_module_cleanup): Add field
7284 munmap_list_head.
7285 (do_module_cleanup): Call munmap_list_free.
7286 (compile_object_run): Pass munmap_list_head to do_module_cleanup.
7287 * gdbarch.c: Regenerate.
7288 * gdbarch.h: Regenerate.
7289 * gdbarch.sh (infcall_munmap): New.
7290 * linux-tdep.c (linux_infcall_munmap): New.
7291 (linux_init_abi): Install it.
7292
7293 2015-06-02 Simon Marchi <simon.marchi@ericsson.com>
7294
7295 PR gdb/15564
7296 * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
7297
7298 2015-06-02 Yao Qi <yao.qi@linaro.org>
7299
7300 * i386-linux-nat.c: Include linux-nat.h.
7301
7302 2015-06-01 Andreas Schwab <schwab@linux-m68k.org>
7303 Jan Kratochvil <jan.kratochvil@redhat.com>
7304
7305 PR symtab/18392
7306 * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
7307 assertion.
7308 * dwarf2loc.c (chain_candidate): Likewise.
7309
7310 2015-06-01 Yao Qi <yao.qi@linaro.org>
7311
7312 * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
7313 (store_vfp_regs): Use PTRACE_SETREGSET.
7314
7315 2015-06-01 Yao Qi <yao.qi@linaro.org>
7316
7317 * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
7318 (fetch_fpregs): Likewise.
7319 * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
7320 (store_fpregs): Likewise.
7321
7322 2015-06-01 Yao Qi <yao.qi@linaro.org>
7323
7324 * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
7325 (fetch_regs): Likewise.
7326 (store_regs): Use PTRACE_SETREGSET.
7327 (store_register): Likewise.
7328
7329 2015-06-01 Yao Qi <yao.qi@linaro.org>
7330
7331 * arm-linux-nat.c (arm_linux_read_description): Check whether
7332 kernel supports PTRACE_GETREGSET.
7333
7334 2015-06-01 Yao Qi <yao.qi@linaro.org>
7335
7336 * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
7337 * linux-nat.c: ... here.
7338 * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
7339 to ...
7340 * linux-nat.h: ... here.
7341
7342 2015-06-01 Yao Qi <yao.qi@linaro.org>
7343
7344 * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
7345 * i386-linux-nat.c: Likewise.
7346 * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
7347 * s390-linux-nat.c: Include "nat/linux-ptrace.h".
7348 (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7349 * x86-linux-nat.c: Include "nat/linux-ptrace.h".
7350 * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7351
7352 2015-05-30 Eli Zaretskii <eliz@gnu.org>
7353
7354 * go32-nat.c (go32_xfer_memory): Fix the return value to be
7355 compatible to what read_child and write_child return. This
7356 unbreaks that DJGPP build of GDB which was broken since v7.7.
7357
7358 2015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com>
7359
7360 * MAINTAINERS (Write After Approval): Add Martin Galvan.
7361
7362 2015-05-29 Roland McGrath <mcgrathr@google.com>
7363
7364 PR gdb/18464
7365 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
7366 rather than internal_error for an unrecognized value.
7367
7368 2015-05-29 Max Filippov <jcmvbkbc@gmail.com>
7369
7370 * xtensa-tdep.c (xtensa_pseudo_register_read)
7371 (xtensa_pseudo_register_write): Don't alias last pseudo register
7372 to a1.
7373
7374 2015-05-28 Don Breazeal <donb@codesourcery.com>
7375
7376 * infrun.c (follow_fork_inferior): Ensure the use of
7377 process-style ptids (pid,0,0) in verbose/debug "Detaching"
7378 messages.
7379
7380 2015-05-28 Doug Evans <dje@google.com>
7381
7382 * dwarf2read.c (record_line_ftype): Remove, duplicate.
7383
7384 2015-05-28 Yao Qi <yao.qi@linaro.org>
7385
7386 * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
7387 (arm_linux_fetch_inferior_registers): Use
7388 tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
7389 (arm_linux_store_inferior_registers): Likewise.
7390 (arm_linux_read_description): Don't set
7391 arm_linux_has_wmmx_registers.
7392 * arm-tdep.c (arm_gdbarch_init): Set
7393 tdep->have_wmmx_registers according target descriptions.
7394 * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
7395 field.
7396
7397 2015-05-28 Yao Qi <yao.qi@linaro.org>
7398
7399 * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
7400 (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
7401 instead of arm_linux_vfp_register_count.
7402 (store_vfp_regs): Likewise.
7403 (arm_linux_fetch_inferior_registers): Likewise.
7404 (arm_linux_store_inferior_registers): Likewise.
7405 (arm_linux_read_description): Don't set
7406 arm_linux_vfp_register_count.
7407 * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
7408 Adjust.
7409 * arm-tdep.c (arm_gdbarch_init): Add assert on
7410 vfp_register_count.
7411 * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
7412 field to vfp_register_count. All users updated.
7413
7414 2015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch)
7415
7416 * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
7417 ELFOSABI_GNU binaries.
7418
7419 2015-05-27 Doug Evans <dje@google.com>
7420
7421 * dwarf2read.c (lnp_state_machine): New typedef.
7422 (lnp_reader_state): New typedef.
7423 (dwarf_record_line_1): Renamed from dwarf_record_line.
7424 All callers updated.
7425 (dwarf_record_line): New function.
7426 (init_lnp_state_machine): New function.
7427 (check_line_address): Replace p_record_line parameter with state.
7428 All callers updated.
7429 (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
7430 Update to record state in lnp_state_machine.
7431
7432 2015-05-27 Doug Evans <dje@google.com>
7433
7434 * dwarf2read.c (record_line_ftype): New typedef.
7435 (check_line_address): New function.
7436 (dwarf_decode_lines_1): Call it.
7437
7438 2015-05-27 Doug Evans <dje@google.com>
7439
7440 * NEWS: Mention "set debug dwarf-line".
7441 * dwarf2read.c (dwarf_line_debug): New static global.
7442 (add_include_dir): Add debug dwarf-line support.
7443 (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
7444 (_initialize_dwarf2_read): New parameter "debug dwarf-line".
7445
7446 2015-05-27 Doug Evans <dje@google.com>
7447
7448 * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
7449 All callers updated.
7450 (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
7451 * cp-support.h (cp_lookup_nested_symbol): Update.
7452
7453 2015-05-27 Doug Evans <dje@google.com>
7454
7455 PR symtab/18258
7456 * block.c (block_find_symbol): New function.
7457 (block_find_non_opaque_type): Ditto.
7458 (block_find_non_opaque_type_preferred): Ditto.
7459 * block.h (block_symbol_matcher_ftype): New typedef.
7460 (block_find_symbol): Declare.
7461 (block_find_non_opaque_type): Ditto.
7462 (block_find_non_opaque_type_preferred): Ditto.
7463 * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
7464 * psymtab.c (psym_lookup_symbol): Ditto.
7465 * symtab.c (basic_lookup_transparent_type_1): New function.
7466 (basic_lookup_transparent_type): Call it.
7467
7468 2015-05-27 Yao Qi <yao.qi@linaro.org>
7469
7470 * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
7471 AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
7472
7473 2015-05-27 Yao Qi <yao.qi@linaro.org>
7474
7475 * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
7476 before operator &&.
7477 (aarch64_record_load_store): Likewise.
7478
7479 2015-05-26 Doug Evans <dje@google.com>
7480
7481 PR c++/18141, c++/18417.
7482 * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
7483 a typedef.
7484
7485 2015-05-26 Doug Evans <dje@google.com>
7486
7487 * NEWS: Add entries for command renamings.
7488 * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
7489 All uses updated.
7490 (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated.
7491 (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
7492 All uses updated.
7493 (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
7494 All callers updated. Fix spelling of DWARF in help text.
7495 (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
7496 All uses updated.
7497 (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
7498 All uses updated.
7499 (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated.
7500 (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated.
7501 (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
7502 All uses updated.
7503 (show_dwarf_always_disassemble): Renamed from
7504 show_dwarf2_always_disassemble. All callers updated.
7505 (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
7506 "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to
7507 "set/show dwarf max-cache-age". Rename
7508 "set/show dwarf2 always-disassemble" to
7509 "set/show dwarf always-disassemble". Rename
7510 "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename
7511 "set/show debug dwarf2-die" to "set/show debug dwarf-die".
7512
7513 2015-05-26 Doug Evans <dje@google.com>
7514
7515 PR python/18438
7516 * python/py-lazy-string.c (stpy_convert_to_value): Use
7517 gdbpy_gdb_memory_error not PyExc_MemoryError.
7518 (gdbpy_create_lazy_string_object): Ditto.
7519
7520 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
7521
7522 * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
7523
7524 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
7525
7526 * tui/tui-regs.c (tui_reg_prev_command): New function.
7527 (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
7528 * reggroups.c (reggroup_prev): New function.
7529 * reggroups.h (reggroup_prev): Add declaration. Update comment.
7530
7531 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
7532 Yao Qi <yao.qi@linaro.org>
7533
7534 * aarch64-linux-tdep.c: Include linux-record.h and
7535 record-full.h.
7536 (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
7537 (aarch64_syscall): New enum.
7538 (aarch64_canonicalize_syscall): New function.
7539 (aarch64_all_but_pc_registers_record): New function.
7540 (aarch64_linux_syscall_record): New function.
7541 (aarch64_linux_init_abi): Install AArch64 process record
7542 handler. Update to handle syscall recording.
7543 * aarch64-tdep.c: Include record.h and record-full.h.
7544 (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
7545 (struct aarch64_mem_r): Define.
7546 (aarch64_record_result): New enum.
7547 (struct insn_decode_record): Define.
7548 (insn_decode_record): New typedef.
7549 (aarch64_record_data_proc_reg): New function.
7550 (aarch64_record_data_proc_imm): New function.
7551 (aarch64_record_branch_except_sys): New function.
7552 (aarch64_record_load_store): New function.
7553 (aarch64_record_data_proc_simd_fp): New function.
7554 (aarch64_record_asimd_load_store): New function.
7555 (aarch64_record_decode_insn_handler): New function.
7556 (deallocate_reg_mem): New function.
7557 (aarch64_process_record): New function.
7558 * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
7559 New field.
7560 (aarch64_process_record): New extern declaration.
7561 * configure.tgt: Add linux-record.o to gdb_target_obs.
7562 * linux-record.h (struct linux_record_tdep) <arg7>: New field.
7563
7564 2015-05-26 Omair Javaid <omair.javaid@linaro.org>
7565
7566 * NEWS: Add a note on process record-replay support on aarch64*-linux*
7567 targets.
7568
7569 2015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com>
7570
7571 * amd64-tdep.c: Replace in_function_epilogue_p with
7572 stack_frame_destroyed_p throughout.
7573 * arch-utils.c: Ditto.
7574 * arch-utils.h: Ditto.
7575 * arm-tdep.c: Ditto.
7576 * breakpoint.c: Ditto.
7577 * gdbarch.sh: Ditto.
7578 * hppa-tdep.c: Ditto.
7579 * i386-tdep.c: Ditto.
7580 * mips-tdep.c: Ditto.
7581 * nios2-tdep.c: Ditto.
7582 * rs6000-tdep.c: Ditto.
7583 * s390-linux-tdep.c: Ditto.
7584 * score-tdep.c: Ditto.
7585 * sh-tdep.c: Ditto.
7586 * sparc-tdep.c: Ditto.
7587 * sparc-tdep.h: Ditto.
7588 * sparc64-tdep.c: Ditto.
7589 * spu-tdep.c: Ditto.
7590 * tic6x-tdep.c: Ditto.
7591 * tilegx-tdep.c: Ditto.
7592 * xstormy16-tdep.c: Ditto.
7593 * gdbarch.c, gdbarch.h: Re-generated.
7594
7595 2015-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
7596
7597 * NEWS: Mention 'tui enable' and 'tui disable'.
7598 * tui/tui.c (tui_enable_command): New function.
7599 (tui_disable_command): New function.
7600 (_initialize_tui): New function.
7601
7602 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7603
7604 * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
7605
7606 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7607
7608 * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
7609 buf_ptr is freed.
7610
7611 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7612
7613 * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
7614 into ...
7615 (tui_set_layout_for_display_command): ...here, before calling
7616 tui_set_layout. Only set the layout if gdb has not already
7617 entered the TUI_FAILURE state.
7618
7619 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7620
7621 * tui/tui-layout.c (layout_completer): New function.
7622 (_initialize_tui_layout): Set completer on layout command.
7623
7624 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7625
7626 * tui/tui-layout.c (tui_set_layout): Remove
7627 tui_register_display_type parameter. Remove all checking of this
7628 parameter, and reindent function. Update header comment.
7629 (tui_set_layout_for_display_command): Rename to...
7630 (tui_set_layout_by_name): ...this, and don't check for different
7631 register class types, don't pass a tui_register_display_type to
7632 tui_set_layout. Update header comment.
7633 (layout_names): Remove register set specific names.
7634 * tui/tui-layout.h (tui_set_layout): Remove
7635 tui_register_display_type parameter.
7636 * tui/tui.c (tui_rl_change_windows): Don't pass a
7637 tui_register_display_type to tui_set_layout.
7638 (tui_rl_delete_other_windows): Likewise.
7639 (tui_enable): Likewise.
7640 * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
7641 (TUI_FLOAT_REGS_NAME_LOWER): Remove.
7642 (TUI_GENERAL_REGS_NAME): Remove.
7643 (TUI_GENERAL_REGS_NAME_LOWER): Remove.
7644 (TUI_SPECIAL_REGS_NAME): Remove.
7645 (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
7646 (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
7647 (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
7648 (enum tui_register_display_type): Remove.
7649 (struct tui_layout_def): Remove regs_display_type and
7650 float_regs_display_type fields.
7651 (struct tui_data_info): Remove regs_display_type field.
7652 (tui_layout_command): Use new name for
7653 tui_set_layout_for_display_command.
7654 * tui/tui-data.c (layout_def): Don't initialise removed fields.
7655 (tui_clear_win_detail): Don't initialise removed fields of
7656 win_info.
7657 * tui/tui-regs.c (tui_show_registers): Use new name for
7658 tui_set_layout_for_display_command.
7659 * tui/tui.h (tui_set_layout_for_display_command): Rename
7660 declaration to...
7661 (tui_set_layout_by_name): ...this.
7662 * printcmd.c (display_command): Remove tui related layout call,
7663 and reindent.
7664
7665 2015-05-20 Joel Brobecker <brobecker@adacore.com>
7666
7667 * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
7668 (handle_inferior_event): New function.
7669
7670 2015-05-20 Joel Brobecker <brobecker@adacore.com>
7671
7672 * ada-lang.c (to_fixed_array_type): Rename local variable
7673 typename into type_name.
7674
7675 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7676
7677 Fix ASAN crash for gdb.compile/compile.exp.
7678 * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
7679
7680 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7681
7682 * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
7683 (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
7684 * compile/compile-object-load.c (setup_sections, compile_object_load):
7685 Likewise.
7686 * compile/compile.c (compile_to_object): Likewise.
7687
7688 2015-05-16 Doug Evans <xdje42@gmail.com>
7689
7690 * NEWS: Mention support for unbuffered Guile memory ports.
7691 * scm-ports.c (ioscm_memory_port): Update comments on end, size.
7692 (ioscm_lseek_address): Improve overflow calculation.
7693 (gdbscm_memory_port_fill_input): Add assert.
7694 (gdbscm_memory_port_write): Handle unbuffered ports.
7695 Handle large writes identical to Guile's fport_write.
7696 (gdbscm_memory_port_seek): Fix seeking past end check.
7697 (gdbscm_memory_port_close): Handle closing unbuffered port.
7698 (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
7699 (ioscm_init_memory_port): Handle unbuffered ports.
7700 (ioscm_reinit_memory_port): Ditto.
7701 (ioscm_init_memory_port): Update size calculation.
7702 (gdbscm_open_memory): Support zero sized ports.
7703
7704 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7705
7706 * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
7707 variable compiler warnings.
7708
7709 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7710
7711 * compile/compile-object-load.c (get_out_value_type): Fix returned type.
7712
7713 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7714 Phil Muldoon <pmuldoon@redhat.com>
7715
7716 * NEWS (Changes since GDB 7.9): Add compile print.
7717 * compile/compile-c-support.c (add_code_header, add_code_footer)
7718 (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
7719 COMPILE_I_PRINT_VALUE_SCOPE.
7720 * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
7721 (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
7722 New.
7723 * compile/compile-object-load.c: Include block.h.
7724 (get_out_value_type): New function.
7725 (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
7726 COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and
7727 OUT_VALUE_TYPE.
7728 * compile/compile-object-load.h (struct compile_module): Add fields
7729 out_value_addr and out_value_type.
7730 * compile/compile-object-run.c: Include valprint.h and compile.h.
7731 (struct do_module_cleanup): Add fields out_value_addr and
7732 out_value_type.
7733 (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
7734 COMPILE_I_PRINT_VALUE_SCOPE.
7735 (compile_object_run): Propagate out_value_addr and out_value_type.
7736 Pass OUT_VALUE_ADDR.
7737 * compile/compile.c: Include valprint.h.
7738 (compile_print_value, compile_print_command): New functions.
7739 (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
7740 (_initialize_compile): Update compile code help text. Install
7741 compile_print_command.
7742 * compile/compile.h (compile_print_value): New prototype.
7743 * defs.h (enum compile_i_scope_types): Add
7744 COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
7745
7746 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7747
7748 * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
7749 Rely on its parameter count.
7750 (compile_object_load): Replace lookup_minimal_symbol_text by
7751 lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the
7752 return value.
7753 * compile/compile-object-load.h (struct compile_module): Replace
7754 func_addr by func_sym.
7755 * compile/compile-object-run.c: Include block.h.
7756 (compile_object_run): Reset module variable after it is freed. Use
7757 FUNC_SYM instead of FUNC_ADDR. Rely on it.
7758
7759 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7760
7761 * compile/compile-c-support.c (print_one_macro): Use #ifndef.
7762 (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
7763 (c_compute_program): Call generate_register_struct after typedefs.
7764 * compile/compile-loc2c.c (push, pushf_register_address)
7765 (pushf_register): Cast to GCC_UINTPTR.
7766 (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after
7767 type. Use GCC_UINTPTR instead of void *. Remove excessive cast.
7768 (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
7769 * compile/compile.c (_initialize_compile): Enable warnings for
7770 COMPILE_ARGS.
7771
7772 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7773
7774 * cli/cli-script.c (execute_control_command): Update
7775 eval_compile_command caller.
7776 * compile/compile-object-load.c (compile_object_load): Add parameters
7777 scope and scope_data. Set them.
7778 * compile/compile-object-load.h (struct compile_module): Add fields
7779 scope and scope_data.
7780 (compile_object_load): Add parameters scope and scope_data.
7781 * compile/compile-object-run.c (struct do_module_cleanup): Add fields
7782 scope and scope_data.
7783 (compile_object_run): Propagate the fields scope and scope_data.
7784 * compile/compile.c (compile_file_command, compile_code_command):
7785 Update eval_compile_command callers.
7786 (eval_compile_command): Add parameter scope_data. Pass it plus scope.
7787 * compile/compile.h (eval_compile_command): Add parameter scope_data.
7788 * defs.h (struct command_line): Add field scope_data.
7789
7790 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7791
7792 * printcmd.c (struct format_data): Move it to valprint.h.
7793 (print_command_parse_format, print_value): New functions from ...
7794 (print_command_1): ... here. Call them.
7795 * valprint.h (struct format_data): Move it here from printcmd.c.
7796 (print_command_parse_format, print_value): New declarations.
7797
7798 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7799
7800 * compile/compile-object-load.c (compile_object_load): Add
7801 COMPILE_DEBUG message.
7802
7803 2015-05-15 Jerome Guitton <guitton@adacore.com>
7804
7805 * ada-lang.c (ada_value_ptr_subscript): Use enum position of
7806 index to get element instead of enum value.
7807 (ada_value_slice_from_ptr, ada_value_slice): Use enum position
7808 of index to compute length, but enum values to compute bounds.
7809 (ada_array_length): Use enum position of index instead of enum value.
7810 (pos_atr): Move position computation to...
7811 (ada_evaluate_subexp): Use enum values to compute bounds.
7812 * gdbtypes.c (discrete_position): ...this new function.
7813 * gdbtypes.h (discrete_position): New function declaration.
7814 * valprint.c (val_print_array_elements): Call discrete_position
7815 to handle array indexed by non-contiguous enumeration types.
7816
7817 2015-05-15 Jerome Guitton <guitton@adacore.com>
7818
7819 * ada-lang.c (find_parallel_type_by_descriptive_type):
7820 Go through typedefs during lookup.
7821 (to_fixed_array_type): Add support for non-bit packed arrays
7822 as variable-length fields.
7823
7824 2015-05-15 Pedro Alves <palves@redhat.com>
7825 Simon Marchi <simon.marchi@ericsson.com>
7826
7827 * event-loop.c (gdb_notifier) <next_file_handler,
7828 next_poll_fds_index>: New fields.
7829 (get_next_file_handler_to_handle_and_advance): New function.
7830 (delete_file_handler): If deleting the next file handler to
7831 handle, advance to the next file handler.
7832 (gdb_wait_for_event): Bail early if no event fired. Poll file
7833 handlers in round-robin fashion.
7834
7835 2015-05-15 Pedro Alves <palves@redhat.com>
7836
7837 * linux-tdep.c (linux_find_memory_regions_full): Rename local
7838 'private' to 'priv'.
7839
7840 2015-05-15 Pedro Alves <palves@redhat.com>
7841
7842 * nat/linux-nat.h: Include "target/waitstatus.h".
7843
7844 2015-05-15 Yuanhui Zhang <asmwarrior@gmail.com>
7845
7846 * python/py-unwind.c (struct reg_info): Move out of ...
7847 (struct cached_frame_info): ... this scope.
7848 (pending_frame_object_type, unwind_info_object_type): Make extern.
7849
7850 2015-05-15 Joel Brobecker <brobecker@adacore.com>
7851
7852 * ada-lang.c (ada_value_primitive_packed_val): Make sure
7853 accumSize is never negative.
7854
7855 2015-05-14 Patrick Palka <patrick@parcs.ath.cx>
7856
7857 * tui/tui-command.c: Remove include of <ctype.h>.
7858 (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
7859
7860 2015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com>
7861
7862 * dwarf2read.c (die_needs_namespace): Return 1 for
7863 DW_TAG_inlined_subroutine.
7864
7865 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7866
7867 * regcache.c (regcache_cpy_no_passthrough): New declaration.
7868 (regcache_cpy_no_passthrough): Make it static, add function comment.
7869 * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
7870 (regcache_cpy_no_passthrough): Remove declaration.
7871
7872 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7873
7874 * gdbthread.h (struct thread_control_state): Update comment for
7875 proceed_to_finish.
7876 * infcall.c (run_inferior_call): Update comment about
7877 proceed_to_finish.
7878 * infcmd.c (get_return_value): Update comment about stop_registers.
7879 (finish_forward): Update comment about proceed_to_finish.
7880 * infrun.c (stop_registers): Remove.
7881 (clear_proceed_status, normal_stop): Remove stop_registers handling.
7882 * infrun.h (stop_registers): Remove.
7883
7884 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7885
7886 * infcall.c (struct dummy_frame_context_saver)
7887 (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
7888 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
7889 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
7890 New.
7891 (call_function_by_hand_dummy): Move discard_cleanups of
7892 inf_status_cleanup before dummy_frame_push. Call
7893 dummy_frame_context_saver_setup and prepare context_saver_cleanup.
7894 Use dummy_frame_context_saver_get_regs instead of stop_registers.
7895 * infcall.h (struct dummy_frame_context_saver)
7896 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
7897 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
7898 New declarations.
7899 * infcmd.c: Include infcall.h.
7900 (get_return_value): Add parameter ctx_saver, use it instead of
7901 stop_registers.
7902 (print_return_value): Add parameter ctx_saver, pass it.
7903 (struct finish_command_continuation_args): Add field ctx_saver.
7904 (finish_command_continuation): Update print_return_value caller.
7905 (finish_command_continuation_free_arg): Free also ctx_saver.
7906 (finish_forward): Call dummy_frame_context_saver_setup.
7907 * inferior.h (struct dummy_frame_context_saver): New declaration.
7908 (get_return_value): Add parameter ctx_saver.
7909 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
7910 get_return_value caller.
7911
7912 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7913
7914 * dummy-frame.c (struct dummy_frame_dtor_list): New.
7915 (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
7916 (remove_dummy_frame): Process dtor_list.
7917 (pop_dummy_frame): Process dtor_list.
7918 (register_dummy_frame_dtor): Maintain dtor_list.
7919 (find_dummy_frame_dtor): Handle dtor_list.
7920 * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
7921 Update comments.
7922
7923 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7924
7925 * compile/compile-object-run.c (do_module_cleanup): Add parameter
7926 registers_valid.
7927 (compile_object_run): Update do_module_cleanup caller.
7928 * dummy-frame.c: Include infcall.h.
7929 (struct dummy_frame): Update dtor comment.
7930 (remove_dummy_frame): Call dtor.
7931 (pop_dummy_frame): Update dtor caller.
7932 * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
7933 registers_valid.
7934
7935 2015-05-13 Joel Brobecker <brobecker@adacore.com>
7936
7937 GDB 7.9.1 released.
7938
7939 2015-05-13 Joel Brobecker <brobecker@adacore.com>
7940
7941 * NEWS: Create "Changes in GDB 7.9.1" section. Move news about
7942 Xmethods now being able to specify a result type to that new
7943 sectioin.
7944
7945 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
7946
7947 * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
7948 first before resizing the window.
7949 * tui/tui.c (tui_enable): Likewise.
7950
7951 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7952
7953 * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
7954 * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
7955 * infcall.c (call_function_by_hand_dummy): Use proper typedef for
7956 dummy_dtor parameter.
7957 * infcall.h: Include dummy-frame.h.
7958 (call_function_by_hand_dummy_dtor_ftype): Remove.
7959 (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
7960 parameter.
7961
7962 2015-05-13 Patrick Palka <patrick@parcs.ath.cx>
7963
7964 PR gdb/17820
7965 * top.c (history_size_setshow_var): Change type to signed.
7966 Initialize to -2. Update documentation.
7967 (set_readline_history_size): Define.
7968 (set_history_size_command): Use it. Remove logic for handling
7969 out-of-range sizes.
7970 (init_history): Use set_readline_history_size(). Test for a
7971 value of -2 instead of 0 when determining whether to set a
7972 default history size.
7973 (init_main): Decode the argument of the "size" command as a
7974 zuinteger_unlimited.
7975
7976 2015-05-12 Doug Evans <dje@google.com>
7977
7978 * dwarf2read.c (struct file_entry): Tweak comments.
7979 (get_debug_line_section): Tweak comments.
7980
7981 2015-05-12 Don Breazeal <donb@codesourcery.com>
7982
7983 * NEWS: Announce fork support in the RSP and support
7984 for fork debugging in extended mode.
7985
7986 2015-05-12 Don Breazeal <donb@codesourcery.com>
7987
7988 * remote.c (remote_insert_fork_catchpoint): New function.
7989 (remote_remove_fork_catchpoint): New function.
7990 (remote_insert_vfork_catchpoint): New function.
7991 (remote_remove_vfork_catchpoint): New function.
7992 (pending_fork_parent_callback): New function.
7993 (remove_new_fork_child): New function.
7994 (remote_update_thread_list): Call remote_notif_get_pending_events
7995 and remove_new_fork_child.
7996 (extended_remote_kill): Kill fork child when killing the
7997 parent before follow_fork completes.
7998 (init_extended_remote_ops): Initialize target vector with
7999 new fork catchpoint functions.
8000
8001 2015-05-12 Don Breazeal <donb@codesourcery.com>
8002
8003 * remote.c (remove_vfork_event_p): New function.
8004 (remote_follow_fork): Add vfork event type to event checking.
8005 (remote_parse_stop_reply): New stop reasons "vfork" and
8006 "vforkdone" for RSP 'T' Stop Reply Packet.
8007
8008 2015-05-12 Don Breazeal <donb@codesourcery.com>
8009
8010 * linux-nat.c (linux_nat_ptrace_options): New function.
8011 (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
8012 Call linux_nat_ptrace_options and use different argument to
8013 linux_enable_event_reporting.
8014 (_initialize_linux_nat): Delete call to
8015 linux_ptrace_set_additional_flags.
8016 * nat/linux-ptrace.c (current_ptrace_options): Rename to
8017 supported_ptrace_options.
8018 (additional_flags): Delete variable.
8019 (linux_check_ptrace_features): Use supported_ptrace_options.
8020 (linux_test_for_tracesysgood, linux_test_for_tracefork):
8021 Likewise, and remove additional_flags check.
8022 (linux_enable_event_reporting): Change 'attached' argument to
8023 'options'. Use supported_ptrace_options.
8024 (ptrace_supports_feature): Change comment. Use
8025 supported_ptrace_options.
8026 (linux_ptrace_set_additional_flags): Delete function.
8027 * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
8028 Delete function prototype.
8029 * remote.c (remote_fork_event_p): New function.
8030 (remote_detach_pid): New function.
8031 (remote_detach_1): Call remote_detach_pid, don't mourn inferior
8032 if doing detach-on-fork.
8033 (remote_follow_fork): New function.
8034 (remote_parse_stop_reply): Handle new "T" stop reason "fork".
8035 (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
8036 (init_extended_remote_ops): Initialize to_follow_fork.
8037
8038 2015-05-12 Don Breazeal <donb@codesourcery.com>
8039
8040 * nat/linux-ptrace.c (linux_check_ptrace_features): Change
8041 from static to extern.
8042 * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
8043 * remote.c (anonymous enum): <PACKET_fork_event_feature,
8044 * PACKET_vfork_event_feature>: New enumeration constants.
8045 (remote_protocol_features): Add table entries for new packets.
8046 (remote_query_supported): Add new feature queries to qSupported
8047 packet.
8048
8049 2015-05-12 Gary Benson <gbenson@redhat.com>
8050
8051 * remote.c (remote_add_inferior): Call exec_file_locate_attach
8052 for fake PIDs as well as real ones.
8053 (remote_pid_to_exec_file): Send empty annex if PID is fake.
8054
8055 2015-05-09 Siva Chandra Reddy <sivachandra@google.com>
8056
8057 * NEWS (Python Scripting): Mention the new gdb.Value methods.
8058 * python/py-value.c (valpy_reference_value): New function.
8059 (valpy_const_value): Likewise.
8060 (value_object_methods): Add new methods.
8061 * value.c (make_cv_value): New function.
8062 * value.h (make_cv_value): Declare.
8063
8064 2015-05-08 Yao Qi <yao@codesourcery.com>
8065 Sandra Loosemore <sandra@codesourcery.com>
8066
8067 * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
8068 to 'lh->include_dirs' before accessing to it.
8069 (psymtab_include_file_name): Likewise.
8070 (dwarf_decode_lines_1): Likewise.
8071 (dwarf_decode_lines): Likewise.
8072 (file_file_name): Likewise.
8073
8074 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
8075
8076 * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
8077 (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
8078 (nios2_linux_rt_sigreturn_init): Adjust base address of
8079 register save area.
8080
8081 2015-05-08 Sandra Loosemore <sandra@codesourcery.com>
8082
8083 * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
8084 "trap 31" as the breakpoint instruction on all targets.
8085
8086 2015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8087
8088 * infcmd.c (print_return_value): Remove unused declaration.
8089
8090 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8091
8092 * dwarf2read.c (attr_to_dynamic_prop)
8093 <DW_AT_data_member_location>: Use read_type_die isntead of
8094 get_die_type.
8095
8096 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8097
8098 * ada-lang.c (ada_convert_actual): Add handling of formals
8099 passed inside an aligner type.
8100
8101 2015-05-08 Joel Brobecker <brobecker@adacore.com>
8102
8103 * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
8104
8105 2015-05-08 Siva Chandra Reddy <sivachandra@google.com>
8106
8107 PR python/18291
8108 * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
8109 Print xmethod matcher status.
8110
8111 2015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com>
8112
8113 * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
8114 register in the regcache when treating the PSWM register, and vice
8115 versa.
8116
8117 2015-05-07 Gary Benson <gbenson@redhat.com>
8118
8119 * linux-thread-db.c (struct thread_db_info)
8120 <td_ta_map_id2thr_p>: Remove field.
8121 (try_thread_db_load_1): Remove initialization for the above.
8122
8123 2015-05-07 Gary Benson <gbenson@redhat.com>
8124
8125 * linux-thread-db.c (struct thread_db_info)
8126 <td_thr_validate_p>: Remove field.
8127 (try_thread_db_load_1): Remove initialization for the above.
8128
8129 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8130
8131 * compile/compile-object-load.c (compile_object_load): Support
8132 mst_text_gnu_ifunc.
8133
8134 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8135
8136 * compile/compile.c (compile_to_object): Make the cmd_string parameter
8137 const. Use new variables for the const compatibility.
8138 (eval_compile_command): Make the cmd_string parameter const.
8139 * compile/compile.h (eval_compile_command): Make the cmd_string
8140 parameter const.
8141
8142 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8143
8144 * defs.h (deprecated_init_ui_hook): Delete. Remove associated
8145 comment.
8146 * top.c (deprecated_init_ui_hook): Delete.
8147 (gdb_init): Remove handling of deprecated_init_ui_hook.
8148 * interps.c (clear_interpreter_hooks): Remove handling of
8149 deprecated_init_ui_hook.
8150 * main.c (captured_main): Update comment.
8151
8152 2015-05-06 Joel Brobecker <brobecker@adacore.com>
8153
8154 * solib.c (_initialize_solib): Add "info dll" alias creation.
8155 * windows-nat.c (set_windows_aliases): Delete.
8156 (_initialize_windows_nat): Remove deprecated_init_ui_hook
8157 assignment.
8158 * NEWS: Add news entry about "info dll" now being available
8159 on all platforms.
8160
8161 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8162
8163 * ada-lang.c (value_assign_to_component): Reformat and improve
8164 documentation. Remove all trailing spaces.
8165
8166 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8167
8168 * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
8169 Stop counting inlined frames as soon as an out-of-line function
8170 is found.
8171
8172 2014-05-05 Pierre-Marie de Rodat <derodat@adacore.com>
8173
8174 * dwarf2read.c (inherit_abstract_dies): Skip
8175 DW_TAG_GNU_call_site dies while inheriting children of an
8176 abstract DIE into a scope.
8177 (read_lexical_block_scope): Inherit abstract DIE's for
8178 lexical scopes.
8179
8180 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8181
8182 * ada-valprint.c (val_print_packed_array_elements): Delete
8183 variable "len". Add a type-length check when comparing two
8184 consecutive elements of the array. Use the element's actual
8185 length in call to value_contents_eq.
8186 * ada-lang.c (ada_value_primitive_packed_val): Always return
8187 a value whose type has been resolved.
8188
8189 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8190
8191 * ada-lang.c (ada_value_primitive_packed_val): Recompute
8192 BIT_SIZE and LEN if the size of the resolved type is smaller
8193 than BIT_SIZE * HOST_CHAR_BIT.
8194
8195 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8196
8197 * ada-lang.c (ada_value_primitive_packed_val): Use a more
8198 correct address in call to value_at. Adjust call to
8199 value_address accordingly.
8200
8201 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8202
8203 * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
8204 to print it.
8205
8206 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8207
8208 * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
8209 * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
8210 pinfo->valaddr.
8211 * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
8212 * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
8213 (resolve_dynamic_type_internal): Set pinfo.valaddr.
8214 Add handling of addr_stack->valaddr.
8215 (resolve_dynamic_type): Add "valaddr" parameter.
8216 Set pinfo.valaddr field.
8217 * ada-lang.c (ada_discrete_type_high_bound): Update call to
8218 resolve_dynamic_type.
8219 (ada_discrete_type_low_bound): Likewise.
8220 * findvar.c (default_read_var_value): Likewise.
8221 * value.c (value_from_contents_and_address): Likewise.
8222
8223 2015-05-05 Joel Brobecker <brobecker@adacore.com>
8224
8225 * gdbtypes.c (resolve_dynamic_array): Use
8226 create_array_type_with_stride instead of create_array_type.
8227
8228 2015-04-30 DJ Delorie <dj@redhat.com>
8229
8230 * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
8231 rl78_decode_opcode
8232
8233 2015-04-29 Doug Evans <dje@google.com>
8234
8235 PR python/18285
8236 * NEWS: Document new gdb.XMethodWorker.get_result_type method.
8237 * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
8238 EVAL_AVOID_SIDE_EFFECTS for xmethods.
8239 * extension-priv.h (struct extension_language_ops)
8240 <get_xmethod_result_type>: New member.
8241 * extension.c (get_xmethod_result_type): New function.
8242 * extension.h (get_xmethod_result_type): Declare.
8243 * python/py-xmethods.c (get_result_type_method_name): New static
8244 global.
8245 (py_get_result_type_method_name): Ditto.
8246 (gdbpy_get_xmethod_result_type): New function.
8247 (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
8248 * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
8249 * python/python.c (python_extension_ops): Add
8250 gdbpy_get_xmethod_result_type.
8251 * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
8252 * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
8253 xmethods.
8254 (value_x_unop): Ditto.
8255 * value.c (result_type_of_xmethod): New function.
8256 * value.h (result_type_of_xmethod): Declare.
8257
8258 2015-04-29 Gary Benson <gbenson@redhat.com>
8259
8260 * solib.c (solib_find_1): Allow fd argument to be NULL.
8261 (exec_file_find): Update comment.
8262 (solib_find): Likewise.
8263 * exec.c (exec_file_locate_attach): Use NULL as fd
8264 argument to exec_file_find to avoid having to close
8265 the opened file.
8266 * infrun.c (follow_exec): Likewise.
8267
8268 2015-04-28 Doug Evans <dje@google.com>
8269
8270 PR python/18299
8271 * python/lib/gdb/printing.py (register_pretty_printer): Handle
8272 name or __name__ attributes. Handle gdb module as first argument.
8273
8274 2015-04-28 Doug Evans <dje@google.com>
8275
8276 PR python/18089
8277 * python/py-prettyprint.c (print_children): Verify result of children
8278 iterator. Provide better error message.
8279 * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
8280 * python/python.c (gdbpy_print_python_errors_p): New function.
8281
8282 2015-04-28 Doug Evans <dje@google.com>
8283
8284 * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
8285
8286 2015-04-28 Sasha Smundak <asmundak@google.com>
8287
8288 * NEWS: Mention gdb.Type.optimized_out method.
8289 * python/py-type.c (typy_optimized_out): New function.
8290
8291 2015-04-28 John Baldwin <jhb@FreeBSD.org>
8292
8293 * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
8294
8295 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8296
8297 * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
8298 (initialize_utils): Move call of init_page_info() to ...
8299 * top.c (gdb_init): ... here.
8300
8301 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8302
8303 * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
8304 (tui_sigwinch_handler): Still update our idea of
8305 the terminal's width and height even when TUI is not active.
8306
8307 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8308
8309 * utils.h (set_screen_width_and_height): Declare.
8310 * utils.c (set_screen_width_and_height): Define.
8311 * tui/tui-win.c (tui_update_gdb_sizes): Use it.
8312
8313 2015-04-28 Gary Benson <gbenson@redhat.com>
8314
8315 * infrun.c (solist.h): New include.
8316 (follow_exec): Use exec_file_find to prefix execd_pathname
8317 with gdb_sysroot.
8318
8319 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8320
8321 * tui/tui-source.c (tui_set_source_content): Avoid calling
8322 strcpy() when offset is 0.
8323
8324 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8325
8326 PR gdb/18155
8327 * tui/tui-data.c (tui_free_window): Don't free the locator
8328 window when passed an SRC_WIN or a DISASSEM_WIN.
8329
8330 2015-04-28 Patrick Palka <patrick@parcs.ath.cx>
8331
8332 * tui/tui-data.h (struct tui_win_element): Forward-declare.
8333 (tui_win_content): Move declaration.
8334 (struct tui_gen_win_info): Give 'content' field the
8335 type tui_win_content.
8336 * tui/tui-data.c (init_content_element): Remove redundant and
8337 erroneous casts.
8338 (tui_add_content_elements): Remove erroneous cast.
8339 * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
8340 casts.
8341 (tui_get_begin_asm_address): Likewise.
8342 * tui/tui-regs.c (tui_show_registers): Likewise.
8343 (tui_show_register_group): Likewise.
8344 (tui_display_registers_from): Likewise.
8345 (tui_check_register_values): Likewise.
8346 * tui/tui-source.c (tui_set_source_content): Likewise.
8347 (tui_set_source_content_nil): Likewise.
8348 (tui_source_is_displayed): Likewise.
8349 * tui/tui-stack.c (tui_show_locator_content): Likewise.
8350 (tui_set_locator_fullname): Likewise.
8351 (tui_set_locator_info): Likewise.
8352 (tui_show_frame_info): Likewise.
8353 * tui/tui-winsource.c (tui_clear_source_content): Likewise.
8354 (tui_show_source_line): Likewise.
8355 (tui_horizontal_source_scroll): Likewise.
8356 (tui_update_breakpoint_info): Likewise.
8357 (tui_set_exec_info_content): Likewise.
8358 (tui_show_exec_info_content): Likewise.
8359 (tui_alloc_source_buffer): Likewise.
8360 (tui_line_is_displayed): Likewise.
8361 (tui_addr_is_displayed): Likewise.
8362
8363 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8364
8365 * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
8366 event if PL_FLAG_EXEC is set.
8367 [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
8368 [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
8369 (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
8370 "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
8371 Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
8372
8373 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8374
8375 * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
8376 [TDP_RFPPWAIT] New variable fbsd_pending_children.
8377 [TDP_RFPPWAIT] (fbsd_remember_child): New function.
8378 [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
8379 [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
8380 [PT_LWPINFO] (fbsd_wait): New function.
8381 [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
8382 [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
8383 [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
8384 [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
8385 [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
8386 [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
8387 [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
8388 [TDP_RFPPWAIT] (fbsd_post_attach): New function.
8389 (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
8390 "fbsd_wait".
8391 [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
8392 Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
8393 Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
8394 Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
8395 Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
8396 Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
8397 Set "to_post_attach" to "fbsd_post_attach".
8398
8399 2015-04-27 John Baldwin <jhb@FreeBSD.org>
8400
8401 * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
8402 (fbsd_find_memory_regions): Mark static.
8403 (fbsd_nat_add_target): New function.
8404 * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
8405 fbsd_pid_to_exec_file and fbsd_find_memory_regions.
8406 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
8407 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
8408 * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
8409 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
8410
8411 2015-04-27 Gary Benson <gbenson@redhat.com>
8412
8413 * objfiles.c (allocate_objfile): Do not attempt to expand name
8414 if name is a "target:" filename.
8415 * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
8416 to load auto-load scripts for objfiles with "target:" filenames.
8417
8418 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8419
8420 * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
8421 (enum s390_vector_abi_kind): New enum.
8422 (struct gdbarch_tdep)<vector_abi>: New field.
8423 (s390_effective_inner_type): Add parameter min_size. Stop
8424 unwrapping if the inner type is smaller than min_size.
8425 (s390_function_arg_float): Adjust call to
8426 s390_effective_inner_type.
8427 (s390_function_arg_vector): New function.
8428 (s390_function_arg_integer): Adjust comment.
8429 (struct s390_arg_state)<vr>: New field.
8430 (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector
8431 arguments according to vector ABI when appropriate.
8432 (s390_push_dummy_call): Initialize the argument state's field
8433 'vr'. Adjust calls to s390_handle_arg.
8434 (s390_register_return_value): Handle vector return values.
8435 (s390_return_value): Apply the "register" return value convention
8436 to a vector when appropriate.
8437 (s390_gdbarch_init): Initialize tdep->vector_abi.
8438 * NEWS: Announce S390 vector ABI support.
8439
8440 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8441
8442 * s390-linux-tdep.c (s390_return_value_convention): Remove
8443 function. Inline its logic...
8444 (s390_return_value): ...here. Instead, move the handling of the
8445 "register" return value convention...
8446 (s390_register_return_value): ...here. New function.
8447
8448 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8449
8450 * s390-linux-tdep.c
8451 (is_float_singleton): Remove function. Move the "singleton" part
8452 of the logic...
8453 (s390_effective_inner_type): ...here. New function.
8454 (is_float_like): Remove function. Inline its logic...
8455 (s390_function_arg_float): ...here.
8456 (is_pointer_like, is_integer_like, is_struct_like): Remove
8457 functions. Inline their logic...
8458 (s390_function_arg_integer): ...here.
8459 (s390_function_arg_pass_by_reference): Remove function.
8460 (extend_simple_arg): Remove function.
8461 (alignment_of): Remove function.
8462 (struct s390_arg_state): New structure.
8463 (s390_handle_arg): New function.
8464 (s390_push_dummy_call): Move parameter placement logic to the new
8465 function s390_handle_arg. Call it for calculating the stack area
8466 sizes first, and again for actually writing the parameters.
8467
8468 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
8469
8470 * s390-linux-tdep.c (is_power_of_two): Add comment. Return
8471 false if the argument is zero.
8472
8473 2015-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
8474
8475 * ada-lang.c (template_to_static_fixed_type): Return input type
8476 when it is already fixed. Cache the input type itself when not
8477 creating a static fixed copy. Make it explicit that we never
8478 molestate the input type.
8479 * gdbtypes.c (resolve_dynamic_struct): Reset the
8480 TYPE_TARGET_TYPE field for resolved copies.
8481
8482 2015-04-27 Joel Brobecker <brobecker@adacore.com>
8483
8484 * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
8485 (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
8486 (template_to_static_fixed_type): Call ada_check_typedef only
8487 when necessary.
8488
8489 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
8490
8491 * cli/cli-dump.c (srec_dump_command): Add internationalization
8492 mark ups.
8493 (ihex_dump_command): Likewise.
8494 (tekhex_dump_command): Likewise.
8495 (binary_dump_command): Likewise.
8496 (binary_append_command): Likewise.
8497
8498 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
8499
8500 * cli/cli-dump.c (verilog_cmdlist): New variable.
8501 (dump_verilog_memory): New function.
8502 (dump_verilog_value): New function.
8503 (verilog_dump_command): New function.
8504 (_initialize_cli_dump): Add new commands to support verilog dump
8505 format.
8506 * NEWS: Add entry for "dump verilog".
8507
8508 2015-04-24 Pierre-Marie de Rodat <derodat@adacore.com>
8509
8510 * gdbtypes.c (print_gnat_stuff): Do not recurse on the
8511 descriptive type when there is none.
8512
8513 2015-04-23 Patrick Palka <patrick@parcs.ath.cx>
8514
8515 * tui/tui-win.c (tui_async_resize_screen): Call
8516 rl_resize_terminal().
8517
8518 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
8519
8520 * windows-nat.c (handle_output_debug_string): Don't change
8521 current_event.dwThreadId.
8522 (get_windows_debug_event): Use thread_id, rather than relying on
8523 current_event.dwThreadId being changed.
8524
8525 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
8526
8527 * windows-nat.c (windows_continue): Report an error if
8528 ContinueDebugEvent() fails.
8529
8530 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8531
8532 * windows-nat.c (windows_resume): Fix misspelling in debug output.
8533
8534 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8535
8536 * windows-nat.c (get_windows_debug_event): Replace retval with
8537 thread_id throughout. Update stale comment.
8538
8539 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
8540
8541 * windows-nat.c (get_windows_debug_event): Don't use ternary
8542 conditional operator.
8543
8544 2015-04-21 Pierre Muller <muller@sourceware.org>
8545
8546 PR pascal/17815
8547 p-exp.y (yylex): Reorganize code to return the matched pattern
8548 for a field of this.
8549
8550 2015-04-21 Gary Benson <gbenson@redhat.com>
8551
8552 * common/fileio.h (fileio_to_host_openflags): New declaration.
8553 * common/fileio.c (fcntl.h): New include.
8554 (fileio_to_host_openflags): New function, factored out from...
8555 * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
8556 Single use updated.
8557
8558 2015-04-21 Kevin Buettner <kevinb@redhat.com>
8559
8560 * rl78-tdep.c (RL78_SP_ADDR): Define.
8561 (opc_reg_to_gdb_regnum): New static function.
8562 (rl78_analyze_prologue): Recognize instructions forming slightly
8563 more interesting prologues.
8564
8565 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
8566
8567 Revert:
8568 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8569 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
8570 TYPE_CODE_REF types so that they are not considered as dynamic
8571 depending on the referenced type.
8572 (resolve_dynamic_type_internal): Likewise.
8573
8574 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
8575
8576 Revert:
8577 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8578 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
8579 "top_level" parameter.
8580 (resolve_dynamic_type_internal): Remove the unused "top_level"
8581 parameter. Update call to is_dynamic_type_internal.
8582 (is_dynamic_type): Update call to is_dynamic_type_internal.
8583 (resolve_dynamic_range): Update call to
8584 resolve_dynamic_type_internal.
8585 (resolve_dynamic_union): Likewise.
8586 (resolve_dynamic_struct): Likewise.
8587 (resolve_dynamic_type): Likewise.
8588
8589 2015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be>
8590
8591 * breakpoint.c (update_dprintf_command_list): Remove duplicated
8592 xmalloc.
8593
8594 2015-04-20 Thomas Schwinge <thomas@codesourcery.com>
8595
8596 * reply_mig_hack.awk: Robustify parsing.
8597
8598 * reply_mig_hack.awk: Don't bother to declare an intermediate
8599 function pointer variable.
8600
8601 2015-04-17 Doug Evans <dje@google.com>
8602
8603 * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
8604 to "exec_displacement" to avoid confusion with inner use of the name.
8605
8606 2015-04-17 Pedro Alves <palves@redhat.com>
8607
8608 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
8609 if HW point of TYPE isn't supported.
8610
8611 2015-04-17 Yao Qi <yao.qi@linaro.org>
8612 Pedro Alves <palves@redhat.com>
8613
8614 * target.h (target_can_use_hardware_watchpoint): Update comments.
8615 Remove trailing ";".
8616
8617 2015-04-17 Gary Benson <gbenson@redhat.com>
8618
8619 * remote.c (remote_add_inferior): New argument try_open_exec.
8620 If nonzero, attempt to open the inferior's executable file as
8621 the main executable if no main executable is open already.
8622 All callers updated.
8623 * NEWS: Mention that GDB now supports automatic location and
8624 retrieval of executable + files from remote targets.
8625
8626 2015-04-17 Gary Benson <gbenson@redhat.com>
8627
8628 * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
8629 * remote.c (PACKET_qXfer_exec_file): Likewise.
8630 (remote_protocol_features): Register the
8631 "qXfer:exec-file:read" feature.
8632 (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
8633 (remote_pid_to_exec_file): New function.
8634 (init_remote_ops): Initialize to_pid_to_exec_file.
8635 (_initialize_remote): Register new "set/show remote
8636 pid-to-exec-file-packet" command.
8637 * NEWS: Announce new qXfer:exec-file:read packet.
8638
8639 2015-04-17 Gary Benson <gbenson@redhat.com>
8640
8641 * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
8642 New declaration.
8643 * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
8644 New function, factored out from...
8645 * linux-nat.c (linux_child_pid_to_exec_file): ...here.
8646
8647 2015-04-17 Gary Benson <gbenson@redhat.com>
8648
8649 * exec.c (solist.h): New include.
8650 (exec_file_locate_attach): Prefix absolute executable
8651 paths with gdb_sysroot if set.
8652 * NEWS: Mention that executable paths may be prepended
8653 with sysroot.
8654
8655 2015-04-17 Gary Benson <gbenson@redhat.com>
8656
8657 * solist.h (exec_file_find): New declaration.
8658 * solib.c (solib_find_1): New function, factored out from...
8659 (solib_find): ...here.
8660 (exec_file_find): New function.
8661
8662 2015-04-17 Gary Benson <gbenson@redhat.com>
8663
8664 * gdbcore.h (exec_file_locate_attach): New declaration.
8665 * exec.c (exec_file_locate_attach): New function, factored
8666 out from...
8667 * infcmd.c (attach_command_post_wait): ...here.
8668
8669 2015-04-17 Mike Frysinger <vapier@gentoo.org>
8670
8671 * MAINTAINERS: Add myself for Blackfin/write-after-approval.
8672
8673 2015-04-16 Yao Qi <yao.qi@linaro.org>
8674
8675 * infrun.c (maybe_software_singlestep): Declare.
8676 (displaced_step_fixup): Call maybe_software_singlestep.
8677
8678 2015-04-15 Doug Evans <dje@google.com>
8679
8680 * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
8681
8682 2015-04-15 Doug Evans <dje@google.com>
8683
8684 * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
8685
8686 2015-04-15 Simon Marchi <simon.marchi@ericsson.com>
8687
8688 * python/lib/gdb/command/unwinders.py: Add parentheses.
8689
8690 2015-04-15 Yao Qi <yao.qi@linaro.org>
8691
8692 * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
8693
8694 2015-04-15 Yao Qi <yao.qi@linaro.org>
8695
8696 * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
8697
8698 2015-04-15 Yao Qi <yao.qi@linaro.org>
8699
8700 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
8701 dsc->insn_size instead of 4.
8702
8703 2015-04-14 Gary Benson <gbenson@redhat.com>
8704
8705 * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
8706 * minidebug.c (lzma_stat): Likewise.
8707 * solib-spu.c (spu_bfd_iovec_stat): Likewise.
8708 * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
8709
8710 2015-04-13 Stan Shebs <stanshebs@google.com>
8711
8712 * MAINTAINERS: Update my email address.
8713
8714 2015-04-13 John Baldwin <jhb@FreeBSD.org>
8715
8716 * amd64-tdep.c (amd64_target_description): New function.
8717 * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
8718 * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
8719 (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
8720 x86 extended save area.
8721 (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
8722 * amd64bsd-nat.h: Export amd64bsd_xsave_len.
8723 * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
8724 (_initialize_amd64fbsd_nat): Set "to_read_description" to
8725 "amd64fbsd_read_description".
8726 * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
8727 (amd64fbsd_supply_xstateregset): New function.
8728 (amd64fbsd_collect_xstateregset): New function.
8729 Add "amd64fbsd_xstateregset".
8730 (amd64fbsd_iterate_over_regset_sections): New function.
8731 (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
8732 "I386_FBSD_XSAVE_XCR0_OFFSET".
8733 Add "iterate_over_regset_sections" gdbarch method.
8734 Add "core_read_description" gdbarch method.
8735 * i386-tdep.c (i386_target_description): New function.
8736 * i386-tdep.h: Export i386_target_description and tdesc_i386.
8737 * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
8738 (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
8739 x86 extended save area.
8740 (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
8741 * i386bsd-nat.h: Export i386bsd_xsave_len.
8742 * i386fbsd-nat.c (i386fbsd_read_description): New function.
8743 (_initialize_i386fbsd_nat): Set "to_read_description" to
8744 "i386fbsd_read_description".
8745 * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
8746 (i386fbsd_core_read_description): New function.
8747 (i386fbsd_supply_xstateregset): New function.
8748 (i386fbsd_collect_xstateregset): New function.
8749 Add "i386fbsd_xstateregset".
8750 (i386fbsd_iterate_over_regset_sections): New function.
8751 (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
8752 "I386_FBSD_XSAVE_XCR0_OFFSET".
8753 Add "iterate_over_regset_sections" gdbarch method.
8754 Add "core_read_description" gdbarch method.
8755 * i386fbsd-tdep.h: New file.
8756
8757 2015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8758
8759 * NEWS (Changes since GDB 7.9): Add removed -xdb.
8760 * breakpoint.c (command_line_is_silent): Remove xdb_commands
8761 conditional.
8762 (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
8763 and lb.
8764 * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
8765 va.
8766 * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
8767 conditional.
8768 * defs.h (xdb_commands): Remove declaration.
8769 * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
8770 * guile/scm-cmd.c (command_classes): Remove xdb from comment.
8771 * infcmd.c (run_no_args_command, go_command): Remove.
8772 (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
8773 * infrun.c (xdb_handle_command): Remove.
8774 (_initialize_infrun): Remove xdb_commands for lz and z.
8775 * main.c (xdb_commands): Remove variable.
8776 (captured_main): Remove "xdb" from long_options.
8777 (print_gdb_help): Remove --xdb from help.
8778 * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
8779 * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
8780 * stack.c (backtrace_full_command, args_plus_locals_info)
8781 (current_frame_command): Remove.
8782 (_initialize_stack): Remove xdb_commands for t, T and l.
8783 * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
8784 * thread.c (_initialize_thread): Remove xdb_commands condition.
8785 * tui/tui-layout.c (tui_toggle_layout_command)
8786 (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
8787 (_initialize_tui_layout): Remove xdb_commands for td and ts.
8788 * tui/tui-regs.c (tui_scroll_regs_forward_command)
8789 (tui_scroll_regs_backward_command): Remove.
8790 (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
8791 * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
8792 (_initialize_tui_win): Remove xdb_commands for U and w.
8793 * utils.c (pagination_on_command, pagination_off_command): Remove.
8794 (initialize_utils): Remove xdb_commands for am and sm.
8795
8796 2015-04-10 Pedro Alves <palves@redhat.com>
8797
8798 * infrun.c (displaced_step_fixup): Switch to the event ptid
8799 earlier. If the thread stopped for a watchpoint and the
8800 target/arch has non-continuable watchpoints, cancel the displaced
8801 step.
8802 (resume): Don't start a displaced step if in-line step-over info
8803 is valid.
8804
8805 2015-04-10 Pedro Alves <palves@redhat.com>
8806
8807 * infrun.c (displaced_step_in_progress): New function.
8808 (do_target_resume): Advise target to report all signals if
8809 displaced stepping.
8810
8811 2015-04-10 Pedro Alves <palves@redhat.com>
8812
8813 PR gdb/18216
8814 * infrun.c (process_event_stop_test): Don't assume a step-resume
8815 is set if tp->stepped_breakpoint is true.
8816
8817 2015-04-10 Yao Qi <yao.qi@linaro.org>
8818
8819 * arm-tdep.c (install_alu_reg): Update comment.
8820 (thumb_copy_alu_reg): Remove local variable rn. Update
8821 debugging message. Use r2 instead of r1 in the modified
8822 instruction.
8823
8824 2015-04-10 Pedro Alves <palves@redhat.com>
8825
8826 PR gdb/13858
8827 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
8828 linux_displaced_step_location as gdbarch_displaced_step_location
8829 hook.
8830 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
8831 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
8832 * linux-tdep.c (linux_displaced_step_location): New function,
8833 based on ppc_linux_displaced_step_location.
8834 * linux-tdep.h (linux_displaced_step_location): New declaration.
8835 * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
8836 (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
8837 Delete.
8838 (ppc_linux_init_abi): Install linux_displaced_step_location as
8839 gdbarch_displaced_step_location hook, even without Cell/B.E..
8840 (_initialize_ppc_linux_tdep): Don't install
8841 ppc_linux_inferior_created as inferior_created observer.
8842 * s390-linux-tdep.c (s390_gdbarch_init): Install
8843 linux_displaced_step_location as gdbarch_displaced_step_location
8844 hook.
8845
8846 2015-04-09 Gary Benson <gbenson@redhat.com>
8847
8848 * common/common-remote-fileio.h: Rename to...
8849 * common/fileio.h: ...this. Update all references.
8850 (remote_fileio_to_fio_error): Rename to...
8851 (host_to_fileio_error): ...this.
8852 (remote_fileio_to_be): Rename to...
8853 (host_to_bigendian): ...this. Update all callers.
8854 (remote_fileio_to_fio_uint): Rename to...
8855 (host_to_fileio_uint): ...this. Update all callers.
8856 (remote_fileio_to_fio_time): Rename to...
8857 (host_to_fileio_time): ...this. Update all callers.
8858 (remote_fileio_to_fio_stat): Rename to...
8859 (host_to_fileio_stat): ...this.
8860 Update all references.
8861 * common/common-remote-fileio.c: Rename to...
8862 * common/fileio.c: ...this. Update all references.
8863 (remote_fileio_to_fio_error): Rename to...
8864 (host_to_fileio_error): ...this. Update all callers.
8865 (remote_fileio_mode_to_target): Rename to...
8866 (fileio_mode_pack): ...this. Update all callers.
8867 (remote_fileio_to_fio_mode): Rename to...
8868 (host_to_fileio_mode): ...this. Update all callers.
8869 (remote_fileio_to_fio_ulong): Rename to...
8870 (host_to_fileio_ulong): ...this. Update all callers.
8871 (remote_fileio_to_fio_stat): Rename to...
8872 (host_to_fileio_stat): ...this. Update all callers.
8873
8874 2015-04-09 Andy Wingo <wingo@igalia.com>
8875
8876 * guile/scm-frame.c (gdbscm_frame_read_register): New function.
8877 (frame_functions): Bind gdbscm_frame_read_register to
8878 frame-read-register.
8879 * guile/lib/gdb.scm (frame-read-register): Export.
8880
8881 2015-04-09 Gary Benson <gbenson@redhat.com>
8882
8883 * common/common-remote-fileio.h (remote_fileio_to_fio_error):
8884 New declaration.
8885 * common/common-remote-fileio.c (remote_fileio_to_fio_error):
8886 New function, factored out the named functions below.
8887 * inf-child.c (gdb/fileio.h): Remove include.
8888 (common-remote-fileio.h): New include.
8889 (inf_child_errno_to_fileio_error): Remove function. Update
8890 all callers to use remote_fileio_to_fio_error.
8891 * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
8892
8893 2015-04-09 Andy Wingo <wingo@igalia.com>
8894
8895 * MAINTAINERS (Write After Approval): Add Andy Wingo.
8896
8897 2015-04-09 H.J. Lu <hongjiu.lu@intel.com>
8898
8899 * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
8900 Replace $zlibdir with $ZLIBDIR in LDFLAGS.
8901 * configure: Regenerated.
8902
8903 2015-04-09 Pedro Alves <palves@redhat.com>
8904
8905 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
8906 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
8907 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
8908 * gnulib/import/Makefile.am: Update.
8909 * gnulib/import/Makefile.in: Update.
8910 * gnulib/import/m4/gnulib-cache.m4: Update.
8911 * gnulib/import/m4/gnulib-comp.m4: Update.
8912 * gnulib/import/m4/strtok_r.m4: New file.
8913 * gnulib/import/strtok_r.c: New file.
8914
8915 2015-04-09 Pedro Alves <palves@redhat.com>
8916
8917 * gnulib/update-gnulib.sh (aclocal version check): Filter out
8918 "called too early to check prototype".
8919
8920 2015-04-08 Sergio Durigan Junior <sergiodj@redhat.com>
8921
8922 PR python/16699
8923 * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
8924 use a caching mechanism. Adjust comments and code to reflect
8925 that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
8926 (cmdpy_completer_handle_brkchars): Adjust call to
8927 cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'.
8928 (cmdpy_completer): Likewise.
8929
8930 2015-04-08 Yao Qi <yao.qi@linaro.org>
8931
8932 * spu-tdep.c (spu_gdbarch_init): Don't call
8933 set_gdbarch_cannot_step_breakpoint.
8934
8935 2015-04-07 Sergio Durigan Junior <sergiodj@redhat.com>
8936
8937 * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
8938
8939 2015-04-07 Pedro Alves <palves@redhat.com>
8940
8941 * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
8942 (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
8943 (delete_exited_threads): New declaration.
8944 * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
8945 * linux-nat.c (linux_nat_update_thread_list): New function.
8946 (linux_nat_add_target): Install it.
8947 * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
8948 * thread.c (prune_threads): Use ALL_THREADS_SAFE.
8949 (delete_exited_threads): New function.
8950
8951 2015-04-07 Pedro Alves <pedro@codesourcery.com>
8952
8953 * infrun.c (resume) <displaced stepping debug output>: Get the
8954 leader thread's regcache, not resume_ptid's.
8955
8956 2015-04-06 Doug Evans <xdje42@gmail.com>
8957
8958 * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
8959 VAR_DOMAIN.
8960 (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
8961 Include symbol domain in debugging output.
8962
8963 2015-04-06 Pedro Alves <palves@redhat.com>
8964 Bernd Edlinger <bernd.edlinger@hotmail.de>
8965
8966 * configure.ac: Remove the mingw32-specific stub-termcap.o
8967 fallback, and instead fallback to the stub termcap on all hosts.
8968 * configure: Regenerate.
8969 * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
8970 symbols.
8971
8972 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8973
8974 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
8975 "top_level" parameter.
8976 (resolve_dynamic_type_internal): Remove the unused "top_level"
8977 parameter. Update call to is_dynamic_type_internal.
8978 (is_dynamic_type): Update call to is_dynamic_type_internal.
8979 (resolve_dynamic_range): Update call to
8980 resolve_dynamic_type_internal.
8981 (resolve_dynamic_union): Likewise.
8982 (resolve_dynamic_struct): Likewise.
8983 (resolve_dynamic_type): Likewise.
8984
8985 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
8986
8987 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
8988 TYPE_CODE_REF types so that they are not considered as dynamic
8989 depending on the referenced type.
8990 (resolve_dynamic_type_internal): Likewise.
8991
8992 2015-04-02 H.J. Lu <hongjiu.lu@intel.com>
8993
8994 * Makefile.in (top_srcdir): New.
8995 * configure: Regenerated.
8996
8997 2015-04-02 Gary Benson <gbenson@redhat.com>
8998
8999 * NEWS: Announce the new default sysroot of "target:".
9000
9001 2015-04-02 Gary Benson <gbenson@redhat.com>
9002
9003 * main.c (captured_main): Set gdb_sysroot to "target:"
9004 if not otherwise set.
9005
9006 2015-04-02 Gary Benson <gbenson@redhat.com>
9007
9008 * exec.c (exec_file_attach): Support "target:" filenames.
9009
9010 2015-04-02 Gary Benson <gbenson@redhat.com>
9011
9012 * solib.c (solib_find): Strip "target:" prefix from sysroot
9013 if accessing local files.
9014
9015 2015-04-02 Gary Benson <gbenson@redhat.com>
9016
9017 * symfile.c (symfile_bfd_open): Reorder to remove duplicated
9018 checks and error messages.
9019
9020 2015-04-02 Gary Benson <gbenson@redhat.com>
9021
9022 * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
9023 (remote_filename_p): Remove declaration.
9024 (remote_bfd_open): Likewise.
9025 * remote.c (remote_bfd_iovec_open): Remove function.
9026 (remote_bfd_iovec_close): Likewise.
9027 (remote_bfd_iovec_pread): Likewise.
9028 (remote_bfd_iovec_stat): Likewise.
9029 (remote_filename_p): Likewise.
9030 (remote_bfd_open): Likewise.
9031 * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
9032 * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
9033 (gdb_bfd_open_maybe_remote): Remove function.
9034 (symfile_bfd_open): Replace remote filename check with
9035 target filename check.
9036 (reread_symbols): Use gdb_bfd_open.
9037 * build-id.c (gdbcore.h): New include.
9038 (build_id_to_debug_bfd): Use gdb_bfd_open.
9039 * infcmd.c (attach_command_post_wait): Remove remote filename
9040 check.
9041 * solib.c (solib_find): Replace remote-specific handling with
9042 target-specific handling. Update comments where necessary.
9043 (solib_bfd_open): Replace remote-specific handling with
9044 target-specific handling.
9045 (gdb_sysroot_changed): New function.
9046 (_initialize_solib): Call the above when gdb_sysroot changes.
9047 * windows-tdep.c (gdbcore.h): New include.
9048 (windows_xfer_shared_library): Use gdb_bfd_open.
9049
9050 2015-04-02 Gary Benson <gbenson@redhat.com>
9051
9052 * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
9053 (is_target_filename): New declaration.
9054 (gdb_bfd_has_target_filename): Likewise.
9055 (gdb_bfd_open): Update documentation comment.
9056 * gdb_bfd.c (target.h): New include.
9057 (gdb/fileio.h): Likewise.
9058 (is_target_filename): New function.
9059 (gdb_bfd_has_target_filename): Likewise.
9060 (fileio_errno_to_host): Likewise.
9061 (gdb_bfd_iovec_fileio_open): Likewise.
9062 (gdb_bfd_iovec_fileio_pread): Likewise.
9063 (gdb_bfd_iovec_fileio_close): Likewise.
9064 (gdb_bfd_iovec_fileio_fstat): Likewise.
9065 (gdb_bfd_open): Use target fileio to access paths prefixed
9066 with "target:" where necessary.
9067
9068 2015-04-02 Gary Benson <gbenson@redhat.com>
9069
9070 * target.h (struct target_ops) <to_filesystem_is_local>:
9071 New field.
9072 (target_filesystem_is_local): New macro.
9073 * target-delegates.c: Regenerate.
9074 * remote.c (remote_filesystem_is_local): New function.
9075 (init_remote_ops): Initialize to_filesystem_is_local.
9076
9077 2015-04-02 Gary Benson <gbenson@redhat.com>
9078
9079 * target.h (struct target_ops) <to_fileio_fstat>: New field.
9080 (target_fileio_fstat): New declaration.
9081 * target.c (target_fileio_fstat): New function.
9082 * inf-child.c (inf_child_fileio_fstat): Likewise.
9083 (inf_child_target): Initialize to_fileio_fstat.
9084 * remote.c (init_remote_ops): Likewise.
9085
9086 2015-04-01 Sasha Smundak <asmundak@google.com>
9087
9088 * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
9089 (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
9090 (py-unwind.o): New recipe.
9091 * NEWS: mention Python frame unwinding.
9092 * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
9093 gdb/unwinder.py and gdb/command/unwinder.py
9094 * python/lib/gdb/__init__.py (packages): Add frame_unwinders
9095 list.
9096 (execute_unwinders): New function.
9097 * python/lib/gdb/command/unwinders.py: New file.
9098 * python/lib/gdb/unwinder.py: New file.
9099 * python/py-objfile.c (objfile_object): Add frame_unwinders field.
9100 (objfpy_dealloc): Decrement frame_unwinders reference count.
9101 (objfpy_initialize): Create frame_unwinders list.
9102 (objfpy_get_frame_unwinders): New function.
9103 (objfpy_set_frame_unwinders): Ditto.
9104 (objfile_getset): Add frame_unwinders attribute to Objfile.
9105 * python/py-progspace.c (pspace_object): Add frame_unwinders field.
9106 (pspy_dealloc): Decrement frame_unwinders reference count.
9107 (pspy_initialize): Create frame_unwinders list.
9108 (pspy_get_frame_unwinders): New function.
9109 (pspy_set_frame_unwinders): Ditto.
9110 (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
9111 * python/py-unwind.c: New file.
9112 * python/python-internal.h (pspy_get_name_unwinders): New prototype.
9113 (objpy_get_frame_unwinders): New prototype.
9114 (gdbpy_initialize_unwind): New prototype.
9115 * python/python.c (gdbpy_apply_type_printers): Call
9116 gdbpy_initialize_unwind.
9117
9118 2015-04-01 Pedro Alves <palves@redhat.com>
9119
9120 * infrun.c (resume): Check currently_stepping after clearing
9121 stepped_breakpoint, not before.
9122
9123 2015-04-01 Pedro Alves <palves@redhat.com>
9124
9125 * infrun.c (print_target_wait_results): Print all the ptid
9126 elements.
9127
9128 2015-04-01 Pedro Alves <palves@redhat.com>
9129
9130 * infrun.c (keep_going): Also discard cleanups if inserting
9131 breakpoints fails.
9132
9133 2015-04-01 Pedro Alves <palves@redhat.com>
9134
9135 * infrun.c (wait_for_inferior): Install the
9136 finish_thread_state_cleanup cleanup across the whole function, not
9137 just around handle_inferior_event.
9138
9139 2015-04-01 Pedro Alves <palves@redhat.com>
9140
9141 * infrun.c (resume) <step past permanent breakpoint>: Use
9142 do_target_resume.
9143
9144 2015-04-01 Pedro Alves <palves@redhat.com>
9145
9146 * linux-nat.c (linux_handle_extended_wait): Always call set_running.
9147
9148 2015-04-01 Pierre-Marie de Rodat <derodat@adacore.com>
9149
9150 * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
9151
9152 2015-04-01 Pedro Alves <palves@redhat.com>
9153
9154 * linux-thread-db.c (record_thread): Readd the thread to gdb's
9155 list if it was marked exited.
9156
9157 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
9158
9159 * configure: Regenerated.
9160
9161 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9162 Jan Kratochvil <jan.kratochvil@redhat.com>
9163 Oleg Nesterov <oleg@redhat.com>
9164
9165 PR corefiles/16092
9166 * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
9167 New enum identifying the various options of the coredump_filter
9168 file.
9169 (struct smaps_vmflags): New struct.
9170 (use_coredump_filter): New variable.
9171 (decode_vmflags): New function.
9172 (mapping_is_anonymous_p): Likewise.
9173 (dump_mapping_p): Likewise.
9174 (linux_find_memory_regions_full): New variables
9175 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
9176 Removed variable 'modified'. Read /proc/<PID>/smaps file; improve
9177 parsing of its information. Implement memory mapping filtering
9178 based on its contents.
9179 (show_use_coredump_filter): New function.
9180 (_initialize_linux_tdep): New command 'set use-coredump-filter'.
9181 * NEWS: Mention the possibility of using the
9182 '/proc/PID/coredump_filter' file when generating a corefile.
9183 Mention new command 'set use-coredump-filter'.
9184
9185 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
9186
9187 * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
9188 read_memory_unsigned_integer.
9189
9190 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
9191
9192 * Makefile.in (ZLIB): New.
9193 (ZLIBINC): Likewise.
9194 (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
9195 (CLIBS): Add $(ZLIB).
9196 * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
9197 Add -lz to LIBS.
9198 * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
9199 * top.c (print_gdb_configuration): Remove --with-zlib and
9200 --without-zlib.
9201 * config.in: Regenerated.
9202 * configure: Likewise.
9203
9204 2015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com>
9205
9206 * NEWS: Mention info os cpus support.
9207 * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
9208 (struct osdata_type): Add cpus entry, reorder the entries in
9209 alphabetical order.
9210
9211 2015-03-31 Matthias Klose <doko@ubuntu.com>
9212
9213 * compile/compile.c (compile_to_object): Allow triplets with or
9214 without vendor set.
9215
9216 2015-03-30 Doug Evans <dje@google.com>
9217
9218 PR c++/18141
9219 * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
9220 klass in VAR_DOMAIN.
9221
9222 2015-03-30 Gary Benson <gbenson@redhat.com>
9223
9224 * remote.c (remote_mourn_1): Remove function. Update all callers
9225 to use remote_mourn.
9226 (extended_remote_mourn_1): Remove function. Update all callers
9227 to use extended_remote_mourn.
9228 (extended_remote_attach_1): Remove function. Update all callers
9229 to use extended_remote_attach.
9230
9231 2015-03-28 James Bowman <james.bowman@ftdichip.com>
9232
9233 * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
9234 (HFILES_NO_SRCDIR): Add ft32-tdep.h.
9235 (ALLDEPFILES): Add ft32-tdep.c.
9236 * configure.tgt: Add FT32 entry.
9237 * ft32-tdep.c: New file, FT32 target-dependent code.
9238 * ft32-tdep.h: New file, FT32 target-dependent code.
9239
9240 2015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9241
9242 Revert:
9243 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9244 Code cleanup.
9245 * printcmd.c (print_command_1): Move expr variable scope.
9246
9247 2015-03-27 Joel Brobecker <brobecker@adacore.com>
9248
9249 * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
9250
9251 2015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com>
9252
9253 * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
9254 sections.
9255
9256 2015-03-26 Joel Brobecker <brobecker@adacore.com>
9257
9258 * dtrace-probe.c (dtrace_process_dof_probe): Contain any
9259 exception raised while parsing the probe arguments.
9260 Force parsing to be done using the C language parser.
9261 * expression.h (parse_expression_with_language): Declare.
9262 * parse.c (parse_expression_with_language): New function.
9263
9264 2015-03-26 Jon Turney <jon.turney@dronecode.org.uk>
9265
9266 * MAINTAINERS (Write After Approval): Add "Jon Turney".
9267
9268 2015-03-26 Andy Wingo <wingo@igalia.com>
9269
9270 PR symtab/18148
9271 * dwarf2read.c (struct partial_die_info): Add has_const_value
9272 member.
9273 (add_partial_symbol): Don't punt on symbols that have const_value
9274 attributes.
9275 (read_partial_die): Detect DW_AT_const_value.
9276
9277 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9278
9279 Code cleanup.
9280 * printcmd.c (print_command_1): Move expr variable scope.
9281
9282 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9283
9284 Code cleanup.
9285 * printcmd.c (validate_format): Make the parameter cmdname const.
9286
9287 2015-03-26 Don Breazeal <donb@codesourcery.com>
9288
9289 * remote.c (_initialize_remote): Update comment.
9290
9291 2015-03-26 Pedro Alves <palves@redhat.com>
9292 Jon TURNEY <jon.turney@dronecode.org.uk>
9293
9294 * coffread.c (coff_symfile_read): When constructing the name of an
9295 import stub symbol from import symbol for amd64, only skip the
9296 char after _imp_ if the target is underscored (like i386) and the
9297 char is indeed the target's leading char.
9298
9299 2015-03-25 Pedro Alves <palves@redhat.com>
9300
9301 * target.h <to_async>: Replace 'callback' and 'context' parameters
9302 with boolean 'enable' parameter.
9303 (target_async): Replace CALLBACK and CONTEXT parameters with
9304 boolean ENABLE parameter.
9305 * inf-loop.c (inferior_event_handler): Adjust.
9306 * linux-nat.c (linux_nat_attach, linux_nat_resume)
9307 (linux_nat_resume): Adjust.
9308 (async_client_callback, async_client_context): Delete.
9309 (handle_target_event): Call inferior_event_handler directly.
9310 (linux_nat_async): Replace 'callback' and 'context' parameters
9311 with boolean 'enable' parameter. Adjust. Remove references to
9312 async_client_callback and async_client_context.
9313 (linux_nat_close): Adjust.
9314 * record-btrace.c (record_btrace_async): Replace 'callback' and
9315 'context' parameters with boolean 'enable' parameter. Adjust.
9316 (record_btrace_resume): Adjust.
9317 * record-full.c (record_full_async): Replace 'callback' and
9318 'context' parameters with boolean 'enable' parameter. Adjust.
9319 (record_full_resume, record_full_core_resume): Adjust.
9320 * remote.c (struct remote_state) <async_client_callback,
9321 async_client_context>: Delete fields.
9322 (remote_start_remote, extended_remote_attach_1, remote_resume)
9323 (extended_remote_create_inferior): Adjust.
9324 (remote_async_serial_handler): Call inferior_event_handler
9325 directly.
9326 (remote_async): Replace 'callback' and 'context' parameters with
9327 boolean 'enable' parameter. Adjust.
9328 * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
9329 Adjust.
9330 * target-delegates.c: Regenerate.
9331
9332 2015-03-25 Gary Benson <gbenson@redhat.com>
9333 Pedro Alves <palves@redhat.com>
9334
9335 * target.c (fileio_ft_t): New typedef, define object vector.
9336 (fileio_fhandles): New static variable.
9337 (is_closed_fileio_fh): New macro.
9338 (lowest_closed_fd): New static variable.
9339 (acquire_fileio_fd): New function.
9340 (release_fileio_fd): Likewise.
9341 (fileio_fd_to_fh): New macro.
9342 (target_fileio_open): Wrap the file descriptor on success.
9343 (target_fileio_pwrite): Updated to use wrapped file descriptor.
9344 (target_fileio_pread): Likewise.
9345 (target_fileio_close): Likewise.
9346
9347 2015-03-24 Pedro Alves <palves@redhat.com>
9348
9349 * thread.c (thread_apply_all_command): Take exited threads into
9350 account.
9351
9352 2015-03-24 Pedro Alves <palves@redhat.com>
9353
9354 * infrun.c (resume, proceed): Mention
9355 switch_back_to_stepped_thread, not switch_back_to_stepping.
9356
9357 2015-03-24 Pedro Alves <palves@redhat.com>
9358
9359 * infrun.c (user_visible_resume_ptid): Rewrite going from
9360 most-locked to unlocked instead of the opposite. Move comment ...
9361 * infrun.h (user_visible_resume_ptid): ... here.
9362
9363 2015-03-24 Pedro Alves <palves@redhat.com>
9364
9365 * linux-nat.c (linux_nat_resume): Output debug logs before trying
9366 to resume the event lwp. Use the lwp's ptid instead of the passed
9367 in (maybe wildcard) ptid.
9368 (stop_wait_callback): Tweak debug log output.
9369 (check_stopped_by_breakpoint): Tweak debug log output. Also dump
9370 TRAP_TRACE.
9371 (linux_nat_filter_event): In debug output, distinguish a
9372 resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs
9373 before trying to resume the lwp.
9374
9375 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9376
9377 * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
9378 pointer indirection.
9379 * gdbtypes.c (get_dyn_prop): Adjust, following change above.
9380 (add_dyn_prop, copy_dynamic_prop_list): Likewise.
9381
9382 2015-03-24 Joel Brobecker <brobecker@adacore.com>
9383
9384 * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
9385 Renames DYN_ATTR_DATA_LOCATION.
9386 (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
9387 DYN_ATTR_DATA_LOCATION.
9388 * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
9389 instead of DYN_ATTR_DATA_LOCATION.
9390
9391 2015-03-24 Pedro Alves <palves@redhat.com>
9392
9393 * breakpoint.c (until_break_command): Adjust call to proceed.
9394 * gdbthread.h (struct thread_control_state) <stepping_command>:
9395 New field.
9396 * infcall.c (run_inferior_call): Adjust call to proceed.
9397 * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
9398 Adjust calls to proceed.
9399 (set_step_frame): Set the current thread's step_start_function
9400 here.
9401 (step_once): Adjust calls to proceed.
9402 (jump_command, signal_command, until_next_command)
9403 (finish_backward, finish_forward, proceed_after_attach_callback)
9404 (attach_command_post_wait): Adjust calls to proceed.
9405 * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
9406 (do_target_resume): New function, factored out from ...
9407 (resume): ... here. Remove 'step' parameter. Instead, check
9408 currently_stepping to determine whether the thread should be
9409 single-stepped.
9410 (proceed): Remove 'step' parameter and don't set the thread's
9411 step_start_function here. Adjust call to 'resume'.
9412 (handle_inferior_event): Adjust calls to 'resume'.
9413 (switch_back_to_stepped_thread): Use do_target_resume instead of
9414 'resume'.
9415 (keep_going): Adjust calls to 'resume'.
9416 * infrun.h (proceed): Remove 'step' parameter.
9417 (resume): Likewise.
9418 * windows-nat.c (do_initial_windows_stuff): Adjust call to
9419 'resume'.
9420 * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
9421
9422 2015-03-24 Pedro Alves <palves@redhat.com>
9423
9424 * gdbthread.h (struct thread_control_state) <stepping_command>:
9425 New field.
9426 * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set
9427 the thread's stepping_command field.
9428 * infrun.c (resume): Check the thread's stepping_command flag to
9429 determine which threads should be resumed. Rename 'entry_step'
9430 local to user_step.
9431 (clear_proceed_status_thread): Clear 'stepping_command'.
9432 (schedlock_applies): Change parameter type to struct thread_info
9433 pointer. Adjust.
9434 (find_thread_needs_step_over): Remove 'step' parameter. Adjust.
9435 (switch_back_to_stepped_thread): Adjust calls to
9436 'schedlock_applies'.
9437 (_initialize_infrun): Adjust "set scheduler-locking step" help.
9438
9439 2015-03-24 Pedro Alves <palves@redhat.com>
9440
9441 * infrun.c (step_start_function): Delete and ...
9442 * gdbthread.h (struct thread_control_state) <step_start_function>:
9443 ... now a field here.
9444 * infrun.c (clear_proceed_status_thread): Clear the thread's
9445 step_start_function.
9446 (proceed, process_event_stop_test, print_stop_event): Adjust.
9447
9448 2015-03-24 Pedro Alves <palves@redhat.com>
9449
9450 * infrun.c (proceed): No longer handle negative step.
9451
9452 2015-03-24 Gary Benson <gbenson@redhat.com>
9453
9454 * nat/x86-linux.h (x86_linux_new_thread): New declaration.
9455 (x86_linux_prepare_to_resume): Likewise.
9456 * x86-linux-nat.c (x86_linux_new_thread):
9457 Moved to nat/x86-linux.c.
9458 (x86_linux_prepare_to_resume): Likewise.
9459 * nat/x86-linux.c (x86_linux_new_thread): New function.
9460 (x86_linux_prepare_to_resume): Likewise.
9461
9462 2015-03-24 Gary Benson <gbenson@redhat.com>
9463
9464 * nat/x86-linux-dregs.h: New file.
9465 * nat/x86-linux-dregs.c: Likewise.
9466 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
9467 (x86-linux-dregs.o): New rule.
9468 * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
9469 * config/i386/linux64.mh (NATDEPFILES): Likewise.
9470 * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
9471 (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
9472 (x86_linux_dr_get): Likewise.
9473 (x86_linux_dr_set): Likewise.
9474 (x86_linux_dr_get_addr): Likewise.
9475 (x86_linux_dr_get_control): Likewise.
9476 (x86_linux_dr_get_status): Likewise.
9477 (update_debug_registers_callback): Likewise.
9478 (x86_linux_dr_set_control): Likewise.
9479 (x86_linux_dr_set_addr): Likewise.
9480 (x86_linux_update_debug_registers): Likewise.
9481
9482 2015-03-24 Gary Benson <gbenson@redhat.com>
9483
9484 * x86-linux-nat.c (x86_linux_update_debug_registers):
9485 New function, factored out from...
9486 (x86_linux_prepare_to_resume): ...this.
9487
9488 2015-03-24 Gary Benson <gbenson@redhat.com>
9489
9490 * x86-linux-nat.c (x86_linux_dr_get): Update comments.
9491 (x86_linux_dr_set): Likewise.
9492 (x86_linux_dr_get_addr): Likewise.
9493 (x86_linux_dr_get_control): Likewise.
9494 (x86_linux_dr_get_status): Likewise.
9495 (update_debug_registers_callback): Likewise.
9496 (x86_linux_dr_set_control): Likewise.
9497 (x86_linux_dr_set_addr): Likewise.
9498 (x86_linux_prepare_to_resume): Likewise.
9499 (x86_linux_new_thread): Likewise.
9500
9501 2015-03-24 Gary Benson <gbenson@redhat.com>
9502
9503 * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
9504 (x86_linux_new_thread): Rename argument.
9505
9506 2015-03-24 Gary Benson <gbenson@redhat.com>
9507
9508 * nat/x86-linux.h: New file.
9509 * nat/x86-linux.c: Likewise.
9510 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
9511 (x86-linux.o): New rule.
9512 * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
9513 * config/i386/linux64.mh (NATDEPFILES): Likewise.
9514 * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
9515 (lwp_set_arch_private_info): New declaration.
9516 (lwp_arch_private_info): Likewise.
9517 * linux-nat.c (lwp_set_arch_private_info): New function.
9518 (lwp_arch_private_info): Likewise.
9519 * x86-linux-nat.c: Include nat/x86-linux.h.
9520 (arch_lwp_info): Removed structure.
9521 (update_debug_registers_callback):
9522 Use lwp_set_debug_registers_changed.
9523 (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
9524 and lwp_set_debug_registers_changed.
9525 (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
9526
9527 2015-03-24 Gary Benson <gbenson@redhat.com>
9528
9529 * nat/linux-nat.h (ptid_of_lwp): New declaration.
9530 (lwp_is_stopped): Likewise.
9531 (lwp_stop_reason): Likewise.
9532 * linux-nat.c (ptid_of_lwp): New function.
9533 (lwp_is_stopped): Likewise.
9534 (lwp_is_stopped_by_watchpoint): Likewise.
9535 * x86-linux-nat.c (update_debug_registers_callback):
9536 Use lwp_is_stopped.
9537 (x86_linux_prepare_to_resume): Use ptid_of_lwp and
9538 lwp_stop_reason.
9539
9540 2015-03-24 Gary Benson <gbenson@redhat.com>
9541
9542 * linux-nat.h (linux_stop_lwp): Move declaration to...
9543 * nat/linux-nat.h (linux_stop_lwp): New declaration.
9544
9545 2015-03-24 Gary Benson <gbenson@redhat.com>
9546
9547 * linux-nat.h: Include nat/linux-nat.h.
9548 (iterate_over_lwps): Move declaration to nat/linux-nat.h.
9549 * nat/linux-nat.h (struct lwp_info): New forward declaration.
9550 (iterate_over_lwps_ftype): New typedef.
9551 (iterate_over_lwps): New declaration.
9552 * linux-nat.h (iterate_over_lwps): Update comment. Use
9553 iterate_over_lwps_ftype. Update callback return value check.
9554
9555 2015-03-24 Gary Benson <gbenson@redhat.com>
9556
9557 * x86-nat.h (x86_debug_reg_state): Move declaration to...
9558 * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
9559
9560 2015-03-24 Gary Benson <gbenson@redhat.com>
9561
9562 * nat/linux-nat.h (current_lwp_ptid): New declaration.
9563 * linux-nat.c (current_lwp_ptid): New function.
9564 * x86-linux-nat.c: Include nat/linux-nat.h.
9565 (x86_linux_dr_get_addr): Use current_lwp_ptid.
9566 (x86_linux_dr_get_control): Likewise.
9567 (x86_linux_dr_get_status): Likewise.
9568 (x86_linux_dr_set_control): Likewise.
9569 (x86_linux_dr_set_addr): Likewise.
9570
9571 2015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com>
9572
9573 PR breakpoints/16466
9574 * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
9575
9576 2015-03-23 Joel Brobecker <brobecker@adacore.com>
9577
9578 * ser-mingw.c (ser_windows_setparity): Fix indentation.
9579 * ser-unix.c (hardwire_setparity): Likewise.
9580
9581 2015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com>
9582
9583 * NEWS: Mention set/show serial parity command.
9584 * monitor.c (monitor_open): Call serial_setparity.
9585 * remote.c (remote_open_1): Likewise.
9586 * ser-base.c (ser_base_serparity): New function.
9587 * ser-base.h (ser_base_setparity): Add declaration.
9588 * ser-go32.c (dos_ops): Set "setparity" field.
9589 * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
9590 state.Parity.
9591 (ser_windows_setparity): New function.
9592 (hardwire_ops): Add ser_windows_setparity.
9593 (tty_ops): Add NULL for setparity field.
9594 (pipe_ops): Add ser_base_setparity.
9595 (tcp_ops): Likewise.
9596 * ser-pipe.c (pipe_ops): Likewise.
9597 * ser-tcp.c (tcp_ops): Likewise.
9598 * ser-unix.c (hardwire_setparity): Add declaration.
9599 (hardwire_raw): Don't reset PARENB flag.
9600 (hardwire_setparity): New function.
9601 (hardwire_ops): Add hardwire_setparity.
9602 * serial.c (serial_setparity): New function.
9603 (serial_parity): New global.
9604 (parity_none, parity_odd, parity_even, parity_enums, parity):
9605 New static globals.
9606 (set_parity): New function.
9607 (_initialize_serial): Add set/show serial parity commands.
9608 * serial.h (GDBPARITY_NONE): Define.
9609 (GDBPARITY_ODD): Define.
9610 (GDBPARITY_EVEN): Define.
9611 (serial_setparity) Add declaration.
9612 (struct serial_ops): Add setparity field.
9613 * target.h (serial_parity): Add declaration.
9614
9615 2015-03-23 Keith Seitz <keiths@redhat.com>
9616
9617 * linespec.c (linespec_lexer_lex_keyword): Update comment.
9618
9619 2015-03-23 Keith Seitz <keiths@redhat.com>
9620
9621 * breakpoint.c (parse_breakpoint_sals): Use
9622 linespec_lexer_lex_keyword to ascertain if the user specified
9623 a NULL location.
9624 * linespec.c [IF_KEYWORD_INDEX]: Define.
9625 (linespec_lexer_lex_keyword): Export.
9626 (struct ls_parser) <keyword_ok>: Remove.
9627 A keyword is only a keyword if not followed by another keyword.
9628 (linespec_lexer_lex_one): Remove keyword_ok handling.
9629 Add comment explaining why the parsing stream is not advanced
9630 when a keyword is seen.
9631 (parse_linespec): Remove parser->keyword_ok.
9632 * linespec.h (linespec_lexer_lex_keyword): Add declaration.
9633
9634 2015-03-23 Keith Seitz <keiths@redhat.com>
9635
9636 PR gdb/18021
9637 * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
9638 if we find a static method with DW_AT_vtable_elem_location.
9639
9640 2015-03-21 Eli Zaretskii <eliz@gnu.org>
9641
9642 * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
9643 before the second loop, to avoid undefined behavior. Reported by
9644 Anton Blanchard <anton@samba.org>.
9645
9646 2015-03-20 Keven Boell <keven.boell@intel.com>
9647
9648 * gdbtypes.c (resolve_dynamic_type_internal): Adapt
9649 data_location usage to linked list.
9650 (resolve_dynamic_type_internal): Adapt data_location to
9651 linked list.
9652 (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
9653 (copy_type_recursive, copy_type): Add copy of linked list.
9654 * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
9655 (struct dynamic_prop_list): New struct.
9656 * dwarf2read.c (set_die_type): Set data_location data.
9657
9658 2015-03-20 Pedro Alves <palves@redhat.com>
9659
9660 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
9661 inner block and make it const.
9662 * machoread.c (get_archive_prefix_len): Make "lparen" const.
9663
9664 2015-03-20 Pedro Alves <palves@redhat.com>
9665
9666 * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
9667 * breakpoint.h (set_breakpoint_condition): Update declaration.
9668
9669 2015-03-20 Pedro Alves <palves@redhat.com>
9670
9671 * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
9672
9673 2015-03-20 Pedro Alves <palves@redhat.com>
9674
9675 * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
9676
9677 2015-03-20 Pedro Alves <palves@redhat.com>
9678
9679 * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
9680
9681 2015-03-20 Pedro Alves <palves@redhat.com>
9682
9683 * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
9684 (nto_init_solib_absolute_prefix): Likewise.
9685
9686 2015-03-20 Pedro Alves <palves@redhat.com>
9687
9688 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
9689 * spu-tdep.c (spu_gdbarch_init): Make "name" const.
9690
9691 2015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9692
9693 * config/djgpp/README: Remove gdb.hp.
9694
9695 2015-03-20 Yao Qi <yao.qi@linaro.org>
9696
9697 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
9698 set_gdbarch_cannot_step_breakpoint.
9699
9700 2015-03-19 Pedro Alves <palves@redhat.com>
9701
9702 * linux-nat.c (linux_resume_one_lwp): Rename to ...
9703 (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here,
9704 instead call perror_with_name.
9705 (check_ptrace_stopped_lwp_gone): New function.
9706 (linux_resume_one_lwp): Reimplement as wrapper around
9707 linux_resume_one_lwp_throw that swallows errors if the LWP is
9708 gone.
9709 (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
9710 swallows errors if the LWP is gone. Use
9711 linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
9712
9713 2015-03-19 Pedro Alves <palves@redhat.com>
9714
9715 * linux-nat.c (status_callback): Return early if the LWP has no
9716 status pending.
9717
9718 2015-03-19 Pedro Alves <palves@redhat.com>
9719
9720 * linux-nat.c (select_event_lwp_callback): Update comment to no
9721 longer mention SIGTRAP.
9722
9723 2015-03-18 Tristan Gingold <gingold@adacore.com>
9724
9725 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
9726 redirection code to ...
9727 (amd64_windows_frame_decode_insns): ... Here. Fix in prologue
9728 checks. Fix SAVE_NONVOL operations. Add debug code and comments.
9729
9730 2015-03-18 Gary Benson <gbenson@redhat.com>
9731
9732 (remote_protocol_features): Remove the "vFile:fstat" feature.
9733 (remote_hostio_fstat): Probe for "vFile:fstat" support.
9734
9735 2015-03-11 Yao Qi <yao.qi@linaro.org>
9736
9737 PR tdep/18107
9738 * aarch64-linux-tdep.c: Include xml-syscall.h
9739 (aarch64_linux_get_syscall_number): New function.
9740 (aarch64_linux_init_abi): Call
9741 set_gdbarch_get_syscall_number.
9742 * syscalls/aarch64-linux.xml: New file.
9743
9744 2015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com>
9745
9746 * ser-base.h (ser_base_setstopbits): Change second argument name
9747 from "rate" to "num".
9748
9749 2015-03-17 Gary Benson <gbenson@redhat.com>
9750 Luke Allardyce <lukeallardyce@gmail.com>
9751
9752 PR gdb/18131
9753 * common/common-remote-fileio.h (sys/stat.h): New include.
9754 (stuct stat): Remove forward declaration.
9755
9756 2015-03-16 John Baldwin <jhb@FreeBSD.org>
9757
9758 * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
9759 before writing core register notes.
9760
9761 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
9762 Pedro Alves <palves@redhat.com>
9763
9764 * gdb_curses.h (tgetnum): Mark with EXTERN_C.
9765 * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
9766 (tgoto): Wrap with extern "C".
9767
9768 2015-03-16 Pedro Alves <palves@redhat.com>
9769 Yuanhui Zhang <asmwarrior@gmail.com>
9770
9771 * stub-termcap.c (tputs): Change prototype.
9772
9773 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
9774 Pedro Alves <palves@redhat.com>
9775
9776 * windows-nat.c (struct thread_info_struct): Rename to ...
9777 (struct windows_thread_info_struct): ... this.
9778 (thread_info): Rename to ...
9779 (windows_thread_info): ... this.
9780 All users updated.
9781
9782 2015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9783 Pedro Alves <palves@redhat.com>
9784
9785 * NEWS: New Removed targets and native configurations.
9786
9787 2015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9788
9789 Remove HPUX.
9790 * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
9791 (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
9792 (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
9793 ia64-hpux-tdep.h, solib-ia64-hpux.h.
9794 (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
9795 ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
9796 * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
9797 hppa-hpux-tdep.c.
9798 * config/ia64/hpux.mh: Remove file.
9799 * config/pa/hpux.mh: Remove file.
9800 * configure: Rebuilt.
9801 * configure.ac (dlgetmodinfo, somread.o): Remove.
9802 * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
9803 (ia64-*-hpux*): Remove its float format exception.
9804 * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
9805 * hppa-hpux-nat.c: Remove file.
9806 * hppa-hpux-tdep.c: Remove file.
9807 * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
9808 Move them here from hppa-tdep.h
9809 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
9810 (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
9811 * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
9812 Move them to hppa-tdep.c.
9813 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
9814 declarations.
9815 * ia64-hpux-nat.c: Remove file.
9816 * ia64-hpux-tdep.c: Remove file.
9817 * ia64-hpux-tdep.h: Remove file.
9818 * inf-ttrace.c: Remove file.
9819 * inf-ttrace.h: Remove file.
9820 * solib-ia64-hpux.c: Remove file.
9821 * solib-ia64-hpux.h: Remove file.
9822 * solib-pa64.c: Remove file.
9823 * solib-pa64.h: Remove file.
9824 * solib-som.c: Remove file.
9825 * solib-som.h: Remove file.
9826 * somread.c: Remove file.
9827
9828 2015-03-13 John Baldwin <jhb@FreeBSD.org>
9829
9830 * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
9831 * config.in: Regenerate.
9832 * configure: Regenerate.
9833 * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
9834 define.
9835 (fbsd_find_memory_regions): Use kinfo_getvmmap to
9836 enumerate memory regions if present.
9837
9838 2015-03-13 John Baldwin <jhb@FreeBSD.org>
9839
9840 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
9841 * i386fbsd-tdep.c: Fix style in various gdb_static_assert
9842 expressions.
9843 (i386fbsd_sigtramp_p): Likewise.
9844
9845 2015-03-12 John Baldwin <jhb@FreeBSD.org>
9846
9847 * MAINTAINERS (Write After Approval): Add John Baldwin.
9848
9849 2015-03-12 Gary Benson <gbenson@redhat.com>
9850
9851 * solib.c (_initialize_solib): Make "set/show sysroot" use
9852 add_setshow_optional_filename_cmd so it can be restored to
9853 empty after being set.
9854
9855 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
9856
9857 * Makefile.in (SFILES): New source break-catch-syscall.c.
9858 (COMMON_OBS): New object break-catch-syscall.o.
9859 * break-catch-syscall.c: New file.
9860 * breakpoint.c: Remove inclusion of "xml-syscall.h".
9861 (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
9862 (struct syscall_catchpoint): Likewise.
9863 (dtor_catch_syscall): Likewise.
9864 (catch_syscall_inferior_data): Likewise.
9865 (struct catch_syscall_inferior_data): Likewise.
9866 (get_catch_syscall_inferior_data): Likewise.
9867 (catch_syscall_inferior_data_cleanup): Likewise.
9868 (insert_catch_syscall): Likewise.
9869 (remove_catch_syscall): Likewise.
9870 (breakpoint_hit_catch_syscall): Likewise.
9871 (print_it_catch_syscall): Likewise.
9872 (print_one_catch_syscall): Likewise.
9873 (print_mention_catch_syscall): Likewise.
9874 (print_recreate_catch_syscall): Likewise.
9875 (catch_syscall_breakpoint_ops): Likewise.
9876 (syscall_catchpoint_p): Likewise.
9877 (create_syscall_event_catchpoint): Likewise.
9878 (catch_syscall_split_args): Likewise.
9879 (catch_syscall_command_1): Likewise.
9880 (is_syscall_catchpoint_enabled): Likewise.
9881 (catch_syscall_enabled): Likewise.
9882 (catching_syscall_number): Likewise.
9883 (catch_syscall_completer): Likewise.
9884 (clear_syscall_counts): Likewise.
9885 (initialize_breakpoint_ops): Move initialization of syscall
9886 catchpoints to break-catch-syscall.c.
9887 (_initialize_breakpoint): Move code related to syscall catchpoints
9888 to break-catch-syscall.c.
9889
9890 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
9891
9892 * breakpoint.c (breakpoint_find_if): New function.
9893 * breakpoint.h (breakpoint_find_if): New prototype.
9894
9895 2015-03-11 Gary Benson <gbenson@redhat.com>
9896
9897 * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
9898 * remote-fileio.c (remote_fileio_to_host_uint): New function.
9899 (remote_fileio_to_host_ulong): Likewise.
9900 (remote_fileio_to_host_mode): Likewise.
9901 (remote_fileio_to_host_time): Likewise.
9902 (remote_fileio_to_host_stat): Likewise.
9903 * remote.c (PACKET_vFile_fstat): New enum value.
9904 (remote_protocol_features): Register the "vFile:fstat" feature.
9905 (remote_hostio_fstat): New function.
9906 (remote_bfd_iovec_stat): Use the above.
9907 (_initialize_remote): Register new "set/show remote
9908 hostio-fstat-packet" command.
9909 * symfile.c (separate_debug_file_exists): Update comment.
9910 * NEWS: Announce new vFile:fstat packet.
9911
9912 2015-03-11 Gary Benson <gbenson@redhat.com>
9913
9914 * common/common-remote-fileio.h: New file.
9915 * common/common-remote-fileio.c: Likewise.
9916 * Makefile.in (SFILES): Add common/common-remote-fileio.c.
9917 (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
9918 (COMMON_OBS): Add common-remote-fileio.o.
9919 (common-remote-fileio.o): New rule.
9920 * remote-fileio.h (common-remote-fileio.h): New include.
9921 * remote-fileio.c (gdb/fileio.h): Do not include.
9922 (remote_fileio_to_be): Moved to common-remote-fileio.h.
9923 (remote_fileio_to_fio_uint): Likewise.
9924 (remote_fileio_to_fio_time): Likewise.
9925 (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
9926 (remote_fileio_to_fio_mode): Likewise.
9927 (remote_fileio_to_fio_ulong): Likewise.
9928 (remote_fileio_to_fio_stat): Likewise.
9929
9930 2015-03-11 Andy Wingo <wingo@igalia.com>
9931
9932 * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
9933 we were checking the cached type, not the cached dynamic type.
9934
9935 2015-03-11 Andy Wingo <wingo@igalia.com>
9936
9937 * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
9938 other strings, as these are on the GC'd heap, and will be
9939 collected along with the smob.
9940
9941 2015-03-11 Andy Wingo <wingo@igalia.com>
9942
9943 * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
9944 (objfile_functions): Bind gdbscm_objfile_progspace to
9945 objfile-progspace.
9946 * guile/lib/gdb.scm: Add objfile-progspace to exports.
9947
9948 2015-03-11 Andy Wingo <wingo@igalia.com>
9949
9950 * guile/guile.c (_initialize_guile): Disable automatic
9951 finalization, if Guile offers us that possibility.
9952 * guile/guile.c (call_initialize_gdb_module):
9953 * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
9954 finalizers in appropriate places.
9955 * configure.ac (AC_TRY_LIBGUILE): Add a check for
9956 scm_set_automatic_finalization_enabled.
9957 * configure: Regenerated.
9958
9959 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
9960
9961 * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
9962 SAL, if possible.
9963
9964 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
9965
9966 * s390-linux-nat.c (struct arch_lwp_info): New.
9967 (s390_fix_watch_points): Rename to...
9968 (s390_prepare_to_resume): ...this. Skip the PER info update
9969 unless the watch points have changed.
9970 (s390_refresh_per_info, s390_new_thread): New functions.
9971 (s390_insert_watchpoint): Call s390_refresh_per_info instead of
9972 s390_fix_watch_points.
9973 (s390_remove_watchpoint): Likewise.
9974 (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
9975 Register s390_prepare_to_resume.
9976
9977 2015-03-09 Pedro Alves <palves@redhat.com>
9978
9979 Revert:
9980 2015-03-07 Pedro Alves <palves@redhat.com>
9981 * common/gdb_socket.h: New file.
9982 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
9983 sys/socket.h.
9984 (net_open): Use union gdb_sockaddr_u.
9985
9986 2015-03-07 Pedro Alves <palves@redhat.com>
9987
9988 * configure.ac (build_warnings): Move -Wmissing-prototypes
9989 -Wdeclaration-after-statement -Wmissing-parameter-type
9990 -Wold-style-declaration -Wold-style-definition to the C-specific
9991 set.
9992 * configure: Regenerate.
9993
9994 2015-03-07 Pedro Alves <palves@redhat.com>
9995
9996 * common/gdb_socket.h: New file.
9997 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
9998 sys/socket.h.
9999 (net_open): Use union gdb_sockaddr_u.
10000
10001 2015-03-07 Pedro Alves <palves@redhat.com>
10002
10003 * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
10004 (exceptions_state_mc_action_iter)
10005 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10006 Don't define.
10007 [__cplusplus] (try_scope_depth): New global.
10008 [__cplusplus] (exception_try_scope_entry)
10009 (exception_try_scope_exit, gdb_exception_sliced_copy)
10010 (exception_rethrow): New functions.
10011 (throw_exception): In C++ mode, throw
10012 gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
10013 gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
10014 (throw_it): In C++ mode, use try_scope_depth.
10015 * common/common-exceptions.h [!__cplusplus]
10016 (exceptions_state_mc_action_iter)
10017 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10018 Don't declare.
10019 [__cplusplus] (exception_try_scope_entry)
10020 (exception_try_scope_exit, exception_rethrow): Declare.
10021 [__cplusplus] (struct exception_try_scope): New struct.
10022 [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
10023 C++ exceptions.
10024 (struct gdb_exception_RETURN_MASK_ALL)
10025 (struct gdb_exception_RETURN_MASK_ERROR)
10026 (struct gdb_exception_RETURN_MASK_QUIT): New types.
10027
10028 2015-03-07 Pedro Alves <palves@redhat.com>
10029
10030 * main.c (handle_command_errors): Remove volatile qualifier from
10031 parameter.
10032
10033 2015-03-07 Pedro Alves <palves@redhat.com>
10034
10035 * breakpoint.c (save_breakpoints): Adjust to avoid code between
10036 TRY and CATCH.
10037 * gdbtypes.c (safe_parse_type): Remove empty line.
10038 (types_deeply_equal):
10039 * guile/scm-frame.c (gdbscm_frame_name):
10040 * linux-thread-db.c (find_new_threads_once):
10041 * python/py-breakpoint.c (bppy_get_commands):
10042 * record-btrace.c (record_btrace_insert_breakpoint)
10043 (record_btrace_remove_breakpoint, record_btrace_start_replaying)
10044 (record_btrace_start_replaying): Adjust to avoid code between TRY
10045 and CATCH.
10046
10047 2015-03-07 Pedro Alves <palves@redhat.com>
10048
10049 * common/common-exceptions.c (struct catcher) <exception>: No
10050 longer a pointer to volatile exception. Now an exception value.
10051 <mask>: Delete field.
10052 (exceptions_state_mc_init): Remove all parameters. Adjust.
10053 (exceptions_state_mc): No longer pop the catcher here.
10054 (exceptions_state_mc_catch): New function.
10055 (throw_exception): Adjust.
10056 * common/common-exceptions.h (exceptions_state_mc_init): Remove
10057 all parameters.
10058 (exceptions_state_mc_catch): Declare.
10059 (TRY_CATCH): Rename to ...
10060 (TRY): ... this. Remove EXCEPTION and MASK parameters.
10061 (CATCH, END_CATCH): New.
10062 All callers adjusted.
10063
10064 2015-03-07 Tom Tromey <tromey@redhat.com>
10065
10066 * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
10067
10068 2015-03-07 Pedro Alves <palves@redhat.com>
10069
10070 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
10071 (amd64_epilogue_frame_cache): Normal exception handling code.
10072 * break-catch-throw.c (check_status_exception_catchpoint)
10073 (re_set_exception_catchpoint): Ditto.
10074 * cli/cli-interp.c (safe_execute_command):
10075 * cli/cli-script.c (script_from_file): Ditto.
10076 * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
10077 Ditto.
10078 * compile/compile-object-run.c (compile_object_run): Ditto.
10079 * cp-abi.c (baseclass_offset): Ditto.
10080 * cp-valprint.c (cp_print_value): Ditto.
10081 * exceptions.c (catch_exceptions_with_msg):
10082 * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
10083 * frame.c (get_frame_address_in_block_if_available): Ditto.
10084 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
10085 (i386_sigtramp_frame_cache): Ditto.
10086 * infcmd.c (post_create_inferior): Ditto.
10087 * linespec.c (parse_linespec, find_linespec_symbols):
10088 * p-valprint.c (pascal_object_print_value): Ditto.
10089 * parse.c (parse_expression_for_completion): Ditto.
10090 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
10091 * remote.c (remote_get_noisy_reply): Ditto.
10092 * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
10093 * solib-svr4.c (solib_svr4_r_map): Ditto.
10094
10095 2015-03-06 Gary Benson <gbenson@redhat.com>
10096
10097 * common/common-utils.h (startswith): New inline function.
10098 All places where this logic was used updated to use the above.
10099
10100 2015-03-05 Pedro Alves <palves@redhat.com>
10101
10102 PR gdb/18002
10103 * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
10104 after reading the breakpoint's shadow memory.
10105
10106 2015-03-05 Mark Kettenis <kettenis@gnu.org>
10107
10108 * hppabsd-nat.c: Remove file.
10109 * hppaobsd-nat.c: New file.
10110 * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add
10111 hppaobsd-nat.c.
10112 * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
10113 hppaobsd-nat.o.
10114
10115 2015-03-04 Pedro Alves <palves@redhat.com>
10116
10117 * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
10118 (target_decr_pc_after_break): Delete declaration.
10119 * target.c (default_target_decr_pc_after_break)
10120 (target_decr_pc_after_break): Delete.
10121 * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
10122 gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
10123 * linux-thread-db.c (check_event): Likewise.
10124 * infrun.c (adjust_pc_after_break): Likewise.
10125 * darwin-nat.c (cancel_breakpoint): Likewise.
10126 * aix-thread.c (aix_thread_wait): Likewise.
10127 * target-delegates.c: Regenerate.
10128
10129 2015-03-04 Pedro Alves <palves@redhat.com>
10130
10131 * linux-nat.c (save_sigtrap): Check for breakpoints before
10132 checking watchpoints.
10133 (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
10134 breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
10135 (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
10136 a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
10137 (linux_nat_stopped_by_sw_breakpoint)
10138 (linux_nat_supports_stopped_by_sw_breakpoint)
10139 (linux_nat_stopped_by_hw_breakpoint)
10140 (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
10141 (linux_nat_wait_1): Don't re-increment the PC if relying on
10142 SIGTRAP's siginfo->si_code.
10143 (linux_nat_add_target): Install new target methods.
10144 * linux-thread-db.c (check_event): Don't account for breakpoint PC
10145 offset if the target already adjusted the PC.
10146 * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
10147 (GDB_ARCH_TRAP_BRKPT): New.
10148 (TRAP_HWBKPT): Define if not already defined.
10149
10150 2015-03-04 Pedro Alves <palves@redhat.com>
10151
10152 * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
10153 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
10154 Delete field.
10155 <stop_reason>: New field.
10156 (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
10157 (packet_set_cmd_state): New function.
10158 (remote_protocol_features): Register the "swbreak" and "hwbreak"
10159 features.
10160 (remote_query_supported): If not disabled with the corresponding
10161 "set remote foo-packet" command, report support for the swbreak
10162 and hwbreak features.
10163 (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
10164 field.
10165 <stop_reason>: New field.
10166 (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
10167 (remote_wait_as): Adjust.
10168 (remote_stopped_by_sw_breakpoint)
10169 (remote_supports_stopped_by_sw_breakpoint)
10170 (remote_stopped_by_hw_breakpoint)
10171 (remote_supports_stopped_by_hw_breakpoint): New functions.
10172 (remote_stopped_by_watchpoint): New function.
10173 (init_remote_ops): Install them.
10174 (_initialize_remote): Register new "set/show remote
10175 swbreak-feature-packet" and "set/show remote
10176 swbreak-feature-packet" commands.
10177
10178 2015-03-04 Pedro Alves <palves@redhat.com>
10179
10180 * btrace.h: Include target/waitstatus.h.
10181 (struct btrace_thread_info) <stop_reason>: New field.
10182 * record-btrace.c (record_btrace_step_thread): Use
10183 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10184 (record_btrace_decr_pc_after_break): Delete.
10185 (record_btrace_stopped_by_sw_breakpoint)
10186 (record_btrace_supports_stopped_by_sw_breakpoint)
10187 (record_btrace_stopped_by_hw_breakpoint)
10188 (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
10189 (init_record_btrace_ops): Install them.
10190 * record-full.c (record_full_hw_watchpoint): Delete and replace
10191 with ...
10192 (record_full_stop_reason): ... this throughout.
10193 (record_full_exec_insn): Adjust.
10194 (record_full_wait_1): Adjust. No longer re-increment the PC.
10195 (record_full_wait_1): Adjust. Use
10196 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10197 (record_full_stopped_by_watchpoint): Adjust.
10198 (record_full_stopped_by_sw_breakpoint)
10199 (record_full_supports_stopped_by_sw_breakpoint)
10200 (record_full_supports_stopped_by_sw_breakpoint)
10201 (record_full_stopped_by_hw_breakpoint)
10202 (record_full_supports_stopped_by_hw_breakpoint): New functions.
10203 (init_record_full_ops, init_record_full_core_ops): Install them.
10204 * record.c (record_check_stopped_by_breakpoint): New function.
10205 * record.h: Include target/waitstatus.h.
10206 (record_check_stopped_by_breakpoint): New declaration.
10207
10208 2015-03-04 Pedro Alves <palves@redhat.com>
10209
10210 enum lwp_stop_reason -> enum target_stop_reason
10211 * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
10212 (linux_nat_stopped_by_watchpoint, status_callback)
10213 (linux_nat_wait_1): Adjust.
10214 * linux-nat.h (enum lwp_stop_reason): Delete.
10215 (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
10216 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
10217 * target/waitstatus.h (enum target_stop_reason): New.
10218
10219 2015-03-04 Pedro Alves <palves@redhat.com>
10220
10221 * breakpoint.c (need_moribund_for_location_type): New function.
10222 (bpstat_stop_status): Don't skipping checking moribund locations
10223 of breakpoint types which the target tell caused a stop.
10224 (program_breakpoint_here_p): New function, factored out from ...
10225 (bp_loc_is_permanent): ... this.
10226 (update_global_location_list): Don't create a moribund location if
10227 the target supports reporting stops of the type of the removed
10228 breakpoint.
10229 * breakpoint.h (program_breakpoint_here_p): New declaration.
10230 * infrun.c (adjust_pc_after_break): Return early if the target has
10231 already adjusted the PC. Add comments.
10232 (handle_signal_stop): If nothing explains a signal, and the target
10233 tells us the stop was caused by a software breakpoint, check if
10234 there's a breakpoint instruction in the memory. If so, adjust the
10235 PC before presenting the stop to the user. Otherwise, ignore the
10236 trap. If nothing explains a signal, and the target tells us the
10237 stop was caused by a hardware breakpoint, ignore the trap.
10238 * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
10239 to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
10240 to_supports_stopped_by_hw_breakpoint>: New fields.
10241 (target_stopped_by_sw_breakpoint)
10242 (target_supports_stopped_by_sw_breakpoint)
10243 (target_stopped_by_hw_breakpoint)
10244 (target_supports_stopped_by_hw_breakpoint): Define.
10245 * target-delegates.c: Regenerate.
10246
10247 2015-03-04 Pedro Alves <palves@redhat.com>
10248
10249 * infrun.c (follow_fork_inferior): Use the whole of the
10250 inferior_ptid and pending_follow.related_pid ptids instead of
10251 building ptids from the process components. Adjust verbose output
10252 to use target_pid_to_str.
10253 * linux-nat.c (linux_child_follow_fork): Use the whole of the
10254 inferior_ptid and pending_follow.related_pid ptids instead of
10255 building ptids from the process components.
10256
10257 2015-03-04 Mark Kettenis <kettenis@gnu.org>
10258
10259 * inf-ptrace.c [PT_GET_PROCESS_STATE]
10260 (inf_ptrace_insert_fork_catchpoint): New function.
10261 (inf_ptrace_remove_fork_catchpoint): New function.
10262 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
10263
10264 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10265
10266 * s390-linux-tdep.c (s390_register_name): Return empty string
10267 instead of NULL for registers that shouldn't be visible.
10268
10269 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
10270
10271 * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
10272 XML file for 64-bit targets.
10273
10274 2015-03-03 Simon Marchi <simon.marchi@ericsson.com>
10275
10276 * target.h (find_default_create_inferior): Remove declaration.
10277 (find_default_attach): Likewise.
10278
10279 2015-03-03 Pedro Alves <palves@redhat.com>
10280
10281 * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
10282 Use ptid_get_pid to get the overall process id when resuming all
10283 threads.
10284
10285 2015-03-03 Pedro Alves <palves@redhat.com>
10286
10287 * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
10288 the lwp field of ptid. Pass the full ptid to get_thread_regcache.
10289 * inf-ptrace.c (get_ptrace_pid): New function.
10290 (inf_ptrace_resume): Use it.
10291 * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
10292 to the lower layer.
10293
10294 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10295
10296 * nat/linux-btrace.c: Include sys/utsname.h.
10297 (linux_determine_kernel_ptr_bits): New.
10298 (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
10299 * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
10300 ptr_bits.
10301
10302 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10303
10304 * btrace.c (ftrace_update_function): Treat return as tailcall for
10305 "_dl_runtime_resolve".
10306
10307 2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
10308
10309 * btrace.h (btrace_function) <lbegin, lend>: Remove.
10310 * btrace.c (ftrace_debug): Do not print the line range.
10311 (ftrace_skip_file, ftrace_update_lines): Remove.
10312 (ftrace_new_function): Remove lbegin and lend initialization.
10313 (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
10314 * record-btrace.c (btrace_compute_src_line_range): New.
10315 (btrace_call_history_src_line): Call btrace_compute_src_line_range.
10316
10317 2015-03-02 Pedro Alves <palves@redhat.com>
10318
10319 * infrun.c (follow_exec): Delete all threads of the process except
10320 the event thread. Extended comments.
10321
10322 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10323
10324 * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
10325
10326 2015-03-02 Joel Brobecker <brobecker@adacore.com>
10327
10328 * utils.h: Remove <stdbool.h> #include.
10329 (producer_is_gcc): Change return type to "int".
10330 * utils.c (producer_is_gcc): Change return type to int.
10331 Return 1 instead of true, and 0 instead of false.
10332 Adjust function documentation accordingly.
10333
10334 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10335
10336 * s390-linux-nat.c (have_regset_vxrs): New static variable.
10337 (s390_linux_fetch_inferior_registers): Handle vector registers, if
10338 present.
10339 (s390_linux_store_inferior_registers): Likewise.
10340 (s390_get_hwcap): Remove function. Embed its logic...
10341 (s390_read_description): ...here. Yield a target description with
10342 vector registers if applicable.
10343 * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
10344 "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
10345 "features/s390x-tevx-linux64.c".
10346 (struct gdbarch_tdep) <v0_full_regnum>: New field.
10347 (s390_dwarf_regmap): Add vector registers. Remove bogus entries
10348 for "GNU/Linux-specific registers".
10349 (s390_dwarf_reg_r0l): New enum value.
10350 (s390_dwarf_reg_to_regnum): Support vector registers.
10351 (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
10352 of GPR lower halves.
10353 (regnum_is_vxr_full): New function.
10354 (s390_register_name): New function.
10355 (s390_pseudo_register_name): Handle v0-v15, which are composed of
10356 f0-f15 and v0l-v15l.
10357 (s390_pseudo_register_type): Likewise.
10358 (s390_pseudo_register_read): Likewise.
10359 (s390_pseudo_register_write): Likewise.
10360 (s390_value_from_register): Account for the fact that values are
10361 placed left-justified in vector registers.
10362 (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
10363 the vector reggroup and omit them from the general reggroup.
10364 (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
10365 (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
10366 (s390_iterate_over_regset_sections): Add iterations for the two
10367 new vector regsets.
10368 (s390_core_read_description): Yield a target description with
10369 vector registers if applicable.
10370 (s390_gdbarch_init): Handle target descriptions with vector
10371 registers. Add "register_name" gdbarch method.
10372 (_initialize_s390_tdep): Call new tdesc initialization functions.
10373 * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
10374 (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
10375 (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
10376 (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
10377 (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
10378 (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
10379 (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
10380 (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
10381 (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
10382 (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
10383 (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
10384 (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
10385 (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
10386 (S390_NUM_REGS): Adjust value.
10387 (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
10388 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
10389 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
10390 * NEWS: Announce S/390 vector register support.
10391
10392 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
10393
10394 * features/s390-tevx-linux64.xml: New file.
10395 * features/s390-vx-linux64.xml: New file.
10396 * features/s390-vx.xml: New file.
10397 * features/s390x-tevx-linux64.xml: New file.
10398 * features/s390x-vx-linux64.xml: New file.
10399 * features/Makefile (WHICH): Add s390-vx-linux64,
10400 s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
10401 (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
10402 (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
10403 macros.
10404 * features/s390-tevx-linux64.c: New generated file.
10405 * features/s390-vx-linux64.c: Likewise.
10406 * features/s390x-tevx-linux64.c: Likewise.
10407 * features/s390x-vx-linux64.c: Likewise.
10408 * regformats/s390-tevx-linux64.dat: Likewise.
10409 * regformats/s390-vx-linux64.dat: Likewise.
10410 * regformats/s390x-tevx-linux64.dat: Likewise.
10411 * regformats/s390x-vx-linux64.dat: Likewise.
10412
10413 2015-02-28 Doug Evans <xdje42@gmail.com>
10414
10415 * symtab.h (struct symtab) <next>: Fix comment.
10416
10417 2015-02-27 Simon Marchi <simon.marchi@ericsson.com>
10418
10419 * python/python.c (python_GdbModuleDef): Rename GdbMethods to
10420 python_GdbMethods.
10421
10422 2015-02-27 Pedro Alves <palves@redhat.com>
10423
10424 * dtrace-probe.c (dtrace_probe_ops): Make extern.
10425
10426 2015-02-27 Pedro Alves <palves@redhat.com>
10427
10428 * common/common-exceptions.h (exception_none): Declare.
10429 * common/common-exceptions.c (exception_none): Moved from
10430 exceptions.c.
10431 (exceptions_state_mc_init): Use exception_none.
10432 * exceptions.c (exception_none): Move to
10433 common/common-exceptions.c.
10434 * exceptions.h (exception_none): Move to
10435 common/common-exceptions.h.
10436
10437 2015-02-27 Pedro Alves <palves@redhat.com>
10438
10439 * main.c (catch_command_errors, catch_command_errors_const):
10440 Remove 'mask' argument. Adjust.
10441 (captured_main): Adjust callers.
10442
10443 2015-02-27 Pedro Alves <palves@redhat.com>
10444
10445 * python/python-internal.h: Include "extension-priv.h".
10446
10447 2015-02-27 Pedro Alves <palves@redhat.com>
10448
10449 * breakpoint.h (enum print_stop_action): Move further up in the
10450 file.
10451
10452 2015-02-27 Pedro Alves <palves@redhat.com>
10453
10454 * gdbarch.sh: Include regcache.h.
10455 * gdbarch.h: Regenerate.
10456
10457 2015-02-27 Pedro Alves <palves@redhat.com>
10458
10459 * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
10460 Remove duplicate const.
10461 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
10462 duplicate const.
10463
10464 2015-02-27 Pedro Alves <palves@redhat.com>
10465
10466 * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
10467 * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
10468 * features/feature_to_c.sh: Tag the generated xml_builtin array
10469 with extern const in C++ mode.
10470
10471 2015-02-27 Tom Tromey <tromey@redhat.com>
10472
10473 * minidebug.c (struct lzma_stream): Rename to ...
10474 (struct gdb_lzma_stream): ... this.
10475 (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
10476
10477 2015-02-27 Pedro Alves <palves@redhat.com>
10478
10479 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
10480 function.
10481 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
10482 (mi_cmd_stack_list_variables): Use it.
10483
10484 2015-02-27 Pedro Alves <palves@redhat.com>
10485
10486 * x86-linux-nat.c (u_debugreg_offset): New function.
10487 (x86_linux_dr_get, x86_linux_dr_set): Use it.
10488
10489 2015-02-27 Pedro Alves <palves@redhat.com>
10490
10491 * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
10492 declaration.
10493 Include break-common.h.
10494
10495 2015-02-27 Tom Tromey <tromey@redhat.com>
10496 Pedro Alves <palves@redhat.com>
10497
10498 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
10499 local used to iterate over enums.
10500 * completer.c (signal_completer): Likewise.
10501 * i386-tdep.c (i386_stap_parse_special_token): Likewise.
10502 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
10503 * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
10504 * tui/tui-layout.c (next_layout, prev_layout): Likewise.
10505 * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
10506 (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
10507 * tui-wingeneral.c (tui_refresh_all): Likewise.
10508
10509 2015-02-27 Pedro Alves <palves@redhat.com>
10510
10511 * target.h: Include "infrun.h".
10512
10513 2015-02-27 Pedro Alves <palves@redhat.com>
10514
10515 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
10516
10517 2015-02-27 Pedro Alves <palves@redhat.com>
10518
10519 * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
10520 (IPA_SYM): Use it.
10521 * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
10522
10523 2015-02-27 Pedro Alves <palves@redhat.com>
10524
10525 * cli-out.c (_rl_erase_entire_line): Move declaration out of
10526 cli_mld_erase_entire_line, and make it extern "C".
10527 * common/common-defs.h (EXTERN_C): New.
10528 * completer.c (_rl_completion_prefix_display_length)
10529 (_rl_print_completions_horizontally, QSFUNC): Move declarations
10530 out of gdb_display_match_list_1.
10531 (_rl_qsort_string_compare): Move declaration out of
10532 gdb_display_match_list_1, and make it extern "C".
10533 * defs.h (re_comp): Use EXTERN_C.
10534 * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
10535 and make it extern "C".
10536 (monstartup): Move declaration out of maintenance_set_profile_cmd,
10537 and make it extern "C".
10538 (main): Move declaration out of maintenance_set_profile_cmd.
10539 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
10540 EXTERN_C.
10541
10542 2015-02-27 Pedro Alves <palves@redhat.com>
10543
10544 * python/python.c (GdbMethods): Rename to ...
10545 (python_GdbMethods): ... this and make extern.
10546 (GdbModuleDef): Rename to ...
10547 (python_GdbModuleDef): ... this and make extern.
10548
10549 2015-02-27 Pedro Alves <palves@redhat.com>
10550
10551 * record-btrace.c (set_record_btrace_cmdlist)
10552 (show_record_btrace_cmdlist): Remove redefinitions.
10553
10554 2015-02-27 Tom Tromey <tromey@redhat.com>
10555 Pedro Alves <palves@redhat.com>
10556
10557 * dwarf2-frame.c (enum cfa_how_kind, struct
10558 dwarf2_frame_state_reg_info): Move out of struct
10559 dwarf2_frame_state.
10560 * dwarf2read.c (struct tu_stats): Move out of struct
10561 dwarf2_per_objfile.
10562 (struct file_entry): Move out of struct line_header.
10563 (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
10564 typedef_field_list): Move out of struct field_info.
10565 * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
10566 Move out of struct dynamic_prop.
10567 (union type_owner, union field_location, struct field, struct
10568 range_bounds, union type_specific): Move out of struct main_type.
10569 (struct fn_fieldlist, struct fn_field, struct typedef_field)
10570 (VOFFSET_STATIC): Move out of struct cplus_struct_type.
10571 (struct call_site_target, union call_site_parameter_u, struct
10572 call_site_parameter): Move out of struct call_site.
10573 * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
10574 m32c_prologue.
10575 (enum srcdest_kind): Move out of struct srcdest.
10576 * main.c (enum cmdarg_kind): Move out of struct cmdarg.
10577 * prologue-value.h (enum prologue_value_kind): Move out of struct
10578 prologue_value.
10579 * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
10580 gdbarch_tdep.
10581 * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
10582 out of struct field_info.
10583 * symfile.h (struct other_sections): Move out of struct
10584 section_addr_info.
10585 * symtab.c (struct symbol_cache_slot): Move out struct
10586 block_symbol_cache.
10587 * target-descriptions.c (enum tdesc_type_kind): Move out of
10588 typedef struct tdesc_type.
10589 * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
10590 struct tui_line_or_address.
10591 * value.c (enum internalvar_kind, union internalvar_data): Move
10592 out of struct internalvar.
10593 * xtensa-tdep.h (struct ctype_cache): Move out of struct
10594 gdbarch_tdep.
10595
10596 2015-02-27 Tom Tromey <tromey@redhat.com>
10597 Pedro Alves <palves@redhat.com>
10598
10599 Rename symbols whose names are reserved C++ keywords throughout.
10600
10601 2015-02-27 Pedro Alves <palves@redhat.com>
10602
10603 * Makefile.in (COMPILER): New, get it from autoconf.
10604 (COMPILE.pre, CC_LD): Use COMPILER.
10605 (CXX): Get from autoconf instead.
10606 (CXX_FOR_TARGET): Default to g++ instead of gcc.
10607 * acinclude.m4: Include build-with-cxx.m4.
10608 * build-with-cxx.m4: New file.
10609 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
10610 Disable -Werror by default if building in C++ mode.
10611 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
10612 -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode.
10613 Run supported-warning-flags tests with the C++ compiler.
10614 Save/restore CXXFLAGS too.
10615 * configure: Regenerate.
10616
10617 2015-02-27 Pedro Alves <palves@redhat.com>
10618
10619 * libiberty.m4: New file.
10620 * acinclude.m4: Include libiberty.m4.
10621 * configure.ac: Call libiberty_INIT.
10622 * config.in, configure: Regenerate.
10623
10624 2015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
10625
10626 * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
10627 31-bit targets, but 64-bit targets as well.
10628 (s390_gnu_triplet_regexp): New function.
10629 (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
10630 64-bit targets as well. Set the gnu_triplet_regexp gdbarch
10631 method.
10632
10633 2015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch)
10634
10635 * windows-nat.c (CONTEXT_DEBUGGER): Remove.
10636 (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags
10637 from CONTEXT_DEBUGGER.
10638
10639 2015-02-26 Doug Evans <dje@google.com>
10640
10641 * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
10642 CHECK_TYPEDEF.
10643 (set_type_vptr_fieldno): Ditto.
10644 (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
10645 * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
10646
10647 2015-02-26 Pedro Alves <palves@redhat.com>
10648
10649 * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
10650 * complaints.c (vcomplaint): Pass argument FMT directly to
10651 printf-like functions instead of complaint->fmt.
10652 * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
10653 * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
10654 * compile/compile-loc2c.c (pushf, unary, binary): Add
10655 ATTRIBUTE_PRINTF.
10656 (do_compile_dwarf_expr_to_c): Pass string literal as format string
10657 to pushf.
10658 (BINARY): Pass string literal as format string to 'binary'.
10659 * compile/compile-object-load.c (link_callbacks_einfo): Add
10660 ATTRIBUTE_PRINTF.
10661 * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
10662
10663 2015-02-26 Pedro Alves <palves@redhat.com>
10664
10665 * windows-termcap.c: Rename to ...
10666 * stub-termcap.c: ... this. Adjust header line.
10667 * Makefile.in (SFILES): Refer to stub-termcap.c instead of
10668 windows-termcap.c.
10669 * configure: Regenerate.
10670 * configure.ac: Refer to stub-termcap.o instead of
10671 windows-termcap.o.
10672 * gdb_curses.h: Mention stub-termcap.c instead of
10673 windows-termcap.c.
10674
10675 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10676
10677 * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
10678 (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
10679
10680 2015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
10681
10682 * gdb/infcmd.c (print_return_value): use type_to_string to print type.
10683
10684 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10685
10686 * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
10687 bfd_canonicalize_symtab.
10688
10689 2015-02-25 John Baldwin <jhb@FreeBSD.org>
10690
10691 * amd64fbsd-nat.c: Include sys/user.h.
10692 (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
10693 instead of KERN_PS_STRINGS to locate the signal trampoline.
10694 * i386fbsd-nat.c: Include sys/user.h.
10695 (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
10696 instead of KERN_PS_STRINGS to locate the signal trampoline.
10697 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
10698 (amd64fbsd_sigtramp_p): New.
10699 (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
10700 longer set default values.
10701 (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
10702 * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
10703 (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
10704 (i386fbsd_freebsd4_sigtramp_start)
10705 (i386fbsd_freebsd4_sigtramp_middle)
10706 (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
10707 (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
10708 (i386fbsd_sigtramp_p): New.
10709 (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
10710 longer set default values.
10711 (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
10712
10713 2015-02-25 John Baldwin <jhb@freebsd.org>
10714
10715 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
10716 get_frame_register instead of frame_unwind_register_unsigned.
10717
10718 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10719
10720 PR build/18033
10721 * compile/compile-c-support.c (c_compute_program): Change // comment.
10722 * compile/compile-object-load.c (setup_sections): Change // comment.
10723
10724 2015-02-26 Joel Brobecker <brobecker@adacore.com>
10725
10726 PR build/18033:
10727 * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
10728
10729 2015-02-23 Pedro Alves <palves@redhat.com>
10730
10731 * remote.c (skip_to_semicolon): New function.
10732 (remote_parse_stop_reply) <T stop reply>: Use it. Don't
10733 special case the stop reasons that look like hex numbers
10734 upfront. Instead handle real register numbers after matching
10735 all the known stop reasons.
10736
10737 2015-02-21 Doug Evans <dje@google.com>
10738
10739 PR c++/17976, symtab/17821
10740 * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
10741 is_in_anonymous. All callers updated.
10742 (find_symbol_in_baseclass): Ditto.
10743 (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks
10744 for symbols in an anonymous namespace.
10745 * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
10746 DW_AT_name directly.
10747 (dwarf2_name): Convert missing namespace name to
10748 CP_ANONYMOUS_NAMESPACE_STR.
10749
10750 2015-02-20 Pedro Alves <palves@redhat.com>
10751
10752 * linux-nat.c (linux_handle_extended_wait): Call
10753 thread_db_notice_clone whenever a new clone LWP is detected.
10754 (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
10755 functions.
10756 * linux-nat.h (thread_db_attach_lwp): Delete declaration.
10757 (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
10758 (linux_unstop_all_lwps): Declare.
10759 * linux-thread-db.c (struct thread_get_info_inout): Delete.
10760 (thread_get_info_callback): Delete.
10761 (thread_from_lwp): Use td_thr_get_info and record_thread.
10762 (thread_db_attach_lwp): Delete.
10763 (thread_db_notice_clone): New function.
10764 (try_thread_db_load_1): If /proc is mounted and shows the
10765 process'es task list, walk over all LWPs and call thread_from_lwp
10766 instead of relying on td_ta_thr_iter.
10767 (attach_thread): Don't call check_thread_signals here. Split the
10768 tail part of the function (which adds the thread to the core GDB
10769 thread list) to ...
10770 (record_thread): ... this function. Call check_thread_signals
10771 here.
10772 (thread_db_wait): Don't call thread_db_find_new_threads_1. Always
10773 call thread_from_lwp.
10774 (thread_db_update_thread_list): Rename to ...
10775 (thread_db_update_thread_list_org): ... this.
10776 (thread_db_update_thread_list): New function.
10777 (thread_db_find_thread_from_tid): Delete.
10778 (thread_db_get_ada_task_ptid): Simplify.
10779 * nat/linux-procfs.c: Include <sys/stat.h>.
10780 (linux_proc_task_list_dir_exists): New function.
10781 * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
10782
10783 2015-02-20 Pedro Alves <palves@redhat.com>
10784
10785 * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
10786 main LWP. Handle the case of waitpid returning 0 if we're already
10787 attached to the LWP. Don't set the LWP's last_resume_kind to
10788 resume_stop if we already knew about the LWP.
10789 (linux_nat_filter_event): Add debug logs.
10790
10791 2015-02-20 Pedro Alves <palves@redhat.com>
10792
10793 * target.h (forward_target_decr_pc_after_break): Delete
10794 declaration.
10795
10796 2015-02-20 Pedro Alves <palves@redhat.com>
10797
10798 PR threads/18006
10799 * linux-thread-db.c (thread_get_info_callback): Return early if
10800 the thread's lwp id is -1.
10801
10802 2015-02-20 Joel Brobecker <brobecker@adacore.com>
10803
10804 GDB 7.9 released.
10805
10806 2015-02-19 Steve Ellcey <sellcey@imgtec.com>
10807
10808 * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
10809 (dtrace_get_probes) Change type of variable 'dof'.
10810
10811 2015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
10812
10813 PR breakpoints/16812
10814 * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
10815 * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
10816 * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
10817
10818 2015-02-19 David Taylor <dtaylor@emc.com>
10819
10820 * common/ax.def (setv): Fix consumed entry in setv DEFOP.
10821
10822 2015-02-18 Patrick Palka <patrick@parcs.ath.cx>
10823
10824 * tui/tui-io.c (tui_handle_resize_during_io): Remove this
10825 function.
10826 (tui_putc): Don't call tui_handle_resize_during_io.
10827 (tui_getc): Likewise.
10828 (tui_mld_getc): Likewise.
10829 * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
10830 (tui_sigwinch_token): New static variable.
10831 (tui_initialize_win): Adjust documentation. Set
10832 tui_sigwinch_token.
10833 (tui_async_resize_screen): New asynchronous callback.
10834 (tui_sigwinch_handler): Adjust documentation. Asynchronously
10835 invoke tui_async_resize_screen.
10836
10837 2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
10838
10839 * configure: Regenerated.
10840 * configure.ac: Use GDB_AC_TRANSFORM.
10841 * Makefile.in (aclocal_m4_deps): Added transform.m4.
10842 * acinclude.m4: sinclude transform.m4.
10843 * transform.m4: New file.
10844 (GDB_AC_TRANSFORM): New macro.
10845
10846 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10847
10848 * NEWS: Announce the support for DTrace SDT probes.
10849
10850 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10851
10852 * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
10853 (amd64_dtrace_parse_probe_argument): New function.
10854 (amd64_dtrace_probe_is_enabled): Likewise.
10855 (amd64_dtrace_enable_probe): Likewise.
10856 (amd64_dtrace_disable_probe): Likewise.
10857 (amd64_linux_init_abi): Register the
10858 `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
10859 `gdbarch_dtrace_disable_probe' and
10860 `gdbarch_dtrace_probe_is_enabled' hooks.
10861 (amd64_dtrace_disabled_probe_sequence_1): New constant.
10862 (amd64_dtrace_disabled_probe_sequence_2): Likewise.
10863 (amd64_dtrace_enable_probe_sequence): Likewise.
10864 (amd64_dtrace_disable_probe_sequence): Likewise.
10865
10866 2015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10867
10868 * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
10869 the -probe-dtrace new vpossible value for PROBE_MODIFIER.
10870 * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
10871 handle ELF files.
10872 * Makefile.in (SFILES): dtrace-probe.c added.
10873 * configure: Regenerate.
10874 * dtrace-probe.c: New file.
10875 (SHT_SUNW_dof): New constant.
10876 (dtrace_probe_type): New enum.
10877 (dtrace_probe_arg): New struct.
10878 (dtrace_probe_arg_s): New typedef.
10879 (struct dtrace_probe_enabler): New struct.
10880 (dtrace_probe_enabler_s): New typedef.
10881 (dtrace_probe): New struct.
10882 (dtrace_probe_is_linespec): New function.
10883 (dtrace_dof_sect_type): New enum.
10884 (dtrace_dof_dofh_ident): Likewise.
10885 (dtrace_dof_encoding): Likewise.
10886 (DTRACE_DOF_ENCODE_LSB): Likewise.
10887 (DTRACE_DOF_ENCODE_MSB): Likewise.
10888 (dtrace_dof_hdr): New struct.
10889 (dtrace_dof_sect): Likewise.
10890 (dtrace_dof_provider): Likewise.
10891 (dtrace_dof_probe): Likewise.
10892 (DOF_UINT): New macro.
10893 (DTRACE_DOF_PTR): Likewise.
10894 (DTRACE_DOF_SECT): Likewise.
10895 (dtrace_process_dof_probe): New function.
10896 (dtrace_process_dof): Likewise.
10897 (dtrace_build_arg_exprs): Likewise.
10898 (dtrace_get_arg): Likewise.
10899 (dtrace_get_probes): Likewise.
10900 (dtrace_get_probe_argument_count): Likewise.
10901 (dtrace_can_evaluate_probe_arguments): Likewise.
10902 (dtrace_evaluate_probe_argument): Likewise.
10903 (dtrace_compile_to_ax): Likewise.
10904 (dtrace_probe_destroy): Likewise.
10905 (dtrace_gen_info_probes_table_header): Likewise.
10906 (dtrace_gen_info_probes_table_values): Likewise.
10907 (dtrace_probe_is_enabled): Likewise.
10908 (dtrace_probe_ops): New variable.
10909 (info_probes_dtrace_command): New function.
10910 (_initialize_dtrace_probe): Likewise.
10911 (dtrace_type_name): Likewise.
10912
10913 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10914
10915 * gdbarch.sh (dtrace_parse_probe_argument): New.
10916 (dtrace_probe_is_enabled): Likewise.
10917 (dtrace_enable_probe): Likewise.
10918 (dtrace_disable_probe): Likewise.
10919 * gdbarch.c: Regenerate.
10920 * gdbarch.h: Regenerate.
10921
10922 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10923
10924 * stap-probe.c (stap_probe_ops): Add NULLs in the static
10925 stap_probe_ops for `enable_probe' and `disable_probe'.
10926 * probe.c (enable_probes_command): New function.
10927 (disable_probes_command): Likewise.
10928 (_initialize_probe): Define the cli commands `enable probe' and
10929 `disable probe'.
10930 (parse_probe_linespec): New function.
10931 (info_probes_for_ops): Use parse_probe_linespec.
10932 * probe.h (probe_ops): New hooks `enable_probe' and
10933 `disable_probe'.
10934
10935 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10936
10937 * probe.c (compute_probe_arg): Moved from stap-probe.c
10938 (compile_probe_arg): Likewise.
10939 (probe_funcs): Likewise.
10940 * stap-probe.c (compute_probe_arg): Moved to probe.c.
10941 (compile_probe_arg): Likewise.
10942 (probe_funcs): Likewise.
10943
10944 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
10945
10946 * probe.c (print_ui_out_not_applicables): New function.
10947 (exists_probe_with_pops): Likewise.
10948 (info_probes_for_ops): Do not include column headers for probe
10949 types for which no probe has been actually found on any object.
10950 Also invoke `print_ui_out_not_applicables' in order to match the
10951 column rows with the header when probes of several types are
10952 listed.
10953 Print the "Type" column.
10954 * probe.h (probe_ops): Added a new probe operation `type_name'.
10955 * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
10956 (stap_type_name): New function.
10957
10958 2015-02-17 Patrick Palka <patrick@parcs.ath.cx>
10959
10960 * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
10961 (key_is_command_char): Delete.
10962
10963 2015-02-17 Pedro Alves <palves@redhat.com>
10964
10965 * tui/tui.c (tui_enable): Resize windows before anything
10966 might show a window.
10967
10968 2015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com>
10969
10970 PR gdb/17984
10971 * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
10972 (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
10973 call.
10974 * aarch64-tdep.h (tdesc_aarch64): Declare.
10975
10976 2015-02-12 Mark Wielaard <mjw@redhat.com>
10977
10978 * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
10979
10980 2015-02-13 Doug Evans <dje@google.com>
10981
10982 * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
10983 anonymous_namespace to is_in_anonymous for consistency with the rest
10984 of the file.
10985 (cp_lookup_bare_symbol): Fix typo in comment.
10986 (cp_search_static_and_baseclasses): Ditto.
10987 (search_symbol_list): Use vertical space in comment better.
10988 (reset_directive_searched): Ditto. Fix typo.
10989 (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
10990
10991 2015-02-13 Yao Qi <yao.qi@arm.com>
10992
10993 * MAINTAINERS: Update my email address.
10994
10995 2015-02-12 Doug Evans <dje@google.com>
10996
10997 * symtab.c (completion_list_add_name): Fix memory leak.
10998
10999 2015-02-12 Doug Evans <dje@google.com>
11000
11001 * completer.c (complete_line): Remove incorrect comment.
11002
11003 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11004
11005 * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
11006 (py_print_frame): Use RETURN_MASK_ERROR.
11007
11008 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11009
11010 * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
11011 function comment. Wrap all function that can throw in cleanups.
11012 (gdbpy_apply_frame_filter): Wrap all function that can throw in
11013 cleanups.
11014
11015 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11016
11017 * python/py-framefilter.c (py_print_frame): Substitute goto error.
11018 Remove the error label.
11019
11020 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11021
11022 * python/py-framefilter.c (py_print_frame): Put conditional code paths
11023 with goto first, indent the former else codepath left. Put variable
11024 'elided' to a new inner block.
11025
11026 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11027
11028 * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
11029
11030 2015-02-11 Pedro Alves <palves@redhat.com>
11031
11032 * xcoffread.c (within_function): Delete.
11033
11034 2015-02-11 Tom Tromey <tromey@redhat.com>
11035 Pedro Alves <palves@redhat.com>
11036
11037 * breakpoint.c (base_breakpoint_ops): Delete.
11038 * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
11039 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
11040 * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
11041 * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
11042 * python/py-arch.c (arch_object_type): Make extern.
11043 * python/py-block.c (block_syms_iterator_object_type): Make extern.
11044 * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
11045 * python/py-cmd.c (cmdpy_object_type): Make extern.
11046 * python/py-continueevent.c (continue_event_object_type)
11047 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
11048 parameter. Update all callers.
11049 * python/py-evtregistry.c (eventregistry_object_type): Make extern.
11050 * python/py-exitedevent.c (exited_event_object_type): Make extern.
11051 * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
11052 * python/py-function.c (fnpy_object_type): Make extern.
11053 * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
11054 * python/py-infevents.c (call_pre_event_object_type)
11055 (inferior_call_post_event_object_type).
11056 (memory_changed_event_object_type): Make extern.
11057 * python/py-infthread.c (thread_object_type): Make extern.
11058 * python/py-lazy-string.c (lazy_string_object_type): Make extern.
11059 * python/py-linetable.c (linetable_entry_object_type)
11060 (linetable_object_type, ltpy_iterator_object_type): Make extern.
11061 * python/py-newobjfileevent.c (new_objfile_event_object_type)
11062 (clear_objfiles_event_object_type): Make extern.
11063 * python/py-objfile.c (objfile_object_type): Make extern.
11064 * python/py-param.c (parmpy_object_type): Make extern.
11065 * python/py-progspace.c (pspace_object_type): Make extern.
11066 * python/py-signalevent.c (signal_event_object_type): Make extern.
11067 * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
11068 * python/py-type.c (type_object_type, field_object_type)
11069 (type_iterator_object_type): Make extern.
11070 * python/python.c (python_extension_script_ops)
11071 (python_extension_ops): Make extern.
11072 * stap-probe.c (stap_probe_ops): Make extern.
11073
11074 2015-02-11 Pedro Alves <pedro@codesourcery.com>
11075
11076 * infrun.c (adjust_pc_after_break): Don't adjust the PC just
11077 because the event thread is not the current thread.
11078
11079 2015-02-11 Doug Evans <xdje42@gmail.com>
11080
11081 * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
11082 been initialized yet, return NULL.
11083
11084 2015-02-11 Doug Evans <dje@google.com>
11085
11086 * symfile.h (new_symfile_objfile): Delete.
11087 * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
11088 All callers updated.
11089
11090 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11091
11092 * tui/tui-io.c (tui_handle_resize_during_io): Call
11093 tui_update_gdb_sizes() after resizing the screen.
11094 * tui/tui.c (tui_enable): Resize the terminal before
11095 calling tui_update_gdb_sizes().
11096
11097 2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
11098
11099 * tui/tui-io.c (tui_getc): Move cursor to the end of the command
11100 line before printing a newline.
11101
11102 2015-02-11 Mark Wielaard <mjw@redhat.com>
11103
11104 * utils.c (producer_is_gcc): Return true or false.
11105
11106 2015-02-10 Mark Wielaard <mjw@redhat.com>
11107
11108 * utils.h (producer_is_gcc): Change return type to bool. Add major
11109 argument.
11110 * utils.c (producer_is_gcc): Likewise.
11111 (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
11112 * dwarf2read.c (check_producer): Likewise.
11113
11114 2015-02-10 Pedro Alves <palves@redhat.com>
11115
11116 * infrun.c (displaced_step_fixup): Switch to the event thread
11117 before calling gdbarch_displaced_step_fixup.
11118
11119 2015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
11120
11121 * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
11122
11123 2015-02-10 Simon Marchi <simon.marchi@ericsson.com>
11124
11125 * ada-varobj.c (ada_name_of_child): Constify parent.
11126 (ada_path_expr_of_child): Same.
11127 (ada_value_of_child): Same.
11128 (ada_type_of_child): Same.
11129 * c-varobj.c (c_is_path_expr_parent): Same.
11130 (c_describe_child): Same.
11131 (c_name_of_child): Same.
11132 (c_value_of_child): Same.
11133 (c_type_of_child): Same.
11134 (cplus_number_of_children): Same.
11135 (cplus_describe_child): Constify var.
11136 (cplus_name_of_child): Constify parent.
11137 (cplus_value_of_child): Same.
11138 (cplus_type_of_child): Same.
11139 * jv-varobj.c (java_name_of_child): Same.
11140 (java_value_of_child): Same.
11141 (java_type_of_child): Same.
11142 * varobj.c (value_of_child): Same.
11143 (varobj_default_is_path_expr_parent): Constify var, parent and return
11144 value.
11145 (varobj_get_path_expr): Constify var, modify path_expr through
11146 mutable_var.
11147 (install_new_value): Constify parent.
11148 (value_of_child): Constify parent.
11149 * varobj.h (struct varobj): Constify parent.
11150 (struct lang_varobj_ops): Constify name_of_child, value_of_child and
11151 type_of_child.
11152 (varobj_get_path_expr): Constify var.
11153 (varobj_get_path_expr_parent): Constify var and return value.
11154
11155 2015-02-10 Luis Machado <lgustavo@codesourcery.com>
11156
11157 * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
11158 (arm_prologue_this_id): Move PC and SP limit checks to
11159 arm_prologue_unwind_stop_reason.
11160 (arm_prologue_unwind) <stop_reason> : Set to
11161 arm_prologue_unwind_stop_reason.
11162
11163 2015-02-09 Mark Wielaard <mjw@redhat.com>
11164
11165 * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
11166 DW_LANG_Fortran08 as language_fortran.
11167
11168 2015-02-09 Sergio Durigan Junior <sergiodj@redhat.com>
11169
11170 PR remote/17946
11171 * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
11172 of pointer against char.
11173
11174 2015-02-09 Mark Wielaard <mjw@redhat.com>
11175
11176 * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
11177 (c_type_print_modifier): Likewise.
11178 * dwarf2read.c (read_tag_atomic_type): New function.
11179 (read_type_die_1): Handle DW_TAG_atomic_type.
11180 * gdbtypes.c (make_atomic_type): New function.
11181 (recursive_dump_type): Handle TYPE_ATOMIC.
11182 * gdbtypes.h (enum type_flag_values): Renumber.
11183 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
11184 (TYPE_ATOMIC): New macro.
11185 (make_atomic_type): Declare.
11186
11187 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11188
11189 * btrace.c (ftrace_find_call): Skip gaps.
11190 (ftrace_new_function): Initialize level.
11191 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
11192 (ftrace_new_switch): Update
11193 level computation.
11194 (ftrace_new_gap): New.
11195 (ftrace_update_function): Create new function after gap.
11196 (btrace_compute_ftrace_bts): Create gap on error.
11197 (btrace_stitch_bts): Update parameters. Clear trace if it
11198 becomes empty.
11199 (btrace_stitch_trace): Update parameters. Update callers.
11200 (btrace_clear): Reset the number of gaps.
11201 (btrace_insn_get): Return NULL if the iterator points to a gap.
11202 (btrace_insn_number): Return zero if the iterator points to a gap.
11203 (btrace_insn_end): Allow gaps at the end.
11204 (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
11205 (btrace_find_insn_by_number): Assert that the found iterator does
11206 not point to a gap.
11207 (btrace_call_next, btrace_call_prev): Assert that the last function
11208 is not a gap.
11209 * btrace.h (btrace_bts_error): New.
11210 (btrace_function): Update comment.
11211 (btrace_function) <insn, insn_offset, number>: Update comment.
11212 (btrace_function) <errcode>: New.
11213 (btrace_thread_info) <ngaps>: New.
11214 (btrace_thread_info) <replay>: Update comment.
11215 (btrace_insn_get): Update comment.
11216 * record-btrace.c (btrace_ui_out_decode_error): New.
11217 (record_btrace_info): Print number of gaps.
11218 (btrace_insn_history, btrace_call_history): Call
11219 btrace_ui_out_decode_error for gaps.
11220 (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
11221
11222 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11223
11224 * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
11225 * nat/linux-btrace.c: (btrace_this_cpu): New.
11226 (cpu_supports_bts): Call btrace_this_cpu.
11227 (intel_supports_bts): Add cpu parameter.
11228
11229 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11230
11231 * btrace.h (btrace_insn_class): New.
11232 (btrace_insn) <size, iclass>: New.
11233 * btrace.c (ftrace_find_call): Update parameters. Update users.
11234 Use instruction classification.
11235 (ftrace_new_return): Update parameters. Update users.
11236 (ftrace_update_function): Update parameters. Update users. Use
11237 instruction classification.
11238 (ftrace_update_insns): Update parameters. Update users.
11239 (ftrace_classify_insn): New.
11240 (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add
11241 TRY_CATCH around call to gdb_insn_length.
11242
11243 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11244
11245 * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
11246 Update parameters. Update users.
11247
11248 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11249
11250 * btrace.c (parse_xml_btrace_conf_bts): Add size.
11251 (btrace_conf_bts_attributes): New.
11252 (btrace_conf_children): Add attributes.
11253 * common/btrace-common.h (btrace_config_bts): New.
11254 (btrace_config)<bts>: New.
11255 (btrace_config): Update comment.
11256 * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
11257 Use config.
11258 * features/btrace-conf.dtd: Increment version. Add size
11259 attribute to bts element.
11260 * record-btrace.c (set_record_btrace_bts_cmdlist,
11261 show_record_btrace_bts_cmdlist): New.
11262 (record_btrace_adjust_size, record_btrace_print_bts_conf,
11263 record_btrace_print_conf, cmd_set_record_btrace_bts,
11264 cmd_show_record_btrace_bts): New.
11265 (record_btrace_info): Call record_btrace_print_conf.
11266 (_initialize_record_btrace): Add commands.
11267 * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
11268 (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
11269 (btrace_sync_conf): Synchronize bts size.
11270 (_initialize_remote): Add Qbtrace-conf:bts:size packet.
11271 * NEWS: Announce new commands and new packets.
11272
11273 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11274
11275 * Makefile.in (XMLFILES): Add btrace-conf.dtd.
11276 * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
11277 (x86_linux_btrace_conf): New.
11278 (x86_linux_create_target): Initialize to_btrace_conf.
11279 * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
11280 Check format. Split into this and ...
11281 (linux_enable_bts): ... this.
11282 (linux_btrace_conf): New.
11283 (perf_event_skip_record): Renamed into ...
11284 (perf_event_skip_bts_record): ... this. Updated users.
11285 (linux_disable_btrace): Split into this and ...
11286 (linux_disable_bts): ... this.
11287 (linux_read_btrace): Check format.
11288 * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
11289 (linux_btrace_conf): New.
11290 (btrace_target_info)<ptid>: Moved.
11291 (btrace_target_info)<conf>: New.
11292 (btrace_target_info): Split into this and ...
11293 (btrace_tinfo_bts): ... this. Updated users.
11294 * btrace.c (btrace_enable): Update parameters.
11295 (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
11296 (btrace_conf_children, btrace_conf_attributes)
11297 (btrace_conf_elements): New.
11298 * btrace.h (btrace_enable): Update parameters.
11299 (btrace_conf, parse_xml_btrace_conf): New.
11300 * common/btrace-common.h (btrace_config): New.
11301 * feature/btrace-conf.dtd: New.
11302 * record-btrace.c (record_btrace_conf): New.
11303 (record_btrace_cmdlist): New.
11304 (record_btrace_enable_warn, record_btrace_open): Pass
11305 &record_btrace_conf.
11306 (record_btrace_info): Print recording format.
11307 (cmd_record_btrace_bts_start): New.
11308 (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
11309 (_initialize_record_btrace): Add "record btrace bts" subcommand.
11310 Add "record bts" alias command.
11311 * remote.c (remote_state)<btrace_config>: New.
11312 (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
11313 (remote_protocol_features): Add qXfer:btrace-conf:read.
11314 (remote_open_1): Call remote_btrace_reset.
11315 (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
11316 (btrace_target_info)<conf>: New.
11317 (btrace_sync_conf, btrace_read_config): New.
11318 (remote_enable_btrace): Update parameters. Call btrace_sync_conf and
11319 btrace_read_conf.
11320 (remote_btrace_conf): New.
11321 (init_remote_ops): Initialize to_btrace_conf.
11322 (_initialize_remote): Add qXfer:btrace-conf packet.
11323 * target.c (target_enable_btrace): Update parameters.
11324 (target_btrace_conf): New.
11325 * target.h (target_enable_btrace): Update parameters.
11326 (target_btrace_conf): New.
11327 (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
11328 (target_ops)<to_enable_btrace>: Update parameters and comment.
11329 (target_ops)<to_btrace_conf>: New.
11330 * target-delegates: Regenerate.
11331 * target-debug.h (target_debug_print_const_struct_btrace_config_p)
11332 (target_debug_print_const_struct_btrace_target_info_p): New.
11333 * NEWS: Announce new command and new packet.
11334
11335 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11336
11337 * nat/linux-btrace.h (perf_event_buffer): New.
11338 (btrace_target_info) <buffer, size, data_head>: Replace with ...
11339 <bts>: ... this.
11340 * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
11341 (perf_event_buffer_size, perf_event_buffer_begin)
11342 (perf_event_buffer_end, linux_btrace_has_changed): Removed.
11343 Updated users.
11344 (perf_event_new_data): New.
11345
11346 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11347
11348 * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
11349 * record-btrace.c (record_btrace_open): Remove call to
11350 target_supports_btrace.
11351 * remote.c (remote_supports_btrace): Update parameters.
11352 * target.c (target_supports_btrace): Update parameters.
11353 * target.h (to_supports_btrace, target_supports_btrace): Update
11354 parameters.
11355 * target-delegates.c: Regenerate.
11356 * target-debug.h (target_debug_print_enum_btrace_format): New.
11357 * nat/linux-btrace.c
11358 (kernel_supports_btrace): Rename into ...
11359 (kernel_supports_bts): ... this. Update users. Update warning text.
11360 (intel_supports_btrace): Rename into ...
11361 (intel_supports_bts): ... this. Update users.
11362 (cpu_supports_btrace): Rename into ...
11363 (cpu_supports_bts): ... this. Update users.
11364 (linux_supports_btrace): Update parameters. Split into this and ...
11365 (linux_supports_bts): ... this.
11366 * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
11367
11368 2015-02-09 Markus Metzger <markus.t.metzger@intel.com>
11369
11370 * Makefile.in (SFILES): Add common/btrace-common.c.
11371 (COMMON_OBS): Add common/btrace-common.o.
11372 (btrace-common.o): Add build rules.
11373 * btrace.c (parse_xml_btrace): Update parameters.
11374 (parse_xml_btrace_block): Set format field.
11375 (btrace_add_pc, btrace_fetch): Use struct btrace_data.
11376 (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
11377 (btrace_compute_ftrace): Split into this and...
11378 (btrace_compute_ftrace_bts): ...this.
11379 (btrace_stitch_trace): Split into this and...
11380 (btrace_stitch_bts): ...this.
11381 * btrace.h (parse_xml_btrace): Update parameters.
11382 (make_cleanup_btrace_data): New.
11383 * common/btrace-common.c: New.
11384 * common/btrace-common.h: Include common-defs.h.
11385 (btrace_block_s): Update comment.
11386 (btrace_format): New.
11387 (btrace_format_string): New.
11388 (btrace_data_bts): New.
11389 (btrace_data): New.
11390 (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
11391 * remote.c (remote_read_btrace): Update parameters.
11392 * target.c (target_read_btrace): Update parameters.
11393 * target.h (target_read_btrace): Update parameters.
11394 (target_ops)<to_read_btrace>: Update parameters.
11395 * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
11396 * target-delegates.c: Regenerate.
11397 * target-debug (target_debug_print_struct_btrace_data_p): New.
11398 * nat/linux-btrace.c (linux_read_btrace): Split into this and...
11399 (linux_read_bts): ...this.
11400 * nat/linux-btrace.h (linux_read_btrace): Update parameters.
11401
11402 2015-02-06 Doug Evans <dje@google.com>
11403
11404 * remote-m32r-sdi.c: Include symfile.h.
11405
11406 2015-02-06 Doug Evans <dje@google.com>
11407
11408 * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
11409 * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
11410 to here.
11411
11412 2015-02-06 Pedro Alves <palves@redhat.com>
11413
11414 * linux-thread-db.c (find_new_threads_callback): Add debug output.
11415
11416 2015-02-06 Simon Marchi <simon.marchi@ericsson.com>
11417
11418 PR gdb/15678
11419 * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
11420 (enable_count_command): Check args for NULL value.
11421
11422 2015-02-05 Doug Evans <xdje42@gmail.com>
11423
11424 * guile/scm-frame.c: Fix spelling errors in a comment.
11425
11426 2015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com>
11427
11428 * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
11429 * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the
11430 return type.
11431
11432 2015-02-04 Pedro Alves <palves@redhat.com>
11433
11434 * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
11435 (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
11436 returns true.
11437 (resume_stopped_resumed_lwps): Don't check whether the thread is
11438 marked as executing.
11439 (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
11440
11441 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11442
11443 * regset.h (struct regset): Add flags field.
11444 (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
11445 * corelow.c (get_core_register_section): Add warning if the size
11446 exceeds the requested size and the regset does not have the
11447 REGSET_VARIABLE_SIZE flag set.
11448 * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
11449 flag.
11450 * armbsd-tdep.c (armbsd_gregset): Likewise.
11451 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
11452 * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
11453 * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
11454 * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
11455
11456 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11457
11458 * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
11459 For ".reg-xstate", explicitly specify the requested section size
11460 via X86_XSTATE_SIZE instead of just 0 on input and
11461 X86_XSTATE_MAX_SIZE on output.
11462 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
11463 Likewise.
11464
11465 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
11466
11467 PR corefiles/17808:
11468 * gdbarch.sh (iterate_over_regset_sections_cb): Document this
11469 function type, particularly its SIZE parameter.
11470 * gdbarch.h: Regenerate.
11471 * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
11472 actual against required size using ">=" instead of "==".
11473 (amd64_collect_fpregset): Likewise.
11474 * i386-tdep.c (i386_supply_gregset): Likewise.
11475 (i386_collect_gregset): Likewise.
11476 (i386_supply_fpregset): Likewise.
11477 (i386_collect_fpregset): Likewise.
11478 * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
11479 (mips_fill_gregset_wrapper): Likewise.
11480 (mips_supply_fpregset_wrapper): Likewise.
11481 (mips_fill_fpregset_wrapper): Likewise.
11482 (mips64_supply_gregset_wrapper): Likewise.
11483 (mips64_fill_gregset_wrapper): Likewise.
11484 (mips64_supply_fpregset_wrapper): Likewise.
11485 (mips64_fill_fpregset_wrapper): Likewise.
11486 * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
11487 (am33_supply_fpregset_method): Likewise.
11488 (am33_collect_gregset_method): Likewise.
11489 (am33_collect_fpregset_method): Likewise.
11490
11491 2015-02-04 Doug Evans <dje@google.com>
11492 Pedro Alves <palves@redhat.com>
11493 Eli Zaretskii <eliz@gnu.org>
11494
11495 PR tui/17810
11496 * tui/tui-command.c (tui_refresh_cmd_win): New function.
11497 * tui/tui-command.c (tui_refresh_cmd_win): Declare.
11498 * tui/tui-file.c: #include tui/tui-command.h.
11499 (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
11500 (tui_file_flush): Refresh command window if stream is gdb_stdout.
11501 * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
11502
11503 2015-02-04 Pedro Alves <palves@redhat.com>
11504
11505 Fix build breakage.
11506 * event-loop.c (gdb_do_one_event): Add default switch case.
11507
11508 2015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11509
11510 Filter out inferior gcc option -fpreprocessed.
11511 * compile/compile.c (filter_args): New function.
11512 (get_args): Use it.
11513
11514 2015-02-03 Pedro Alves <palves@redhat.com>
11515
11516 * event-loop.c: Don't declare nor define a queue type for
11517 gdb_event_p.
11518 (event_queue): Delete.
11519 (create_event, create_file_event, gdb_event_xfree)
11520 (initialize_event_loop, process_event): Delete.
11521 (gdb_do_one_event): Return as soon as one event is handled.
11522 (handle_file_event): Change prototype. Used the passed in
11523 file_handler pointer and ready_mask instead of looping over all
11524 file handlers.
11525 (gdb_wait_for_event): Update the poll/select timeouts before
11526 blocking. Run event handlers directly instead of queueing events.
11527 Return as soon as one event is handled.
11528 (struct async_event_handler_data): Delete.
11529 (invoke_async_event_handler): Delete.
11530 (check_async_event_handlers): Change return type to int. Run
11531 event handlers directly instead of queueing events. Return as
11532 soon as one event is handled.
11533 (handle_timer_event): Delete.
11534 (update_wait_timeout): New function, factored out from
11535 poll_timers.
11536 (poll_timers): Reimplement.
11537 * event-loop.h (initialize_event_loop): Delete declaration.
11538 * top.c (gdb_init): Don't call initialize_event_loop.
11539
11540 2015-02-03 Pedro Alves <palves@redhat.com>
11541
11542 * event-loop.c (clear_async_event_handler): New function.
11543 * event-loop.h (clear_async_event_handler): New declaration.
11544 * record-btrace.c (record_btrace_async): New function.
11545 (init_record_btrace_ops): Install record_btrace_async.
11546 * record-full.c (record_full_async): New function.
11547 (record_full_resume): Don't mark the async event source here.
11548 (init_record_full_ops): Install record_full_async.
11549 (record_full_core_resume): Don't mark the async event source here.
11550 (init_record_full_core_ops): Install record_full_async.
11551 * remote.c (remote_async): Mark and clear the async stop reply
11552 queue event-loop token as appropriate.
11553
11554 2015-02-03 Pedro Alves <palves@redhat.com>
11555
11556 * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
11557 target_is_async_p instead of target_can_async.
11558 (linux_nat_wait): Use target_is_async_p instead of
11559 target_can_async. Don't enable async here.
11560 * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
11561 target_is_async_p instead of target_can_async.
11562
11563 2015-02-02 Simon Marchi <simon.marchi@ericsson.com>
11564
11565 * varobj.h (lang_varobj_ops): Mention which return values need
11566 to be freed.
11567
11568 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11569
11570 * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
11571
11572 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11573
11574 PR gdb/17856:
11575 * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
11576 results found in the cache.
11577
11578 2015-02-02 Joel Brobecker <brobecker@adacore.com>
11579
11580 PR gdb/17854:
11581 * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
11582 when allocating a new one.
11583
11584 2015-02-01 Tom Tromey <tom@tromey.com>
11585
11586 * MAINTAINERS: Remove myself.
11587
11588 2015-01-31 Doug Evans <xdje42@gmail.com>
11589
11590 * dwarf2read.c (process_structure_scope): Update setting of
11591 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
11592 * gdbtypes.c (internal_type_vptr_fieldno): New function.
11593 (set_type_vptr_fieldno): New function.
11594 (internal_type_vptr_basetype): New function.
11595 (set_type_vptr_basetype): New function.
11596 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
11597 TYPE_VPTR_BASETYPE.
11598 (allocate_cplus_struct_type): Initialize vptr_fieldno.
11599 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
11600 (print_cplus_stuff): ... moved here.
11601 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
11602 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
11603 moved to ...
11604 (struct cplus_struct_type): ... here. All uses updated.
11605 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
11606 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
11607 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
11608 * stabsread.c (read_tilde_fields): Update setting of
11609 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
11610
11611 2015-01-31 Doug Evans <xdje42@gmail.com>
11612
11613 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
11614 to self_p.
11615 (cp_print_class_member): Rename local domain to self_type.
11616 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
11617 domain_type to self_type.
11618 (set_die_type) <need_gnat_info>: Handle
11619 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
11620 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
11621 TYPE_SPECIFIC_SELF_TYPE.
11622 * gdbtypes.c (internal_type_self_type): New function.
11623 (set_type_self_type): New function.
11624 (smash_to_memberptr_type): Rename parameter domain to self_type.
11625 Update setting of TYPE_SELF_TYPE.
11626 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
11627 (smash_to_method_type): Rename parameter domain to self_type.
11628 Update setting of TYPE_SELF_TYPE.
11629 (check_stub_method): Call smash_to_method_type.
11630 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
11631 (copy_type_recursive): Ditto.
11632 * gdbtypes.h (enum type_specific_kind): New value
11633 TYPE_SPECIFIC_SELF_TYPE.
11634 (struct main_type) <type_specific>: New member self_type.
11635 (struct cplus_struct_type) <fn_field.type>: Update comment.
11636 (TYPE_SELF_TYPE): Rewrite.
11637 (internal_type_self_type, set_type_self_type): Declare.
11638 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
11639 self_type.
11640 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
11641 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
11642 TYPE_TARGET_TYPE.
11643 * stabsread.c (read_member_functions): Mark methods with
11644 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
11645 TYPE_SELF_TYPE.
11646
11647 2015-01-31 Doug Evans <xdje42@gmail.com>
11648
11649 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
11650 All uses updated.
11651
11652 2015-01-31 Doug Evans <xdje42@gmail.com>
11653
11654 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
11655 or unions. Return zero if union.
11656 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
11657 (gnuv3_rtti_type): Pass already-check_typedef'd value to
11658 gnuv3_get_vtable.
11659 (compute_vtable_size): Assert only passed structs.
11660 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
11661
11662 2015-01-31 Doug Evans <xdje42@gmail.com>
11663
11664 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
11665 kinds.
11666
11667 2015-01-31 Gary Benson <gbenson@redhat.com>
11668 Doug Evans <dje@google.com>
11669
11670 PR cli/9007
11671 PR cli/11920
11672 PR cli/15548
11673 * cli/cli-cmds.c (complete_command): Notify user if max-completions
11674 reached.
11675 * common/common-exceptions.h (enum errors)
11676 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
11677 * completer.h (get_max_completions_reached_message): New declaration.
11678 (max_completions): Likewise.
11679 (completion_tracker_t): New typedef.
11680 (new_completion_tracker): New declaration.
11681 (make_cleanup_free_completion_tracker): Likewise.
11682 (maybe_add_completion_enum): New enum.
11683 (maybe_add_completion): New declaration.
11684 (throw_max_completions_reached_error): Likewise.
11685 * completer.c (max_completions): New global variable.
11686 (new_completion_tracker): New function.
11687 (free_completion_tracker): Likewise.
11688 (make_cleanup_free_completion_tracker): Likewise.
11689 (maybe_add_completions): Likewise.
11690 (throw_max_completions_reached_error): Likewise.
11691 (complete_line): Remove duplicates and limit result to max_completions
11692 entries.
11693 (get_max_completions_reached_message): New function.
11694 (gdb_display_match_list): Handle max_completions.
11695 (_initialize_completer): New declaration and function.
11696 * symtab.c: Include completer.h.
11697 (completion_tracker): New static variable.
11698 (completion_list_add_name): Call maybe_add_completion.
11699 (default_make_symbol_completion_list_break_on_1): Renamed from
11700 default_make_symbol_completion_list_break_on. Maintain
11701 completion_tracker across calls to completion_list_add_name.
11702 (default_make_symbol_completion_list_break_on): New function.
11703 * top.c (init_main): Set rl_completion_display_matches_hook.
11704 * tui/tui-io.c: Include completer.h.
11705 (tui_old_rl_display_matches_hook): New static global.
11706 (tui_rl_display_match_list): Notify user if max-completions reached.
11707 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
11708 * NEWS (New Options): Mention set/show max-completions.
11709
11710 2015-01-31 Gary Benson <gbenson@redhat.com>
11711
11712 * symtab.c (struct add_name_data) <code>: New field.
11713 Updated comments.
11714 (add_symtab_completions): New function.
11715 (symtab_expansion_callback): Likewise.
11716 (default_make_symbol_completion_list_break_on): Set datum.code.
11717 Move minimal symbol scan before calling expand_symtabs_matching.
11718 Scan known primary symtabs for externs and statics before calling
11719 expand_symtabs_matching. Pass symtab_expansion_callback as
11720 expansion_notify argument to expand_symtabs_matching. Do not scan
11721 primary symtabs for externs and statics after calling
11722 expand_symtabs_matching.
11723
11724 2015-01-31 Gary Benson <gbenson@redhat.com>
11725
11726 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
11727 (struct quick_symbol_functions) <expand_symtabs_matching>:
11728 New argument expansion_notify. All uses updated.
11729 (expand_symtabs_matching): New argument expansion_notify.
11730 All uses updated.
11731 * symfile-debug.c (debug_qf_expand_symtabs_matching):
11732 Also print expansion notify.
11733 * symtab.c (expand_symtabs_matching_via_partial): Call
11734 expansion_notify whenever a partial symbol table is expanded.
11735 * dwarf2read.c (dw2_expand_symtabs_matching): Call
11736 expansion_notify whenever a symbol table is instantiated.
11737
11738 2015-01-31 Doug Evans <xdje42@gmail.com>
11739
11740 * cli-out.c: #include completer.h, readline/readline.h.
11741 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
11742 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
11743 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
11744 * cli-out.h (cli_display_match_list): Declare.
11745 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
11746 (ELLIPSIS_LEN): Ditto.
11747 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
11748 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
11749 (gdb_fnprint, gdb_print_filename): Ditto.
11750 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
11751 (gdb_display_match_list): Ditto.
11752 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
11753 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
11754 (mld_beep_ftype, mld_read_key_ftype): Ditto.
11755 (match_list_displayer): New struct.
11756 (gdb_display_match_list): Declare.
11757 * top.c (init_main): Set rl_completion_display_matches_hook.
11758 * tui/tui-io.c: #include completer.h.
11759 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
11760 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
11761 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
11762 (tui_mld_getc, tui_mld_read_key): Ditto.
11763 (tui_rl_display_match_list): Rewrite.
11764 (tui_handle_resize_during_io): New arg for_completion. All callers
11765 updated.
11766
11767 2015-01-31 Doug Evans <xdje42@gmail.com>
11768
11769 Add symbol lookup cache.
11770 * NEWS: Document new options and commands.
11771 * symtab.c (symbol_cache_key): New static global.
11772 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
11773 (SYMBOL_LOOKUP_FAILED): New macro.
11774 (symbol_cache_slot_state): New enum.
11775 (block_symbol_cache): New struct.
11776 (symbol_cache): New struct.
11777 (new_symbol_cache_size, symbol_cache_size): New static globals.
11778 (hash_symbol_entry, eq_symbol_entry): New functions.
11779 (symbol_cache_byte_size, resize_symbol_cache): New functions.
11780 (make_symbol_cache, free_symbol_cache): New functions.
11781 (get_symbol_cache, symbol_cache_cleanup): New function.
11782 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
11783 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
11784 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
11785 (symbol_cache_flush, symbol_cache_dump): New functions.
11786 (maintenance_print_symbol_cache): New function.
11787 (maintenance_flush_symbol_cache): New function.
11788 (symbol_cache_stats): New function.
11789 (maintenance_print_symbol_cache_statistics): New function.
11790 (symtab_new_objfile_observer): New function.
11791 (symtab_free_objfile_observer): New function.
11792 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
11793 (_initialize_symtab): Init symbol_cache_key. New parameter
11794 maint symbol-cache-size. New maint commands print symbol-cache,
11795 print symbol-cache-statistics, flush-symbol-cache.
11796 Install new_objfile, free_objfile observers.
11797
11798 2015-01-31 Joel Brobecker <brobecker@adacore.com>
11799
11800 PR symtab/17855
11801 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
11802 to end.
11803
11804 2015-01-31 Doug Evans <xdje42@gmail.com>
11805
11806 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
11807 * auto-load.c: #include ctype.h.
11808 (struct auto_load_pspace_info): Replace member loaded_scripts with
11809 new members loaded_script_files, loaded_script_texts.
11810 (auto_load_pspace_data_cleanup): Update.
11811 (init_loaded_scripts_info): Update.
11812 (get_auto_load_pspace_data_for_loading): Update.
11813 (maybe_add_script_file): Renamed from maybe_add_script. All callers
11814 updated.
11815 (maybe_add_script_text): New function.
11816 (clear_section_scripts): Update.
11817 (source_script_file, execute_script_contents): New functions.
11818 (source_section_scripts): Add support for
11819 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
11820 (print_scripts): New function.
11821 (auto_load_info_scripts): Also print inlined scripts.
11822 (maybe_print_unsupported_script_warning): Renamed from
11823 unsupported_script_warning_print. All callers updated.
11824 (maybe_print_script_not_found_warning): Renamed from
11825 script_not_found_warning_print. All callers updated.
11826 * extension-priv.h (struct extension_language_script_ops): New member
11827 objfile_script_executor.
11828 * extension.c (ext_lang_objfile_script_executor): New function.
11829 * extension.h (objfile_script_executor_func): New typedef.
11830 (ext_lang_objfile_script_executor): Declare.
11831 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
11832 * guile/guile.c (guile_extension_script_ops): Update.
11833 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
11834 * python/python.c (python_extension_script_ops): Update.
11835 (gdbpy_execute_objfile_script): New function.
11836
11837 2015-01-31 Eli Zaretskii <eliz@gnu.org>
11838
11839 * tui/tui-io.c (tui_expand_tabs): New function.
11840 (tui_puts, tui_redisplay_readline): Expand TABs into the
11841 appropriate number of spaces.
11842 * tui/tui-regs.c: Include tui-io.h.
11843 (tui_register_format): Call tui_expand_tabs to expand TABs into
11844 the appropriate number of spaces.
11845 * tui/tui-io.h: Add prototype for tui_expand_tabs.
11846
11847 2015-01-30 Doug Evans <dje@google.com>
11848
11849 * NEWS: "info source" command now display producer string if present.
11850 * source.c (source_info): Print producer string if present.
11851
11852 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11853
11854 * varobj.c (varobj_delete): Fix comment.
11855
11856 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11857
11858 * varobj.c (create_child): Modify comment.
11859
11860 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11861
11862 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
11863 parameter.
11864 (ada_name_of_variable): Same.
11865 (ada_path_expr_of_child): Same.
11866 (ada_value_of_variable): Same.
11867 (ada_value_is_changeable_p): Same.
11868 (ada_value_has_mutated): Same.
11869 * c-varobj.c (varobj_is_anonymous_child): Same.
11870 (c_is_path_expr_parent): Same.
11871 (c_number_of_children): Same.
11872 (c_name_of_variable): Same.
11873 (c_path_expr_of_child): Same.
11874 (get_type): Same.
11875 (c_value_of_variable): Same.
11876 (cplus_number_of_children): Same.
11877 (cplus_name_of_variable): Same.
11878 (cplus_path_expr_of_child): Same.
11879 (cplus_value_of_variable): Same.
11880 * jv-varobj.c (java_number_of_children): Same.
11881 (java_name_of_variable): Same.
11882 (java_path_expr_of_child): Same.
11883 (java_value_of_variable): Same.
11884 * varobj.c (number_of_children): Same.
11885 (name_of_variable): Same.
11886 (is_root_p): Same.
11887 (varobj_ensure_python_env): Same.
11888 (varobj_get_objname): Same.
11889 (varobj_get_expression): Same.
11890 (varobj_get_display_format): Same.
11891 (varobj_get_display_hint): Same.
11892 (varobj_has_more): Same.
11893 (varobj_get_thread_id): Same.
11894 (varobj_get_frozen): Same.
11895 (dynamic_varobj_has_child_method): Same.
11896 (varobj_get_gdb_type): Same.
11897 (is_path_expr_parent): Same.
11898 (varobj_default_is_path_expr_parent): Same.
11899 (varobj_get_language): Same.
11900 (varobj_get_attributes): Same.
11901 (varobj_is_dynamic_p): Same.
11902 (varobj_get_child_range): Same.
11903 (varobj_value_has_mutated): Same.
11904 (varobj_get_value_type): Same.
11905 (number_of_children): Same.
11906 (name_of_variable): Same.
11907 (check_scope): Same.
11908 (varobj_editable_p): Same.
11909 (varobj_value_is_changeable_p): Same.
11910 (varobj_floating_p): Same.
11911 (varobj_default_value_is_changeable_p): Same.
11912
11913 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11914
11915 * varobj.c (varobj_get_path_expr): Set var->path_expr.
11916 * c-varobj.c (c_path_expr_of_child): Set local var instead of
11917 child->path_expr.
11918 (cplus_path_expr_of_child): Same.
11919
11920 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11921
11922 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
11923 result.
11924 (mi_cmd_var_info_expression): Same.
11925 * varobj.c (varobj_get_expression): Mention in the comment that
11926 the result must by freed by the caller.
11927
11928 2015-01-30 Simon Marchi <simon.marchi@ericsson.com>
11929
11930 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
11931 varobj_get_type.
11932 (varobj_update_one): Same.
11933 * varobj.c (update_type_if_necessary): Free curr_type_str and
11934 new_type_str.
11935 (varobj_get_type): Specify in comment that the result needs to be
11936 freed by the caller.
11937
11938 2015-01-29 Doug Evans <dje@google.com>
11939
11940 PR symtab/17890
11941 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
11942
11943 2015-01-25 Mark Wielaard <mjw@redhat.com>
11944
11945 * dwarf2read.c (checkproducer): Call producer_is_gcc.
11946 * utils.c (producer_is_gcc_ge_4): Likewise.
11947 (producer_is_gcc): New function.
11948 * utils.h (producer_is_gcc): New declaration.
11949
11950 2015-01-29 Joel Brobecker <brobecker@adacore.com>
11951
11952 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
11953 kind.
11954 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
11955 parameter by "addr_stack" parameter.
11956 (resolve_dynamic_range): Replace "addr" parameter by
11957 "stack_addr" parameter. Update function documentation.
11958 Update code accordingly.
11959 (resolve_dynamic_array, resolve_dynamic_union)
11960 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
11961 (resolve_dynamic_type): Update code, following the changes made
11962 to resolve_dynamic_type_internal's interface.
11963 * dwarf2loc.h (struct property_addr_info): New.
11964 (dwarf2_evaluate_property): Replace "address" parameter
11965 by "addr_stack" parameter. Adjust function documentation.
11966 (struct dwarf2_offset_baton): New.
11967 (struct dwarf2_property_baton): Update documentation of
11968 field "referenced_type" to be more general. New field
11969 "offset_info" in union data field.
11970 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
11971 parameter by "addr_stack" parameter. Adjust code accordingly.
11972 Add support for PROP_ADDR_OFFSET properties.
11973 * dwarf2read.c (attr_to_dynamic_prop): Add support for
11974 DW_AT_data_member_location attributes as well. Use case
11975 statements instead of if/else condition.
11976
11977 2015-01-29 Joel Brobecker <brobecker@adacore.com>
11978
11979 * ada-varobj.c (ada_varobj_get_array_number_of_children):
11980 Return zero if PARENT_VALUE is NULL and parent_type's
11981 range type is dynamic.
11982
11983 2015-01-29 Joel Brobecker <brobecker@adacore.com>
11984
11985 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
11986 nonzero if the type's subtype is dynamic.
11987 (resolve_dynamic_range): Also resolve the range's subtype.
11988
11989 2015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
11990
11991 Pushed by Joel Brobecker <brobecker@adacore.com>.
11992 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
11993
11994 2015-01-27 Doug Evans <dje@google.com>
11995
11996 * NEWS: Mention gdb.Objfile.username.
11997 * python/py-objfile.c (objfpy_get_username): New function.
11998 (objfile_getset): Add "username".
11999
12000 2015-01-24 Mark Wielaard <mjw@redhat.com>
12001
12002 * stack.c (return_command): Markup warning message with _.
12003
12004 2015-01-24 Doug Evans <xdje42@gmail.com>
12005
12006 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
12007
12008 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
12009
12010 Fix 100x slowdown regression on DWZ files.
12011 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
12012 (struct line_header): Add offset and offset_in_dwz.
12013 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
12014 (free_line_header_voidp): New declaration.
12015 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
12016 functions.
12017 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
12018 (handle_DW_AT_stmt_list): Use line_header_hash.
12019 (free_line_header_voidp): New function.
12020 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
12021 (dwarf_decode_lines): New parameter decode_mapping, use it.
12022 (dwarf2_free_objfile): Free line_header_hash.
12023
12024 2015-01-23 Simon Marchi <simon.marchi@ericsson.com>
12025
12026 PR gdb/17416
12027 * valops.c (value_rtti_indirect_type): Catch exception thrown by
12028 value_ind.
12029
12030 2015-01-15 Mark Wielaard <mjw@redhat.com>
12031
12032 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
12033 DW_AT_noreturn.
12034 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
12035 calling_convention an 8 bit bit field.
12036 (TYPE_NO_RETURN): New macro.
12037 * infcmd.c (finish_command): Query if function does not return
12038 normally.
12039 * stack.c (return_command): Likewise.
12040
12041 2015-01-23 Pedro Alves <palves@redhat.com>
12042
12043 * linux-nat.c (linux_is_async_p): New macro.
12044 (linux_nat_is_async_p):
12045 (linux_nat_terminal_inferior): Check whether the target can async
12046 instead of whether it is already async.
12047 (linux_nat_terminal_ours): Don't check whether the target is
12048 async.
12049 (linux_async_pipe): Use linux_is_async_p.
12050
12051 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12052
12053 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
12054 '-ascending'.
12055 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
12056 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
12057 Sort tp_array using tp_array_compar.
12058 (_initialize_thread): Extend thread_apply_all_command help.
12059
12060 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12061
12062 * corelow.c (core_open): Call also thread_command.
12063 * gdbthread.h (thread_command): New prototype moved from ...
12064 * thread.c (thread_command): ... here.
12065 (thread_command): Make it global.
12066
12067 2015-01-22 Pedro Alves <palves@redhat.com>
12068
12069 * configure.ac [*mingw32*]: Check $curses_found instead of
12070 $prefer_curses.
12071 * configure: Regenerate.
12072 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
12073 HAVE_NCURSES_NCURSES_H checks.
12074
12075 2015-01-22 Eli Zaretskii <eliz@gnu.org>
12076
12077 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
12078 fails with the 1st arg NULL, try again with "unknown". Don't test
12079 the "cup" capability: it isn't supported by the Windows port of
12080 ncurses, but the Windows console driver is still capable of
12081 supporting TUI.
12082
12083 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
12084
12085 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
12086
12087 2015-01-22 Eli Zaretskii <eliz@gnu.org>
12088
12089 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
12090 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
12091 reason that "make TAGS" is broken.
12092
12093 2015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
12094
12095 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
12096 and check additional store instructions.
12097
12098 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12099
12100 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
12101
12102 2015-01-21 Wei-cheng Wang <cole945@gmail.com>
12103
12104 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
12105 ppc_canonicalize_syscall, ppc_linux_syscall_record,
12106 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
12107 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12108 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
12109 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
12110 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
12111 ppc_process_record_op19, ppc_process_record_op31,
12112 ppc_process_record_op59, ppc_process_record_op60,
12113 ppc_process_record_op63): Likewise.
12114
12115 2015-01-20 Joel Brobecker <brobecker@adacore.com>
12116
12117 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
12118 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
12119 strerror.
12120
12121 2015-01-20 Wei-cheng Wang <cole945@gmail.com>
12122
12123 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
12124 ppc_process_record_op31, ppc_process_record_op59,
12125 ppc_process_record_op60, ppc_process_record_op63,
12126 ppc_process_record): Fix -Wformat warning.
12127 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
12128 Remove unused variables.
12129
12130 2015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
12131
12132 * MAINTAINERS (Write After Approval): Add "Chen Gang".
12133
12134 2015-01-19 Eli Zaretskii <eliz@gnu.org>
12135
12136 * configure.ac [*mingw32*]: Only add windows-termcap.o to
12137 CONFIG_OBS if not building with a curses library.
12138 * configure: Regenerate.
12139
12140 * windows-termcap.c: Include defs.h. Make the whole body empty if
12141 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
12142 HAVE_NCURSES_NCURSES_H is defined.
12143
12144 2015-01-19 Joel Brobecker <brobecker@adacore.com>
12145
12146 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
12147 from end of line to start of next line.
12148
12149 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12150
12151 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
12152 Scan PLT stub backward for reverse debugging.
12153 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12154
12155 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12156 Ulrich Weigand <uweigand@de.ibm.com>
12157
12158 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
12159 gdb_target_obs.
12160 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
12161 record.
12162 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
12163 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
12164 (ppc_linux_init_abi): Set process_record, process_record_signal.
12165 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
12166 ppc_linux_record_tdep to gdbarch_tdep.
12167 (ppc_process_record): New declaration.
12168 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
12169 ppc_process_record_op19, ppc_process_record_op31,
12170 ppc_process_record_op59, ppc_process_record_op60,
12171 ppc_process_record_op63, ppc_process_record): New functions.
12172
12173 2015-01-17 Wei-cheng Wang <cole945@gmail.com>
12174
12175 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
12176 rs6000_in_function_epilogue_frame_p and add an argument
12177 for frame_info.
12178 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
12179 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
12180 New functions.
12181 (rs6000_epilogue_frame_unwind): New.
12182 (rs6000_gdbarch_init): Append epilogue unwinder.
12183
12184 2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
12185
12186 * nat/linux-personality.c: Replace "#ifndef
12187 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
12188 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
12189 systems.
12190
12191 2015-01-16 Eli Zaretskii <eliz@gnu.org>
12192
12193 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
12194 functions.
12195 (_initialize_tui_win) <border-kind, border-mode>:
12196 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
12197 (tui_set_tab_width_command): Fix the commentary.
12198
12199 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
12200
12201 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
12202 Doc fix.
12203 (tui_set_tab_width_command): Delete and recreate the source and
12204 the disassembly windows, to show the effect of the changed tab
12205 size immediately.
12206
12207 * tui/tui-data.h (LINE_PREFIX): Make shorter
12208 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
12209 "Thread NNNNN.XXXX" thread ID notation on Windows.
12210
12211 2015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
12212
12213 Fix gcc-5 compilation.
12214 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
12215
12216 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12217
12218 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
12219 (linux-personality.o): New rule.
12220 * common/common-defs.h: Include <stdint.h>.
12221 * config/aarch64/linux.mh (NATDEPFILES): Include
12222 linux-personality.o.
12223 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
12224 * config/arm/linux.mh (NATDEPFILES): Likewise.
12225 * config/i386/linux64.mh (NATDEPFILES): Likewise.
12226 * config/i386/linux.mh (NATDEPFILES): Likewise.
12227 * config/ia64/linux.mh (NATDEPFILES): Likewise.
12228 * config/m32r/linux.mh (NATDEPFILES): Likewise.
12229 * config/m68k/linux.mh (NATDEPFILES): Likewise.
12230 * config/mips/linux.mh (NATDEPFILES): Likewise.
12231 * config/pa/linux.mh (NATDEPFILES): Likewise.
12232 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
12233 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
12234 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
12235 * config/s390/linux.mh (NATDEPFILES): Likewise.
12236 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
12237 * config/sparc/linux.mh (NATDEPFILES): Likewise.
12238 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
12239 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
12240 * defs.h: Remove #include <stdint.h> (moved to
12241 common/common-defs.h).
12242 * linux-nat.c: Include nat/linux-personality.h. Remove #include
12243 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
12244 nat/linux-personality.c).
12245 (linux_nat_create_inferior): Remove code to disable address space
12246 randomization (moved to nat/linux-personality.c). Create cleanup
12247 to disable address space randomization.
12248 * nat/linux-personality.c: New file.
12249 * nat/linux-personality.h: Likewise.
12250
12251 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
12252
12253 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
12254 common/posix-strerror.c.
12255 (posix-strerror.o): New rule.
12256 (mingw-strerror.o): Likewise.
12257 * common/common-utils.h (safe_strerror): Move prototype to here,
12258 from utils.h.
12259 * common/common.host: New file.
12260 * common/mingw-strerror.c: Likewise.
12261 * common/posix-strerror.c: Likewise.
12262 * configure: Regenerated.
12263 * configure.ac: Source common/common.host. Add variable
12264 common_host_obs to gdb_host_obs.
12265 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
12266 gdb/common/posix-strerror.c when warning about the use of
12267 strerror.
12268 * mingw-hdep.c (safe_strerror): Remove definition; move it to
12269 common/mingw-strerror.c.
12270 * posix-hdep.c (safe_strerror): Remove definition; move it to
12271 common/posix-hdep.c.
12272 * utils.h (safe_strerror): Remove prototype; move to
12273 common/common-utils.h.
12274
12275 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12276
12277 GDB 7.8.2 released.
12278
12279 2015-01-15 Joel Brobecker <brobecker@adacore.com>
12280
12281 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
12282 ___XA type if the array has already been fixed.
12283
12284 2015-01-14 Yao Qi <yao@codesourcery.com>
12285
12286 * Makefile.in (ppc-linux.o): New rule.
12287 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
12288 * configure.ac: AC_CHECK_FUNCS(getauxval).
12289 * config.in: Re-generated.
12290 * configure: Re-generated.
12291 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
12292 Declare.
12293 * nat/ppc-linux.c: New file.
12294 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
12295 Call ppc64_64bit_inferior_p.
12296
12297 2015-01-14 Yao Qi <yao@codesourcery.com>
12298
12299 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
12300 nat/ppc-linux.h.
12301 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
12302 (PPC_FEATURE_HAS_DFP): Likewise.
12303 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
12304 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
12305 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
12306 Include "nat/ppc-linux.h".
12307 * nat/ppc-linux.h: New file.
12308 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
12309
12310 2015-01-14 Pedro Alves <palves@redhat.com>
12311
12312 PR gdb/17525
12313 * breakpoint.c: Include "interps.h".
12314 (bpstat_do_actions_1): Also check whether the interpreter is
12315 async.
12316
12317 2015-01-14 Pedro Alves <palves@redhat.com>
12318
12319 PR cli/17828
12320 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
12321 reinstall if the interpreter is sync.
12322
12323 2015-01-13 Doug Evans <dje@google.com>
12324
12325 * objfiles.c (objfile_filename): New function.
12326 * objfiles.h (objfile_filename): Declare it.
12327 (objfile_name): Add function comment.
12328 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
12329 bfd file name (which may be realpath'd), and the original name.
12330
12331 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12332
12333 * NEWS: Create a new section for the next release branch.
12334 Rename the section of the current branch, now that it has
12335 been cut.
12336
12337 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12338
12339 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
12340 * version.in: Bump version to 7.9.50.DATE-cvs.
12341
12342 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12343
12344 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
12345 Remove trailing new-line in argument of call to warning.
12346
12347 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12348
12349 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
12350 new-line in argument of call to "warning".
12351
12352 2015-01-13 Joel Brobecker <brobecker@adacore.com>
12353
12354 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
12355 in static block, then try searching for primitive types.
12356
12357 2015-01-12 Patrick Palka <patrick@parcs.ath.cx>
12358
12359 * top.h (gdb_add_history): Declare.
12360 * top.c (command_count): New variable.
12361 (gdb_add_history): New function.
12362 (gdb_safe_append_history): New static function.
12363 (quit_force): Call it.
12364 (command_line_input): Use gdb_add_history instead of
12365 add_history.
12366 * event-top.c (command_line_handler): Likewise.
12367
12368 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
12369
12370 PR gdb/17046
12371 * darwin-nat.c: Replace <machine/setjmp.h> #include by
12372 <setjmp.h> #include.
12373
12374 2015-01-11 Doug Evans <xdje42@gmail.com>
12375
12376 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
12377
12378 2015-01-11 Doug Evans <xdje42@gmail.com>
12379
12380 PR gdb/15830
12381 * NEWS: The "maint demangle" command is renamed as "demangle".
12382 * demangle.c: #include cli/cli-utils.h, language.h.
12383 (demangle_command): New function.
12384 (_initialize_demangle): Add new command "demangle".
12385 * maint.c (maintenance_demangle): Stub out.
12386 (_initialize_maint_cmds): Update help text for "maint demangle",
12387 and mark as deprecated.
12388
12389 2015-01-11 Mark Kettenis <kettenis@gnu.org>
12390
12391 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
12392 inferior_thread is a function.
12393
12394 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12395
12396 * Makefile.in (.y.c): Don't munge yacc's #line
12397 directives.
12398
12399 2015-01-09 Patrick Palka <patrick@parcs.ath.cx>
12400
12401 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
12402 to prompt for input.
12403 * tui/tui-hooks.c (tui_query_hook): Remove.
12404 (tui_install_hooks): Don't set deprecated_query_hook.
12405 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
12406 height calculation. Always update the command window's cur_line.
12407
12408 2015-01-09 Pedro Alves <palves@redhat.com>
12409
12410 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
12411 function.
12412 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
12413 declaration.
12414 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
12415 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
12416 stop_reason.
12417 (check_stopped_by_watchpoint): New function.
12418 (save_sigtrap): Reimplement.
12419 (linux_nat_stopped_by_watchpoint): Adjust.
12420 (linux_nat_lp_status_is_event): Delete.
12421 (stop_wait_callback): Only call save_sigtrap after storing the
12422 pending status.
12423 (status_callback): If the thread had been stopped for a breakpoint
12424 that has since been removed, discard the event and resume the LWP.
12425 (count_events_callback, select_event_lwp_callback): Use
12426 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
12427 (cancel_breakpoint): Rename to ...
12428 (check_stopped_by_breakpoint): ... this. Record whether the LWP
12429 stopped for a software breakpoint or hardware breakpoint.
12430 (select_event_lwp): Only give preference to the stepping LWP in
12431 all-stop mode. Adjust comments.
12432 (stop_and_resume_callback): Remove references to new_pending_p.
12433 (linux_nat_filter_event): Likewise. Leave exit events of the
12434 leader thread pending here. Handle signal short circuiting here.
12435 Only call save_sigtrap after storing the pending waitstatus.
12436 (linux_nat_wait_1): Remove 'retry' label. Remove references to
12437 new_pending. Don't handle leaving events the caller is not
12438 interested in pending here, nor handle signal short-circuiting
12439 here. Also give equal priority to all LWPs that have had events
12440 in non-stop mode. If reporting a software breakpoint event,
12441 unadjust the LWP's PC.
12442 * linux-nat.h (enum lwp_stop_reason): New.
12443 (struct lwp_info) <stop_pc>: New field.
12444 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
12445 (struct lwp_info) <stop_reason>: New field.
12446 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
12447
12448 2015-01-09 Pedro Alves <palves@redhat.com>
12449
12450 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
12451 Set the LWP's 'resumed' flag.
12452
12453 2015-01-09 Pedro Alves <palves@redhat.com>
12454
12455 * linux-nat.c (linux_resume_one_lwp): New function.
12456 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
12457 (linux_nat_resume): Use lwp_status_pending_p and
12458 linux_resume_one_lwp.
12459 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
12460 (linux_handle_extended_wait): Use linux_resume_one_lwp.
12461 (status_callback, running_callback): Use lwp_status_pending_p.
12462 (lwp_status_pending_p): New function.
12463 (stop_and_resume_callback): Use lwp_status_pending_p.
12464 (linux_nat_filter_event): Use linux_resume_one_lwp.
12465 (linux_nat_wait_1): Always use status_callback to look for an LWP
12466 with a pending status. Use linux_resume_one_lwp.
12467 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
12468 linux_resume_one_lwp.
12469
12470 2015-01-09 Pedro Alves <palves@redhat.com>
12471
12472 * breakpoint.c (bp_location_inserted_here_p): New function,
12473 factored out from ...
12474 (breakpoint_inserted_here_p): ... here. Use
12475 ALL_BP_LOCATIONS_AT_ADDR.
12476 (software_breakpoint_inserted_here_p): Use
12477 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
12478
12479 2014-01-09 Pedro Alves <palves@redhat.com>
12480
12481 Skip enabling event reporting if the kernel supports
12482 PTRACE_EVENT_CLONE.
12483 * linux-thread-db.c: Include "nat/linux-ptrace.h".
12484 (thread_db_use_events): New function.
12485 (try_thread_db_load_1): Check thread_db_use_events before enabling
12486 event reporting.
12487 (update_thread_state): New function.
12488 (attach_thread): Use it. Check thread_db_use_events before
12489 enabling event reporting.
12490 (thread_db_detach): Check thread_db_use_events before disabling
12491 event reporting.
12492 (find_new_threads_callback): Check thread_db_use_events before
12493 enabling event reporting. Update the thread's state if not using
12494 libthread_db events.
12495
12496 2015-01-09 Pedro Alves <palves@redhat.com>
12497
12498 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
12499 about to wait for is > 0.
12500 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
12501 the kernel thread ID is -1.
12502
12503 2015-01-09 Pedro Alves <palves@redhat.com>
12504
12505 * linux-nat.c (attach_proc_task_lwp_callback): New function.
12506 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
12507 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
12508 ptrace option flags.
12509 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
12510 field.
12511 * nat/linux-procfs.c: Include <dirent.h>.
12512 (linux_proc_get_int): New parameter "warn". Handle it.
12513 (linux_proc_get_tgid): Adjust.
12514 (linux_proc_get_tracerpid): Rename to ...
12515 (linux_proc_get_tracerpid_nowarn): ... this.
12516 (linux_proc_pid_get_state): New function, factored out from
12517 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
12518 and handle it.
12519 (linux_proc_pid_is_gone): New function.
12520 (linux_proc_pid_is_stopped): Adjust.
12521 (linux_proc_pid_is_zombie_maybe_warn)
12522 (linux_proc_pid_is_zombie_nowarn): New functions.
12523 (linux_proc_pid_is_zombie): Use
12524 linux_proc_pid_is_zombie_maybe_warn.
12525 (linux_proc_attach_tgid_threads): New function.
12526 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
12527 (linux_proc_get_tracerpid): Rename to ...
12528 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
12529 (linux_proc_pid_is_gone): New declaration.
12530 (linux_proc_pid_is_zombie): Update comment.
12531 (linux_proc_pid_is_zombie_nowarn): New declaration.
12532 (linux_proc_attach_lwp_func): New typedef.
12533 (linux_proc_attach_tgid_threads): New declaration.
12534 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
12535 use nowarn functions.
12536 (linux_ptrace_attach_fail_reason_string): Move here from
12537 gdbserver/linux-low.c and rename.
12538 (ptrace_supports_feature): If the current ptrace options are not
12539 known yet, check them now, instead of asserting.
12540 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
12541 Declare.
12542
12543 2015-01-09 Pedro Alves <palves@redhat.com>
12544
12545 * linux-thread-db.c (thread_db_find_new_threads_silently)
12546 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
12547 (find_new_threads_once): Print debug output on gdb_stdlog.
12548
12549 2015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
12550 Pedro Alves <palves@redhat.com>
12551
12552 * compile/compile.c: Include "gdb_wait.h".
12553 (do_rmdir): Check return value, and free 'zap'.
12554
12555 2015-01-08 Pedro Alves <palves@redhat.com>
12556 Yao Qi <yao@codesourcery.com>
12557
12558 * dwarf2loc.c (indirect_pieced_value): Don't call
12559 gdb_sign_extend. Call extract_signed_integer instead.
12560 * utils.c (gdb_sign_extend): Remove.
12561 * utils.h (gdb_sign_extend): Remove declaration.
12562
12563 2015-01-07 Pierre Muller <muller@sourceware.org>
12564
12565 PR symtab/17811
12566 * stabsread.c (define_symbol): Set language for C++ special symbols.
12567
12568 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
12569
12570 * inflow.c (initial_gdb_ttystate): Tweak comment.
12571
12572 2015-01-07 Joel Brobecker <brobecker@adacore.com>
12573
12574 * inflow.c (set_initial_gdb_ttystate): Add empty line after
12575 comment documenting function.
12576
12577 2015-01-07 Patrick Palka <patrick@parcs.ath.cx>
12578
12579 * terminal.h (set_initial_gdb_ttystate): Declare.
12580 * inflow.c (initial_gdb_ttystate): New static variable.
12581 (set_initial_gdb_ttystate): New setter.
12582 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
12583 instead of our current terminal state.
12584 * top.c (gdb_init): Call set_initial_gdb_ttystate.
12585
12586 2015-01-07 Joel Brobecker <brobecker@adacore.com>
12587
12588 * guile/scm-type.c (tyscm_array_1): Add comment.
12589 * python/py-type.c (typy_array_1): Add comment.
12590
12591 2015-01-06 Joel Brobecker <brobecker@adacore.com>
12592
12593 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
12594 error if N2 is equal to N1 - 1.
12595
12596 2015-01-06 Joel Brobecker <brobecker@adacore.com>
12597
12598 * python/py-type.c (typy_array_1): Do not raise negative-length
12599 exception if N2 is equal to N1 - 1.
12600
12601 2015-01-03 Doug Evans <xdje42@gmail.com>
12602
12603 * c-exp.y: Whitespace cleanup.
12604 (classify_inner_name): Remove extra ;.
12605
12606 2015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
12607
12608 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
12609 offset signed.
12610
12611 2015-01-02 Doug Evans <dje@google.com>
12612
12613 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
12614
12615 2015-01-02 Doug Evans <dje@google.com>
12616
12617 * symtab.h (struct symbol): Fix typo in comment.
12618
12619 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12620
12621 Update year range in copyright notice of all files.
12622
12623 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12624
12625 * top.c (print_gdb_version): Update copyright year to 2015.
12626
12627 2015-01-01 Joel Brobecker <brobecker@adacore.com>
12628
12629 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
12630
12631 For older changes see ChangeLog-2014.
12632 \f
12633 Local Variables:
12634 mode: change-log
12635 left-margin: 8
12636 fill-column: 74
12637 version-control: never
12638 coding: utf-8
12639 End:
This page took 0.342815 seconds and 4 git commands to generate.